blob: 36a54f59e1e629c30006094ade6c333101f257e3 (
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
|
# Copyright 1999-2017 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
EAPI=5
PYTHON_COMPAT=( python2_7 )
inherit autotools git-2 python-single-r1
DESCRIPTION="GSM receiver block from the airprobe suite"
HOMEPAGE="https://svn.berlin.ccc.de/projects/airprobe/"
SRC_URI=""
LICENSE="GPL-3"
SLOT="0"
KEYWORDS=""
IUSE=""
REQUIRED_USE="${PYTHON_REQUIRED_USE}"
RDEPEND="${PYTHON_DEPS}
net-libs/libosmocore
>=net-wireless/gnuradio-3.7_rc:0="
DEPEND="${RDEPEND}
virtual/pkgconfig"
EGIT_REPO_URI="git://git.gnumonks.org/airprobe.git"
EGIT_SOURCEDIR="${S}"
S+=/${PN}
src_prepare() {
epatch "${FILESDIR}"/0001-${PN}-build-against-gnuradio-3.7.patch
python_fix_shebang "${S}"
eautoreconf
}
src_configure() {
# fails to create .deps directory without dependency tracking
econf --enable-dependency-tracking
}
src_install() {
default
dobin src/python/*.py
insinto /usr/share/doc/${PF}/examples
doins src/python/*.sh
}
|