diff options
author | 2012-06-12 17:32:52 +0000 | |
---|---|---|
committer | 2012-06-12 17:32:52 +0000 | |
commit | 23b4494002375fe61f5e23145267f5cec56a8745 (patch) | |
tree | 0992544b1cc06282265e07264f442d6831c52fea /sys-apps/hwids | |
parent | marked x86 per bug 420289 (diff) | |
download | gentoo-2-23b4494002375fe61f5e23145267f5cec56a8745.tar.gz gentoo-2-23b4494002375fe61f5e23145267f5cec56a8745.tar.bz2 gentoo-2-23b4494002375fe61f5e23145267f5cec56a8745.zip |
Version bump.
(Portage version: 2.2.0_alpha110/cvs/Linux x86_64)
Diffstat (limited to 'sys-apps/hwids')
-rw-r--r-- | sys-apps/hwids/ChangeLog | 8 | ||||
-rw-r--r-- | sys-apps/hwids/hwids-20120611.ebuild (renamed from sys-apps/hwids/hwids-20120507.ebuild) | 16 |
2 files changed, 18 insertions, 6 deletions
diff --git a/sys-apps/hwids/ChangeLog b/sys-apps/hwids/ChangeLog index 9fee419bb254..844f456f8b7b 100644 --- a/sys-apps/hwids/ChangeLog +++ b/sys-apps/hwids/ChangeLog @@ -1,6 +1,12 @@ # 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.10 2012/05/16 14:44:10 aballier Exp $ +# $Header: /var/cvsroot/gentoo-x86/sys-apps/hwids/ChangeLog,v 1.11 2012/06/12 17:32:52 flameeyes Exp $ + +*hwids-20120611 (12 Jun 2012) + + 12 Jun 2012; Diego E. Pettenò <flameeyes@gentoo.org> +hwids-20120611.ebuild, + -hwids-20120507.ebuild: + Version bump. 16 May 2012; Alexis Ballier <aballier@gentoo.org> hwids-20120512.ebuild: keyword ~amd64-fbsd diff --git a/sys-apps/hwids/hwids-20120507.ebuild b/sys-apps/hwids/hwids-20120611.ebuild index 6bec610a8c76..63a09482c40a 100644 --- a/sys-apps/hwids/hwids-20120507.ebuild +++ b/sys-apps/hwids/hwids-20120611.ebuild @@ -1,31 +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-20120507.ebuild,v 1.1 2012/05/10 05:00:34 flameeyes Exp $ +# $Header: /var/cvsroot/gentoo-x86/sys-apps/hwids/hwids-20120611.ebuild,v 1.1 2012/06/12 17:32: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" +HOMEPAGE="https://github.com/Flameeyes/hwids" +SRC_URI="https://github.com/Flameeyes/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 ~x86-fbsd ~amd64-linux ~x86-linux" +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}"/Flameeyes-hwids-* + for file in {usb,pci}.ids; do gzip -c ${file} > ${file}.gz || die done } src_install() { + cd "${S}"/Flameeyes-hwids-* + insinto /usr/share/misc doins {usb,pci}.ids{,.gz} - dodoc README + dodoc README.md } |