summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDiego Elio Pettenò <flameeyes@gentoo.org>2012-04-16 18:55:52 +0000
committerDiego Elio Pettenò <flameeyes@gentoo.org>2012-04-16 18:55:52 +0000
commit552402f62bc436f65dc83c61cb00deafd5bcbb06 (patch)
tree7060df9cb2bb472c3b9eed237b3bf2bd7c1eae45 /sys-apps/hwids
parentDrop ruby19 to create a stable candidate. (diff)
downloadgentoo-2-552402f62bc436f65dc83c61cb00deafd5bcbb06.tar.gz
gentoo-2-552402f62bc436f65dc83c61cb00deafd5bcbb06.tar.bz2
gentoo-2-552402f62bc436f65dc83c61cb00deafd5bcbb06.zip
Weekly update.
(Portage version: 2.2.0_alpha100/cvs/Linux x86_64)
Diffstat (limited to 'sys-apps/hwids')
-rw-r--r--sys-apps/hwids/ChangeLog7
-rw-r--r--sys-apps/hwids/hwids-20120416.ebuild31
2 files changed, 37 insertions, 1 deletions
diff --git a/sys-apps/hwids/ChangeLog b/sys-apps/hwids/ChangeLog
index d6693ac4dff1..8ea84f94f0c4 100644
--- a/sys-apps/hwids/ChangeLog
+++ b/sys-apps/hwids/ChangeLog
@@ -1,6 +1,11 @@
# ChangeLog for sys-apps/hwids
# Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sys-apps/hwids/ChangeLog,v 1.5 2012/04/14 05:27:29 zmedico Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-apps/hwids/ChangeLog,v 1.6 2012/04/16 18:55:52 flameeyes Exp $
+
+*hwids-20120416 (16 Apr 2012)
+
+ 16 Apr 2012; Diego E. Pettenò <flameeyes@gentoo.org> +hwids-20120416.ebuild:
+ Weekly update.
14 Apr 2012; Zac Medico <zmedico@gentoo.org> hwids-20120408.ebuild:
Add ~amd64-linux and ~x86-linux keywords.
diff --git a/sys-apps/hwids/hwids-20120416.ebuild b/sys-apps/hwids/hwids-20120416.ebuild
new file mode 100644
index 000000000000..a67bf94bcdb0
--- /dev/null
+++ b/sys-apps/hwids/hwids-20120416.ebuild
@@ -0,0 +1,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-20120416.ebuild,v 1.1 2012/04/16 18:55:52 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="~amd64 ~hppa ~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
+}