diff options
author | Bruce A. Locke <blocke@gentoo.org> | 2002-02-25 01:17:01 +0000 |
---|---|---|
committer | Bruce A. Locke <blocke@gentoo.org> | 2002-02-25 01:17:01 +0000 |
commit | 8cc8c7b2c737ed2a18d62ec03883933321da0fbd (patch) | |
tree | 7aa7e4021ee871e9a5fc72861165028ffda1c7e0 /sys-apps/usbutils | |
parent | ebuild contributed by marc@aspre.net (Marc Soda) (diff) | |
download | historical-8cc8c7b2c737ed2a18d62ec03883933321da0fbd.tar.gz historical-8cc8c7b2c737ed2a18d62ec03883933321da0fbd.tar.bz2 historical-8cc8c7b2c737ed2a18d62ec03883933321da0fbd.zip |
ebuild submitted by folokai@earthlink.net (scott worley)
Diffstat (limited to 'sys-apps/usbutils')
-rw-r--r-- | sys-apps/usbutils/ChangeLog | 12 | ||||
-rw-r--r-- | sys-apps/usbutils/files/digest-usbutils-0.9 | 1 | ||||
-rw-r--r-- | sys-apps/usbutils/usbutils-0.9.ebuild | 26 |
3 files changed, 39 insertions, 0 deletions
diff --git a/sys-apps/usbutils/ChangeLog b/sys-apps/usbutils/ChangeLog new file mode 100644 index 000000000000..41ee45aea647 --- /dev/null +++ b/sys-apps/usbutils/ChangeLog @@ -0,0 +1,12 @@ +# ChangeLog for sys-apps/usbutils +# Copyright 2002 Gentoo Technologies, Inc.; Distributed under the GPL +# $Header: /var/cvsroot/gentoo-x86/sys-apps/usbutils/ChangeLog,v 1.1 2002/02/25 01:17:01 blocke Exp $ + +*usbutils-0.9 (24 Feb 2002) + + 24 Feb 2002; Bruce A. Locke <blocke@gentoo.org> usbutils-0.9.ebuild : + + Ebuild contributed by Scott Worley (folokai@earthlink.net) + + + diff --git a/sys-apps/usbutils/files/digest-usbutils-0.9 b/sys-apps/usbutils/files/digest-usbutils-0.9 new file mode 100644 index 000000000000..ce5a1dc00c8a --- /dev/null +++ b/sys-apps/usbutils/files/digest-usbutils-0.9 @@ -0,0 +1 @@ +MD5 a7076627efb02bc2a0b7186ef249eb05 usbutils-0.9.tar.gz 221251 diff --git a/sys-apps/usbutils/usbutils-0.9.ebuild b/sys-apps/usbutils/usbutils-0.9.ebuild new file mode 100644 index 000000000000..b7d5971fd1c7 --- /dev/null +++ b/sys-apps/usbutils/usbutils-0.9.ebuild @@ -0,0 +1,26 @@ +# Copyright 1999-2002 Gentoo Technologies, Inc. +# Distributed under the terms of the GNU General Public License, v2 or later +# $Header: /var/cvsroot/gentoo-x86/sys-apps/usbutils/usbutils-0.9.ebuild,v 1.1 2002/02/25 01:17:01 blocke Exp $ + +S=${WORKDIR}/${P} +DESCRIPTION="USB enumeration utilities" +SRC_URI="http://usb.cs.tum.edu/download/usbutils/${P}.tar.gz" +HOMEPAGE="http://usb.cs.tum.edu/" + +DEPEND="virtual/glibc" + +src_compile() { + # put usb.ids in same place as pci.ids (/usr/share/misc) + ./configure \ + --host=${CHOST} \ + --prefix=/usr \ + --infodir=/usr/share/info \ + --mandir=/usr/share/man \ + --datadir=/usr/share/misc || die "./configure failed" + + emake || die +} + +src_install () { + make DESTDIR=${D} install || die +} |