blob: a9d1a35cfb1a4ea32aa5f0c214a449b754af57d8 (
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
|
# Copyright 1999-2005 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/net-wireless/orinoco/orinoco-0.15_rc2-r2.ebuild,v 1.1 2005/04/28 09:36:24 brix Exp $
inherit eutils linux-mod
MY_P=${P/_/}
S=${WORKDIR}/${MY_P}
DESCRIPTION="ORiNOCO wireless driver"
HOMEPAGE="http://www.nongnu.org/orinoco/"
SRC_URI="${SRC_URI} http://www.ozlabs.org/people/dgibson/dldwd/${MY_P}.tar.gz"
LICENSE="GPL-2 MPL-1.1"
KEYWORDS="~x86 ~ppc"
IUSE="pcmcia"
SLOT="0"
RDEPEND="net-wireless/wireless-tools"
BUILD_TARGETS="all"
MODULESD_ORINOCO_DOCS="README.orinoco"
CONFIG_CHECK="NET_RADIO !HERMES"
ERROR_NET_RADIO="${P} requires support for Wireless LAN drivers (non-hamradio) & Wireless Extensions (CONFIG_NET_RADIO)."
ERROR_HERMES="${P} requires Hermes chipset 802.11b support (Orinoco/Prism2/Symbol) (CONFIG_HERMES) to be DISABLED."
pkg_setup() {
linux-mod_pkg_setup
MODULE_NAMES="hermes(net:)
orinoco(net:)"
if linux_chkconfig_present PCI; then
einfo "PCI support detected"
MODULE_NAMES="${MODULE_NAMES} orinoco_nortel(net:) orinoco_pci(net:) orinoco_plx(net:) orinoco_tmd(net:)"
fi
if linux_chkconfig_present PPC_PMAC; then
einfo "PPC PowerMac support detected"
MODULE_NAMES="${MODULE_NAMES} airport(net:)"
fi
if use pcmcia; then
einfo "PCMCIA support detected"
MODULE_NAMES="${MODULE_NAMES} orinoco_cs(net:)"
if kernel_is gt 2 4 && linux_chkconfig_present FW_LOADER; then
einfo "Firmware loader support detected"
MODULE_NAMES="${MODULE_NAMES} spectrum_cs(net:)"
fi
fi
}
src_unpack() {
unpack ${A}
pcmcia_src_unpack
cd ${S}
epatch ${FILESDIR}/${MY_P}-2.6.10.patch
epatch ${FILESDIR}/${MY_P}-firmware.patch
if [[ -n "${PCMCIA_VERSION}" ]]; then
sed -i -e "s:^\(PCMCIA_CS\) =.*:\1 = ${PCMCIA_SOURCE_DIR}:" \
${S}/Makefile
fi
sed -i "s:^\(KERNEL_SRC\) =.*:\1 = ${KV_DIR}:" \
${S}/Makefile
convert_to_m ${S}/Makefile
}
src_install() {
if use pcmcia; then
insinto /etc/pcmcia
doins hermes.conf
fi
linux-mod_src_install
}
pkg_postinst() {
linux-mod_pkg_postinst
if [[ -e ${ROOT}/lib/modules/${KV_FULL}/pcmcia/orinoco.${KV_OBJ} ]]; then
ewarn
ewarn "The modules from this package conflicts with the modules installed"
ewarn "by the pcmcia-cs package. You will have to manually delete the"
ewarn "duplicate modules from the"
ewarn " ${ROOT}lib/modules/${KV_FULL}/pcmcia/"
ewarn "directory and manually run '/sbin/depmod -ae'"
ewarn
fi
}
|