diff options
author | 2009-10-05 23:33:44 +0000 | |
---|---|---|
committer | 2009-10-05 23:33:44 +0000 | |
commit | c372d2d918554ca662e0105c48be937f495483aa (patch) | |
tree | e997579df26bf8e9bbc1661383cb472081bee360 /net-wireless | |
parent | stable sparc, bug 287356 (diff) | |
download | gentoo-2-c372d2d918554ca662e0105c48be937f495483aa.tar.gz gentoo-2-c372d2d918554ca662e0105c48be937f495483aa.tar.bz2 gentoo-2-c372d2d918554ca662e0105c48be937f495483aa.zip |
Added COMPAT_NET_DEV_OPS to CONFIG_CHECK, bug #287083.
(Portage version: 2.1.6.13/cvs/Linux x86_64)
Diffstat (limited to 'net-wireless')
-rw-r--r-- | net-wireless/broadcom-sta/ChangeLog | 8 | ||||
-rw-r--r-- | net-wireless/broadcom-sta/broadcom-sta-5.10.91.9.3-r1.ebuild | 47 |
2 files changed, 54 insertions, 1 deletions
diff --git a/net-wireless/broadcom-sta/ChangeLog b/net-wireless/broadcom-sta/ChangeLog index 8a47268eabfb..378e12ed4ea3 100644 --- a/net-wireless/broadcom-sta/ChangeLog +++ b/net-wireless/broadcom-sta/ChangeLog @@ -1,6 +1,12 @@ # ChangeLog for net-wireless/broadcom-sta # Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/net-wireless/broadcom-sta/ChangeLog,v 1.14 2009/09/19 16:43:22 matsuu Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-wireless/broadcom-sta/ChangeLog,v 1.15 2009/10/05 23:33:44 matsuu Exp $ + +*broadcom-sta-5.10.91.9.3-r1 (05 Oct 2009) + + 05 Oct 2009; MATSUU Takuto <matsuu@gentoo.org> + +broadcom-sta-5.10.91.9.3-r1.ebuild: + Added COMPAT_NET_DEV_OPS to CONFIG_CHECK, bug #287083. *broadcom-sta-5.10.91.9.3 (19 Sep 2009) diff --git a/net-wireless/broadcom-sta/broadcom-sta-5.10.91.9.3-r1.ebuild b/net-wireless/broadcom-sta/broadcom-sta-5.10.91.9.3-r1.ebuild new file mode 100644 index 000000000000..8a21b262c85e --- /dev/null +++ b/net-wireless/broadcom-sta/broadcom-sta-5.10.91.9.3-r1.ebuild @@ -0,0 +1,47 @@ +# Copyright 1999-2009 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/net-wireless/broadcom-sta/broadcom-sta-5.10.91.9.3-r1.ebuild,v 1.1 2009/10/05 23:33:44 matsuu Exp $ + +inherit eutils linux-mod + +DESCRIPTION="Broadcom's IEEE 802.11a/b/g/n hybrid Linux device driver." +HOMEPAGE="http://www.broadcom.com/support/802.11/linux_sta.php" +SRC_BASE="http://www.broadcom.com/docs/linux_sta/hybrid-portsrc-x86_" +SRC_URI="x86? ( ${SRC_BASE}32-v${PV}.tar.gz ) + amd64? ( ${SRC_BASE}64-v${PV}.tar.gz )" + +LICENSE="Broadcom" +KEYWORDS="~amd64 ~x86" +IUSE="" + +RESTRICT="mirror" + +DEPEND=">=virtual/linux-sources-2.6.22" +RDEPEND="${DEPEND}" + +S="${WORKDIR}" + +MODULE_NAMES="wl(net/wireless)" +MODULESD_WL_ALIASES=("wlan0 wl") + +pkg_setup() { + check_license + + CONFIG_CHECK="~!B43 ~!SSB" + if kernel_is ge 2 6 31; then + CONFIG_CHECK="${CONFIG_CHECK} LIB80211" + elif kernel_is ge 2 6 29; then + CONFIG_CHECK="${CONFIG_CHECK} LIB80211 COMPAT_NET_DEV_OPS" + else + CONFIG_CHECK="${CONFIG_CHECK} IEEE80211 IEEE80211_CRYPT_TKIP" + fi + linux-mod_pkg_setup + BUILD_PARAMS="-C ${KV_DIR} M=${S}" + BUILD_TARGETS="wl.ko" +} + +src_unpack() { + unpack ${A} + cd "${S}" + epatch "${FILESDIR}/${PN}-5.10.91.9-license.patch" +} |