diff options
author | Andrew Ammerlaan <andrewammerlaan@gentoo.org> | 2022-12-06 19:53:10 +0100 |
---|---|---|
committer | Andrew Ammerlaan <andrewammerlaan@gentoo.org> | 2022-12-06 19:53:10 +0100 |
commit | cc501074ea4617a32c89034fe0024eabba39b080 (patch) | |
tree | 7f12c1cb772d19c348ce9d9fa2bc29e0348eb545 /sys-devel | |
parent | licenses: cleanup (diff) | |
download | sci-cc501074ea4617a32c89034fe0024eabba39b080.tar.gz sci-cc501074ea4617a32c89034fe0024eabba39b080.tar.bz2 sci-cc501074ea4617a32c89034fe0024eabba39b080.zip |
sys-devel/oneDPL: restrict doc building, missing deps
Signed-off-by: Andrew Ammerlaan <andrewammerlaan@gentoo.org>
Diffstat (limited to 'sys-devel')
-rw-r--r-- | sys-devel/oneDPL/oneDPL-2021.7.1.ebuild | 22 |
1 files changed, 11 insertions, 11 deletions
diff --git a/sys-devel/oneDPL/oneDPL-2021.7.1.ebuild b/sys-devel/oneDPL/oneDPL-2021.7.1.ebuild index e9f773726..01f225aea 100644 --- a/sys-devel/oneDPL/oneDPL-2021.7.1.ebuild +++ b/sys-devel/oneDPL/oneDPL-2021.7.1.ebuild @@ -3,11 +3,12 @@ EAPI=8 -PYTHON_COMPAT=( python3_{8..11} ) -DOCS_BUILDER="sphinx" -DOCS_DIR="documentation/library_guide" -DOCS_AUTODOC=0 -inherit cmake python-any-r1 docs +# Missing deps for documentation +# PYTHON_COMPAT=( python3_{8..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" @@ -25,8 +26,8 @@ BDEPEND="virtual/pkgconfig" DEPEND=" sys-devel/DPC++ - dev-libs/level-zero:= - dev-cpp/tbb:= + dev-libs/level-zero + dev-cpp/tbb " RDEPEND="${DEPEND}" @@ -46,12 +47,11 @@ src_configure() { } src_compile() { - # Nothing to compile, header only - docs_compile + cmake_src_compile + # docs_compile } src_install() { einstalldocs - dodir /usr/include - mv "${S}/include/oneapi" "${ED}/usr/include/" || die + doheader -r "${S}/include/oneapi" } |