summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPacho Ramos <pacho@gentoo.org>2018-02-25 21:31:33 +0100
committerPacho Ramos <pacho@gentoo.org>2018-02-25 21:31:33 +0100
commit23769019326f5c6c53c5bce306a95bf420e10da9 (patch)
tree061a75611401d918bd80ee79bc8645045c9bfb3f
parentgames-action/bzflag: Fix compiling against sys-libs/ncurses[tinfo] (bug #6320... (diff)
downloadgentoo-23769019326f5c6c53c5bce306a95bf420e10da9.tar.gz
gentoo-23769019326f5c6c53c5bce306a95bf420e10da9.tar.bz2
gentoo-23769019326f5c6c53c5bce306a95bf420e10da9.zip
net-dialup/mwavem: Drop old
Package-Manager: Portage-2.3.24, Repoman-2.3.6
-rw-r--r--net-dialup/mwavem/mwavem-2.0-r1.ebuild63
1 files changed, 0 insertions, 63 deletions
diff --git a/net-dialup/mwavem/mwavem-2.0-r1.ebuild b/net-dialup/mwavem/mwavem-2.0-r1.ebuild
deleted file mode 100644
index 1ff1d46784f2..000000000000
--- a/net-dialup/mwavem/mwavem-2.0-r1.ebuild
+++ /dev/null
@@ -1,63 +0,0 @@
-# Copyright 1999-2015 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI="2"
-
-AT_M4DIR="m4"
-
-inherit autotools eutils
-
-DESCRIPTION="User level application for IBM Mwave modem"
-HOMEPAGE="http://oss.software.ibm.com/acpmodem/"
-SRC_URI="ftp://www-126.ibm.com/pub/acpmodem/${PV}/${P}.tar.gz"
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="~amd64 x86"
-IUSE=""
-
-src_prepare() {
- epatch \
- "${FILESDIR}"/${P}-gentoo.patch \
- "${FILESDIR}"/${P}-glibc-2.10.patch
- eautoreconf
-}
-
-src_install() {
- emake DESTDIR="${D}" install || die "emake install failed"
-
- dosbin "${FILESDIR}/mwave-dev-handler"
-
- insinto /etc/devfs.d
- newins "${FILESDIR}/mwave.devfs" mwave
-
- insinto /etc/modprobe.d
- newins "${FILESDIR}/mwave.modules" mwave.conf
-
- dodoc AUTHORS ChangeLog FAQ NEWS README README.devfs THANKS
- docinto doc
- dodoc doc/mwave.sgml doc/mwave.txt
- dohtml doc/mwave.html
-}
-
-pkg_postinst() {
- # Below is to get /etc/modules.d/mwave loaded into /etc/modules.conf
- if [ "$ROOT" = "/" ]; then
- [ -x /sbin/update-modules ] && /sbin/update-modules || /sbin/modules-update
- fi
-
- if [ -e "${ROOT}/dev/.devfsd" ]; then
- # device node is created by devfs
- ebegin "Restarting devfsd to reread devfs rules"
- killall -HUP devfsd
- eend $?
- elif [ -e "${ROOT}/dev/.udev" ]; then
- #the device should be created by udev
- ebegin "Restarting udev to reread udev rules"
- udevadm control --reload-rules
- eend $?
- else
- [ ! -d "${ROOT}/dev/modem" ] && mkdir --mode=0755 "${ROOT}/dev/modems"
- mknod --mode=0660 "${ROOT}/dev/modems/mwave" c 10 219
- fi
-}