blob: a96261eec57edd1702167560fbdb2f34f4e28d3d (
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
|
# Copyright 1999-2006 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/net-wireless/rt2x00/rt2x00-2.0.0_beta3.ebuild,v 1.3 2006/08/17 11:55:34 uberlord Exp $
inherit linux-mod eutils
IEEE80211_VERSION="1.1.6"
MY_P="${P/_beta/-b}"
S="${WORKDIR}/${MY_P}"
DESCRIPTION="Driver for the RaLink RT2x00 wireless chipsets"
HOMEPAGE="http://rt2x00.serialmonkey.com"
SRC_URI="mirror://sourceforge/rt2400/${MY_P}.tar.gz"
LICENSE="GPL-2"
KEYWORDS="~amd64 ~x86"
IUSE="debug"
DEPEND=">=net-wireless/ieee80211-${IEEE80211_VERSION}"
RDEPEND="${DEPEND}
net-wireless/wireless-tools"
MODULE_NAMES="
rt2x00core(net/wireless:) rt2400pci(net/wireless:)
rt2500pci(net/wireless:) rt2500usb(net/wireless:)
"
CONFIG_CHECK="NET_RADIO"
ERROR_NET_RADIO="${P} requires support for Wireless LAN drivers (non-hamradio) & Wireless Extensions (CONFIG_NET_RADIO)."
pkg_setup() {
kernel_is lt 2 6 13 && die "${P} requires at least kernel 2.6.13"
linux-mod_pkg_setup
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="KERNDIR=${KV_DIR} KERNOUT=${KV_OUT_DIR}"
if use debug ; then
BUILD_TARGETS="rt2x00-debug"
else
BUILD_TARGETS="rt2x00-nodebug"
fi
}
src_unpack() {
unpack ${A}
cd "${S}"
# Allow compilation on newer kernels
epatch "${FILESDIR}/${P}-compat.patch"
}
src_install() {
linux-mod_src_install
dodoc CHANGELOG COPYING README THANKS
}
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
}
pkg_postinst() {
linux-mod_pkg_postinst
ewarn
ewarn "This is a BETA driver. If you have any issues, test the cvs ebuild"
ewarn "as your issue may have already been fixed."
ewarn "Please report any bugs to the rt2x00 forums :-"
ewarn "http://rt2x00.serialmonkey.com/phpBB2/viewforum.php?f=5"
ewarn
ewarn "Any bugs reported to Gentoo will be marked INVALID"
ewarn
}
|