diff options
author | Gilles Dartiguelongue <eva@gentoo.org> | 2009-03-09 23:11:27 +0000 |
---|---|---|
committer | Gilles Dartiguelongue <eva@gentoo.org> | 2009-03-09 23:11:27 +0000 |
commit | 4126ac8cb72942c419ccfe85e7a50652eaa3202c (patch) | |
tree | 73097f677c29ceaf82da66813650ebf62cc65aa5 /app-misc/hal-info | |
parent | Version bump (diff) | |
download | gentoo-2-4126ac8cb72942c419ccfe85e7a50652eaa3202c.tar.gz gentoo-2-4126ac8cb72942c419ccfe85e7a50652eaa3202c.tar.bz2 gentoo-2-4126ac8cb72942c419ccfe85e7a50652eaa3202c.zip |
Bump to 20090309.
(Portage version: 2.2_rc23/cvs/Linux x86_64)
Diffstat (limited to 'app-misc/hal-info')
-rw-r--r-- | app-misc/hal-info/ChangeLog | 8 | ||||
-rw-r--r-- | app-misc/hal-info/hal-info-20090309.ebuild | 26 |
2 files changed, 33 insertions, 1 deletions
diff --git a/app-misc/hal-info/ChangeLog b/app-misc/hal-info/ChangeLog index bfd007eebf76..95f7a9e5d82b 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.57 2009/03/08 21:45:18 josejx Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-misc/hal-info/ChangeLog,v 1.58 2009/03/09 23:11:27 eva Exp $ + +*hal-info-20090309 (09 Mar 2009) + + 09 Mar 2009; Gilles Dartiguelongue <eva@gentoo.org> + +hal-info-20090309.ebuild: + Bump to 20090309. 08 Mar 2009; Joseph Jezak <josejx@gentoo.org> hal-info-20081219.ebuild: Marked ppc64 for bug #259080. diff --git a/app-misc/hal-info/hal-info-20090309.ebuild b/app-misc/hal-info/hal-info-20090309.ebuild new file mode 100644 index 000000000000..421781fb049a --- /dev/null +++ b/app-misc/hal-info/hal-info-20090309.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-20090309.ebuild,v 1.1 2009/03/09 23:11:27 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." +} |