blob: 521b9853c53cf6ef0f25765bc1a4b197ad26fdde (
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
52
53
54
55
56
57
58
59
|
# Copyright 1999-2025 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
inherit cmake udev
DESCRIPTION="Turns your Realtek RTL2832 based DVB dongle into a SDR receiver"
HOMEPAGE="https://sdr.osmocom.org/trac/wiki/rtl-sdr"
if [[ ${PV} == 9999* ]]; then
inherit git-r3
EGIT_REPO_URI="https://git.osmocom.org/${PN}"
else
SRC_URI="https://github.com/osmocom/rtl-sdr/archive/refs/tags/v${PV}.tar.gz -> ${P}.gh.tar.gz"
KEYWORDS="~amd64 ~arm ~arm64 ~ppc ~ppc64 ~riscv ~sparc ~x86"
fi
LICENSE="GPL-2+ GPL-3+"
SLOT="0"
IUSE="+zerocopy"
DEPEND="virtual/libusb:1"
RDEPEND="
${DEPEND}
!net-wireless/rtl-sdr-blog
"
PATCHES=(
"${FILESDIR}/${PN}-2.0.2-disable-static.patch"
"${FILESDIR}/${PN}-2.0.2-pkgconfig-libdir.patch"
"${FILESDIR}/${PN}-2.0.2-udev-rules-path.patch"
)
src_configure() {
local mycmakeargs=(
-DDETACH_KERNEL_DRIVER="ON"
-DENABLE_ZEROCOPY="$(usex zerocopy)"
-DINSTALL_UDEV_RULES="ON"
)
cmake_src_configure
}
src_install() {
cmake_src_install
newinitd "${FILESDIR}"/rtl_tcp.initd-r1 rtl_tcp
newconfd "${FILESDIR}"/rtl_tcp.confd-r1 rtl_tcp
}
pkg_postinst() {
udev_reload
elog "Only users in the usb group can capture."
elog "Just run 'gpasswd -a <USER> usb', then have <USER> re-login."
}
pkg_postrm() {
udev_reload
}
|