diff options
author | 2009-04-18 17:41:28 +0000 | |
---|---|---|
committer | 2009-04-18 17:41:28 +0000 | |
commit | 8f2ce41753cb7e4fa121714e7e45ddeb87b8a98d (patch) | |
tree | f4c01611eba59e53f4feed894d02f775617300d8 /app-misc | |
parent | Stable on alpha, bug #266103 (diff) | |
download | gentoo-2-8f2ce41753cb7e4fa121714e7e45ddeb87b8a98d.tar.gz gentoo-2-8f2ce41753cb7e4fa121714e7e45ddeb87b8a98d.tar.bz2 gentoo-2-8f2ce41753cb7e4fa121714e7e45ddeb87b8a98d.zip |
Bump to 20090414.
(Portage version: 2.2_rc30/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-20090414.ebuild | 26 |
2 files changed, 33 insertions, 1 deletions
diff --git a/app-misc/hal-info/ChangeLog b/app-misc/hal-info/ChangeLog index 497f5fb0c5bb..ac65546a8a1b 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.59 2009/03/30 20:23:43 eva Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-misc/hal-info/ChangeLog,v 1.60 2009/04/18 17:41:28 eva Exp $ + +*hal-info-20090414 (18 Apr 2009) + + 18 Apr 2009; Gilles Dartiguelongue <eva@gentoo.org> + +hal-info-20090414.ebuild: + Bump to 20090414. *hal-info-20090330 (30 Mar 2009) diff --git a/app-misc/hal-info/hal-info-20090414.ebuild b/app-misc/hal-info/hal-info-20090414.ebuild new file mode 100644 index 000000000000..2826f144dec3 --- /dev/null +++ b/app-misc/hal-info/hal-info-20090414.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-20090414.ebuild,v 1.1 2009/04/18 17:41:28 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." +} |