mirror of
https://git.FreeBSD.org/ports.git
synced 2025-01-15 07:56:36 +00:00
953d689ce3
approach to expressing parallelism in a C++ program. It is a library that helps you take advantage of multi-core processor performance without having to be a threading expert. Threading Building Blocks is not just a threads-replacement library. It represents a higher-level, task-based parallelism that abstracts platform details and threading mechanism for performance and scalability. WWW: http://tbb.sourceforge.net/ - Arun Sharma arun@FreeBSD.org PR: ports/116771 Submitted by: Arun Sharma <arun at sharma-home.net>
34 lines
792 B
Makefile
34 lines
792 B
Makefile
# New ports collection makefile for: tbb
|
|
# Date created: 30 Sept 2007
|
|
# Whom: Arun Sharma <arun@sharma-home.net>
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= tbb
|
|
PORTVERSION= 2.0
|
|
CATEGORIES= devel
|
|
MASTER_SITES= http://osstbb.intel.com/uploads/76/74/2.0/
|
|
DISTNAME= tbb20_20070815oss_src
|
|
|
|
MAINTAINER= arun@FreeBSD.org
|
|
COMMENT= A library that provides thread building blocks
|
|
|
|
PATCH_STRIP= -p1
|
|
|
|
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= tbb_release
|
|
|
|
do-install:
|
|
cd ${WRKSRC}; \
|
|
${INSTALL_DATA} build/freebsd*release/libtbb.so \
|
|
${PREFIX}/lib/libtbb.so; \
|
|
${MKDIR} ${PREFIX}/include/tbb/machine; \
|
|
${FIND} include -type f -name '*.h' -exec \
|
|
${INSTALL_DATA} \{\} ${PREFIX}/\{\} \;
|
|
|
|
.include <bsd.port.mk>
|