blob: f427791c2dca2999aa2736086b5c70e57c711e2d (
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
|
# Copyright 1999-2005 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/net-wireless/fwlanusb/fwlanusb-0.09.00_beta.ebuild,v 1.2 2005/12/26 15:49:13 sbriesen Exp $
inherit eutils linux-mod
SUSEVER="10.0"
MY_PV="${PV//_/-}"
DESCRIPTION="driver for the AVM FRITZ!WLAN USB stick"
HOMEPAGE="http://www.avm.de"
SRC_URI="ftp://ftp.avm.de/cardware/fritzwlanusb.stick/linux/suse.${SUSEVER}/${PN}-suse${SUSEVER}-${MY_PV}.tar.gz"
LICENSE="as-is"
SLOT="0"
KEYWORDS="~x86 -*"
IUSE=""
S="${WORKDIR}/fritz"
DEPEND="virtual/linux-sources"
pkg_setup() {
linux-mod_pkg_setup
if ! kernel_is 2 6; then
die "This package works only with 2.6 kernel!"
fi
if ! linux_chkconfig_present NET_WIRELESS; then
die "For using this driver you need a kernel with enabled NET_WIRELESS support."
fi
BUILD_TARGETS="all"
MODULE_NAMES="fwlanusb(net:${S}/src)"
}
src_unpack() {
unpack ${A}
cd "${S}"
# comment out obsolete macro
sed -i "s:^\([[:space:]]*\)\(.*URB_ASYNC_UNLINK;.*\):\1/\* \2 \*/:g" src/buffers.c
convert_to_m "src/Makefile"
}
src_install() {
linux-mod_src_install
dohtml Liesmich.html
}
pkg_postinst() {
linux-mod_pkg_postinst
einfo
einfo "This is a *BETA* driver! Expect everything! ;-)"
einfo
einfo "AVM gives no support for this driver, but asks for"
einfo "feedback. Email: linux@avm.de"
einfo
einfo "Current limitations:"
einfo " - no WPA/WPA2 support"
einfo " - no Stick & Surf function support"
einfo " - creation of an ad hoc network isn't possible,"
einfo " you can only join an existing one."
einfo
}
|