diff options
author | Mike Gilbert <floppym@gentoo.org> | 2016-03-06 10:00:17 -0500 |
---|---|---|
committer | Mike Gilbert <floppym@gentoo.org> | 2016-03-06 10:01:16 -0500 |
commit | 71143327e754a50320670307461a072193e79218 (patch) | |
tree | f5f2223f0c7720e68800da78749be2e92d9bcbc7 /sys-apps/hwids/hwids-20160306.ebuild | |
parent | app-crypt/mit-krb5: Stable for HPPA (bug #574604). (diff) | |
download | gentoo-71143327e754a50320670307461a072193e79218.tar.gz gentoo-71143327e754a50320670307461a072193e79218.tar.bz2 gentoo-71143327e754a50320670307461a072193e79218.zip |
sys-apps/hwids: Bump to 20160306
Bug: https://bugs.gentoo.org/576568
Package-Manager: portage-2.2.27_p64
Diffstat (limited to 'sys-apps/hwids/hwids-20160306.ebuild')
-rw-r--r-- | sys-apps/hwids/hwids-20160306.ebuild | 73 |
1 files changed, 73 insertions, 0 deletions
diff --git a/sys-apps/hwids/hwids-20160306.ebuild b/sys-apps/hwids/hwids-20160306.ebuild new file mode 100644 index 000000000000..e9a265691b36 --- /dev/null +++ b/sys-apps/hwids/hwids-20160306.ebuild @@ -0,0 +1,73 @@ +# Copyright 1999-2016 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +EAPI=5 +inherit udev eutils + +DESCRIPTION="Hardware (PCI, USB, OUI, IAB) IDs databases" +HOMEPAGE="https://github.com/gentoo/hwids" +if [[ ${PV} == "99999999" ]]; then + EGIT_REPO_URI="${HOMEPAGE}.git" + inherit git-2 +else + SRC_URI="${HOMEPAGE}/archive/${P}.tar.gz" + KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~amd64-fbsd ~x86-fbsd ~x64-freebsd ~amd64-linux ~arm-linux ~x86-linux" +fi + +LICENSE="|| ( GPL-2 BSD ) public-domain" +SLOT="0" +IUSE="+net +pci +udev +usb" + +DEPEND="udev? ( + dev-lang/perl + >=virtual/udev-206 +)" +[[ ${PV} == "99999999" ]] && DEPEND+=" udev? ( net-misc/curl )" +RDEPEND="!<sys-apps/pciutils-3.1.9-r2 + !<sys-apps/usbutils-005-r1" + +S=${WORKDIR}/hwids-${P} + +src_prepare() { + [[ ${PV} == "99999999" ]] && emake fetch + + sed -i -e '/udevadm hwdb/d' Makefile || die + + # Create a rules file compatible with older udev. + sed -e 's/evdev:name/keyboard:name/' \ + -e 's/evdev:atkbd:dmi/keyboard:dmi/' \ + -e 's/evdev:input:b\([^v]*\)v\([^p]*\)p\([^e]*\)\(e.*\)\?/keyboard:usb:v\2p\3/' \ + -e 's/keyboard:usb:v046DpC52D\*/keyboard:usb:v046DpC52Dd*dc*dsc*dp*ic*isc*ip*in00*/' \ + -e 's/keyboard:usb:v0458p0708\*/keyboard:usb:v0458p0708d*dc*dsc*dp*ic*isc*ip*in01*/' \ + udev/60-keyboard.hwdb > udev/61-oldkeyboard.hwdb || die +} + +_emake() { + emake \ + NET=$(usex net) \ + PCI=$(usex pci) \ + UDEV=$(usex udev) \ + USB=$(usex usb) \ + "$@" +} + +src_compile() { + _emake +} + +src_install() { + _emake install \ + DOCDIR="${EPREFIX}/usr/share/doc/${PF}" \ + MISCDIR="${EPREFIX}/usr/share/misc" \ + HWDBDIR="${EPREFIX}$(get_udevdir)/hwdb.d" \ + DESTDIR="${D}" +} + +pkg_postinst() { + if use udev; then + udevadm hwdb --update --root="${ROOT%/}" + # http://cgit.freedesktop.org/systemd/systemd/commit/?id=1fab57c209035f7e66198343074e9cee06718bda + [ "${ROOT:-/}" = "/" ] && udevadm control --reload + fi +} |