summaryrefslogtreecommitdiff
blob: 5dad4fc171b2906aa55a1fbddc505c16bf9b81d6 (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
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
# Copyright 1999-2003 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/net-wireless/hostap/hostap-0.0.3-r1.ebuild,v 1.2 2003/09/07 00:19:18 msterret Exp $

inherit eutils

DESCRIPTION="HostAP wireless drivers"
HOMEPAGE="http://hostap.epitest.fi/"

MY_PCMCIA="pcmcia-cs-3.2.1"
PATCH_3_2_2="${MY_PCMCIA}-3.2.2.diff.gz"
PATCH_3_2_3="${MY_PCMCIA}-3.2.3.diff.gz"
PATCH_3_2_4="${MY_PCMCIA}-3.2.4.diff.gz"

SRC_URI="http://hostap.epitest.fi/releases/${P}.tar.gz
		pcmcia? ( mirror://sourceforge/pcmcia-cs/${MY_PCMCIA}.tar.gz )
		pcmcia? ( mirror://gentoo/${PATCH_3_2_2} )
		pcmcia? ( mirror://gentoo/${PATCH_3_2_3} )
		pcmcia? ( mirror://gentoo/${PATCH_3_2_4} )"

LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~x86"

IUSE="pcmcia"

DEPEND=">=net-wireless/wireless-tools-25
		pcmcia? ( >=sys-apps/pcmcia-cs-3.2.1* )"

LIB_PATH="/lib/modules/${KV}"

if [  x"${HOSTAP_DRIVERS}" = x ]; then
	CUSTOM="no"
else
	CUSTOM="yes"
fi

src_unpack() {
	check_KV
	unpack ${P}.tar.gz

	if [ -n "`use pcmcia`" ]; then
		unpack ${MY_PCMCIA}.tar.gz
		cd ${WORKDIR}/${MY_PCMCIA}
		if [ -z "`has_version =sys-apps/pcmcia-cs-3.2.4*`" ]; then
			epatch ${DISTDIR}/${PATCH_3_2_4}
		elif [ -z "`has_version =sys-apps/pcmcia-cs-3.2.3*`" ]; then
			epatch ${DISTDIR}/${PATCH_3_2_3}
		elif [ -z "`has_version =sys-apps/pcmcia-cs-3.2.2*`" ]; then
			epatch ${DISTDIR}/${PATCH_3_2_2}
		fi
	fi


	cd ${S}
	mv Makefile ${T}
	sed -e "s:gcc:${CC}:" \
		-e "s:-O2:${CFLAGS}:" \
		-e "s:\$(EXTRA_CFLAGS):\$(EXTRA_CFLAGS) -DPRISM2_HOSTAPD:" \
		${T}/Makefile > Makefile

	if [ -n "`use pcmcia`" ] || [[ "${HOSTAP_DRIVERS}" == *pccard* ]]; then
		mv Makefile ${T}
		sed -e "s:^PCMCIA_PATH=:PCMCIA_PATH=${WORKDIR}/${MY_PCMCIA}:" \
			${T}/Makefile > Makefile
	fi

	cd ${S}/hostapd
	mv Makefile ${T}
	sed -e "s:gcc:${CC}:" \
		-e "s:-O2:${CFLAGS}:" \
		${T}/Makefile > Makefile
}

src_compile() {
	#
	# This ebuild now uses a system similar to the alsa ebuild.
	# By default, it will install the pci and plx drivers, and
	# the pcmcia drivers if pcmcia is in your use variables. To
	# specify exactly which drivers to build, do something like
	#
	#     HOSTAP_DRIVERS="pci pccard" emerge hostap
	#
	# Available options are pci, plx, and pccard.
	#
	# If you experience problems compiling the hostap_pci module,
	# try disabling CONFIG_MODVERSION from your kernel.
	#

	if [ "${CUSTOM}" == yes ]; then
		einfo "Building the folowing drivers: ${HOSTAP_DRIVERS}"
		emake ${HOSTAP_DRIVERS} hostap crypt || die
	else
		if [ -n "`use pcmcia`" ]; then
			einfo "Building the folowing drivers: pci plx pccard"
			emake pci plx pccard || die
		else
			einfo "Building the folowing drivers: pci plx"
			emake pci plx || die
		fi
	fi

	cd ${S}/hostapd
	emake || die
}

src_install() {
	dodir ${LIB_PATH}/net
	cp ${S}/driver/modules/{hostap.o,hostap_crypt.o,hostap_crypt_wep.o}\
		${D}${LIB_PATH}/net/

	if [ "${CUSTOM}" == "no" ]; then

		if [ -n "`use pcmcia`" ]; 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
		fi
		for driver in pci plx; do
			cp ${S}/driver/modules/hostap_${driver}.o\
				${D}${LIB_PATH}/net/;
		done
	elif [ "${CUSTOM}" == "yes" ]; then
		if [[ "${HOSTAP_DRIVERS}" = *pccard* ]]; 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
		fi

		if [[ "${HOSTAP_DRIVERS}" = *pci* ]]; then
			cp ${S}/driver/modules/hostap_pci.o\
				${D}${LIB_PATH}/net/
		fi

		if [[ "${HOSTAP_DRIVERS}" = *plx* ]]; then
			cp ${S}/driver/modules/hostap_plx.o\
				${D}${LIB_PATH}/net/
		fi

	fi

	dodoc FAQ README README.prism2 ChangeLog

	dosbin hostapd/hostapd
}
pkg_postinst(){
	/sbin/depmod -a
}