ea8c8ec7da
as defined in Mk/bsd.default-versions.mk which has moved from GCC 8.3 to GCC 9.1 under most circumstances now after revision 507371. 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, c11, c++0x, c++11-lang, c++11-lib, c++14-lang, c++17-lang, or gcc-c++11-lib plus, everything INDEX-11 shows with a dependency on lang/gcc9 now. PR: 238330
30 lines
664 B
Makefile
30 lines
664 B
Makefile
# $FreeBSD$
|
|
|
|
PORTNAME= stacks
|
|
DISTVERSION= 2.4
|
|
PORTREVISION= 1
|
|
CATEGORIES= biology perl5 python
|
|
MASTER_SITES= http://catchenlab.life.illinois.edu/stacks/source/
|
|
|
|
MAINTAINER= jwb@FreeBSD.org
|
|
COMMENT= Software pipeline for building loci from short-read sequences
|
|
|
|
LICENSE= GPLv2
|
|
LICENSE_FILE= ${WRKSRC}/LICENSE
|
|
|
|
USES= compiler:openmp gmake python shebangfix
|
|
|
|
SHEBANG_FILES= scripts/*.pl scripts/*.py \
|
|
scripts/stacks-integrate-alignments scripts/stacks-gdb
|
|
GNU_CONFIGURE= yes
|
|
|
|
LDFLAGS+= -lpthread
|
|
|
|
.include <bsd.port.pre.mk>
|
|
|
|
# Force newer GCC on platforms using GCC 4.2 as base
|
|
.if ${CHOSEN_COMPILER_TYPE} == gcc
|
|
USE_GCC= yes
|
|
.endif
|
|
|
|
.include <bsd.port.post.mk>
|