diff options
author | wjv <wjv@FreeBSD.org> | 2001-07-05 08:58:12 +0000 |
---|---|---|
committer | wjv <wjv@FreeBSD.org> | 2001-07-05 08:58:12 +0000 |
commit | 3d579cf64cf5c5786676fe54440814e0f7153cb7 (patch) | |
tree | c8aa318acfcf6c2fa4e805ff6b73ba32e17fc7fb /biology/hmmer/files | |
parent | 10396d5aea94496b36ea30c458ad84c8bbea1b75 (diff) | |
download | FreeBSD-ports-3d579cf64cf5c5786676fe54440814e0f7153cb7.zip FreeBSD-ports-3d579cf64cf5c5786676fe54440814e0f7153cb7.tar.gz |
- General clean-up of port.
- Install PDF and HTML documentation.
- Take over maintainership.
Approved by: Silence from previous maintainer; no objections from -ports
Diffstat (limited to 'biology/hmmer/files')
-rw-r--r-- | biology/hmmer/files/patch-Makefile.in | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/biology/hmmer/files/patch-Makefile.in b/biology/hmmer/files/patch-Makefile.in new file mode 100644 index 0000000..deade1e --- /dev/null +++ b/biology/hmmer/files/patch-Makefile.in @@ -0,0 +1,20 @@ +--- Makefile.in.orig Thu Dec 10 01:11:07 1998 ++++ Makefile.in Wed Jul 4 15:41:09 2001 +@@ -34,7 +34,7 @@ + # how to install the man pages; + # cp is generally fine, unless you preformat your pages. + # +-INSTMAN = cp ++INSTMAN = $(BSD_INSTALL_MAN) + MANSUFFIX = 1 + + # your compiler and compiler flags +@@ -142,7 +142,7 @@ + # installs man pages in MANDIR/man1/ (if MANSUFFIX is 1) + install: + for file in $(PROGS) $(SQUIDPROGS) $(PVMPROGS); do\ +- cp binaries/$$file $(BINDIR)/;\ ++ $(BSD_INSTALL_PROGRAM) binaries/$$file $(BINDIR)/;\ + done + for file in hmmer $(PROGS) $(SQUIDPROGS); do\ + $(INSTMAN) Man/$$file.man $(MANDIR)/man$(MANSUFFIX)/$$file.$(MANSUFFIX);\ |