diff options
author | 2008-03-19 07:44:04 +0000 | |
---|---|---|
committer | 2008-03-19 07:44:04 +0000 | |
commit | 0339043fa96713e1a1d5f471a6fc80508deaa985 (patch) | |
tree | 8f23367caa9f875cd5cd8f2375b85b8f9f0927c6 /sys-apps/hwdata-redhat | |
parent | Keyword ~amd64. (diff) | |
download | gentoo-2-0339043fa96713e1a1d5f471a6fc80508deaa985.tar.gz gentoo-2-0339043fa96713e1a1d5f471a6fc80508deaa985.tar.bz2 gentoo-2-0339043fa96713e1a1d5f471a6fc80508deaa985.zip |
Bump, and add support for testing (arch tester Thomas A., bug #207279).
(Portage version: 2.1.4.4)
Diffstat (limited to 'sys-apps/hwdata-redhat')
-rw-r--r-- | sys-apps/hwdata-redhat/ChangeLog | 10 | ||||
-rw-r--r-- | sys-apps/hwdata-redhat/hwdata-redhat-0.216.ebuild | 38 |
2 files changed, 46 insertions, 2 deletions
diff --git a/sys-apps/hwdata-redhat/ChangeLog b/sys-apps/hwdata-redhat/ChangeLog index 19f6a00b899c..b3a71b9a7889 100644 --- a/sys-apps/hwdata-redhat/ChangeLog +++ b/sys-apps/hwdata-redhat/ChangeLog @@ -1,6 +1,12 @@ # ChangeLog for sys-apps/hwdata-redhat -# Copyright 1999-2006 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/sys-apps/hwdata-redhat/ChangeLog,v 1.2 2006/09/08 19:35:47 corsair Exp $ +# Copyright 1999-2008 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/sys-apps/hwdata-redhat/ChangeLog,v 1.3 2008/03/19 07:44:04 dberkholz Exp $ + +*hwdata-redhat-0.216 (19 Mar 2008) + + 19 Mar 2008; Donnie Berkholz <dberkholz@gentoo.org>; + +hwdata-redhat-0.216.ebuild: + Bump, and add support for testing (arch tester Thomas A., bug #207279). 08 Sep 2006; Markus Rothe <corsair@gentoo.org> hwdata-redhat-0.187.ebuild: Added ~ppc64; bug #146851 diff --git a/sys-apps/hwdata-redhat/hwdata-redhat-0.216.ebuild b/sys-apps/hwdata-redhat/hwdata-redhat-0.216.ebuild new file mode 100644 index 000000000000..3fd9d44909b5 --- /dev/null +++ b/sys-apps/hwdata-redhat/hwdata-redhat-0.216.ebuild @@ -0,0 +1,38 @@ +# Copyright 1999-2008 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/sys-apps/hwdata-redhat/hwdata-redhat-0.216.ebuild,v 1.1 2008/03/19 07:44:04 dberkholz Exp $ + +inherit flag-o-matic rpm + +# Tag for which Fedora Core version it's from +FCVER="9" +# Revision of the RPM. Shouldn't affect us, as we're just grabbing the source +# tarball out of it +RPMREV="1" + +MY_P="${P/-redhat}" +DESCRIPTION="Hardware identification and configuration data" +HOMEPAGE="http://fedora.redhat.com/projects/config-tools/" +SRC_URI="mirror://fedora/development/source/SRPMS/${MY_P}-${RPMREV}.fc${FCVER}.src.rpm" +LICENSE="GPL-2 MIT" +SLOT="0" +KEYWORDS="~ppc ~ppc64 ~x86 ~amd64" +IUSE="test" +RDEPEND=">=sys-apps/module-init-tools-3.2 + !sys-apps/hwdata-gentoo" +DEPEND="${RDEPEND} + test? ( sys-apps/pciutils )" +S="${WORKDIR}/${MY_P}" + +src_unpack() { + rpm_src_unpack ${A} + + cd "${S}" + sed -i -e "s:\(/sbin\/lspci\):/usr\1:g" Makefile || die +} + +src_install() { + emake DESTDIR="${D}" install || die "emake install failed" + # Don't let it overwrite a udev-installed file + rm -rf "${D}"/etc/ || die +} |