blob: 966d1960b42bc178495963e0407f160d0386dcee (
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
|
# Copyright 1999-2005 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/net-wireless/rt2500/rt2500-1.1.0_beta1.ebuild,v 1.2 2005/02/02 14:26:43 genstef Exp $
inherit eutils linux-mod kde
need-qt 3
MY_P="${P/_beta/-b}"
DESCRIPTION="Driver for the RaLink RT2500 wireless chipset"
HOMEPAGE="http://rt2x00.serialmonkey.com"
SRC_URI="http://rt2x00.serialmonkey.com/${MY_P}.tar.gz"
LICENSE="GPL-2"
KEYWORDS="~x86"
IUSE="qt"
DEPEND="net-wireless/wireless-tools
qt? ( x11-libs/qt )"
S=${WORKDIR}/${MY_P}
MODULE_NAMES="rt2500(net:${S}/Module)"
CONFIG_CHECK="NET_RADIO"
MODULESD_RT2500_ALIASES=("ra* rt2500")
pkg_setup() {
linux-mod_pkg_setup
if use_m
then BUILD_PARAMS="-C ${KV_DIR} M=${S}/Module"
BUILD_TARGETS="modules"
else die "please use a kernel >=2.6.6"
fi
}
src_compile() {
if useq qt; then
cd ${S}/Utilitys
qmake -o Makefile raconfig2500.pro
emake || die "make Utilities failed"
fi
linux-mod_src_compile
}
src_install() {
linux-mod_src_install
useq qt && dobin ${S}/Utilitys/RaConfig2500
dodoc Module/README Module/iwpriv_usage.txt LICENSE FAQ
}
|