summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSebastian Pipping <sping@gentoo.org>2009-10-04 15:34:12 +0000
committerSebastian Pipping <sping@gentoo.org>2009-10-04 15:34:12 +0000
commit43c57e50e81fc28275bcb4526610c067e36f8976 (patch)
treed6398c0c9c890d85ee8ba564ecb15532e5516d13 /dev-util/uncrustify
parentSilly, sleepy me. (diff)
downloadgentoo-2-43c57e50e81fc28275bcb4526610c067e36f8976.tar.gz
gentoo-2-43c57e50e81fc28275bcb4526610c067e36f8976.tar.bz2
gentoo-2-43c57e50e81fc28275bcb4526610c067e36f8976.zip
Add live ebuild from sunrise
(Portage version: 2.1.6.13/cvs/Linux i686)
Diffstat (limited to 'dev-util/uncrustify')
-rw-r--r--dev-util/uncrustify/ChangeLog7
-rw-r--r--dev-util/uncrustify/uncrustify-9999.ebuild28
2 files changed, 34 insertions, 1 deletions
diff --git a/dev-util/uncrustify/ChangeLog b/dev-util/uncrustify/ChangeLog
index 636284f9c769..29efe2d339ac 100644
--- a/dev-util/uncrustify/ChangeLog
+++ b/dev-util/uncrustify/ChangeLog
@@ -1,6 +1,11 @@
# ChangeLog for dev-util/uncrustify
# Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-util/uncrustify/ChangeLog,v 1.2 2009/10/04 15:19:01 sping Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-util/uncrustify/ChangeLog,v 1.3 2009/10/04 15:34:12 sping Exp $
+
+*uncrustify-9999 (04 Oct 2009)
+
+ 04 Oct 2009; Sebastian Pipping <sping@gentoo.org> +uncrustify-9999.ebuild:
+ Add live ebuild from sunrise
*uncrustify-0.53 (04 Oct 2009)
diff --git a/dev-util/uncrustify/uncrustify-9999.ebuild b/dev-util/uncrustify/uncrustify-9999.ebuild
new file mode 100644
index 000000000000..a6bd7720d55f
--- /dev/null
+++ b/dev-util/uncrustify/uncrustify-9999.ebuild
@@ -0,0 +1,28 @@
+# Copyright 1999-2009 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Header: /var/cvsroot/gentoo-x86/dev-util/uncrustify/uncrustify-9999.ebuild,v 1.1 2009/10/04 15:34:12 sping Exp $
+
+ESVN_REPO_URI="http://${PN}.svn.sourceforge.net/svnroot/${PN}/trunk/${PN}"
+inherit subversion
+
+DESCRIPTION="C/C++/C#/D/Java/Pawn code indenter and beautifier"
+HOMEPAGE="http://uncrustify.sourceforge.net/"
+SRC_URI=""
+
+LICENSE="GPL-2"
+SLOT="0"
+KEYWORDS=""
+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 BUGS NEWS README || die "dodoc failed"
+}