You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
gentoo-overlay/sys-apps/hwids/hwids-99999999.ebuild

33 lines
737 B

# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/sys-apps/hwids/hwids-99999999.ebuild,v 1.2 2012/06/16 12:51:59 flameeyes Exp $
EAPI="4"
DESCRIPTION="Hardware (PCI, USB) IDs databases"
HOMEPAGE="https://github.com/gentoo/hwids"
LICENSE="|| ( GPL-2 BSD )"
SLOT="0"
KEYWORDS=""
IUSE=""
S="${WORKDIR}"
DEPEND="net-misc/wget"
RDEPEND="!<sys-apps/pciutils-3.1.9-r2
!<sys-apps/usbutils-005-r1"
src_compile() {
wget http://pci-ids.ucw.cz/v2.2/pci.ids.gz http://www.linux-usb.org/usb.ids.gz || die
for file in {usb,pci}.ids; do
zcat ${file}.gz > ${file} || die
done
}
src_install() {
insinto /usr/share/misc
doins {usb,pci}.ids{,.gz}
}