diff options
author | Jeroen Roovers <jer@gentoo.org> | 2013-03-18 19:57:59 +0000 |
---|---|---|
committer | Jeroen Roovers <jer@gentoo.org> | 2013-03-18 19:57:59 +0000 |
commit | 2356a152829ea15f3756e10823bfcf7cbabd262c (patch) | |
tree | 1a1d4b06caf553396237026826fd3393764101a9 /dev-util/cppi | |
parent | Replace hacks with proper calls to multilib_for_best_abi. (diff) | |
download | gentoo-2-2356a152829ea15f3756e10823bfcf7cbabd262c.tar.gz gentoo-2-2356a152829ea15f3756e10823bfcf7cbabd262c.tar.bz2 gentoo-2-2356a152829ea15f3756e10823bfcf7cbabd262c.zip |
Run eautoreconf (bug #426336). Version bump.
(Portage version: 2.2.0_alpha166/cvs/Linux x86_64, signed Manifest commit with key A792A613)
Diffstat (limited to 'dev-util/cppi')
-rw-r--r-- | dev-util/cppi/ChangeLog | 10 | ||||
-rw-r--r-- | dev-util/cppi/cppi-1.17.ebuild | 8 | ||||
-rw-r--r-- | dev-util/cppi/cppi-1.18.ebuild | 30 |
3 files changed, 44 insertions, 4 deletions
diff --git a/dev-util/cppi/ChangeLog b/dev-util/cppi/ChangeLog index b92a343d8b01..254be1698b97 100644 --- a/dev-util/cppi/ChangeLog +++ b/dev-util/cppi/ChangeLog @@ -1,6 +1,12 @@ # ChangeLog for dev-util/cppi -# Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-util/cppi/ChangeLog,v 1.11 2012/10/09 15:02:41 jer Exp $ +# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/dev-util/cppi/ChangeLog,v 1.12 2013/03/18 19:57:59 jer Exp $ + +*cppi-1.18 (18 Mar 2013) + + 18 Mar 2013; Jeroen Roovers <jer@gentoo.org> cppi-1.17.ebuild, + +cppi-1.18.ebuild: + Run eautoreconf (bug #426336). Version bump. 09 Oct 2012; Jeroen Roovers <jer@gentoo.org> -cppi-1.16.ebuild: Old. diff --git a/dev-util/cppi/cppi-1.17.ebuild b/dev-util/cppi/cppi-1.17.ebuild index 57640d97cc97..69f4b418d90f 100644 --- a/dev-util/cppi/cppi-1.17.ebuild +++ b/dev-util/cppi/cppi-1.17.ebuild @@ -1,8 +1,9 @@ -# Copyright 1999-2012 Gentoo Foundation +# Copyright 1999-2013 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/dev-util/cppi/cppi-1.17.ebuild,v 1.3 2012/09/28 12:51:04 johu Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-util/cppi/cppi-1.17.ebuild,v 1.4 2013/03/18 19:57:59 jer Exp $ EAPI=4 +inherit autotools DESCRIPTION="a cpp directive indenter" HOMEPAGE="http://savannah.gnu.org/projects/cppi" @@ -25,6 +26,9 @@ DEPEND=" DOCS=( AUTHORS ChangeLog NEWS THANKS TODO ) +src_prepare() { + eautoreconf +} src_configure() { econf $(use_enable nls) } diff --git a/dev-util/cppi/cppi-1.18.ebuild b/dev-util/cppi/cppi-1.18.ebuild new file mode 100644 index 000000000000..371bf60535c7 --- /dev/null +++ b/dev-util/cppi/cppi-1.18.ebuild @@ -0,0 +1,30 @@ +# Copyright 1999-2013 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/dev-util/cppi/cppi-1.18.ebuild,v 1.1 2013/03/18 19:57:59 jer Exp $ + +EAPI=4 + +DESCRIPTION="a cpp directive indenter" +HOMEPAGE="http://savannah.gnu.org/projects/cppi" +SRC_URI="mirror://gnu/${PN}/${P}.tar.xz" + +LICENSE="GPL-3" +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="nls" + +CPPI_LINGUAS="de eo fi fr hr it ja pl sr sv uk vi" +for lingua in ${CPPI_LINGUAS}; do + IUSE+=" linguas_${lingua}" +done + +DEPEND=" + app-arch/xz-utils + nls? ( sys-devel/gettext ) +" + +DOCS=( AUTHORS ChangeLog NEWS THANKS TODO ) + +src_configure() { + econf $(use_enable nls) +} |