1af9914df9
Port changes for biology/seqan-apps: * Changed to DISTVERSION * Updated COMMENT * Added USES=compiler:openmp * Removed BROKEN_xx (upstream now claims support for these architectures) * Removed USE_GCC * Added SSE4/AVX2/NATIVE SIMD options Port changes for biology/seqan: * Changed to DISTVERSION * Added NO_ARCH * Added PORTDOCS=* * Updated do-install PR: 225682 Submitted by: Hannes Hauswedell <h2+fbsdports@fsfe.org> (maintainer) Approved by: tcberner (mentor, implicit)
39 lines
1 KiB
Makefile
39 lines
1 KiB
Makefile
# Created by: h2
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= seqan
|
|
DISTVERSION= 2.4.0
|
|
CATEGORIES= biology
|
|
MASTER_SITES= http://packages.seqan.de/seqan-library/
|
|
DISTNAME= ${PORTNAME}-library-${PORTVERSION}
|
|
|
|
MAINTAINER= h2+fbsdports@fsfe.org
|
|
COMMENT= C++ sequence analysis template library
|
|
|
|
LICENSE= BSD3CLAUSE
|
|
LICENSE_FILE= ${WRKSRC}/share/doc/seqan/LICENSE
|
|
|
|
USES= tar:xz
|
|
NO_BUILD= yes
|
|
NO_ARCH= yes
|
|
|
|
CONFLICTS= seqan1-[0-9]*
|
|
|
|
OPTIONS_DEFINE= DOCS
|
|
|
|
PORTDOCS= *
|
|
|
|
post-patch: # delete empty doc dirs
|
|
@cd ${WRKSRC}/share/doc/seqan/html && ${RMDIR} docs/seqan docs lists
|
|
|
|
do-install:
|
|
cd ${WRKSRC}/include/ && ${COPYTREE_SHARE} ./${PORTNAME} ${STAGEDIR}/${PREFIX}/include
|
|
@${MKDIR} ${STAGEDIR}/${PREFIX}/lib/cmake/seqan
|
|
${INSTALL_DATA} ${WRKSRC}/share/cmake/seqan/seqan-config.cmake ${STAGEDIR}/${PREFIX}/lib/cmake/seqan/
|
|
@${MKDIR} ${STAGEDIR}/${PREFIX}/libdata/pkgconfig
|
|
${INSTALL_DATA} ${WRKSRC}/share/pkgconfig/seqan-2.pc ${STAGEDIR}/${PREFIX}/libdata/pkgconfig/
|
|
|
|
do-install-DOCS-on:
|
|
cd ${WRKSRC}/share/doc/ && ${COPYTREE_SHARE} ./seqan/ ${STAGEDIR}${DOCSDIR}/../
|
|
|
|
.include <bsd.port.mk>
|