diff options
author | Tijl Coosemans <tijl@FreeBSD.org> | 2013-12-22 16:22:28 +0000 |
---|---|---|
committer | Tijl Coosemans <tijl@FreeBSD.org> | 2013-12-22 16:22:28 +0000 |
commit | 3f80fdea42527c395d6bc87286b866c83eebe874 (patch) | |
tree | e9f8cc238027fcf93c3338cf77f61f09531e928f /math/algae/files/patch-doc-Makefile.in | |
parent | Revert r337193, groff needs perl, makes a loop, is bad. (diff) |
- USES=fortran (eliminate FORTRANLIBS, LDFLAGS and pre-configure).
- Remove some patches and post-patch.
- Remove USE_AUTOTOOLS=autoconf and patch configure script directly.
- Replace BROKEN with BROKEN_${ARCH}.
- Staging (add DESTDIR support to the makefiles).
- Make sure the port uses its own arpack, blas, lapack and superlu.
Diffstat (limited to 'math/algae/files/patch-doc-Makefile.in')
-rw-r--r-- | math/algae/files/patch-doc-Makefile.in | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/math/algae/files/patch-doc-Makefile.in b/math/algae/files/patch-doc-Makefile.in new file mode 100644 index 000000000000..a46c08f6fb32 --- /dev/null +++ b/math/algae/files/patch-doc-Makefile.in @@ -0,0 +1,23 @@ +--- doc/Makefile.in.orig ++++ doc/Makefile.in +@@ -173,15 +173,13 @@ + install: algae.info algae.1 algae_toc.html index.html info.db + -if test -f algae.info; then d=.; else d=$(srcdir); fi; \ + for f in $$d/algae.info $$d/algae.info-*; do \ +- $(INSTALL_DATA) $$f $(infodir); \ +- done; \ +- if $(SHELL) -c 'install-info --version' > /dev/null 2>&1; then \ +- install-info --info-dir=$(infodir) $$d/algae.info; else true; fi ++ $(INSTALL_DATA) $$f $(DESTDIR)$(infodir); \ ++ done + -if test -f algae_toc.html; then d=.; else d=$(srcdir); fi; \ + for f in $$d/index.html $$d/algae*.html $$d/icon.gif $$d/info.db; do \ +- $(INSTALL_DATA) $$f $(htmldir); done +- -rm -f $(datadir)/algae/html; ln -s $(htmldir) $(datadir)/algae/html +- -$(INSTALL_DATA) algae.1 $(mandir)/algae.$(manext) ++ $(INSTALL_DATA) $$f $(DESTDIR)$(htmldir); done ++ -rm -f $(DESTDIR)$(datadir)/algae/html; ln -s $(htmldir) $(DESTDIR)$(datadir)/algae/html ++ -$(INSTALL_DATA) algae.1 $(DESTDIR)$(mandir)/algae.$(manext) + + uninstall: + rm -f $(infodir)/algae.info* $(mandir)/algae.$(manext) \ |