From e41df60443b928bb6d063e1dde94dfb63dc27f3d Mon Sep 17 00:00:00 2001 From: Jonathan Callen Date: Mon, 8 Feb 2010 22:20:35 +0000 Subject: New upstream version (Portage version: -svn/cvs/Linux i686) --- app-misc/hello/ChangeLog | 9 +++++++-- app-misc/hello/hello-2.5.ebuild | 27 +++++++++++++++++++++++++++ 2 files changed, 34 insertions(+), 2 deletions(-) create mode 100644 app-misc/hello/hello-2.5.ebuild (limited to 'app-misc/hello') diff --git a/app-misc/hello/ChangeLog b/app-misc/hello/ChangeLog index 879fc5a83cf0..3bbf5bf8d2e3 100644 --- a/app-misc/hello/ChangeLog +++ b/app-misc/hello/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for app-misc/hello -# Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/app-misc/hello/ChangeLog,v 1.1 2009/11/14 02:12:42 abcd Exp $ +# Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/app-misc/hello/ChangeLog,v 1.2 2010/02/08 22:20:35 abcd Exp $ + +*hello-2.5 (08 Feb 2010) + + 08 Feb 2010; Jonathan Callen +hello-2.5.ebuild: + New upstream version *hello-2.4 (14 Nov 2009) diff --git a/app-misc/hello/hello-2.5.ebuild b/app-misc/hello/hello-2.5.ebuild new file mode 100644 index 000000000000..5d9d8a95ab97 --- /dev/null +++ b/app-misc/hello/hello-2.5.ebuild @@ -0,0 +1,27 @@ +# Copyright 1999-2010 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/app-misc/hello/hello-2.5.ebuild,v 1.1 2010/02/08 22:20:35 abcd Exp $ + +EAPI="2" + +DESCRIPTION="GNU \"Hello, world\" application" +HOMEPAGE="http://www.gnu.org/software/hello/" +SRC_URI="mirror://gnu/${PN}/${P}.tar.gz" + +LICENSE="FDL-1.3 GPL-3" +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="nls" + +src_configure() { + econf $(use_enable nls) +} + +src_install() { + emake DESTDIR="${D}" install || die "make install failed" + + dodoc AUTHORS ChangeLog* NEWS README THANKS TODO contrib/evolution.txt || die "dodoc failed" + for x in contrib man doc po tests src; do + newdoc $x/ChangeLog ChangeLog.$x || die "newdoc failed" + done +} -- cgit v1.2.3-65-gdbad