summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMike Frysinger <vapier@gentoo.org>2009-10-01 17:21:47 +0000
committerMike Frysinger <vapier@gentoo.org>2009-10-01 17:21:47 +0000
commite4757f70ac586d368c8c05dea1e4d4bec6ec7077 (patch)
tree0209adb3a1646ac1ad91f3285832c9c9fba37c62 /sys-apps
parentia64/sparc stable wrt #258592 (diff)
downloadhistorical-e4757f70ac586d368c8c05dea1e4d4bec6ec7077.tar.gz
historical-e4757f70ac586d368c8c05dea1e4d4bec6ec7077.tar.bz2
historical-e4757f70ac586d368c8c05dea1e4d4bec6ec7077.zip
old
Diffstat (limited to 'sys-apps')
-rw-r--r--sys-apps/usbutils/usbutils-0.86.ebuild41
1 files changed, 0 insertions, 41 deletions
diff --git a/sys-apps/usbutils/usbutils-0.86.ebuild b/sys-apps/usbutils/usbutils-0.86.ebuild
deleted file mode 100644
index f789e54b9dda..000000000000
--- a/sys-apps/usbutils/usbutils-0.86.ebuild
+++ /dev/null
@@ -1,41 +0,0 @@
-# Copyright 1999-2009 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/sys-apps/usbutils/usbutils-0.86.ebuild,v 1.1 2009/10/01 03:37:34 vapier Exp $
-
-EAPI="2"
-
-inherit eutils
-
-DESCRIPTION="USB enumeration utilities"
-HOMEPAGE="http://linux-usb.sourceforge.net/"
-SRC_URI="mirror://sourceforge/linux-usb/${P}.tar.gz"
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~x86-fbsd"
-IUSE="network-cron zlib"
-
-DEPEND="virtual/libusb:0
- zlib? ( sys-libs/zlib )"
-RDEPEND="${DEPEND}"
-
-src_prepare() {
- epatch "${FILESDIR}"/${PN}-0.82-fbsd.patch #275052
-}
-
-src_configure() {
- econf \
- --datadir=/usr/share/misc \
- $(use_enable zlib)
-}
-
-src_install() {
- emake DESTDIR="${D}" install || die "install failed"
- newbin "${FILESDIR}"/usbmodules.sh usbmodules || die
- newsbin update-usbids.sh update-usbids || die "update-usbids failed"
- dodoc AUTHORS ChangeLog NEWS README
-
- use network-cron || return 0
- exeinto /etc/cron.monthly
- newexe "${FILESDIR}"/usbutils.cron update-usbids || die
-}