f899c758a6
everything at once. Sometime, rename post-install into a options helper target. I did not fix ports that were such a mess that I could not figure out what they really wanted to do. I also did not change ports that had some version of an auto-plist code in post-install, for the same reason. With hat: portmgr Sponsored by: Absolight
33 lines
738 B
Makefile
33 lines
738 B
Makefile
# Created by: h2
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= seqan
|
|
PORTVERSION= 1.3.1
|
|
PORTREVISION= 4
|
|
CATEGORIES= biology
|
|
MASTER_SITES= http://ftp.seqan.de/releases/
|
|
PKGNAMESUFFIX= 1
|
|
|
|
MAINTAINER= h2+fbsdports@fsfe.org
|
|
COMMENT= C++ Sequence Analysis Library
|
|
|
|
LICENSE= BSD3CLAUSE
|
|
LICENSE_FILE_BSD=${WRKSRC}/seqan/LICENSE
|
|
|
|
USES= zip
|
|
NO_BUILD= yes
|
|
|
|
CONFLICTS= seqan-[2-9]*
|
|
|
|
OPTIONS_DEFINE= DOCS
|
|
|
|
do-install:
|
|
${MKDIR} ${STAGEDIR}/${PREFIX}/include/${PORTNAME}
|
|
cd ${WRKSRC} && ${COPYTREE_SHARE} ./${PORTNAME} ${STAGEDIR}/${PREFIX}/include
|
|
cd ${WRKSRC} && ${INSTALL_DATA} ./${PORTNAME}.h ${STAGEDIR}/${PREFIX}/include
|
|
|
|
post-install-DOCS-on:
|
|
${MKDIR} ${STAGEDIR}${DOCSDIR}
|
|
cd ${WRKSRC}/docs && ${COPYTREE_SHARE} ./ ${STAGEDIR}${DOCSDIR}
|
|
|
|
.include <bsd.port.mk>
|