blob: 6cf1b6010d4f10cb62d775210b8015aff0c0dba4 (
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
47
48
49
50
51
52
|
# 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.11 2012/12/08 11:30:12 flameeyes Exp $
EAPI=5
inherit udev git-2
DESCRIPTION="Hardware (PCI, USB, OUI, IAB) IDs databases"
HOMEPAGE="https://github.com/gentoo/hwids"
EGIT_REPO_URI="${HOMEPAGE}.git"
LICENSE="|| ( GPL-2 BSD ) public-domain"
SLOT="0"
KEYWORDS=""
IUSE="+udev"
DEPEND="net-misc/curl
udev? ( dev-lang/perl !=sys-fs/udev-196 )"
RDEPEND="!<sys-apps/pciutils-3.1.9-r2
!<sys-apps/usbutils-005-r1"
src_prepare() {
emake fetch
}
src_compile() {
for file in {usb,pci}.ids; do
gzip -c ${file} > ${file}.gz || die
done
if use udev; then
emake udev-hwdb
fi
}
src_install() {
insinto /usr/share/misc
doins {usb,pci}.ids{,.gz} oui.txt iab.txt
dodoc README.md
if use udev; then
insinto "$(udev_get_udevdir)"/hwdb.d
doins udev/*.hwdb
fi
}
pkg_postinst() {
if use udev && [[ $(udevadm --help 2>&1) == *hwdb* ]]; then
udevadm hwdb --update
fi
}
|