blob: 7ceadcea11d7eb45f64cf4bdacbe214fcec3dc61 (
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
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
|
# Copyright 1999-2004 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/net-wireless/hostap-driver/hostap-driver-0.1.1.ebuild,v 1.6 2004/08/09 22:32:51 latexer Exp $
inherit eutils
DESCRIPTION="HostAP wireless drivers"
HOMEPAGE="http://hostap.epitest.fi/"
SRC_URI="http://hostap.epitest.fi/releases/${P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="x86"
IUSE="pcmcia hostap-nopci hostap-noplx"
DEPEND=">=net-wireless/wireless-tools-25
pcmcia? ( >=sys-apps/pcmcia-cs-3.2.1 )"
S="${WORKDIR}/${P}"
LIB_PATH="/lib/modules/${KV}"
src_unpack() {
check_KV
unpack ${A}
cd "${S}"
## set compiler options
sed -i -e "s:gcc:${CC}:" "${S}/Makefile"
# sed -i -e "s:-O2:${CFLAGS}:" "${S}/Makefile" # improper CFLAGS could cause unresolved symbols in the modules
## fix for new coreutils (#31801)
sed -i -e "s:tail -1:tail -n 1:" "${S}/Makefile"
## use pcmcia-cs sources if kernel tree pcmcia support is disabled and USE=pcmcia is set
if use pcmcia >&/dev/null; then
if egrep '^CONFIG_PCMCIA=[ym]' /usr/src/linux/.config >&/dev/null; then
einfo "Kernel PCMCIA is enabled, skipping external pcmcia-cs sources"
else
einfo "Kernel PCMCIA is disabled, using external pcmcia-cs sources"
## get ebuild of currently installed pcmcia-cs package
PCMCIA_CS_EBUILD=(/var/db/pkg/sys-apps/pcmcia-cs-*/pcmcia-cs-*.ebuild) ## use bash globbing
if [ ! -f "${PCMCIA_CS_EBUILD}" ]; then
die "ERROR: pcmcia-cs ebuild (${PCMCIA_CS_EBUILD}) not found - are you sure pcmcia-cs is installed?"
fi
PCMCIA_CS_VER="${PCMCIA_CS_EBUILD##*/}" ## -> pcmcia-cs-VER.ebuild
PCMCIA_CS_VER="${PCMCIA_CS_VER/pcmcia-cs-/}" ## strip 'pcmcia-cs-'
PCMCIA_CS_VER="${PCMCIA_CS_VER/.ebuild/}" ## strip '.ebuild'
PCMCIA_PATH="${WORKDIR}/pcmcia-cs-${PCMCIA_CS_VER}"
sed -i -e "s:^PCMCIA_PATH=:PCMCIA_PATH=${PCMCIA_PATH}:" "${S}/Makefile"
## unpack external pcmcia-cs sources
cd "${WORKDIR}"
unpack pcmcia-cs-${PCMCIA_CS_VER}.tar.gz ## unpack the pcmcia-cs sources to PCMCIA_PATH
cd pcmcia-cs-${PCMCIA_CS_VER}
## when not configured, pcmcia-cs spits out lots of errors (since 3.2.5)
if ! ./Configure -n --srctree --kernel=/usr/src/linux >&/dev/null; then
eerror "External pcmcia-cs configuration failed"
die
fi
fi
fi
}
src_compile() {
local mydrivers
use pcmcia && mydrivers="${mydrivers} pccard"
use hostap-nopci || mydrivers="${mydrivers} pci"
use hostap-noplx || mydrivers="${mydrivers} plx"
einfo "Building the following drivers: ${mydrivers}"
emake EXTRA_CFLAGS="-DPRISM2_DOWNLOAD_SUPPORT" ${mydrivers} || die
}
src_install() {
dodir ${LIB_PATH}/net
cp ${S}/driver/modules/{hostap.o,hostap_crypt_wep.o} \
${D}${LIB_PATH}/net/
# local myinstall="install_hostap install_crypt"
if use pcmcia >&/dev/null; then
dodir ${LIB_PATH}/pcmcia
dodir /etc/pcmcia
cp ${S}/driver/modules/hostap_cs.o ${D}/${LIB_PATH}/pcmcia/
cp ${S}/driver/etc/hostap_cs.conf ${D}/etc/pcmcia/
if [ -r /etc/pcmcia/prism2.conf ]; then
einfo "You may need to edit or remove /etc/pcmcia/prism2.conf"
einfo "This is usually a result of conflicts with the"
einfo "linux-wlan-ng drivers."
fi
# myinstall="${myinstall} install_pccard"
fi
if ! use hostap-nopci >&/dev/null; then
cp ${S}/driver/modules/hostap_pci.o \
${D}${LIB_PATH}/net/
# myinstall="${myinstall} install_pci"
fi
if ! use hostap-noplx >&/dev/null; then
cp ${S}/driver/modules/hostap_plx.o \
${D}${LIB_PATH}/net/
# myinstall="${myinstall} install_plx"
fi
# emake DESTDIR="${D}" ${myinstall}
dodoc README ChangeLog
}
pkg_postinst(){
einfo "Checking kernel module dependancies"
cd /usr/src/linux && make _modinst_post ## depmod
}
|