mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-15 03:14:23 +00:00
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
35 lines
862 B
Makefile
35 lines
862 B
Makefile
# $FreeBSD$
|
|
|
|
PORTNAME= fcl
|
|
DISTVERSION= 0.5.0-304
|
|
PORTREVISION= 3
|
|
DISTVERSIONSUFFIX= -g16c193a
|
|
CATEGORIES= math
|
|
|
|
MAINTAINER= yuri@FreeBSD.org
|
|
COMMENT= Flexible Collision Library
|
|
|
|
LICENSE= BSD3CLAUSE
|
|
LICENSE_FILE= ${WRKSRC}/LICENSE
|
|
|
|
LIB_DEPENDS= libccd.so:math/libccd
|
|
|
|
USES= cmake compiler:c++11-lang eigen:3
|
|
USE_GITHUB= yes
|
|
GH_ACCOUNT= flexible-collision-library
|
|
USE_LDCONFIG= yes
|
|
|
|
CMAKE_OFF= FCL_BUILD_TESTS # also see https://github.com/flexible-collision-library/fcl/issues/354
|
|
|
|
OPTIONS_DEFINE_amd64= SSE2 SSE3 SSSE3 SSE4 SSE41 SSE42 SSE4A
|
|
OPTIONS_DEFAULT_amd64= SSE2
|
|
OPTIONS_DEFINE_i386= ${OPTIONS_DEFINE_amd64}
|
|
OPTIONS_DEFAULT_i386= ${OPTIONS_DEFAULT_amd64}
|
|
|
|
.for sse in ${OPTIONS_DEFINE_amd64}
|
|
${sse}_DESC= Support for ${sse}
|
|
${sse}_CMAKE_ON= -DFCL_USE_X64_SSE:BOOL=ON -DOPT_SSE_${sse}=-m${sse:tl:S/41/4.1/:S/42/4.2/}
|
|
.endfor
|
|
|
|
.include <bsd.port.mk>
|