diff options
author | 2012-01-26 06:23:51 +0000 | |
---|---|---|
committer | 2012-01-26 06:23:51 +0000 | |
commit | 70b946ae75c0afc8980e335b0432a9b48af8f215 (patch) | |
tree | 41d8528e8c08052b17e437ecac1c63193c5a3988 | |
parent | Bump. Adds a new relief style, fixes build problems, including with glib-2.31... (diff) | |
download | gentoo-2-70b946ae75c0afc8980e335b0432a9b48af8f215.tar.gz gentoo-2-70b946ae75c0afc8980e335b0432a9b48af8f215.tar.bz2 gentoo-2-70b946ae75c0afc8980e335b0432a9b48af8f215.zip |
Version bump.
(Portage version: 2.2.0_alpha84/cvs/Linux x86_64)
-rw-r--r-- | dev-util/cppi/ChangeLog | 9 | ||||
-rw-r--r-- | dev-util/cppi/cppi-1.16.ebuild | 22 |
2 files changed, 29 insertions, 2 deletions
diff --git a/dev-util/cppi/ChangeLog b/dev-util/cppi/ChangeLog index 6b3f5ae4207f..0f0237f6112b 100644 --- a/dev-util/cppi/ChangeLog +++ b/dev-util/cppi/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for dev-util/cppi -# Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-util/cppi/ChangeLog,v 1.3 2010/03/22 03:38:32 jer Exp $ +# Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/dev-util/cppi/ChangeLog,v 1.4 2012/01/26 06:23:51 jer Exp $ + +*cppi-1.16 (26 Jan 2012) + + 26 Jan 2012; Jeroen Roovers <jer@gentoo.org> +cppi-1.16.ebuild: + Version bump. *cppi-1.15 (22 Mar 2010) diff --git a/dev-util/cppi/cppi-1.16.ebuild b/dev-util/cppi/cppi-1.16.ebuild new file mode 100644 index 000000000000..19ab3db3dbdc --- /dev/null +++ b/dev-util/cppi/cppi-1.16.ebuild @@ -0,0 +1,22 @@ +# Copyright 1999-2012 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/dev-util/cppi/cppi-1.16.ebuild,v 1.1 2012/01/26 06:23:51 jer Exp $ + +EAPI=3 + +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="~x86" +IUSE="" + +DEPEND="app-arch/xz-utils" +RDEPEND="" + +src_install() { + emake DESTDIR="${D}" install || die "emake install failed" + dodoc AUTHORS ChangeLog NEWS THANKS TODO +} |