blob: 711800e47a45e9e57b549927eed7433c26a97775 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
|
# Copyright 1999-2004 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/sys-apps/usbutils/usbutils-0.11-r3.ebuild,v 1.9 2004/02/18 13:55:05 agriffis Exp $
inherit gnuconfig
# note: update these regularly from http://www.linux-usb.org/usb.ids
# and upload to gentoo mirrors - <liquidx@gentoo.org>
USB_IDS_VER="20030906"
DESCRIPTION="USB enumeration utilities"
SRC_URI="http://usb.cs.tum.edu/download/usbutils/${P}.tar.gz
mirror://gentoo/usb.ids-${USB_IDS_VER}.gz"
HOMEPAGE="http://usb.cs.tum.edu/"
KEYWORDS="x86 amd64 ppc sparc hppa alpha ia64"
IUSE=""
SLOT="0"
LICENSE="GPL-2"
DEPEND="virtual/glibc"
src_unpack() {
unpack ${A}
use amd64 && gnuconfig_update
use alpha && gnuconfig_update
# replace usb.ids with an updated version
mv ${WORKDIR}/usb.ids-${USB_IDS_VER} ${S}/usb.ids || die "unable to replace usb.ids"
}
src_compile() {
# put usb.ids in same place as pci.ids (/usr/share/misc)
econf \
--datadir=/usr/share/misc || die "./configure failed"
emake || die
}
src_install() {
make DESTDIR=${D} install || die
# we don't need libusb.* from usbutils because it conflicts
# with dev-libs/libusb
rm -rf ${D}/usr/lib
rm -rf ${D}/usr/include
}
|