diff options
author | Cheng-Lung Sung <clsung@FreeBSD.org> | 2006-05-27 15:24:20 +0000 |
---|---|---|
committer | Cheng-Lung Sung <clsung@FreeBSD.org> | 2006-05-27 15:24:20 +0000 |
commit | cce58bca30e27652863ee03144e8815c0042974f (patch) | |
tree | ed8908899b8e7fdd2a0a7b41de1cfef3129120dd /emulators/hugo/files/patch-Makefile.in | |
parent | - Fix build on 7.0 (diff) |
Add hugo 2.12, a PC Engine (TurboGrafx 16) emulator.
PR: ports/97519
Submitted by: Li-Lun Wang <llwang@infor.org>
Notes
Notes:
svn path=/head/; revision=163616
Diffstat (limited to 'emulators/hugo/files/patch-Makefile.in')
-rw-r--r-- | emulators/hugo/files/patch-Makefile.in | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/emulators/hugo/files/patch-Makefile.in b/emulators/hugo/files/patch-Makefile.in new file mode 100644 index 000000000000..2ed851e6677b --- /dev/null +++ b/emulators/hugo/files/patch-Makefile.in @@ -0,0 +1,27 @@ +--- Makefile.in.orig Tue Apr 5 15:23:11 2005 ++++ Makefile.in Fri May 19 02:40:30 2006 +@@ -444,7 +444,7 @@ + -test -z "$(bin_PROGRAMS)" || rm -f $(bin_PROGRAMS) + hugo$(EXEEXT): $(hugo_OBJECTS) $(hugo_DEPENDENCIES) + @rm -f hugo$(EXEEXT) +- $(LINK) $(hugo_LDFLAGS) $(hugo_OBJECTS) $(hugo_LDADD) $(LIBS) ++ $(LINK) $(hugo_LDFLAGS) $(hugo_OBJECTS) $(hugo_LDADD) $(LIBS) -largp + hugod$(EXEEXT): $(hugod_OBJECTS) $(hugod_DEPENDENCIES) + @rm -f hugod$(EXEEXT) + $(LINK) $(hugod_LDFLAGS) $(hugod_OBJECTS) $(hugod_LDADD) $(LIBS) +@@ -813,11 +813,11 @@ + fi \ + done \ + fi && \ +- if test -d $(srcdir)/doc; then \ +- $(mkinstalldirs) $(DESTDIR)$(pkgdatadir)/doc; \ +- for doc in $(srcdir)/doc/*.{html,txt,css}; do \ ++ if test -d $(srcdir)/doc && ${PORTDOCS}; then \ ++ $(mkinstalldirs) ${DOCSDIR}; \ ++ for doc in $(srcdir)/doc/*.html $(srcdir)/doc/*.txt $(srcdir)/doc/*.css; do \ + if test -f $$doc; then \ +- $(INSTALL_DATA) $$doc $(DESTDIR)$(pkgdatadir)/doc; \ ++ $(INSTALL_DATA) $$doc ${DOCSDIR}; \ + fi \ + done \ + fi |