blob: 166f0530ce3025cce06672a9752e082fb6dbda46 (
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
|
# Copyright 1999-2008 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/net-dialup/hcfusbmodem/hcfusbmodem-1.15-r1.ebuild,v 1.1 2008/10/18 07:56:26 mrness Exp $
inherit linux-info eutils
DESCRIPTION="hcfusbmodem - Modem driver for Connexant HSF chipset"
SRC_URI="http://www.linuxant.com/drivers/hcf/full/archive/${P}powerpcfull.tar.gz"
HOMEPAGE="http://www.linuxant.com/drivers/"
IUSE=""
SLOT="0"
LICENSE="Conexant"
KEYWORDS="-* ~ppc"
DEPEND="dev-lang/perl
app-arch/cpio"
S="${WORKDIR}/${P}powerpcfull"
QA_EXECSTACK="usr/lib/hcfusbmodem/modules/imported/hcfblam-powerpc.O usr/lib/hcfusbmodem/modules/imported/hcfengine-powerpc.O"
src_unpack() {
unpack ${A}
cd "${S}"
epatch "${FILESDIR}"/${P}-gentoo.patch
}
src_compile() {
emake all || die "make failed"
}
src_install () {
make PREFIX="${D}/usr/" ROOT="${D}" install || die "make install failed"
}
pkg_postinst() {
if [ "${ROOT}" = / ]; then
elog "To complete the installation and configuration of your HCF modem,"
elog "please run hcfusbconfig."
fi
}
pkg_prerm() {
if [ "${ROOT}" = / -a -f /etc/init.d/hcfusb ] ; then
hcfusbconfig --remove || die "hcfusbconfig --remove failed"
fi
}
|