blob: 870160f826f0b5c149637ed5281bdfdfc7dfa760 (
plain) (
blame)
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
44
45
46
47
48
|
PORTNAME= onetbb
PORTVERSION= 2022.1.0
DISTVERSIONPREFIX= v
PORTREVISION= 1
CATEGORIES= devel
MAINTAINER= martymac@FreeBSD.org
COMMENT= Library that provides thread building blocks
WWW= https://software.intel.com/oneapi/onetbb
LICENSE= APACHE20
LIB_DEPENDS= libhwloc.so:devel/hwloc2
USES= cmake compiler:c++11-lang localbase pathfix pkgconfig tar:tgz
USE_GITHUB= yes
GH_ACCOUNT= uxlfoundation
GH_PROJECT= oneTBB
USE_LDCONFIG= yes
CMAKE_ARGS+= -DCMAKE_INSTALL_DOCDIR:PATH="${DOCSDIR}" \
-DTBB_STRICT:BOOL=FALSE
# Many symbols in the linker version scripts are undefined because link time
# optimization (-flto=thin) removes them. Suppress errors with lld >= 17 due to
# these undefined symbols.
LDFLAGS+= -Wl,--undefined-version
CONFLICTS= tbb
# Pkgconfig: tbb.pc (on 64bit arch) vs tbb32.pc
PLIST_SUB= DBGSUFX="${DBGSUFX}" \
PCSUFX="${PCSUFX}"
PORTDOCS= README.md
OPTIONS_DEFINE= DOCS
.include <bsd.port.pre.mk>
.if defined(WITH_DEBUG)
DBGSUFX= _debug
.endif
.if ${ARCH} == i386 || ${ARCH} == powerpc || ${ARCH:Marmv?}
PCSUFX= 32
.endif
.include <bsd.port.post.mk>
|