diff options
author | Johann Visagie <wjv@FreeBSD.org> | 2001-08-22 12:07:26 +0000 |
---|---|---|
committer | Johann Visagie <wjv@FreeBSD.org> | 2001-08-22 12:07:26 +0000 |
commit | 8aff3a669c1f00e3f5931b88b2e49f7cd8257521 (patch) | |
tree | 9a712e690df2491f30b6267885c24498514ab44d /biology/seqio/Makefile | |
parent | c4322da6d8adadb8a6b900054f21d06f81bf50c5 (diff) |
Add seqio 1.2.2, a set of C functions which can read/write
biological sequence files.
PR: 29922
Submitted by: Tony Maher <tonym@biolateral.com.au>
Notes
Notes:
svn path=/head/; revision=46640
Diffstat (limited to 'biology/seqio/Makefile')
-rw-r--r-- | biology/seqio/Makefile | 48 |
1 files changed, 48 insertions, 0 deletions
diff --git a/biology/seqio/Makefile b/biology/seqio/Makefile new file mode 100644 index 000000000000..cef43ebbeef1 --- /dev/null +++ b/biology/seqio/Makefile @@ -0,0 +1,48 @@ +# New ports collection makefile for: seqio +# Date created: 17 August 2001 +# Whom: Tony Maher +# +# $FreeBSD$ +# + +PORTNAME= seqio +PORTVERSION= 1.2.2 +CATEGORIES= biology +MASTER_SITES= http://www.cs.ucdavis.edu/~gusfield/ +DISTNAME= ${PORTNAME} + +MAINTAINER= tonym@biolateral.com.au + +WRKSRC= ${WRKDIR}/${PORTNAME}-${PORTVERSION} + +EXAMPLESDIR= ${PREFIX}/share/examples/${PORTNAME} +EXAMPLES= example1.c example2.c example3.c example4.c seqio.c \ + seqio.h Makefile +PROGRAMS= fmtseq grepseq idxseq typeseq wcseq + +do-install: + ${MKDIR} ${DOCSDIR} + ${MKDIR} ${DOCSDIR}/html + ${MKDIR} ${EXAMPLESDIR} + cd ${WRKSRC}; \ + for file in ${PROGRAMS}; do \ + ${INSTALL_PROGRAM} $$file ${PREFIX}/bin; \ + done +post-install: +.if !defined(NOPORTDOCS) + cd ${WRKSRC}; \ + for file in ${EXAMPLES}; do \ + ${INSTALL_DATA} $$file ${EXAMPLESDIR}; \ + done + ${INSTALL_DATA} ${WRKSRC}/bioseq.txt ${DOCSDIR} + cd ${WRKSRC}/doc; \ + for file in *.doc; do \ + ${INSTALL_DATA} $$file ${DOCSDIR}; \ + done + cd ${WRKSRC}/html; \ + for file in *.html; do \ + ${INSTALL_DATA} $$file ${DOCSDIR}/html; \ + done +.endif + +.include <bsd.port.mk> |