blob: 8a12043c051757c1fde0242ac9241d061ddaf5a0 (
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
|
# Copyright 1999-2019 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
# $Id$
EAPI=7
inherit cmake-utils 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 ~x86"
fi
LICENSE="GPL-2+"
SLOT="0"
IUSE="+udev"
DEPEND="virtual/udev
virtual/libusb:1"
RDEPEND="${DEPEND}"
src_configure() {
local mycmakeargs=(
-DINSTALL_UDEV_RULES=$(usex udev)
)
cmake-utils_src_configure
}
src_install() {
cmake-utils_src_install
if use udev; then
udev_newrules "${D}etc/udev/rules.d/52-airspy.rules" 52-airspy.rules
rm -rf "${D}etc"
fi
}
pkg_postinst() {
use udev && udev_reload
}
|