blob: 03dbb86aa78cfda4b506a124ae312001483e4005 (
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
|
# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/net-wireless/crda/crda-1.1.3-r1.ebuild,v 1.2 2014/07/30 19:19:34 ssuominen Exp $
EAPI=4
PYTHON_COMPAT=( python{2_5,2_6,2_7} )
inherit eutils toolchain-funcs python-any-r1 udev
DESCRIPTION="Central Regulatory Domain Agent for wireless networks"
HOMEPAGE="http://wireless.kernel.org/en/developers/Regulatory"
SRC_URI="http://linuxwireless.org/download/crda/${P}.tar.bz2"
LICENSE="ISC"
SLOT="0"
KEYWORDS="~alpha ~amd64 ~arm ~ia64 ~mips ~ppc ~ppc64 ~sparc ~x86"
IUSE=""
RDEPEND="dev-libs/openssl:0
dev-libs/libnl:3
net-wireless/wireless-regdb"
DEPEND="${RDEPEND}
dev-python/m2crypto
=dev-lang/python-2*
virtual/pkgconfig"
src_prepare() {
epatch "${FILESDIR}"/${P}-missing-include.patch
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/' \
UDEV_RULE_DIR="$(get_udevdir)/rules.d" \
REG_BIN=/usr/lib/crda/regulatory.bin \
USE_OPENSSL=1 \
CC="$(tc-getCC)" \
V=1 \
"$@"
}
src_compile() {
_emake all_noverify
}
src_test() {
_emake verify
}
src_install() {
_emake DESTDIR="${D}" install
keepdir /etc/wireless-regdb/pubkeys
}
|