blob: 0e60c7de161ac8a39faebe743e575e3bd17de140 (
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
51
|
# Copyright 1999-2013 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Id$
EAPI=5
inherit autotools
DESCRIPTION="turns your Realtek RTL2832 based DVB dongle into a SDR receiver"
HOMEPAGE="http://sdr.osmocom.org/trac/wiki/rtl-sdr"
if [[ ${PV} == 9999* ]]; then
inherit git-2
SRC_URI=""
EGIT_REPO_URI="git://git.osmocom.org/${PN}.git"
KEYWORDS=""
else
SRC_URI="https://dev.gentoo.org/~zerochaos/distfiles/${P}.tar.xz"
KEYWORDS="~amd64 ~arm ~x86"
fi
LICENSE="GPL-2"
SLOT="0"
IUSE=""
RDEPEND="virtual/libusb:1"
DEPEND="${RDEPEND}"
DOCS=( ${PN}.rules )
src_unpack() {
if [[ ${PV} == 9999* ]]; then
git-2_src_unpack
else
default
mv ${PN} ${P} || die
fi
}
src_prepare() {
eautoreconf
}
pkg_postinst() {
local rulesfiles=( "${EPREFIX}"/etc/udev/rules.d/*${PN}.rules )
if [[ ! -f ${rulesfiles} ]]; then
elog "By default, only users in the usb group can capture."
elog "Just run 'gpasswd -a <USER> usb', then have <USER> re-login."
elog "Or the device can be WORLD readable and writable by installing ${PN}.rules"
elog "from the documentation directory to ${EPREFIX}/etc/udev/rules.d/"
fi
}
|