blob: 2f0110a44e235a169d6db113d7fb469e3a9b06ce (
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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
|
# Copyright 1999-2023 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
PYTHON_COMPAT=( python3_{10..12} )
inherit toolchain-funcs python-any-r1 udev
DESCRIPTION="Central Regulatory Domain Agent for wireless networks"
HOMEPAGE="https://wireless.wiki.kernel.org/en/developers/regulatory/crda"
SRC_URI="https://git.kernel.org/pub/scm/linux/kernel/git/mcgrof/crda.git/snapshot/${P}.tar.gz"
LICENSE="ISC"
SLOT="0"
KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~ia64 ~loong ~mips ~ppc ~ppc64 ~riscv ~sparc ~x86"
IUSE="gcrypt test"
RESTRICT="!test? ( test )"
RDEPEND="
dev-libs/libnl:3
net-wireless/wireless-regdb
!gcrypt? (
dev-libs/openssl:=
)
gcrypt? ( dev-libs/libgcrypt:= )
"
DEPEND="${RDEPEND}"
BDEPEND="
${PYTHON_DEPS}
$(python_gen_any_dep 'dev-python/m2crypto[${PYTHON_USEDEP}]')
test? ( net-wireless/wireless-regdb[crda(+)] )
virtual/pkgconfig
"
PATCHES=(
"${FILESDIR}"/${PN}-no-werror.patch
"${FILESDIR}"/${PN}-cflags.patch
"${FILESDIR}"/${PN}-4.14-python-3.patch
"${FILESDIR}"/${PN}-4.14-openssl-1.1.0-compatibility.patch # bug #652428
"${FILESDIR}"/${PN}-4.14-do-not-compress-doc.patch
"${FILESDIR}"/${PN}-4.15-no-ldconfig.patch
"${FILESDIR}"/${PN}-4.15-libreg-link.patch # bug #542436
"${FILESDIR}"/${PN}-4.15-ldflags.patch
)
python_check_deps() {
python_has_version "dev-python/m2crypto[${PYTHON_USEDEP}]"
}
src_prepare() {
default
sed -i \
-e "s:\<pkg-config\>:$(tc-getPKG_CONFIG):" \
Makefile || die
}
_emake() {
# The source hardcodes /usr/lib/crda/ paths (ignoring all make vars
# that look like it should change it). We want to use /usr/lib/
# anyways as this file is not ABI specific and we want to share it
# among all ABIs rather than pointlessly duplicate it.
#
# The trailing slash on SBINDIR is required by the source.
emake \
PREFIX="${EPREFIX}/usr" \
SBINDIR='$(PREFIX)/sbin/' \
LIBDIR='$(PREFIX)/'"$(get_libdir)" \
UDEV_RULE_DIR="$(get_udevdir)/rules.d" \
REG_BIN="${SYSROOT}"/usr/lib/crda/regulatory.bin \
USE_OPENSSL=$(usex gcrypt 0 1) \
CC="$(tc-getCC)" \
V=1 \
WERROR= \
"$@"
}
src_compile() {
_emake all_noverify
}
src_test() {
_emake verify
}
src_install() {
_emake DESTDIR="${D}" install
keepdir /etc/wireless-regdb/pubkeys
}
pkg_postinst() {
udev_reload
}
pkg_postrm() {
udev_reload
}
|