summaryrefslogtreecommitdiff
path: root/biology/hmmer/Makefile
diff options
context:
space:
mode:
authorSteve Price <steve@FreeBSD.org>1998-07-12 23:30:04 +0000
committerSteve Price <steve@FreeBSD.org>1998-07-12 23:30:04 +0000
commit91f5c278fe07c962bdfa655fbe8b8bbae7c2e49e (patch)
tree6724ceb40dbf396309d33eb1a55fc256f43ca250 /biology/hmmer/Makefile
parentChange the default for autobauding from YES to NO. (diff)
Initial import of hmmer version 2.0.
Profile hidden Markov models for biological sequence analysis. PR: 7120 Submitted by: Matthew Jason Euclid Barnhart <barnhart@sequencer.wustl.edu>
Notes
Notes: svn path=/head/; revision=11871
Diffstat (limited to 'biology/hmmer/Makefile')
-rw-r--r--biology/hmmer/Makefile36
1 files changed, 36 insertions, 0 deletions
diff --git a/biology/hmmer/Makefile b/biology/hmmer/Makefile
new file mode 100644
index 000000000000..f64e60ae355a
--- /dev/null
+++ b/biology/hmmer/Makefile
@@ -0,0 +1,36 @@
+# New ports collection Makefile for: hmmer
+# Version required: 2.0
+# Date created: June 29 1998
+# Whom: barnhart@genetics.wustl.edu
+#
+# $Id$
+#
+
+DISTNAME= hmmer-2.0
+CATEGORIES= biology
+MASTER_SITES= ftp://ftp.genetics.wustl.edu/pub/eddy/hmmer/
+EXTRACT_SUFX= .tar.Z
+
+MAINTAINER= barnhart@genetics.wustl.edu
+
+BUILD_DEPENDS= perl:${PORTSDIR}/lang/perl5
+
+MAN1= hmmalign.1 hmmbuild.1 hmmcalibrate.1 hmmconvert.1 hmmemit.1 hmmer.1 hmmpfam.1 hmmsearch.1
+
+WRKSRC= ${WRKDIR}/build/${DISTNAME}
+
+post-build:
+ @ strip ${WRKSRC}/binaries/*
+ @ make test
+
+test:
+ @(cd ${WRKSRC}; make test)
+
+post-install:
+.if !defined(NOPORTDOCS)
+ ${MKDIR} ${PREFIX}/share/doc/hmmer
+ ${INSTALL_MAN} ${WRKSRC}/Userguide/Userguide.ps ${PREFIX}/share/doc/hmmer
+.endif
+ @ ${CAT} ${PKGDIR}/MESSAGE
+
+.include <bsd.port.mk>