Gentoo Archives: gentoo-commits

From: "Saleem Abdulrasool (compnerd)" <compnerd@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in net-wireless/iwlwifi: ChangeLog iwlwifi-1.2.22.ebuild
Date: Wed, 12 Dec 2007 02:59:08
Message-Id: E1J2HoH-0002iD-BZ@stork.gentoo.org
1 compnerd 07/12/12 02:58:57
2
3 Modified: ChangeLog
4 Added: iwlwifi-1.2.22.ebuild
5 Log:
6 version bump from upstream
7 (Portage version: 2.1.4_rc9)
8
9 Revision Changes Path
10 1.13 net-wireless/iwlwifi/ChangeLog
11
12 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-wireless/iwlwifi/ChangeLog?rev=1.13&view=markup
13 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-wireless/iwlwifi/ChangeLog?rev=1.13&content-type=text/plain
14 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-wireless/iwlwifi/ChangeLog?r1=1.12&r2=1.13
15
16 Index: ChangeLog
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/net-wireless/iwlwifi/ChangeLog,v
19 retrieving revision 1.12
20 retrieving revision 1.13
21 diff -u -r1.12 -r1.13
22 --- ChangeLog 22 Nov 2007 21:04:28 -0000 1.12
23 +++ ChangeLog 12 Dec 2007 02:58:56 -0000 1.13
24 @@ -1,6 +1,12 @@
25 # ChangeLog for net-wireless/iwlwifi
26 # Copyright 1999-2007 Gentoo Foundation; Distributed under the GPL v2
27 -# $Header: /var/cvsroot/gentoo-x86/net-wireless/iwlwifi/ChangeLog,v 1.12 2007/11/22 21:04:28 compnerd Exp $
28 +# $Header: /var/cvsroot/gentoo-x86/net-wireless/iwlwifi/ChangeLog,v 1.13 2007/12/12 02:58:56 compnerd Exp $
29 +
30 +*iwlwifi-1.2.22 (12 Dec 2007)
31 +
32 + 12 Dec 2007; Saleem Abdulrasool <compnerd@g.o>
33 + +iwlwifi-1.2.22.ebuild:
34 + Version bump from upstream
35
36 22 Nov 2007; Saleem Abdulrasool <compnerd@g.o>
37 iwlwifi-1.1.21-r1.ebuild:
38
39
40
41 1.1 net-wireless/iwlwifi/iwlwifi-1.2.22.ebuild
42
43 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-wireless/iwlwifi/iwlwifi-1.2.22.ebuild?rev=1.1&view=markup
44 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-wireless/iwlwifi/iwlwifi-1.2.22.ebuild?rev=1.1&content-type=text/plain
45
46 Index: iwlwifi-1.2.22.ebuild
47 ===================================================================
48 # Copyright 1999-2007 Gentoo Foundation
49 # Distributed under the terms of the GNU General Public License v2
50 # $Header: /var/cvsroot/gentoo-x86/net-wireless/iwlwifi/iwlwifi-1.2.22.ebuild,v 1.1 2007/12/12 02:58:56 compnerd Exp $
51
52 inherit eutils linux-mod
53
54 DESCRIPTION="Intel (R) PRO/Wireless 3945ABG Network Drivers"
55 HOMEPAGE="http://intellinuxwireless.org/?p=iwlwifi"
56 SRC_URI="http://intellinuxwireless.org/${PN}/downloads/${P//_p/-}.tgz"
57
58 LICENSE="GPL-2"
59 SLOT="0"
60 KEYWORDS="~amd64 ~x86"
61 IUSE="ipw3945 ipw4965"
62
63 DEPEND="|| ( =virtual/linux-sources-2.6.22* =virtual/linux-sources-2.6.23* )"
64 RDEPEND="ipw3945? ( =net-wireless/iwl3945-ucode-2.14.1.5 )
65 ipw4965? ( =net-wireless/iwl4965-ucode-4.44.1.18 )
66 !ipw3945? ( !ipw4965? ( =net-wireless/iwl3945-ucode-2.14.1.5 =net-wireless/iwl4965-ucode-4.44.1.18 ) )"
67
68 pkg_setup() {
69 if kernel_is lt 2 6 22 ; then
70 eerror "iwlwifi requires a kernel >=2.6.22."
71 eerror "Please set your /usr/src/linux symlink accordingly."
72 die "invalid /usr/src/linux symlink"
73 else
74 CONFIG_CHECK="MAC80211"
75 fi
76
77 if kernel_is gt 2 6 23 ; then
78 eerror "iwlwifi is included in 2.6.24, this ebuild is not guaranteed to"
79 eerror "build against the newer kernel."
80 die "invalid /usr/src/linux symlink"
81 fi
82
83 BUILD_TARGETS="all"
84 BUILD_PARAMS="KSRC=${KV_DIR} M=${S}"
85
86 linux-mod_pkg_setup
87
88 if use ipw3945 ; then
89 MODULE_NAMES="iwl3945(net/wireless:${S}/compatible)"
90 if ! use ipw4965 ; then
91 BUILD_PARAMS="${BUILD_PARAMS} CONFIG_IWL4965=n"
92 fi
93 fi
94
95 if use ipw4965 ; then
96 MODULE_NAMES="${MODULE_NAMES} iwl4965(net/wireless:${S}/compatible)"
97 if ! use ipw3945 ; then
98 BUILD_PARAMS="${BUILD_PARAMS} CONFIG_IWL3945=n"
99 fi
100 fi
101
102 if ! use ipw3945 && ! use ipw4965 ; then
103 einfo "Wireless card not selected, building all modules"
104 MODULE_NAMES="iwl3945(net/wireless:${S}/compatible) iwl4965(net/wireless:${S}/compatible)"
105 BUILD_PARAMS="${BUILD_PARAMS} CONFIG_IWL3945=m CONFIG_IWL4965=m"
106 fi
107 }
108
109
110
111 --
112 gentoo-commits@g.o mailing list