diff options
author | Fabian Groffen <grobian@gentoo.org> | 2011-08-03 11:23:44 +0000 |
---|---|---|
committer | Fabian Groffen <grobian@gentoo.org> | 2011-08-03 11:23:44 +0000 |
commit | 96f1b2035dfb4f68c74d4379bb3fb40934181cea (patch) | |
tree | 739fe4c427a94115188e2dee480aeffc38629639 /dev-util/uncrustify | |
parent | Fix encoding in ChangeLog (diff) | |
download | gentoo-2-96f1b2035dfb4f68c74d4379bb3fb40934181cea.tar.gz gentoo-2-96f1b2035dfb4f68c74d4379bb3fb40934181cea.tar.bz2 gentoo-2-96f1b2035dfb4f68c74d4379bb3fb40934181cea.zip |
Version bump to 0.58
(Portage version: 2.2.01.19011-prefix/cvs/SunOS i386)
Diffstat (limited to 'dev-util/uncrustify')
-rw-r--r-- | dev-util/uncrustify/ChangeLog | 9 | ||||
-rw-r--r-- | dev-util/uncrustify/uncrustify-0.58.ebuild | 25 |
2 files changed, 32 insertions, 2 deletions
diff --git a/dev-util/uncrustify/ChangeLog b/dev-util/uncrustify/ChangeLog index 70af9b8db77b..77a2be9174a9 100644 --- a/dev-util/uncrustify/ChangeLog +++ b/dev-util/uncrustify/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for dev-util/uncrustify -# Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-util/uncrustify/ChangeLog,v 1.10 2010/12/20 13:35:30 grobian Exp $ +# Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/dev-util/uncrustify/ChangeLog,v 1.11 2011/08/03 11:23:44 grobian Exp $ + +*uncrustify-0.58 (03 Aug 2011) + + 03 Aug 2011; Fabian Groffen <grobian@gentoo.org> +uncrustify-0.58.ebuild: + Version bump to 0.58 *uncrustify-0.57 (20 Dec 2010) diff --git a/dev-util/uncrustify/uncrustify-0.58.ebuild b/dev-util/uncrustify/uncrustify-0.58.ebuild new file mode 100644 index 000000000000..0b6746ab2423 --- /dev/null +++ b/dev-util/uncrustify/uncrustify-0.58.ebuild @@ -0,0 +1,25 @@ +# Copyright 1999-2011 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/dev-util/uncrustify/uncrustify-0.58.ebuild,v 1.1 2011/08/03 11:23:44 grobian Exp $ + +DESCRIPTION="C/C++/C#/D/Java/Pawn code indenter and beautifier" +HOMEPAGE="http://uncrustify.sourceforge.net/" +SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~amd64 ~x86 ~amd64-linux ~ppc-macos ~x86-solaris" +IUSE="test" + +DEPEND="test? ( =dev-lang/python-2* )" +RDEPEND="" + +src_test() { + cd tests + python2 run_tests.py || die "tests failed" +} + +src_install() { + emake DESTDIR="${D}" install || die "Install failed" + dodoc AUTHORS ChangeLog NEWS README || die "dodoc failed" +} |