summaryrefslogtreecommitdiff
blob: b36e7a42586f5398df8a84637be70f790a75d32f (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
# Copyright 1999-2005 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/net-wireless/madwifi-driver/madwifi-driver-0.1_pre20050106.ebuild,v 1.1 2005/01/07 16:43:17 solar Exp $

# Be sure when we bump madwifi-driver that we also bump madwifi-tools at 
# the same time as they use the same snapshot tarball.
# cvs -d:pserver:anonymous@cvs.sourceforge.net:/cvsroot/madwifi login
# cvs -d:pserver:anonymous@cvs.sourceforge.net:/cvsroot/madwifi co -r HEAD madwifi
# cvs -d:pserver:anonymous@cvs.sourceforge.net:/cvsroot/madwifi logout

inherit eutils kernel-mod

DESCRIPTION="Wireless driver for Atheros chipset a/b/g cards"
HOMEPAGE="http://madwifi.sourceforge.net/"

# Point to any required sources; these will be automatically downloaded by
# Portage.
SRC_URI="mirror://gentoo/${P}.tar.bz2"

LICENSE="GPL-2"
SLOT="0"

#KEYWORDS="~x86 ~amd64"
KEYWORDS="-*"
IUSE=""
DEPEND="app-arch/sharutils"
RDEPEND=""

S=${WORKDIR}

pkg_setup() {
	check_KV
	if [[ "${KV}" > "2.5" ]] ; then
		if [[ "${KV}" < "2.6.6" ]] ; then
			cd ${ROOT}/usr/src/linux
			[ -x ./scripts/modpost ] \
				&& ./scripts/modpost ./vmlinux
		fi
	fi
	use x86 && TARGET=i386-elf
	use amd64 && TARGET=x86_64-elf
	export TARGET
}

src_unpack() {
	check_KV
	unpack ${A}
	cd ${S}

	#epatch ${FILESDIR}/madwifi-multi-ssid-support.patch

	if kernel-mod_is_2_6_kernel && [ ${KV_PATCH} -gt 5 ]; then
		for dir in ath ath_hal net80211; do
			sed -i -e "s:SUBDIRS=:M=:" ${S}/${dir}/Makefile
		done
	fi
}

src_compile() {
	unset ARCH
	make clean

	make KERNELPATH="${ROOT}/usr/src/linux" KERNELRELEASE="${KV}" \
		TARGET="${TARGET}" || die
}

src_install() {
	unset ARCH
	make KERNELPATH="${ROOT}/usr/src/linux" KERNELRELEASE="${KV}" \
		TARGET="${TARGET}" DESTDIR="${D}" install || die

	dodoc README COPYRIGHT
}

pkg_postinst() {

	[ -r "${ROOT}/usr/src/linux/System.map" ] && \
		depmod -ae -F "${ROOT}/usr/src/linux/System.map" -b "${ROOT}" -r ${KV}

	einfo ""
	einfo "The madwifi drivers create an interface named 'athX'"
	einfo "Create /etc/init.d/net.ath0 and add a line for athX"
	einfo "in /etc/conf.d/net like 'iface_ath0=\"dhcp\"'"
	einfo ""
}