diff options
author | Stephen Bennett <spb@gentoo.org> | 2006-08-07 20:22:59 +0000 |
---|---|---|
committer | Stephen Bennett <spb@gentoo.org> | 2006-08-07 20:22:59 +0000 |
commit | beed844f6beb5ea489a9fdb0fffb909b5c7055f1 (patch) | |
tree | 4e6dd6330be44abf9f87d3e4f70f2e3b6bd3f4dc /net-wireless/acx/acx-0.3.35_p20060521.ebuild | |
parent | Keywording ~amd64 (diff) | |
download | gentoo-2-beed844f6beb5ea489a9fdb0fffb909b5c7055f1.tar.gz gentoo-2-beed844f6beb5ea489a9fdb0fffb909b5c7055f1.tar.bz2 gentoo-2-beed844f6beb5ea489a9fdb0fffb909b5c7055f1.zip |
Version bump, with fix for #142705
(Portage version: 2.1.1_pre2-r2-hi-ferringb)
Diffstat (limited to 'net-wireless/acx/acx-0.3.35_p20060521.ebuild')
-rw-r--r-- | net-wireless/acx/acx-0.3.35_p20060521.ebuild | 46 |
1 files changed, 46 insertions, 0 deletions
diff --git a/net-wireless/acx/acx-0.3.35_p20060521.ebuild b/net-wireless/acx/acx-0.3.35_p20060521.ebuild new file mode 100644 index 000000000000..0ca28539e5ed --- /dev/null +++ b/net-wireless/acx/acx-0.3.35_p20060521.ebuild @@ -0,0 +1,46 @@ +# Copyright 1999-2006 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/net-wireless/acx/acx-0.3.35_p20060521.ebuild,v 1.1 2006/08/07 20:22:59 spb Exp $ + +inherit linux-mod + +DESCRIPTION="Driver for the ACX100 and ACX111 wireless chipset (CardBus, PCI, USB)" + +HOMEPAGE="http://acx100.sourceforge.net/" +SRC_URI="http://acx100.erley.org/acx-20060521.tar.bz2" + +LICENSE="GPL-2 as-is" +SLOT="0" +KEYWORDS="~amd64 ~ppc ~x86" + +IUSE="debug" + +RDEPEND="net-wireless/wireless-tools + net-wireless/acx-firmware" + +S=${WORKDIR} + +MODULE_NAMES="acx(net:${S})" +CONFIG_CHECK="NET_RADIO FW_LOADER" +BUILD_TARGETS="modules" + +pkg_setup() { + linux-mod_pkg_setup + BUILD_PARAMS="-C ${KV_DIR} SUBDIRS=${S}" +} + +src_unpack() { + unpack ${A} + chmod ug+w . -R + + # The default acx_config.h has some rather over-zealous debug output. + if ! use debug; then + sed -i '/^#define ACX_DEBUG/s/2/0/' acx_config.h || die "Failed to disable debug support" + fi +} + +src_install() { + linux-mod_src_install + + dodoc README +} |