diff options
author | Diego Elio Pettenò <flameeyes@gentoo.org> | 2012-07-31 02:20:14 +0000 |
---|---|---|
committer | Diego Elio Pettenò <flameeyes@gentoo.org> | 2012-07-31 02:20:14 +0000 |
commit | d2c9da69d602d4e2746e7458fef41cc4676cce56 (patch) | |
tree | 35a0d1e086d4ea748d91ea7906c6b4f2293e2a20 /sys-apps | |
parent | Version bump and punt RC's (diff) | |
download | gentoo-2-d2c9da69d602d4e2746e7458fef41cc4676cce56.tar.gz gentoo-2-d2c9da69d602d4e2746e7458fef41cc4676cce56.tar.bz2 gentoo-2-d2c9da69d602d4e2746e7458fef41cc4676cce56.zip |
Version bump.
(Portage version: 2.2.0_alpha120/cvs/Linux x86_64)
Diffstat (limited to 'sys-apps')
-rw-r--r-- | sys-apps/hwids/ChangeLog | 7 | ||||
-rw-r--r-- | sys-apps/hwids/hwids-20120730.ebuild | 37 |
2 files changed, 43 insertions, 1 deletions
diff --git a/sys-apps/hwids/ChangeLog b/sys-apps/hwids/ChangeLog index 9acab01fcad6..9d1ac5ce5faf 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.15 2012/07/11 09:03:20 flameeyes Exp $ +# $Header: /var/cvsroot/gentoo-x86/sys-apps/hwids/ChangeLog,v 1.16 2012/07/31 02:20:14 flameeyes Exp $ + +*hwids-20120730 (31 Jul 2012) + + 31 Jul 2012; Diego E. Pettenò <flameeyes@gentoo.org> +hwids-20120730.ebuild: + Version bump. *hwids-20120711 (11 Jul 2012) diff --git a/sys-apps/hwids/hwids-20120730.ebuild b/sys-apps/hwids/hwids-20120730.ebuild new file mode 100644 index 000000000000..bc1b99c6b0b0 --- /dev/null +++ b/sys-apps/hwids/hwids-20120730.ebuild @@ -0,0 +1,37 @@ +# 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-20120730.ebuild,v 1.1 2012/07/31 02:20:14 flameeyes Exp $ + +EAPI="4" + +DESCRIPTION="Hardware (PCI, USB) IDs databases" +HOMEPAGE="https://github.com/gentoo/hwids" +SRC_URI="https://github.com/gentoo/hwids/tarball/${P} -> ${P}.tar.gz" + +LICENSE="|| ( GPL-2 BSD )" +SLOT="0" +KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux" +IUSE="" + +DEPEND="" +RDEPEND="!<sys-apps/pciutils-3.1.9-r2 + !<sys-apps/usbutils-005-r1" + +S="${WORKDIR}" + +src_compile() { + cd "${S}"/gentoo-hwids-* + + for file in {usb,pci}.ids; do + gzip -c ${file} > ${file}.gz || die + done +} + +src_install() { + cd "${S}"/gentoo-hwids-* + + insinto /usr/share/misc + doins {usb,pci}.ids{,.gz} + + dodoc README.md +} |