diff options
author | 2017-03-28 17:04:12 -0400 | |
---|---|---|
committer | 2017-03-28 17:04:46 -0400 | |
commit | fd3f938bd4f6a801ec2afd0b2f42b4a7c7143681 (patch) | |
tree | ac0136be9c62fc5c243e0dbd8510088a29b9579f /sys-apps/hwids/hwids-20170328.ebuild | |
parent | dev-python/gevent: Remove installation of changelog (diff) | |
download | gentoo-fd3f938bd4f6a801ec2afd0b2f42b4a7c7143681.tar.gz gentoo-fd3f938bd4f6a801ec2afd0b2f42b4a7c7143681.tar.bz2 gentoo-fd3f938bd4f6a801ec2afd0b2f42b4a7c7143681.zip |
sys-apps/hwids: bump
Package-Manager: Portage-2.3.5_p2, Repoman-2.3.2_p32
Diffstat (limited to 'sys-apps/hwids/hwids-20170328.ebuild')
-rw-r--r-- | sys-apps/hwids/hwids-20170328.ebuild | 74 |
1 files changed, 74 insertions, 0 deletions
diff --git a/sys-apps/hwids/hwids-20170328.ebuild b/sys-apps/hwids/hwids-20170328.ebuild new file mode 100644 index 000000000000..13f25bb11b32 --- /dev/null +++ b/sys-apps/hwids/hwids-20170328.ebuild @@ -0,0 +1,74 @@ +# Copyright 1999-2017 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 + +EAPI="6" + +inherit udev + +DESCRIPTION="Hardware (PCI, USB, OUI, IAB) IDs databases" +HOMEPAGE="https://github.com/gentoo/hwids" +if [[ ${PV} == "99999999" ]]; then + inherit git-r3 + EGIT_REPO_URI="${HOMEPAGE}.git" +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 ~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" + +if [[ ${PV} != 99999999 ]]; then + S=${WORKDIR}/hwids-${P} +fi + +src_unpack() { + if [[ ${PV} == 99999999 ]]; then + git-r3_src_unpack + cd "${S}" || die + emake fetch + else + default + fi +} + +src_prepare() { + default + sed -i -e '/udevadm hwdb/d' Makefile || 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%/}" + fi +} |