summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlin Năstac <mrness@gentoo.org>2008-08-01 21:32:37 +0000
committerAlin Năstac <mrness@gentoo.org>2008-08-01 21:32:37 +0000
commit10a164d1146a3627ef213f7cd9b955d81a47f4ee (patch)
tree185f82aab07862b287bcf24a8d5e77237e8b5ff6 /net-dialup
parentGentooize init script template (#233498). (diff)
downloadgentoo-2-10a164d1146a3627ef213f7cd9b955d81a47f4ee.tar.gz
gentoo-2-10a164d1146a3627ef213f7cd9b955d81a47f4ee.tar.bz2
gentoo-2-10a164d1146a3627ef213f7cd9b955d81a47f4ee.zip
Rollback last revbump.
(Portage version: 2.1.4.4)
Diffstat (limited to 'net-dialup')
-rw-r--r--net-dialup/hsfmodem/ChangeLog9
-rw-r--r--net-dialup/hsfmodem/hsfmodem-7.68.00.12-r1.ebuild82
2 files changed, 1 insertions, 90 deletions
diff --git a/net-dialup/hsfmodem/ChangeLog b/net-dialup/hsfmodem/ChangeLog
index ab70ce16f125..0dbbd0af3bd8 100644
--- a/net-dialup/hsfmodem/ChangeLog
+++ b/net-dialup/hsfmodem/ChangeLog
@@ -1,13 +1,6 @@
# ChangeLog for net-dialup/hsfmodem
# Copyright 2002-2008 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-dialup/hsfmodem/ChangeLog,v 1.48 2008/08/01 21:26:44 mrness Exp $
-
-*hsfmodem-7.68.00.12-r1 (01 Aug 2008)
-
- 01 Aug 2008; Alin Năstac <mrness@gentoo.org>
- files/hsfmodem-7.68.00.12-gentoo.patch, -hsfmodem-7.68.00.12.ebuild,
- +hsfmodem-7.68.00.12-r1.ebuild:
- Gentooize init script template (#233498).
+# $Header: /var/cvsroot/gentoo-x86/net-dialup/hsfmodem/ChangeLog,v 1.49 2008/08/01 21:32:37 mrness Exp $
*hsfmodem-7.68.00.12 (30 Jul 2008)
diff --git a/net-dialup/hsfmodem/hsfmodem-7.68.00.12-r1.ebuild b/net-dialup/hsfmodem/hsfmodem-7.68.00.12-r1.ebuild
deleted file mode 100644
index c1fa1fd67f8f..000000000000
--- a/net-dialup/hsfmodem/hsfmodem-7.68.00.12-r1.ebuild
+++ /dev/null
@@ -1,82 +0,0 @@
-# Copyright 1999-2008 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/net-dialup/hsfmodem/hsfmodem-7.68.00.12-r1.ebuild,v 1.1 2008/08/01 21:26:44 mrness Exp $
-
-inherit eutils linux-info
-
-#The document is the same as in hcfpcimodem, even if it has a different URL
-MY_DOC="100498D_RM_HxF_Released.pdf"
-
-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 )
- doc? ( http://www.linuxant.com/drivers/hsf/full/archive/${P}full/${MY_DOC} )"
-
-LICENSE="Conexant"
-KEYWORDS="-* ~amd64 ~x86"
-IUSE="doc"
-SLOT="0"
-
-DEPEND="dev-lang/perl
- app-arch/cpio"
-
-S="${WORKDIR}"
-
-pkg_setup() {
- linux-info_pkg_setup
- if useq x86; then
- MY_ARCH_S="${S}/${P}full"
- elif useq amd64; then
- MY_ARCH_S="${S}/${P}x86_64full"
- fi
-
- local f
- QA_EXECSTACK=""
- for f in pcibasic2 mc97ich mc97via mc97ali mc97ati mc97sis usbcd2 soar hda engine ; do
- QA_EXECSTACK="${QA_EXECSTACK} usr/lib/hsfmodem/modules/imported/hsf${f}-i386.O"
- done
-}
-
-src_unpack() {
- unpack ${A}
- cd "${MY_ARCH_S}"
- epatch "${FILESDIR}/${P}-gentoo.patch"
-}
-
-src_compile() {
- cd "${MY_ARCH_S}"
- emake all || die "make failed"
-}
-
-src_install () {
- cd "${MY_ARCH_S}"
- make ROOT="${D}" install || die "make install failed"
-
- # on testing arches, kernelcompiler.sh permissions are 0600 (#158736)
- fperms a+rx /usr/lib/hsfmodem/modules/kernelcompiler.sh
-
- use doc && dodoc "${DISTDIR}/${MY_DOC}"
-}
-
-pkg_preinst() {
- local NVMDIR="${ROOT}/etc/${PN}/nvm"
- if [ -d "${NVMDIR}" ]; then
- einfo "Cleaning ${NVMDIR}..."
- rm -rf "${NVMDIR}"
- eend
- fi
-}
-
-pkg_postinst() {
- if [ "${ROOT}" = / ]; then
- elog "To complete the installation and configuration of your HSF modem,"
- elog "please run hsfconfig."
- fi
-}
-
-pkg_prerm() {
- if [ "${ROOT}" = / -a -f /etc/init.d/hsf ] ; then
- hsfconfig --remove || die "hsfconfig --remove failed"
- fi
-}