69a07c5ad7
PR: 138133 Submitted by: Ganael Laplanche <ganael.laplanche@martymac.com> (maintainer)
42 lines
1.1 KiB
Makefile
42 lines
1.1 KiB
Makefile
# New ports collection makefile for: tbb
|
|
# Date created: 30 Sept 2007
|
|
# Whom: Arun Sharma <arun@sharma-home.net>
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= tbb
|
|
PORTVERSION= 2.2
|
|
CATEGORIES= devel
|
|
MASTER_SITES= http://www.threadingbuildingblocks.org/uploads/78/140/2.2/
|
|
DISTNAME= tbb22_004oss_src
|
|
EXTRACT_SUFX= .tgz
|
|
|
|
MAINTAINER= ganael.laplanche@martymac.com
|
|
COMMENT= A library that provides thread building blocks
|
|
|
|
ONLY_FOR_ARCHS= amd64 i386 ia64
|
|
ONLY_FOR_ARCHS_REASON= has not been ported to this platform
|
|
USE_LDCONFIG= yes
|
|
USE_GMAKE= yes
|
|
ALL_TARGET= default
|
|
|
|
WRKSRC= ${WRKDIR}/tbb22_004oss
|
|
|
|
post-extract:
|
|
@${CP} ${FILESDIR}/version_info_FreeBSD.sh ${WRKSRC}/build/
|
|
|
|
post-patch:
|
|
@${REINPLACE_CMD} 's|-lpthread|${PTHREAD_LIBS}|g' ${WRKSRC}/build/FreeBSD.gcc.inc
|
|
|
|
do-install:
|
|
cd ${WRKSRC}; \
|
|
${INSTALL_DATA} build/FreeBSD*release/libtbb.so \
|
|
${PREFIX}/lib/libtbb.so; \
|
|
${INSTALL_DATA} build/FreeBSD*release/libtbbmalloc.so \
|
|
${PREFIX}/lib/libtbbmalloc.so; \
|
|
${MKDIR} ${PREFIX}/include/tbb/; \
|
|
cd include/tbb/ && ${COPYTREE_SHARE} \* ${PREFIX}/include/tbb/
|
|
|
|
.include <bsd.port.mk>
|