blob: 26930303004fc50f4798550d2a9906014c19cce9 (
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
|
# Copyright 1999-2004 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/sys-apps/mpi350-driver/mpi350-driver-2.0.ebuild,v 1.7 2004/07/15 02:00:54 agriffis Exp $
DESCRIPTION="Cisco's wireless drivers and utilities"
HOMEPAGE="http://www.cisco.com/"
SRC_DOWNLOAD="http://www.cisco.com/public/sw-center/sw-wireless.shtml"
SRC_URI="Linux-ACU-Driver-v2.0.tar.gz"
RESTRICT="fetch"
LICENSE="MPL-1.1"
SLOT="0"
KEYWORDS="x86 amd64 -ppc -sparc"
IUSE=""
DEPEND=""
MOD_DIR="/lib/modules/`uname -r`"
KERNEL_SRC="/usr/src/linux"
# ------------------------------------------------- #
# The script that Cisco provides is basically
# WORH (works on redhat) and doesn't mesh w/
# portage at all. Thus this ebuild does everything
# by hand, not using any of the scripts in their
# package.
# ------------------------------------------------- #
pkg_nofetch() {
eerror "Please download ${SRC_URI} from ${SRC_DOWNLOAD}"
eerror "and put it in ${DISTDIR}."
}
src_unpack() {
mkdir ${S}
cd ${S}
unpack ${A}
}
src_compile() {
# Compile and install the drivers. the script that cisco provides
# with the package stinks. Doesn't allow for DESTDIR or anything
# Thus we compile them by hand here.
cd ${S}/driver
einfo "Compiling mpi350.o"
${CC} -MD -Wall -I${KERNEL_SRC}/include -D__KERNEL__ -DMODULE -c ${S}/driver/mpi350.c
}
src_install() {
# Install the drivers into the right place
dodir ${MOD_DIR}/net
cp ${S}/driver/mpi350.o ${D}/${MOD_DIR}/net
# Next we install the utilities. They're binaries, so we simply
# put them in the right place.
cd ${S}/utilities
dodir /opt/cisco/bin
exeinto /opt/cisco/bin
doexe acu bcard leapset leapscript leaplogin
# Install the helpml stuff
cd ${S}
tar xfz ${S}/helpml.tar.gz
dodir /opt/cisco/helpml
cp ${S}/helpml/* ${D}/opt/cisco/helpml/
cp ${S}/ACU.PRFS ${D}/opt/cisco
cd ${S}
dodoc ethX.cfg readme.txt
}
pkg_postinst() {
einfo "The cisco utilities are placed in /opt/cisco/bin"
einfo "To use them either add them to your PATH, or"
einfo "specify the full path to them."
einfo "You need to gunzip ethX.cfg from /usr/share/doc/${P}"
einfo "and copy it to /etc/ethX.cfg where X is the number ethernet"
einfo "device using the cisco driver."
}
|