blob: 7d099f4a803b82c00ff31e220a9198c647298b44 (
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
|
# 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.4.ebuild,v 1.3 2005/07/11 16:47:50 brix Exp $
inherit eutils linux-mod
# The following works with both pre-releases and releases
MY_P=${P/_/-}
S=${WORKDIR}/${MY_P}
FW_VERSION="2.3"
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="~x86 ~amd64"
IUSE="debug"
DEPEND="!net-wireless/ieee80211
!net-wireless/ipw2100"
RDEPEND="${DEPEND}
=net-wireless/ipw2200-firmware-${FW_VERSION}
net-wireless/wireless-tools"
BUILD_TARGETS="all"
MODULE_NAMES="ipw2200(net:)
ieee80211(net:)
ieee80211_crypt(net:)
ieee80211_crypt_wep(net:)
ieee80211_crypt_ccmp(net:)
ieee80211_crypt_tkip(net:)"
MODULESD_IPW2200_DOCS="README.ipw2200"
CONFIG_CHECK="NET_RADIO CRYPTO_ARC4 CRYPTO_MICHAEL_MIC FW_LOADER CRC32"
ERROR_NET_RADIO="${P} requires support for Wireless LAN drivers (non-hamradio) & Wireless Extensions (CONFIG_NET_RADIO)."
ERROR_CRYPTO_ARC4="${P} requires support for ARC4 cipher algorithm (CONFIG_CRYPTO_ARC4)."
ERROR_CRYPTO_MICHAEL_MIC="${P} requires support for Michael MIC keyed digest algorithm (CONFIG_CRYPTO_MICHAEL_MIC)."
ERROR_FW_LOADER="${P} requires Hotplug firmware loading support (CONFIG_FW_LOADER)."
ERROR_CRC32="${P} requires support for CRC32 functions (CONFIG_CRC32)."
pkg_setup() {
if kernel_is 2 4; then
die "${P} does not support building against kernel 2.4.x"
fi
if ! (linux_chkconfig_present CRYPTO_AES_586 || linux_chkconfig_present CRYPTO_AES); then
eerror "${P} requires support for AES cipher algorithms (i586) (CONFIG_CRYPTO_AES_586)."
eerror "This option is called CONFIG_CRYPTO_AES in kernels prior to 2.6.8."
die "CONFIG_CRYPTO_AES_586 support not detected"
fi
linux-mod_pkg_setup
BUILD_PARAMS="KSRC=${KV_DIR}"
}
src_unpack() {
local debug="n"
unpack ${A}
cd ${S}
epatch ${FILESDIR}/${P}-is_multicast_ether_addr.patch
use debug && debug="y"
sed -i \
-e "s:^\(CONFIG_IPW_DEBUG\)=.*:\1=$debug:" \
-e "s:^\(CONFIG_IEEE80211_DEBUG\)=.*:\1=$debug:" \
${S}/Makefile
if use_m; then
sed -i -e "s:\${SUBDIRS}:\${M}:" ${S}/Makefile
fi
convert_to_m ${S}/Makefile
}
src_install() {
linux-mod_src_install
dodoc CHANGES ISSUES
}
|