blob: abe8da3489f0eeb37174674a4a206edce6ed2171 (
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
|
# Copyright 1999-2023 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=7
PYTHON_COMPAT=( python3_{9..10} )
#https://github.com/gnuradio/volk/issues/383
CMAKE_BUILD_TYPE="None"
inherit cmake python-single-r1
DESCRIPTION="vector optimized library of kernels"
HOMEPAGE="http://libvolk.org"
SRC_URI="https://github.com/gnuradio/volk/releases/download/v${PV}/${P}.tar.xz"
LICENSE="GPL-3"
SLOT="0/$(ver_cut 1-2)"
KEYWORDS="~amd64 ~arm ~riscv ~x86"
IUSE="orc test"
REQUIRED_USE="${PYTHON_REQUIRED_USE}"
RDEPEND="${PYTHON_DEPS}
!<net-wireless/gnuradio-3.8
dev-libs/boost:=
orc? ( dev-lang/orc )"
DEPEND="${RDEPEND}
$(python_gen_cond_dep 'dev-python/mako[${PYTHON_USEDEP}]
dev-python/six[${PYTHON_USEDEP}]')"
RESTRICT="test"
src_configure() {
local mycmakeargs=(
-DENABLE_ORC=$(usex orc)
-DPYTHON_EXECUTABLE="${PYTHON}"
-DENABLE_TESTING="$(usex test)"
-DENABLE_PROFILING=OFF
)
cmake_src_configure
}
src_install() {
cmake_src_install
python_optimize
}
|