mirror of
https://github.com/pentoo/pentoo-overlay
synced 2026-04-25 16:20:55 +02:00
39 lines
1.2 KiB
Bash
39 lines
1.2 KiB
Bash
# Copyright 1999-2009 Gentoo Foundation
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
# $Header: /var/cvsroot/gentoo-x86/net-wireless/crda/crda-1.0.1-r1.ebuild,v 1.2 2009/01/29 18:37:01 gentoofan23 Exp $
|
|
|
|
inherit toolchain-funcs multilib
|
|
|
|
DESCRIPTION="Central Regulatory Domain Agent for wireless networks."
|
|
HOMEPAGE="http://wireless.kernel.org/en/developers/Regulatory"
|
|
SRC_URI="http://wireless.kernel.org/download/crda/${P}.tar.bz2"
|
|
LICENSE="as-is"
|
|
SLOT="0"
|
|
|
|
DESIRED_REGDB="20090817"
|
|
KEYWORDS="amd64 ~ppc ~ppc64 x86"
|
|
IUSE=""
|
|
DEPEND="dev-libs/libgcrypt
|
|
dev-libs/libnl
|
|
dev-python/m2crypto
|
|
=net-wireless/wireless-regdb-${DESIRED_REGDB}"
|
|
RDEPEND="dev-libs/libnl
|
|
=net-wireless/wireless-regdb-${DESIRED_REGDB}"
|
|
# I am "pretty sure" about the rdepends
|
|
|
|
src_unpack() {
|
|
unpack ${A}
|
|
|
|
##Make sure we install the rules where udev rules go...
|
|
sed -i -e "/^UDEV_RULE_DIR/s:lib:$(get_libdir):" "${S}"/Makefile || die \
|
|
"Makefile sed failed"
|
|
cp /usr/lib/crda/custom-distro.key.pub.pem ${S}/pubkeys/ || die "please 'emerge -1 =wireless-regdb-${DESIRED_REGDB}', sorry"
|
|
}
|
|
|
|
src_compile() {
|
|
emake CC="$(tc-getCC)" || die "Compilation failed"
|
|
}
|
|
|
|
src_install() {
|
|
emake DESTDIR="${D}" install || die "emake install failed"
|
|
}
|