# New ports collection makefile for: phd2fasta # Date created: 6 December 2007 # Whom: Motomichi Matsuzaki # # $FreeBSD$ # PORTNAME= phd2fasta PORTVERSION= 0.990622.f CATEGORIES= biology MASTER_SITES= # put the tarball manually DISTFILES= phd2fasta-acd-dist.tar.Z MAINTAINER= mzaki@biol.s.u-tokyo.ac.jp COMMENT= A converter from output files of Phred/Consed to FASTA files RESTRICTED= Redistribution is not permitted in any form. You must request the tarball via e-mail. Free for academic use. .if defined(PACKAGE_BUILDING) IGNORE= distribution files must be obtained via the authors .endif NO_WRKSUBDIR= yes ALL_TARGET= phd2fasta BINMODE= 0111 # avoid copying binaries as required by the agreement BINARIES= phd2fasta PLIST_FILES= bin/phd2fasta PORTDOCS= PHD2FASTA.DOC .include .for f in ${DISTFILES} .if !exists(${DISTDIR}/${f}) IGNORE= you must request the source code \(${f}\) via e-mail, place it manually in ${DISTDIR}, and then try it again .endif .endfor do-install: .for f in ${BINARIES} @${INSTALL_PROGRAM} ${WRKSRC}/${f} ${PREFIX}/bin/ .endfor .if !defined(NOPORTDOCS) @${MKDIR} ${DOCSDIR} .for f in ${PORTDOCS} @${INSTALL_DATA} ${WRKSRC}/${f} ${DOCSDIR} .endfor .endif .include