blob: 36b566530a435477e179aeec5cb25c74eb3f35cd (
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
|
# Copyright 1999-2023 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
inherit cmake udev
DESCRIPTION="Usemode driver and associated tools for airspy"
HOMEPAGE="http://www.airspy.com"
if [[ ${PV} == *9999 ]]; then
inherit git-r3
EGIT_REPO_URI="https://github.com/airspy/host.git"
else
SRC_URI="https://github.com/airspy/host/archive/v${PV}.tar.gz -> ${P}.tar.gz"
S="${WORKDIR}/airspyone_host-${PV}"
KEYWORDS="~amd64 ~arm ~riscv ~x86"
fi
LICENSE="GPL-2+"
SLOT="0"
IUSE="+udev"
RDEPEND="
virtual/udev
virtual/libusb:1"
DEPEND="${RDEPEND}"
PATCHES=( "${FILESDIR}"/${PN}-1.0.10-remove-static-libs.patch )
src_configure() {
local mycmakeargs=(
-DINSTALL_UDEV_RULES=$(usex udev)
)
cmake_src_configure
}
src_install() {
cmake_src_install
if use udev; then
udev_newrules "${ED}"/etc/udev/rules.d/52-airspy.rules 52-airspy.rules
rm -r "${ED}"/etc || die
fi
}
pkg_postinst() {
use udev && udev_reload
}
pkg_postrm() {
use udev && udev_reload
}
|