diff options
author | Jonathan Callen <abcd@gentoo.org> | 2012-07-16 01:44:45 +0000 |
---|---|---|
committer | Jonathan Callen <abcd@gentoo.org> | 2012-07-16 01:44:45 +0000 |
commit | cf63dab0a3b745623d668e84e1e9d90eeb756706 (patch) | |
tree | a14185b7b319db7d935d7d504ede721ca320070a /app-misc/hello | |
parent | Remove ppc/ppc64 use masking on curl_ssl_axtls (diff) | |
download | gentoo-2-cf63dab0a3b745623d668e84e1e9d90eeb756706.tar.gz gentoo-2-cf63dab0a3b745623d668e84e1e9d90eeb756706.tar.bz2 gentoo-2-cf63dab0a3b745623d668e84e1e9d90eeb756706.zip |
Bump to new upstream version
(Portage version: 2.2.0_alpha116/cvs/Linux x86_64)
Diffstat (limited to 'app-misc/hello')
-rw-r--r-- | app-misc/hello/ChangeLog | 10 | ||||
-rw-r--r-- | app-misc/hello/hello-2.8.ebuild | 28 |
2 files changed, 35 insertions, 3 deletions
diff --git a/app-misc/hello/ChangeLog b/app-misc/hello/ChangeLog index 7bdbd7ae9f57..e46251235ee7 100644 --- a/app-misc/hello/ChangeLog +++ b/app-misc/hello/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for app-misc/hello -# Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/app-misc/hello/ChangeLog,v 1.4 2011/06/04 19:33:12 abcd Exp $ +# Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/app-misc/hello/ChangeLog,v 1.5 2012/07/16 01:44:45 abcd Exp $ + +*hello-2.8 (16 Jul 2012) + + 16 Jul 2012; Jonathan Callen <abcd@gentoo.org> +hello-2.8.ebuild: + Bump to new upstream version *hello-2.7 (04 Jun 2011) @@ -22,4 +27,3 @@ 14 Nov 2009; Jonathan Callen <abcd@gentoo.org> +hello-2.4.ebuild, +metadata.xml: New ebuild; implementation of the traditional "Hello, world!" app - diff --git a/app-misc/hello/hello-2.8.ebuild b/app-misc/hello/hello-2.8.ebuild new file mode 100644 index 000000000000..3d65900918c2 --- /dev/null +++ b/app-misc/hello/hello-2.8.ebuild @@ -0,0 +1,28 @@ +# Copyright 1999-2012 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/app-misc/hello/hello-2.8.ebuild,v 1.1 2012/07/16 01:44:45 abcd Exp $ + +EAPI="4" + +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 ~amd64-linux ~x86-linux" +IUSE="nls" + +DOCS=(AUTHORS ChangeLog ChangeLog.O NEWS README THANKS TODO contrib/evolution.txt) + +src_configure() { + econf $(use_enable nls) +} + +src_install() { + default + + for x in contrib man doc po tests src; do + newdoc $x/ChangeLog ChangeLog.$x || die "newdoc failed" + done +} |