diff options
author | Alin Năstac <mrness@gentoo.org> | 2005-11-02 05:27:29 +0000 |
---|---|---|
committer | Alin Năstac <mrness@gentoo.org> | 2005-11-02 05:27:29 +0000 |
commit | aa154297923809f96e4946389106b3078234b97d (patch) | |
tree | fbb05ed5779c51547029f71d80df351fd70b9e4a /net-dialup/hsfmodem/hsfmodem-7.18.00.03-r2.ebuild | |
parent | minor fix (diff) | |
download | gentoo-2-aa154297923809f96e4946389106b3078234b97d.tar.gz gentoo-2-aa154297923809f96e4946389106b3078234b97d.tar.bz2 gentoo-2-aa154297923809f96e4946389106b3078234b97d.zip |
remove obsolete versions; version bump (#111179)
(Portage version: 2.0.51.22-r3)
Diffstat (limited to 'net-dialup/hsfmodem/hsfmodem-7.18.00.03-r2.ebuild')
-rw-r--r-- | net-dialup/hsfmodem/hsfmodem-7.18.00.03-r2.ebuild | 60 |
1 files changed, 0 insertions, 60 deletions
diff --git a/net-dialup/hsfmodem/hsfmodem-7.18.00.03-r2.ebuild b/net-dialup/hsfmodem/hsfmodem-7.18.00.03-r2.ebuild deleted file mode 100644 index b62938252744..000000000000 --- a/net-dialup/hsfmodem/hsfmodem-7.18.00.03-r2.ebuild +++ /dev/null @@ -1,60 +0,0 @@ -# Copyright 1999-2005 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/net-dialup/hsfmodem/hsfmodem-7.18.00.03-r2.ebuild,v 1.4 2005/06/09 06:00:51 mrness Exp $ - -inherit eutils - -DESCRIPTION="Linuxant's modem driver for Conexant HSF chipset" -HOMEPAGE="http://www.linuxant.com/drivers/hsf/index.php" -SRC_URI="x86? ( http://www.linuxant.com/drivers/hsf/full/archive/${P}full/${P}full.tar.gz ) - amd64? ( http://www.linuxant.com/drivers/hsf/full/archive/${P}x86_64full/${P}x86_64full.tar.gz )" - -LICENSE="Conexant" -KEYWORDS="-* x86 ~amd64" -IUSE="" -SLOT="0" - -DEPEND="virtual/libc - dev-lang/perl - app-arch/cpio" - -S="${WORKDIR}" - -pkg_setup() { - if useq x86; then - MY_ARCH_S=${S}/${P}full - elif useq amd64; then - MY_ARCH_S=${S}/${P}x86_64full - fi -} - -src_unpack() { - unpack ${A} - - cd $MY_ARCH_S - epatch ${FILESDIR}/${P}-nvminstall.patch -} - -src_compile() { - cd ${MY_ARCH_S} - emake all || die "make failed" -} - -src_install () { - cd ${MY_ARCH_S} - make PREFIX=${D}/usr/ ROOT=${D} install || die "make install failed" -} - -pkg_preinst() { - local NVMDIR="${ROOT}/etc/${PN}/nvm" - if [ -d "${NVMDIR}" ]; then - einfo "Cleaning ${NVMDIR}..." - rm -rf "${NVMDIR}" - eend - fi -} - -pkg_postinst() { - einfo "To complete the installation and configuration of your HSF modem," - einfo "please run hsfconfig." -} |