blob: aa9c284b7d7421d08e0bffa7b65084e4bfebc7fb (
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
97
98
99
100
101
102
103
|
# Copyright 1999-2005 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/net-wireless/ipw2200/ipw2200-1.0.8-r1.ebuild,v 1.2 2005/11/17 13:37:07 brix Exp $
inherit eutils linux-mod
# The following works with both pre-releases and releases
MY_P=${P/_/-}
S=${WORKDIR}/${MY_P}
IEEE80211_VERSION="1.1.6"
FW_VERSION="2.4"
DESCRIPTION="Driver for the Intel PRO/Wireless 2200BG/2915ABG miniPCI and 2225BG PCI adapters"
HOMEPAGE="http://ipw2200.sourceforge.net"
SRC_URI="mirror://sourceforge/${PN}/${MY_P}.tgz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~amd64 x86"
IUSE="debug radiotap"
DEPEND=">=net-wireless/ieee80211-${IEEE80211_VERSION}
sys-apps/sed"
RDEPEND=">=net-wireless/ieee80211-${IEEE80211_VERSION}
=net-wireless/ipw2200-firmware-${FW_VERSION}
net-wireless/wireless-tools"
BUILD_TARGETS="all"
MODULE_NAMES="ipw2200(net/wireless:)"
MODULESD_IPW2200_DOCS="README.ipw2200"
CONFIG_CHECK="NET_RADIO FW_LOADER !IPW2200"
ERROR_NET_RADIO="${P} requires support for Wireless LAN drivers (non-hamradio) & Wireless Extensions (CONFIG_NET_RADIO)."
ERROR_FW_LOADER="${P} requires Hotplug firmware loading support (CONFIG_FW_LOADER)."
ERROR_IPW2200="${P} requires the in-kernel version of the IPW2200 driver to be disabled (CONFIG_IPW2200)"
pkg_setup() {
linux-mod_pkg_setup
if kernel_is 2 4; then
die "${P} does not support building against kernel 2.4.x"
fi
if [[ ! -f /lib/modules/${KV_FULL}/net/ieee80211/ieee80211.${KV_OBJ} ]]; then
eerror
eerror "Looks like you forgot to remerge net-wireless/ieee80211 after"
eerror "upgrading your kernel."
eerror
eerror "Hint: use sys-kernel/module-rebuild for keeping track of which"
eerror "modules needs to be remerged after a kernel upgrade."
eerror
die "/lib/modules/${KV_FULL}/net/ieee80211/ieee80211.${KV_OBJ} not found"
fi
BUILD_PARAMS="KSRC=${KV_DIR} KSRC_OUTPUT=${KV_OUT_DIR} IEEE80211_INC=/usr/include"
}
src_unpack() {
local debug="n" radiotap="n"
unpack ${A}
cd ${S}
epatch ${FILESDIR}/${P}-txbusy.patch
epatch ${FILESDIR}/${P}-broadcast.patch
epatch ${FILESDIR}/${P}-slabcorrupt.patch
use debug && debug="y"
sed -i -e "s:^\(CONFIG_IPW_DEBUG\)=.*:\1=${debug}:" ${S}/Makefile
use radiotap && radiotap="y"
sed -i -e "s:^#\(CONFIG_IEEE80211_RADIOTAP\)=.*:\1=${radiotap}:" ${S}/Makefile || die
}
src_compile() {
linux-mod_src_compile
einfo
einfo "You may safely ignore any warnings from above compilation about"
einfo "undefined references to the ieee80211 subsystem."
einfo
}
src_install() {
linux-mod_src_install
dodoc CHANGES ISSUES
}
pkg_postinst() {
linux-mod_pkg_postinst
if [ -f /lib/modules/${KV_FULL}/net/${PN}.ko ]; then
einfo
einfo "Modules from an earlier installation detected. You will need to manually"
einfo "remove those modules by running the following commands:"
einfo " # rm -f /lib/modules/${KV_FULL}/net/${PN}.ko"
einfo " # rm -f /lib/modules/${KV_FULL}/net/ieee80211*.ko"
einfo " # depmod -a"
einfo
fi
}
|