blob: 6bec610a8c7629579e8b2ad7862f7775e79ec901 (
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
|
# 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-20120507.ebuild,v 1.1 2012/05/10 05:00:34 flameeyes Exp $
EAPI="4"
DESCRIPTION="Hardware (PCI, USB) IDs databases"
HOMEPAGE="http://git.overlays.gentoo.org/gitweb/?p=proj/hwids.git;a=summary"
SRC_URI="http://dev.gentoo.org/~flameeyes/hwids/${P}.tar.xz"
LICENSE="|| ( GPL-2 BSD )"
SLOT="0"
KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~x86-fbsd ~amd64-linux ~x86-linux"
IUSE=""
DEPEND=""
RDEPEND="!<sys-apps/pciutils-3.1.9-r2
!<sys-apps/usbutils-005-r1"
src_compile() {
for file in {usb,pci}.ids; do
gzip -c ${file} > ${file}.gz || die
done
}
src_install() {
insinto /usr/share/misc
doins {usb,pci}.ids{,.gz}
dodoc README
}
|