commit:     c5f15046dc1de2ee05ed4622b18c09abc35075d5
Author:     Matthias Maier <tamiko <AT> gentoo <DOT> org>
AuthorDate: Tue Apr 24 15:56:13 2018 +0000
Commit:     Matthias Maier <tamiko <AT> gentoo <DOT> org>
CommitDate: Tue Apr 24 15:57:52 2018 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c5f15046

dev-cpp/tbb: version bump to 2018.20180312

Package-Manager: Portage-2.3.31, Repoman-2.3.9

 dev-cpp/tbb/Manifest                 |   1 +
 dev-cpp/tbb/tbb-2018.20180312.ebuild | 144 +++++++++++++++++++++++++++++++++++
 2 files changed, 145 insertions(+)

diff --git a/dev-cpp/tbb/Manifest b/dev-cpp/tbb/Manifest
index a8dc9eeea6f..1ee27c600fb 100644
--- a/dev-cpp/tbb/Manifest
+++ b/dev-cpp/tbb/Manifest
@@ -1,4 +1,5 @@
 DIST tbb-2017.20170226.tar.gz 2856407 BLAKE2B 
10c9f1230a57e0cc778f4f7ad9395a7dc9044b7f203e704cfdc479632e2aaf35f05caa168d9caea490abc6d96ec7d77ea6e7effbc9d5b589a6e41e3374b8b9cb
 SHA512 
d07eeca53138432a4ac20145169907f5271e234bedfb53e0eabbed2b6fafaecdc0a2ad7bdbead205993f822e7c415233cce9afd7575d366c17a117d5cc971a65
+DIST tbb-2018.20180312.tar.gz 2911740 BLAKE2B 
5c6dab4a892f3b61ed0b02ea36dc41bebd5b33a22bcc3d5f2960f21e134f2eb9bccf1466193a573489e12638c0bb0bccc2da83f699968ffd62417f2d0f093289
 SHA512 
7ac74e714122e25f7704630d3d52992dbea54d1e761b5e487251a771f401aa864f78b8ddf11d78f38758088df387abb6987f6a2db562c86cbb28ba8f33a25680
 DIST tbb2017_20161128oss_src.tgz 2965854 BLAKE2B 
8c5aed6d8477297922767803617346feebb712d1f4b2df6d71a86f039b5563afc666454985e68a528a812aaad40b5fd0562bb91d357c45156fec46e5389ec542
 SHA512 
3c48ce196d2d3557e86cea7ede9dea456bbaeb29dbed34210f99c6f380406403a6056ccfa3d5befe6b29c4f8a9ee58ca6da545249cf4ec4ec85b463e04e4518c
 DIST tbb43_20150611oss_src.tgz 2757631 BLAKE2B 
d1a00b531b747aeae05d052ac2d894b4d5dbee628988794ac9721058e5b3cd7efb60877ff1183d155d75bc2a0b413863911c438da9db1c30ec8e74e2de442118
 SHA512 
83d5d827706b774ef5cd6df8082e5d7f48683388684423bb40565dfc25892fc2e57c382f719b78087d83e51edb3f7f7215f33d8b5039b55c32788d80efa6e0b8
 DIST tbb44_20160803oss_src.tgz 2874050 BLAKE2B 
097e4e4fb2c14b6ab073409b26c7d5044cd7f2edb56efb0b307b1e07b4496a668d34eec88086d2f8e68eb050df9e2b48af81b5e47c860b15786e0c48df736d9c
 SHA512 
01b1dcdaffa96c3d503e44d7b236b1115f419c122dab0f40de4c9dc90db315a1f3755cc91adf9df91d5d31d8927df115230db94cf175edac09ae438b46374a92

