Changeset View
Changeset View
Standalone View
Standalone View
biology/jellyfish/Makefile
Show All 11 Lines | |||||
LICENSE= GPLv3+ | LICENSE= GPLv3+ | ||||
LICENSE_FILE= ${WRKSRC}/LICENSE | LICENSE_FILE= ${WRKSRC}/LICENSE | ||||
BUILD_DEPENDS= yaggo:devel/yaggo | BUILD_DEPENDS= yaggo:devel/yaggo | ||||
GNU_CONFIGURE= yes | GNU_CONFIGURE= yes | ||||
USES= autoreconf compiler:c++11-lib gmake \ | USES= autoreconf compiler:c++11-lib gmake \ | ||||
libtool pkgconfig | libtool pathfix pkgconfig | ||||
USE_LDCONFIG= yes | USE_LDCONFIG= yes | ||||
USE_GITHUB= yes | USE_GITHUB= yes | ||||
GH_ACCOUNT= gmarcais | GH_ACCOUNT= gmarcais | ||||
GH_PROJECT= Jellyfish | GH_PROJECT= Jellyfish | ||||
INSTALL_TARGET= install-strip | INSTALL_TARGET= install-strip | ||||
BROKEN_FreeBSD_9_i386= multiple code issues on i386 < 10.0-RELEASE | BROKEN_FreeBSD_9_i386= multiple code issues on i386 < 10.0-RELEASE | ||||
.include <bsd.port.pre.mk> | .include <bsd.port.pre.mk> | ||||
# SSE code assumes amd64 features | # SSE code assumes amd64 features | ||||
.if ${ARCH} != "amd64" | .if ${ARCH} != "amd64" | ||||
CONFIGURE_ARGS+=--without-sse | CONFIGURE_ARGS+=--without-sse | ||||
.endif | .endif | ||||
# configure does not support --with-pkgconfigdir | |||||
post-patch: | |||||
@${REINPLACE_CMD} \ | |||||
-e 's|$$(libdir)/pkgconfig|${PREFIX}/libdata/pkgconfig|g' \ | |||||
${WRKSRC}/Makefile.am | |||||
.include <bsd.port.post.mk> | .include <bsd.port.post.mk> |