blob: 287e415bcbbfee4489df6c77e155eb647b84eeb3 (
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
|
# Copyright 1999-2005 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/net-misc/cisco-aironet-client-utils/cisco-aironet-client-utils-2.0.ebuild,v 1.5 2005/03/10 20:14:24 wolf31o2 Exp $
DESCRIPTION="Cisco Aironet Client Utilities"
HOMEPAGE="http://www.cisco.com/pcgi-bin/tablebuild.pl/aironet-utils-linux"
SRC_URI="Linux-ACU-Driver-v${PV}.tar.gz"
LICENSE="cisco"
SLOT=0
KEYWORDS="-* x86"
RESTRICT="fetch"
IUSE="pcmcia"
DEPEND="virtual/libc
pcmcia? ( sys-apps/pcmcia-cs )"
RDEPEND="virtual/x11
=x11-libs/gtk+-1.2*"
S=${WORKDIR}/acu
pkg_nofetch() {
eerror "Please goto:"
eerror " ${HOMEPAGE}"
eerror "and download"
eerror " ${A}"
eerror "to ${DISTDIR}"
}
src_unpack() {
mkdir -p ${S}
cd ${S}
unpack ${A}
}
src_install() {
exeinto /opt/cisco/bin
doexe utilities/{acu,bcard,leap{set,script,login}}
insinto /opt/cisco
doins ACU.PRFS
chmod a+rw ${D}/opt/cisco/ACU.PRFS
doins helpml.tar.gz
pushd ${D}/opt/cisco > /dev/null
tar zxf helpml.tar.gz
rm -f helpml.tar.gz
popd > /dev/null
insinto /etc/env.d
doins ${FILESDIR}/90cisco
}
|