mirror of
https://anongit.gentoo.org/git/repo/gentoo.git
synced 2025-06-09 22:54:10 +02:00
net-wireless/rtl-sdr and net-wireless/rtl-sdr-blog cannot be installed at the same time, as net-wireless/rtl-sdr-blog is a modified fork. Bug: https://bugs.gentoo.org/951174 Signed-off-by: Conrad Kostecki <conikost@gentoo.org>
61 lines
1.3 KiB
Bash
61 lines
1.3 KiB
Bash
# Copyright 1999-2025 Gentoo Authors
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
|
|
EAPI=8
|
|
|
|
inherit cmake udev
|
|
|
|
DESCRIPTION="Modified Osmocom drivers with enhancements for RTL-SDR Blog V3 and V4 units"
|
|
HOMEPAGE="https://github.com/rtlsdrblog/rtl-sdr-blog"
|
|
SRC_URI="https://github.com/rtlsdrblog/${PN}/archive/refs/tags/v${PV}.tar.gz -> ${P}.gh.tar.gz"
|
|
|
|
LICENSE="GPL-2+ GPL-3+"
|
|
SLOT="0"
|
|
KEYWORDS="~amd64 ~arm ~arm64 ~ppc ~ppc64 ~riscv ~sparc ~x86"
|
|
IUSE="+zerocopy"
|
|
|
|
DEPEND="virtual/libusb:1"
|
|
RDEPEND="
|
|
${DEPEND}
|
|
!net-wireless/rtl-sdr
|
|
"
|
|
|
|
PATCHES=(
|
|
"${FILESDIR}/${PN}-1.3.6-disable-static.patch"
|
|
"${FILESDIR}/${PN}-1.3.6-pkgconfig-libdir.patch"
|
|
"${FILESDIR}/${PN}-1.3.6-udev-rules-path.patch"
|
|
|
|
)
|
|
|
|
src_prepare() {
|
|
cmake_src_prepare
|
|
|
|
# Set proper so file version name
|
|
sed -e '/VERSION_INFO_PATCH_VERSION/ s/git/0/g' -i CMakeLists.txt || die
|
|
}
|
|
|
|
src_configure() {
|
|
local mycmakeargs=(
|
|
-DCVF_VERSION="${PV}"
|
|
-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 rtl_tcp
|
|
newconfd "${FILESDIR}"/rtl_tcp.confd 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
|
|
}
|