diff options
author | Chris Gianelloni <wolf31o2@gentoo.org> | 2008-05-29 22:28:34 +0000 |
---|---|---|
committer | Chris Gianelloni <wolf31o2@gentoo.org> | 2008-05-29 22:28:34 +0000 |
commit | a2dbe89815687376451e15b98a571ab30a3923e9 (patch) | |
tree | 0d9c93e146067e0e5fd00aa9b30ee5e417d0a3d1 | |
parent | Adding a local copy of nvidia-drivers which installs nvidia-smi and the man p... (diff) | |
download | wolf31o2-a2dbe89815687376451e15b98a571ab30a3923e9.tar.gz wolf31o2-a2dbe89815687376451e15b98a571ab30a3923e9.tar.bz2 wolf31o2-a2dbe89815687376451e15b98a571ab30a3923e9.zip |
Version bump hal-info to pull in the latest upstream changes.
svn path=/; revision=185
-rw-r--r-- | app-misc/hal-info/Manifest | 2 | ||||
-rw-r--r-- | app-misc/hal-info/hal-info-20080508.ebuild | 26 |
2 files changed, 28 insertions, 0 deletions
diff --git a/app-misc/hal-info/Manifest b/app-misc/hal-info/Manifest new file mode 100644 index 0000000..f2a9c8d --- /dev/null +++ b/app-misc/hal-info/Manifest @@ -0,0 +1,2 @@ +DIST hal-info-20080508.tar.gz 202719 RMD160 c24bbe6b161fe3fa6a2e6f989880d25069bb0fc6 SHA1 a2b3dafb6fca8ec11948039424c79b0dfe7133ad SHA256 80655b3531ea56a5d64085e572dfb8d3ecabffd28af482cd130f72dfdd6254b0 +EBUILD hal-info-20080508.ebuild 679 RMD160 b2fcaba05610167665dc657411a01a0e44e2195d SHA1 daedc956da91c10b98d218799e605c5814ebbd89 SHA256 2363605bf76a65b0985f05aa7adea041480d0b51f269a7f9052c802cb94edd55 diff --git a/app-misc/hal-info/hal-info-20080508.ebuild b/app-misc/hal-info/hal-info-20080508.ebuild new file mode 100644 index 0000000..8482b27 --- /dev/null +++ b/app-misc/hal-info/hal-info-20080508.ebuild @@ -0,0 +1,26 @@ +# Copyright 1999-2008 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/app-misc/hal-info/hal-info-20080310.ebuild,v 1.2 2008/05/22 10:44:40 klausman Exp $ + +inherit eutils + +DESCRIPTION="The fdi scripts that HAL uses" +HOMEPAGE="http://hal.freedesktop.org/" +SRC_URI="http://hal.freedesktop.org/releases/${P}.tar.gz" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~alpha ~amd64 ~hppa ~ia64 ~mips ~sparc ~x86" +IUSE="" + +RDEPEND=">=sys-apps/hal-0.5.10" +DEPEND="${RDEPEND}" + +src_compile() { + econf || die "configure failed" + emake || die "make failed" +} + +src_install() { + make DESTDIR="${D}" install || die "install failed." +} |