1
0
mirror of https://git.FreeBSD.org/ports.git synced 2025-02-02 11:09:29 +00:00
Gerald Pfeifer e59c88cece Bump PORTREVISION for ports depending on the canonical version of GCC
(via Mk/bsd.default-versions.mk and lang/gcc) which has moved from
GCC 5.4 to GCC 6.4 under most circumstances.

This includes ports
 - with USE_GCC=yes or USE_GCC=any,
 - with USES=fortran,
 - using Mk/bsd.octave.mk which in turn features USES=fortran, and
 - with USES=compiler specifying openmp, nestedfct, c++11-lib, c++11-lang,
   c++14-lang, c++0x, c11, or gcc-c++11-lib.

PR:		219275
2017-09-10 20:55:38 +00:00

41 lines
786 B
Makefile

# Created by: Jason Bacon <bacon4000@gmail.com>
# $FreeBSD$
PORTNAME= jellyfish
PORTVERSION= 2.2.6
PORTREVISION= 2
DISTVERSIONPREFIX= v
CATEGORIES= biology
MAINTAINER= bacon4000@gmail.com
COMMENT= Fast, memory-efficient counting of k-mers in DNA
LICENSE= GPLv3+
LICENSE_FILE= ${WRKSRC}/LICENSE
BUILD_DEPENDS= yaggo:devel/yaggo
GNU_CONFIGURE= yes
USES= autoreconf compiler:c++11-lib gmake libtool pathfix pkgconfig
USE_LDCONFIG= yes
USE_GITHUB= yes
GH_ACCOUNT= gmarcais
GH_PROJECT= Jellyfish
INSTALL_TARGET= install-strip
PLIST_SUB= VER=${PORTVERSION}
BROKEN_aarch64= Fails to compile: error: variable res is uninitialized
.include <bsd.port.pre.mk>
# SSE code assumes amd64 features
.if ${ARCH} != "amd64"
CONFIGURE_ARGS+=--without-sse
.endif
.include <bsd.port.post.mk>