summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorFabian Groffen <grobian@gentoo.org>2010-06-08 17:43:18 +0000
committerFabian Groffen <grobian@gentoo.org>2010-06-08 17:43:18 +0000
commit0635448283bd85f0c8c57a6385510d36919a3729 (patch)
treec757767183a6eaea4df51e7540fdd806a69b9dc7 /dev-util/uncrustify
parentDelete calls to deprecated python_version(). (diff)
downloadgentoo-2-0635448283bd85f0c8c57a6385510d36919a3729.tar.gz
gentoo-2-0635448283bd85f0c8c57a6385510d36919a3729.tar.bz2
gentoo-2-0635448283bd85f0c8c57a6385510d36919a3729.zip
Version bump, bug #323217
(Portage version: 2.2.00.15842-prefix/cvs/Darwin powerpc)
Diffstat (limited to 'dev-util/uncrustify')
-rw-r--r--dev-util/uncrustify/ChangeLog7
-rw-r--r--dev-util/uncrustify/uncrustify-0.56.ebuild25
2 files changed, 31 insertions, 1 deletions
diff --git a/dev-util/uncrustify/ChangeLog b/dev-util/uncrustify/ChangeLog
index 24687a29662a..8c9febd01b0f 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.5 2010/02/09 21:01:22 grobian Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-util/uncrustify/ChangeLog,v 1.6 2010/06/08 17:43:18 grobian Exp $
+
+*uncrustify-0.56 (08 Jun 2010)
+
+ 08 Jun 2010; Fabian Groffen <grobian@gentoo.org> +uncrustify-0.56.ebuild:
+ Version bump, bug #323217
*uncrustify-0.55 (09 Feb 2010)
diff --git a/dev-util/uncrustify/uncrustify-0.56.ebuild b/dev-util/uncrustify/uncrustify-0.56.ebuild
new file mode 100644
index 000000000000..9e8274af1ab7
--- /dev/null
+++ b/dev-util/uncrustify/uncrustify-0.56.ebuild
@@ -0,0 +1,25 @@
+# Copyright 1999-2010 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Header: /var/cvsroot/gentoo-x86/dev-util/uncrustify/uncrustify-0.56.ebuild,v 1.1 2010/06/08 17:43:18 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 )"
+RDEPEND=""
+
+src_test() {
+ cd tests
+ ./run_tests.py || die "tests failed"
+}
+
+src_install() {
+ emake DESTDIR="${D}" install || die "Install failed"
+ dodoc AUTHORS ChangeLog NEWS README || die "dodoc failed"
+}