diff --git a/dev-cpp/tbb/tbb-2018.20180312.ebuild 
b/dev-cpp/tbb/tbb-2018.20180312.ebuild
new file mode 100644
index 00000000000..3d6b1e11f0b
--- /dev/null
+++ b/dev-cpp/tbb/tbb-2018.20180312.ebuild
@@ -0,0 +1,144 @@
+# Copyright 1999-2018 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+
+inherit eutils flag-o-matic multilib-minimal multilib toolchain-funcs 
versionator
+
+PV1="$(get_version_component_range 1)"
+PV2=3
+MY_PV="${PV1}_U${PV2}"
+
+DESCRIPTION="High level abstract threading library"
+HOMEPAGE="http://www.threadingbuildingblocks.org/";
+SRC_URI="https://github.com/01org/${PN}/archive/${MY_PV}.tar.gz -> ${P}.tar.gz"
+LICENSE="Apache-2.0"
+SLOT="0"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86 
~amd64-fbsd ~amd64-linux ~x86-linux"
+IUSE="debug doc examples"
+
+DEPEND=""
+RDEPEND="${DEPEND}"
+S="${WORKDIR}/${PN}-${MY_PV}"
+
+PATCHES=(
+       "${FILESDIR}"/${PN}-4.4.20160803-underlinking.patch
+       "${FILESDIR}"/${PN}-2017.20161128-build.patch
+)
+
+src_prepare() {
+       default
+
+       find include -name \*.html -delete || die
+
+       # Give it a soname on FreeBSD
+       echo 'LIB_LINK_FLAGS += -Wl,-soname=$(BUILDING_LIBRARY)' >>     
build/FreeBSD.gcc.inc
+       # Set proper versionning on FreeBSD
+       sed -i -e '/.DLL =/s/$/.1/' build/FreeBSD.inc || die
+
+       use debug || sed -i -e '/_debug/d' Makefile
+}
+
+multilib_src_configure() {
+       # pc files are for debian and fedora compatibility
+       # some deps use them
+       cat <<-EOF > ${PN}.pc.template
+               prefix=${EPREFIX}/usr
+               libdir=\${prefix}/$(get_libdir)
+               includedir=\${prefix}/include
+               Name: ${PN}
+               Description: ${DESCRIPTION}
+               Version: ${PV}
+               URL: ${HOMEPAGE}
+               Cflags: -I\${includedir}
+       EOF
+       cp ${PN}.pc.template ${PN}.pc || die
+       cat <<-EOF >> ${PN}.pc
+               Libs: -L\${libdir} -ltbb
+               Libs.private: -lm -lrt
+       EOF
+       cp ${PN}.pc.template ${PN}malloc.pc || die
+       cat <<-EOF >> ${PN}malloc.pc
+               Libs: -L\${libdir} -ltbbmalloc
+               Libs.private: -lm -lrt
+       EOF
+       cp ${PN}.pc.template ${PN}malloc_proxy.pc || die
+       cat <<-EOF >> ${PN}malloc_proxy.pc
+               Libs: -L\${libdir} -ltbbmalloc_proxy
+               Libs.private: -lrt
+               Requires: tbbmalloc
+       EOF
+}
+
+local_src_compile() {
+       cd "${S}"
+
+       local comp arch
+
+       case ${MULTILIB_ABI_FLAG} in
+               abi_x86_64) arch=x86_64 ;;
+               abi_x86_32) arch=ia32 ;;
+               abi_ppc_64) arch=ppc64 ;;
+               abi_ppc_32) arch=ppc32 ;;
+       esac
+
+       case "$(tc-getCXX)" in
+               *g++*) comp="gcc" ;;
+               *ic*c) comp="icc" ;;
+               *clang*) comp="clang" ;;
+               *) die "compiler $(tc-getCXX) not supported by build system" ;;
+       esac
+
+       CXX="$(tc-getCXX)" \
+       CC="$(tc-getCC)" \
+       AS="$(tc-getAS)" \
+       arch=${arch} \
+       CPLUS_FLAGS="${CXXFLAGS}" \
+       emake compiler=${comp} work_dir="${BUILD_DIR}" tbb_root="${S}" $@
+}
+
+multilib_src_compile() {
+       local_src_compile tbb tbbmalloc
+}
+
+multilib_src_test() {
+       CXXFLAGS="${CXXFLAGS} -fabi-version=4" \
+       local_src_compile -j1 test
+}
+
+multilib_src_install() {
+       local bt
+       local buildtypes
+       if use debug ; then
+               buildtypes="release debug"
+       else
+               buildtypes="release"
+       fi
+       for bt in ${buildtypes}; do
+               cd "${BUILD_DIR}_${bt}" || die
+               local l
+               for l in $(find . -name lib\*$(get_libname \*)); do
+                       dolib.so ${l}
+                       local bl=$(basename ${l})
+                       dosym ${bl} /usr/$(get_libdir)/${bl%%.*}$(get_libname)
+               done
+       done
+
+       cd "${BUILD_DIR}" || die
+       insinto /usr/$(get_libdir)/pkgconfig
+       doins *.pc
+}
+
+multilib_src_install_all() {
+       doheader -r include/*
+
+       dodoc README CHANGES doc/Release_Notes.txt
+       use doc && dohtml -r doc/html/*
+
+       if use examples ; then
+               insinto /usr/share/doc/${PF}/examples/build
+               doins build/*.inc
+               insinto /usr/share/doc/${PF}/examples
+               doins -r examples
+       fi
+}

Reply via email to