mirror of
https://github.com/gentoo-mirror/guru.git
synced 2026-07-15 18:13:10 -04:00
Closes: https://bugs.gentoo.org/815889 Package-Manager: Portage-3.0.26, Repoman-3.0.3 Signed-off-by: Alessandro Barbieri <lssndrbarbieri@gmail.com>
89 lines
1.8 KiB
Bash
89 lines
1.8 KiB
Bash
# Copyright 1999-2021 Gentoo Authors
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
|
|
EAPI=8
|
|
|
|
DOCS_BUILDER="sphinx"
|
|
DOCS_DEPEND="
|
|
dev-python/breathe
|
|
dev-python/sphinx-bootstrap-theme
|
|
"
|
|
DOCS_DIR="docs"
|
|
PYTHON_COMPAT=( python3_{8..10} )
|
|
|
|
inherit cmake python-any-r1 docs
|
|
|
|
DESCRIPTION="VexCL - Vector expression template library for OpenCL"
|
|
HOMEPAGE="https://github.com/ddemidov/vexcl"
|
|
SRC_URI="https://github.com/ddemidov/vexcl/archive/refs/tags/${PV}.tar.gz -> ${P}.tar.gz"
|
|
|
|
LICENSE="MIT"
|
|
SLOT="0"
|
|
KEYWORDS="~amd64"
|
|
IUSE_BACKEND="
|
|
backend-compute
|
|
backend-jit
|
|
+backend-opencl
|
|
"
|
|
# backend-cuda
|
|
IUSE="${IUSE_BACKEND} amdsi clhpp examples test" #clogs
|
|
|
|
RDEPEND="
|
|
dev-libs/boost:=
|
|
backend-jit? ( virtual/opencl )
|
|
backend-opencl? ( virtual/opencl )
|
|
"
|
|
DEPEND="${RDEPEND}"
|
|
|
|
PATCHES=(
|
|
"${FILESDIR}/add-sphinx-ext-autodoc-to-conf-py.patch"
|
|
"${FILESDIR}/${P}-include-map.patch"
|
|
)
|
|
REQUIRED_USE="
|
|
^^ ( ${IUSE_BACKEND//+/} )
|
|
"
|
|
RESTRICT="!test? ( test )"
|
|
|
|
src_prepare() {
|
|
sed -e "s|git_version()|\'${PV}\'|g" -i docs/conf.py || die
|
|
cmake_src_prepare
|
|
}
|
|
|
|
src_configure() {
|
|
local backend
|
|
# use && backend="All"
|
|
use backend-compute && backend="Compute"
|
|
# use backend-cuda && backend="CUDA"
|
|
use backend-jit && backend="JIT"
|
|
use backend-opencl && backend="OpenCL"
|
|
|
|
local mycmakeargs=(
|
|
-DVEXCL_BUILD_EXAMPLES=OFF
|
|
|
|
-DVEXCL_AMD_SI_WORKAROUND=$(usex amdsi)
|
|
-DVEXCL_BACKEND="${backend}"
|
|
-DVEXCL_BUILD_TESTS=$(usex test)
|
|
-DVEXCL_INSTALL_CL_HPP=$(usex clhpp)
|
|
)
|
|
# -DVEXCL_CLOGS=$(usex clogs)
|
|
|
|
cmake_src_configure
|
|
}
|
|
|
|
src_compile() {
|
|
cmake_src_compile
|
|
docs_compile
|
|
}
|
|
|
|
src_install() {
|
|
cmake_src_install
|
|
if use doc; then
|
|
dodoc -r docs/html
|
|
docompress -x "/usr/share/doc/${P}/html"
|
|
fi
|
|
if use examples; then
|
|
dodoc -r examples
|
|
docompress -x "/usr/share/doc/${P}/examples"
|
|
fi
|
|
}
|