# Copyright 1999-2007 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Header: /var/cvsroot/gentoo-x86/sys-apps/usbutils/usbutils-0.73.ebuild,v 1.2 2007/11/14 16:46:21 lavajoe Exp $ inherit eutils autotools 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="" IUSE="" DEPEND="dev-libs/libusb sys-apps/hwdata" src_unpack() { unpack ${A} cd "${S}" epatch "${FILESDIR}"/${P}-byteorder.patch # put usb.ids in same place as pci.ids (/usr/share/misc) sed -i \ -e 's:/usr/share/usb.ids:/usr/share/misc/usb.ids:' \ lsusb.8 || die "sed lsusb.8" eautoreconf } src_compile() { # robbat2 - 2007/10/29 # zlib disabled pending a revision of update-usbids from upstream. # $(use_enable zlib) \ econf \ --datadir=/usr/share/hwdata \ --enable-usbmodules \ --disable-zlib \ || die "./configure failed" emake || die "make failed" } src_install() { emake DESTDIR="${D}" install || die "install failed" dodoc AUTHORS ChangeLog NEWS README rm "${D}/usr/share/hwdata/usb.ids" }