mirror of
https://github.com/gentoo-mirror/gentoo.git
synced 2026-08-23 18:38:08 -07:00
Closes: https://bugs.gentoo.org/827883 Signed-off-by: Alex Fan <alex.fan.q@gmail.com> Closes: https://github.com/gentoo/gentoo/pull/23878 Signed-off-by: Sam James <sam@gentoo.org>
40 lines
1003 B
Bash
40 lines
1003 B
Bash
# Copyright 1999-2022 Gentoo Authors
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
|
|
EAPI=8
|
|
|
|
inherit cmake-multilib
|
|
|
|
DESCRIPTION="High level abstract threading library"
|
|
HOMEPAGE="https://www.threadingbuildingblocks.org"
|
|
SRC_URI="https://github.com/oneapi-src/oneTBB/archive/refs/tags/v${PV}.tar.gz -> ${P}.tar.gz"
|
|
S="${WORKDIR}/oneTBB-${PV}"
|
|
|
|
LICENSE="Apache-2.0"
|
|
# https://github.com/oneapi-src/oneTBB/blob/master/CMakeLists.txt#L53
|
|
# libtbb<SONAME>-libtbbmalloc<SONAME>-libtbbbind<SONAME>
|
|
SLOT="0/12-2-3"
|
|
KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~riscv ~sparc ~x86 ~amd64-linux ~x86-linux"
|
|
IUSE="test"
|
|
RESTRICT="!test? ( test )"
|
|
|
|
RDEPEND="sys-apps/hwloc:="
|
|
DEPEND="${RDEPEND}"
|
|
BDEPEND="virtual/pkgconfig"
|
|
|
|
PATCHES=(
|
|
"${FILESDIR}"/${P}-lto.patch
|
|
# bug 827883
|
|
"${FILESDIR}"/${P}-missing-TBB_machine_fetchadd4.patch
|
|
)
|
|
|
|
src_configure() {
|
|
local mycmakeargs=(
|
|
-DTBB_TEST=$(usex test)
|
|
-DTBB_ENABLE_IPO=OFF
|
|
-DTBB_STRICT=OFF
|
|
)
|
|
|
|
cmake-multilib_src_configure
|
|
}
|