1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-11-26 00:55:14 +00:00
freebsd-ports/biology/seqan/Makefile
Gerald Pfeifer 1cd277bdce Update the default version of GCC used in the Ports Collection from
GCC 4.6.4 to GCC 4.7.3.  This entails updating the lang/gcc port as
well as changing the default in Mk/bsd.default-versions.mk.

Part II, Bump PORTREVISIONs.

PR:		182136
Supported by:	Christoph Moench-Tegeder <cmt@burggraben.net> (fixing many ports)
Tested by:	bdrewery (two -exp runs)
2014-03-10 20:55:20 +00:00

45 lines
941 B
Makefile

# Created by: h2
# $FreeBSD$
PORTNAME= seqan
PORTVERSION= 1.3.1
PORTREVISION= 2
CATEGORIES= biology
MASTER_SITES= http://ftp.seqan.de/releases/
MAINTAINER= h2+fbsdports@fsfe.org
COMMENT= C++ Sequence Analysis Library
LICENSE= BSD GPLv3
LICENSE_COMB= multi
LICENSE_FILE_BSD=${WRKSRC}/seqan/LICENSE
LICENSE_FILE_GPLv3=${WRKSRC}/apps/LICENSE
USES= cmake:outsource zip
CMAKE_SOURCE_PATH=${WRKSRC}/cmake
USE_PYTHON_BUILD=yes
MAKE_JOB_SAFE= yes
SUB_FILES= pkg-message
PKG_MESSAGE= ${WRKDIR}/pkg-message
NO_STAGE= yes
.include <bsd.port.pre.mk>
.if ${ARCH} == i386
# triggers internal error in system gcc
USE_GCC= yes
.endif
# unsafe workaround because FreeBSD lacks logl and expl
# see "BUGS" in `man 3 math`
post-patch:
@${REINPLACE_CMD} -e 's|expl|exp|g' ${WRKSRC}/apps/snp_store/snp_store.h
@${REINPLACE_CMD} -e 's|logl|log|g' ${WRKSRC}/apps/snp_store/snp_store.h
post-install:
@${CAT} ${PKG_MESSAGE}
.include <bsd.port.post.mk>