blob: d84f96e8842019592a54551f48ead4fa878923ef (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
|
PORTNAME= Jellyfish
DISTVERSIONPREFIX= v
DISTVERSION= 2.2.10
PORTREVISION= 9
CATEGORIES= biology
MAINTAINER= jwb@FreeBSD.org
COMMENT= Fast, memory-efficient counting of k-mers in DNA
LICENSE= GPLv3+
LICENSE_FILE= ${WRKSRC}/LICENSE
BUILD_DEPENDS= yaggo:devel/yaggo
LIB_DEPENDS= libhts.so:biology/htslib
USES= autoreconf compiler:c++11-lib gmake libtool pathfix pkgconfig
USE_LDCONFIG= yes
USE_GITHUB= yes
GNU_CONFIGURE= yes
GH_ACCOUNT= gmarcais
INSTALL_TARGET= install-strip
PLIST_SUB= VER=${PORTVERSION}
OPTIONS_DEFINE= NLS
OPTIONS_SUB= yes
NLS_USES= gettext
NLS_CONFIGURE_ENABLE= nls
.include <bsd.port.pre.mk>
# SSE code assumes amd64 features
.if ${ARCH} != "amd64"
CONFIGURE_ARGS+=--without-sse
.endif
.if ${CHOSEN_COMPILER_TYPE} == gcc
CXXFLAGS+= -faligned-new
.endif
.include <bsd.port.post.mk>
|