mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-20 04:02:27 +00:00
07fb2d5e9d
The option implied a dependency on gcc but clang got openmp support long ago. Remove compiler:openmp from Mk/Uses/compiler.mk For ports using USE=compiler:openmp, just remove it and make them build with clang. Fix conditionals when necessary Bump PORTREVISION where appropriate If problem arises, they can be addressed by using USE_GCC=yes An update to the Porter's Handbook will follow. Approved by: portmgr (bapt) Differential Revision: https://reviews.freebsd.org/D31971
45 lines
1.1 KiB
Makefile
45 lines
1.1 KiB
Makefile
# Created by: Hannes Hauswedell <h2+fbsdports@fsfe.org>
|
|
|
|
PORTNAME= seqan-apps
|
|
DISTVERSIONPREFIX= seqan-v
|
|
DISTVERSION= 2.4.0
|
|
PORTREVISION= 10
|
|
CATEGORIES= biology
|
|
|
|
MAINTAINER= h2+fbsdports@fsfe.org
|
|
COMMENT= Official bioinformatic applications based on the SeqAn library
|
|
|
|
LICENSE= BSD3CLAUSE LGPL3 GPLv3
|
|
LICENSE_COMB= multi
|
|
|
|
BUILD_DEPENDS= boost-libs>0:devel/boost-libs
|
|
|
|
USES= cmake
|
|
USE_GITHUB= yes
|
|
GH_ACCOUNT= seqan
|
|
GH_PROJECT= seqan
|
|
CMAKE_ARGS= -DSEQAN_BUILD_SYSTEM="SEQAN_RELEASE_APPS"
|
|
|
|
OPTIONS_RADIO= ARCH
|
|
OPTIONS_RADIO_ARCH= SSE4 AVX2 NATIVE
|
|
SSE4_DESC= Use SSE4 and POPCNT instructions
|
|
SSE4_CMAKE_ON= -DSEQAN_ARCH_SSE4:BOOL=TRUE
|
|
AVX2_DESC= Use SSE4, AVX2 and POPCNT instructions
|
|
AVX2_CMAKE_ON= -DSEQAN_ARCH_AVX2:BOOL=TRUE
|
|
NATIVE_DESC= Use all available instruction sets (-march=native)
|
|
NATIVE_CMAKE_ON= -DSEQAN_ARCH_NATIVE:BOOL=TRUE
|
|
|
|
.include <bsd.port.pre.mk>
|
|
|
|
.if ${ARCH} == "armv7" || ${ARCH} == "i386" || ${ARCH} == "powerpc"
|
|
PLIST_SUB+= RM_I386="@comment "
|
|
.else
|
|
PLIST_SUB+= RM_I386=""
|
|
.endif
|
|
|
|
.if ${ARCH:Mmips*} || ${ARCH:Mpowerpc*} || ${ARCH} == sparc64
|
|
USE_GCC= yes
|
|
.endif
|
|
|
|
.include <bsd.port.post.mk>
|