blob: ec962079850a0242e57743ed3c34dcf2f59f5788 (
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
|
# Copyright 1999-2007 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/net-wireless/iwlwifi/iwlwifi-1.1.21-r1.ebuild,v 1.2 2007/11/22 21:04:28 compnerd Exp $
inherit eutils linux-mod
DESCRIPTION="Intel (R) PRO/Wireless 3945ABG Network Drivers"
HOMEPAGE="http://intellinuxwireless.org/?p=iwlwifi"
SRC_URI="http://intellinuxwireless.org/${PN}/downloads/${P//_p/-}.tgz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE="ipw3945 ipw4965"
DEPEND=">=virtual/linux-sources-2.6.22"
RDEPEND="ipw3945? ( =net-wireless/iwl3945-ucode-2.14.1.5 )
ipw4965? ( =net-wireless/iwl4965-ucode-4.44.1.18 )
!ipw3945? ( !ipw4965? ( =net-wireless/iwl3945-ucode-2.14.1.5 =net-wireless/iwl4965-ucode-4.44.1.18 ) )"
pkg_setup() {
if kernel_is lt 2 6 22 ; then
eerror "iwlwifi requires a kernel >=2.6.22."
eerror "Please set your /usr/src/linux symlink accordingly."
die "invalid /usr/src/linux symlink"
else
CONFIG_CHECK="MAC80211"
fi
BUILD_PARAMS="KSRC=${KV_DIR} M=${S}"
linux-mod_pkg_setup
if use ipw3945 ; then
MODULE_NAMES="iwl3945(net/wireless:${S}/compatible)"
if ! use ipw4965 ; then
BUILD_PARAMS="${BUILD_PARAMS} CONFIG_IWL4965=n"
fi
fi
if use ipw4965 ; then
MODULE_NAMES="${MODULE_NAMES} iwl4965(net/wireless:${S}/compatible)"
if ! use ipw3945 ; then
BUILD_PARAMS="${BUILD_PARAMS} CONFIG_IWL3945=n"
fi
fi
if ! use ipw3945 && ! use ipw4965 ; then
einfo "Wireless card not selected, building all modules"
MODULE_NAMES="iwl3945(net/wireless:${S}/compatible) iwl4965(net/wireless:${S}/compatible)"
BUILD_PARAMS="${BUILD_PARAMS} CONFIG_IWL3945=m CONFIG_IWL4965=m"
fi
}
src_unpack() {
unpack ${A}
cd "${S}"
epatch "${FILESDIR}/CVE-2007-5938.patch"
}
src_compile() {
if [[ ${ARCH} == "amd64" ]] ; then
ARCH="x86_64"
else
ARCH="i386"
fi
make # generate the compatible sources (failure is expected)
make || die "compile failed"
}
pkg_postinst() {
linux-mod_pkg_postinst
elog "If you are switching from ipw3945, please cleanup your generated rules in"
elog "/etc/udev/rules.d/70-persistent-net.rules and run udev-trigger to"
elog "update them. Failure to do so may result in the device being named"
elog "improperly."
}
|