blob: 861a3cc6afb11adf7c97262fd17cf1d46eba5f7e (
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
|
# Copyright 1999-2022 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
PYTHON_COMPAT=( python3_{9,10} )
inherit cmake python-single-r1
DESCRIPTION="GNU Radio IIO Blocks"
HOMEPAGE="https://github.com/analogdevicesinc/gr-iio"
if [ "${PV}" = "9999" ]; then
EGIT_REPO_URI="https://github.com/analogdevicesinc/gr-iio"
EGIT_BRANCH="upgrade-3.8"
inherit git-r3
else
COMMIT="407865f89b92daa89fec5c2b3c0e44bb422ef9d3"
SRC_URI="https://github.com/analogdevicesinc/gr-iio/archive/${COMMIT}.tar.gz -> ${P}.tar.gz"
S="${WORKDIR}/${PN}-${COMMIT}"
KEYWORDS="~amd64 ~riscv ~x86"
fi
LICENSE="GPL-3+"
SLOT="0"
REQUIRED_USE=${PYTHON_REQUIRED_USE}
RDEPEND="${PYTHON_DEPS}
$(python_gen_cond_dep '
dev-libs/boost:=[python,${PYTHON_USEDEP}]
')
net-wireless/gnuradio:0=[${PYTHON_SINGLE_USEDEP}]
!net-wireless/gnuradio[iio(-)]
dev-libs/boost:=
net-libs/libiio:=
dev-libs/gmp
sci-libs/volk:=
net-libs/libad9361-iio:="
DEPEND="${RDEPEND}
sys-devel/flex:=
sys-devel/bison:=
dev-util/cppunit:=
dev-lang/swig:0"
src_install() {
cmake_src_install
# Remove stray python files generated by the build system
find "${ED}" -name '*.pyc' -exec rm -f {} \; || die
find "${ED}" -name '*.pyo' -exec rm -f {} \; || die
python_optimize
}
|