blob: 7be751116b9cbfda839126fd946abaf07bd8814c (
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
|
# Copyright 1999-2010 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/net-wireless/acx/acx-0.3.37_p20080210.ebuild,v 1.2 2010/02/28 17:40:00 lxnay Exp $
inherit linux-mod
PATCHLEVEL=${PV##*_p}
DESCRIPTION="Driver for the ACX100 and ACX111 wireless chipset (CardBus, PCI, USB)"
HOMEPAGE="http://acx100.sourceforge.net/"
SRC_URI="http://downloads.sourceforge.net/acx100/${PN}-${PATCHLEVEL}.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}/${PN}-${PATCHLEVEL}
MODULE_NAMES="acx(net:${S})"
CONFIG_CHECK="WIRELESS_EXT 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.
cd "${S}"
if ! use debug; then
sed -i '/^#define ACX_DEBUG/s/2/0/' acx_config.h || die "Failed to disable debug support"
fi
# Apply various fixes to make module compile with 2.6.31+ kernels
# thanks to Mepis
epatch "${FILESDIR}"/2.6.31+-mepis/*
# 2.6.33 patches
epatch "${FILESDIR}"/acx-2.6.33.patch
}
src_install() {
linux-mod_src_install
dodoc README
}
|