diff options
author | Saleem Abdulrasool <compnerd@gentoo.org> | 2007-11-23 06:21:44 +0000 |
---|---|---|
committer | Saleem Abdulrasool <compnerd@gentoo.org> | 2007-11-23 06:21:44 +0000 |
commit | e85652ca6840d2bda49e3743deafb0ec9a564dc1 (patch) | |
tree | ed7864e31adfcdf6b4a81c3dd46ac2234f976137 /app-misc | |
parent | initial commit of pm-utils for HAL 0.5.10 (diff) | |
download | gentoo-2-e85652ca6840d2bda49e3743deafb0ec9a564dc1.tar.gz gentoo-2-e85652ca6840d2bda49e3743deafb0ec9a564dc1.tar.bz2 gentoo-2-e85652ca6840d2bda49e3743deafb0ec9a564dc1.zip |
version bump for HAL 0.5.10
(Portage version: 2.1.3.16)
Diffstat (limited to 'app-misc')
-rw-r--r-- | app-misc/hal-info/ChangeLog | 8 | ||||
-rw-r--r-- | app-misc/hal-info/files/digest-hal-info-20071011 | 3 | ||||
-rw-r--r-- | app-misc/hal-info/hal-info-20071011.ebuild | 26 |
3 files changed, 36 insertions, 1 deletions
diff --git a/app-misc/hal-info/ChangeLog b/app-misc/hal-info/ChangeLog index 7559568146c0..d751802eaf7d 100644 --- a/app-misc/hal-info/ChangeLog +++ b/app-misc/hal-info/ChangeLog @@ -1,6 +1,12 @@ # ChangeLog for app-misc/hal-info # Copyright 1999-2007 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/app-misc/hal-info/ChangeLog,v 1.23 2007/09/26 18:11:46 armin76 Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-misc/hal-info/ChangeLog,v 1.24 2007/11/23 06:21:43 compnerd Exp $ + +*hal-info-20071011 (23 Nov 2007) + + 23 Nov 2007; Saleem Abdulrasool <compnerd@gentoo.org> + +hal-info-20071011.ebuild: + Version bump for HAL 0.5.10 26 Sep 2007; Raúl Porcel <armin76@gentoo.org> hal-info-20070618.ebuild: x86 stable diff --git a/app-misc/hal-info/files/digest-hal-info-20071011 b/app-misc/hal-info/files/digest-hal-info-20071011 new file mode 100644 index 000000000000..09993e8c6008 --- /dev/null +++ b/app-misc/hal-info/files/digest-hal-info-20071011 @@ -0,0 +1,3 @@ +MD5 5be31875275c3e852a748b175a82787f hal-info-20071011.tar.gz 148823 +RMD160 b74d44de18ab8593c41217ec08eb00537f9e26b0 hal-info-20071011.tar.gz 148823 +SHA256 f43aa62a69f07c76a0851f7e76dbeccba89e831c402f23a3d530fb2f9311a7c3 hal-info-20071011.tar.gz 148823 diff --git a/app-misc/hal-info/hal-info-20071011.ebuild b/app-misc/hal-info/hal-info-20071011.ebuild new file mode 100644 index 000000000000..4efcd58c527c --- /dev/null +++ b/app-misc/hal-info/hal-info-20071011.ebuild @@ -0,0 +1,26 @@ +# Copyright 1999-2007 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/app-misc/hal-info/hal-info-20071011.ebuild,v 1.1 2007/11/23 06:21:43 compnerd 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="~amd64 ~x86" +IUSE="" + +RDEPEND=">=sys-apps/hal-0.5.10" +DEPEND="${RDEPEND}" + +src_compile() { + econf --enable-recall --enable-video || die "econf failed." + emake || die +} + +src_install() { + make DESTDIR="${D}" install || die "install failed." +} |