diff options
author | 2009-12-06 23:58:01 +0000 | |
---|---|---|
committer | 2009-12-06 23:58:01 +0000 | |
commit | 8faa621e24762751802068bcca0fd8e94234e13b (patch) | |
tree | 03db7ac5b5b190eecdd1998cc10cbbe8d0deecc3 /app-misc | |
parent | Version bumped. (diff) | |
download | gentoo-2-8faa621e24762751802068bcca0fd8e94234e13b.tar.gz gentoo-2-8faa621e24762751802068bcca0fd8e94234e13b.tar.bz2 gentoo-2-8faa621e24762751802068bcca0fd8e94234e13b.zip |
Version bump.
(Portage version: 2.2_rc55/cvs/Linux x86_64)
Diffstat (limited to 'app-misc')
-rw-r--r-- | app-misc/hal-info/ChangeLog | 8 | ||||
-rw-r--r-- | app-misc/hal-info/hal-info-20091130.ebuild | 26 |
2 files changed, 33 insertions, 1 deletions
diff --git a/app-misc/hal-info/ChangeLog b/app-misc/hal-info/ChangeLog index dc752fdb5a9f..d29cb27b14f6 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-2009 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/app-misc/hal-info/ChangeLog,v 1.79 2009/11/29 12:52:33 armin76 Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-misc/hal-info/ChangeLog,v 1.80 2009/12/06 23:58:01 eva Exp $ + +*hal-info-20091130 (06 Dec 2009) + + 06 Dec 2009; Gilles Dartiguelongue <eva@gentoo.org> + +hal-info-20091130.ebuild: + Version bump. 29 Nov 2009; Raúl Porcel <armin76@gentoo.org> hal-info-20090716.ebuild: ia64/sparc stable wrt #287411 diff --git a/app-misc/hal-info/hal-info-20091130.ebuild b/app-misc/hal-info/hal-info-20091130.ebuild new file mode 100644 index 000000000000..ddeecf2e3a38 --- /dev/null +++ b/app-misc/hal-info/hal-info-20091130.ebuild @@ -0,0 +1,26 @@ +# Copyright 1999-2009 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/app-misc/hal-info/hal-info-20091130.ebuild,v 1.1 2009/12/06 23:58:01 eva 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 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sh ~sparc ~x86 ~x86-fbsd" +IUSE="" + +RDEPEND=">=sys-apps/hal-0.5.10" +DEPEND="${RDEPEND}" + +src_compile() { + econf + emake || die "emake failed" +} + +src_install() { + emake DESTDIR="${D}" install || die "install failed." +} |