blob: 00c8e385e9b792560d739d390ad389739ef7923a (
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
|
# Copyright 1999-2007 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/net-wireless/rfswitch/rfswitch-1.1.ebuild,v 1.1 2007/02/10 10:58:08 phreak Exp $
inherit linux-mod
DESCRIPTION="Drivers for software based wireless radio switches"
HOMEPAGE="http://rfswitch.sourceforge.net/"
SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~x86"
IUSE=""
RDEPEND=""
BUILD_TARGETS="modules"
MODULE_NAMES="av5100(net/wireless:)
pbe5(net/wireless:)"
MODULESD_AV5100_DOCS="README"
# Use the in-kernel ipw2100 modules
CONFIG_CHECK="IPW2100"
ERROR_IPW2100="${P} requires support for ipw2100 (CONFIG_IPW2100)."
pkg_setup() {
linux-mod_pkg_setup
if kernel_is 2 4 ; then
die "${P} does not support building against kernel 2.4.x"
fi
BUILD_PARAMS="KSRC=${KV_DIR}"
}
src_unpack() {
unpack ${A}
convert_to_m "${S}"/Makefile
# Compile fixes for >=kernel-2.6.19
sed -i "s,#include <linux/config.h>,#include <linux/autoconf.h>," \
"${S}"/av5100.c "${S}"/pbe5.c
}
src_install() {
linux-mod_src_install
dodoc ISSUES
}
|