blob: ad2585d2cb83ffd74fda1a59a0dd742efea3f1fd (
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
|
# Copyright 1999-2004 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/net-dialup/hsflinmodem/hsflinmodem-5.03.27.03042700.ebuild,v 1.3 2004/07/01 22:07:28 eradicator Exp $
MY_PV=5.03.27lnxtbeta03042700
MY_P=${PN}-${MY_PV}
S=${WORKDIR}/${MY_P}
DESCRIPTION="hsflinmodem - Modem driver for Connexant HSF chipset"
SRC_URI="http://www.linuxant.com/drivers/hsf/archive/${MY_P}/${MY_P}.tar.gz"
HOMEPAGE="http://www.linuxant.com/drivers/hsf/index.html"
DEPEND="virtual/libc"
IUSE=""
SLOT="0"
LICENSE="Conexant"
KEYWORDS="~x86"
src_compile() {
emake all || die
}
src_install () {
make PREFIX=${D}/usr/ ROOT=${D} install || die
}
pkg_postinst() {
echo "To complete the installation and configuration of your HSF modem,"
echo "please run hsfconfig."
}
|