blob: 4d62896bf7af700b7b001c96f77910efb1e95175 (
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
|
# Copyright 1999-2013 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/net-analyzer/gsm-receiver/gsm-receiver-9999.ebuild,v 1.4 2013/07/10 11:27:17 chithanh Exp $
EAPI=5
PYTHON_DEPEND="2"
inherit autotools git-2 python
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=""
RDEPEND="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}
pkg_setup() {
python_set_active_version 2
python_pkg_setup
}
src_prepare() {
python_convert_shebangs -q -r 2 "${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
}
|