summaryrefslogtreecommitdiff
blob: fae046c0fa93695e109ff3f9ed961c2f6016067a (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
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Id$

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="~amd64 ~x86"
IUSE=""

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}
	cd "${S}"

	convert_to_m Makefile

	sed -i \
		-e '/depmod/d' \
		-e '/include.*Rules.*make/d' \
		Makefile || die

	sed -i -e 's:&proc_root:NULL:' {av5100,pbe5}.c || die #270269
}

src_install() {
	linux-mod_src_install

	dodoc ISSUES README
}