aboutsummaryrefslogtreecommitdiff
path: root/biology/seqio
Commit message (Collapse)AuthorAgeFilesLines
* - Switch to options helpersDmitry Marakasov2017-11-261-1/+5
| | | | Notes: svn path=/head/; revision=454906
* Support stagingEmanuel Haupt2014-02-161-14/+7
| | | | Notes: svn path=/head/; revision=344538
* Add NO_STAGE all over the place in preparation for the staging support (cat: ↵Baptiste Daroussin2013-09-201-0/+1
| | | | | | | biology) Notes: svn path=/head/; revision=327709
* Remove stale (since r321246) pkg-plist file.Boris Samorodov2013-06-191-39/+0
| | | | Notes: svn path=/head/; revision=321327
* Index: MakefileBoris Samorodov2013-06-191-27/+17
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | =================================================================== --- Makefile (revision 321238) +++ Makefile (working copy) @@ -1,9 +1,5 @@ -# New ports collection makefile for: seqio -# Date created: 17 August 2001 -# Whom: Tony Maher -# +# Created by: Tony Maher # $FreeBSD$ -# PORTNAME= seqio PORTVERSION= 1.2.2 @@ -13,38 +9,32 @@ DISTNAME= ${PORTNAME} MAINTAINER= ports@FreeBSD.org -COMMENT= A set of C functions which can read/write biological sequence files +COMMENT= Set of C functions which can read/write biological sequence files WRKSRC= ${WRKDIR}/${PORTNAME}-${PORTVERSION} EXAMPLES= example1.c example2.c example3.c example4.c seqio.c \ seqio.h Makefile PROGRAMS= fmtseq grepseq idxseq typeseq wcseq +PLIST_FILES+= ${PROGRAMS:S,^,bin/,} +PORTEXAMPLES= * +PORTDOCS= * +OPTIONS_DEFINE= DOCS EXAMPLES + +.include <bsd.port.options.mk> + do-install: - cd ${WRKSRC}; \ - for file in ${PROGRAMS}; do \ - ${INSTALL_PROGRAM} $$file ${PREFIX}/bin; \ - done -.if !defined(NOPORTEXAMPLES) - ${MKDIR} ${EXAMPLESDIR} - cd ${WRKSRC}; \ - for file in ${EXAMPLES}; do \ - ${INSTALL_DATA} $$file ${EXAMPLESDIR}; \ - done + ${INSTALL_PROGRAM} ${PROGRAMS:S,^,${WRKSRC}/,} ${PREFIX}/bin +.if ${PORT_OPTIONS:MEXAMPLES} + @${MKDIR} ${EXAMPLESDIR} + ${INSTALL_DATA} ${EXAMPLES:S,^,${WRKSRC}/,} ${EXAMPLESDIR} .endif -.if !defined(NOPORTDOCS) - ${MKDIR} ${DOCSDIR} - ${MKDIR} ${DOCSDIR}/html +.if ${PORT_OPTIONS:MDOCS} + @${MKDIR} ${DOCSDIR}/html ${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 + ${INSTALL_DATA} ${WRKSRC}/doc/*.doc ${DOCSDIR} + ${INSTALL_DATA} ${WRKSRC}/html/*.html ${DOCSDIR}/html .endif .include <bsd.port.mk> Notes: svn path=/head/; revision=321246
* - Get Rid MD5 supportMartin Wilke2011-03-191-1/+0
| | | | Notes: svn path=/head/; revision=271305
* For ports maintained by ports@FreeBSD.org, remove names and/orDoug Barton2009-12-211-3/+0
| | | | | | | | | | | e-mail addresses from the pkg-descr file that could reasonably be mistaken for maintainer contact information in order to avoid confusion on the part of users looking for support. As a pleasant side effect this also avoids confusion and/or frustration for people who are no longer maintaining those ports. Notes: svn path=/head/; revision=246327
* - respect NOPORTEXAMPLES/NOPORTDOCS and fix plistIon-Mihai Tetcu2008-07-122-14/+15
| | | | | | | | | - bump PORTREVISION Prompted by: QA Tindy run Notes: svn path=/head/; revision=216729
* Reset tonymaher@optusnet.com.au due to maintainer-timeouts and no responseMark Linimon2006-12-261-1/+1
| | | | | | | | | to email. Hat: portmgr Notes: svn path=/head/; revision=180796
* SHA256ifyEdwin Groothuis2006-01-221-0/+1
| | | | | | | Approved by: krion@ Notes: svn path=/head/; revision=154141
* Fix maintainer addressEdwin Groothuis2006-01-091-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | From: Tony Maher <anthony.maher@uts.edu.au> To: Edwin Groothuis <edwin@FreeBSD.org> Subject: Re: ports/91537: maths/xgobi - download site moved/maintainer addressupdate Actually I need modify all my ports to use OptusNet rather than Biolateral. Is there an easy way to do this or should I submit a separate 1-line patch and PR for each port? biology/crimap biology/dna-qc biology/flip biology/primer3 biology/seqio biology/wise math/xgobi net/generic-nqs Submitted by: Tony Maher <anthony.maher@uts.edu.au> Notes: svn path=/head/; revision=153111
* SIZEify (maintainer timeout)Trevor Johnson2004-03-311-0/+1
| | | | Notes: svn path=/head/; revision=105747
* Respect CC and CFLAGSKris Kennaway2003-10-231-5/+11
| | | | Notes: svn path=/head/; revision=91918
* Cosmetic fix: use %%DOCSDIR%% macro.Sergey A. Osokin2003-10-221-26/+26
| | | | | | | | | | No functionally changes. Submitted by: Oleg Karachevtsev <ok@etrust.ru> A part of PR: 57992 Notes: svn path=/head/; revision=91882
* De-pkg-comment.Akinori MUSHA2003-02-212-1/+1
| | | | Notes: svn path=/head/; revision=76030
* Remove a redundant trailing space.Akinori MUSHA2001-10-211-1/+1
| | | | Notes: svn path=/head/; revision=49023
* Add seqio 1.2.2, a set of C functions which can read/writeJohann Visagie2001-08-229-0/+399
biological sequence files. PR: 29922 Submitted by: Tony Maher <tonym@biolateral.com.au> Notes: svn path=/head/; revision=46640