aboutsummaryrefslogtreecommitdiff
blob: 7db9cb0b69325cb2445f54eb131413d170f1b355 (plain)
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
49
50
51
52
53
54
55
56
57
58
# Copyright 2022 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2

EAPI=8

# Missing deps for documentation
# PYTHON_COMPAT=( python3_{10..11} )
# DOCS_BUILDER="sphinx"
# DOCS_DIR="documentation/library_guide"
# DOCS_AUTODOC=0
inherit cmake #python-any-r1 docs

DESCRIPTION="oneAPI Data Parallel C++ Library"
HOMEPAGE="https://github.com/oneapi-src/oneDPL"
SRC_URI="https://github.com/oneapi-src/oneDPL/archive/refs/tags/${P}-release.tar.gz"
S="${WORKDIR}/${PN}-${P}-release"

LICENSE="Apache-2.0-with-LLVM-exceptions"
SLOT="0"
KEYWORDS="~amd64"

#TODO: Figure out how to use the test
RESTRICT="test"

BDEPEND="virtual/pkgconfig"

DEPEND="
	sys-devel/DPC++:0/5
	dev-libs/level-zero
	dev-cpp/tbb
"
RDEPEND="${DEPEND}"

src_prepare() {
	# Not using the DPC++ compiler doesn't really make sense here
	export CXX="${ESYSROOT}/usr/lib/llvm/intel/bin/clang++"
	export CC="${ESYSROOT}/usr/lib/llvm/intel/bin/clang"
	cmake_src_prepare
}

src_configure() {
	local mycmakeargs=(
		-DONEDPL_DEVICE_BACKEND="level_zero"
		-DONEDPL_BACKEND="dpcpp"
	)

	cmake_src_configure
}

src_compile() {
	cmake_src_compile
	# docs_compile
}

src_install() {
	einstalldocs
	doheader -r "${S}/include/oneapi"
}