diff options
author | Seemant Kulleen <seemant@gentoo.org> | 2002-07-25 13:48:39 +0000 |
---|---|---|
committer | Seemant Kulleen <seemant@gentoo.org> | 2002-07-25 13:48:39 +0000 |
commit | 560e9c9d3c373d57d3649dceb60ecfb92f074980 (patch) | |
tree | fcf11bad444b57b2ff51ce5b39142ae0bba9ea05 /app-admin/usbview | |
parent | fix badmask (diff) | |
download | gentoo-2-560e9c9d3c373d57d3649dceb60ecfb92f074980.tar.gz gentoo-2-560e9c9d3c373d57d3649dceb60ecfb92f074980.tar.bz2 gentoo-2-560e9c9d3c373d57d3649dceb60ecfb92f074980.zip |
repoman'd
Diffstat (limited to 'app-admin/usbview')
-rw-r--r-- | app-admin/usbview/usbview-1.0-r1.ebuild | 26 |
1 files changed, 10 insertions, 16 deletions
diff --git a/app-admin/usbview/usbview-1.0-r1.ebuild b/app-admin/usbview/usbview-1.0-r1.ebuild index 199f22731b28..5f4606b62d4e 100644 --- a/app-admin/usbview/usbview-1.0-r1.ebuild +++ b/app-admin/usbview/usbview-1.0-r1.ebuild @@ -1,32 +1,26 @@ -# Copyright 1999-2000 Gentoo Technologies, Inc. +# Copyright 1999-2002 Gentoo Technologies, Inc. # Distributed under the terms of the GNU General Public License, v2 or later -# $Header: /var/cvsroot/gentoo-x86/app-admin/usbview/usbview-1.0-r1.ebuild,v 1.6 2002/07/17 20:43:17 drobbins Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-admin/usbview/usbview-1.0-r1.ebuild,v 1.7 2002/07/25 13:48:39 seemant Exp $ S=${WORKDIR}/${P} DESCRIPTION="Display the topology of devices on the USB bus" SRC_URI="http://www.kroah.com/linux-usb/${P}.tar.gz" -SLOT="0" HOMEPAGE="http://www.kroah.com/linux-usb/" + +SLOT="0" LICENSE="GPL-2" +KEYWORDS="x86" -DEPEND="virtual/glibc - =x11-libs/gtk+-1.2*" +DEPEND="=x11-libs/gtk+-1.2*" src_compile() { - try ./configure --host=${CHOST} --prefix=/usr - try make - + econf || die + make || die } src_install() { - try make DESTDIR=${D} install - dodoc AUTHORS ChangeLog COPYING NEWS README TODO - + make DESTDIR=${D} install || die + dodoc AUTHORS ChangeLog COPYING NEWS README TODO } - - - - - |