diff options
author | Fabian Groffen <grobian@gentoo.org> | 2013-05-18 17:48:58 +0000 |
---|---|---|
committer | Fabian Groffen <grobian@gentoo.org> | 2013-05-18 17:48:58 +0000 |
commit | 568ec3ca228849bb11875faa744c95e7ff123949 (patch) | |
tree | 4a80571f7c192d385fb41f35e5443bd7221e4ee7 /dev-util/uncrustify/uncrustify-0.60.ebuild | |
parent | Add XSA-56 / CVE-2072 sec. patch (diff) | |
download | gentoo-2-568ec3ca228849bb11875faa744c95e7ff123949.tar.gz gentoo-2-568ec3ca228849bb11875faa744c95e7ff123949.tar.bz2 gentoo-2-568ec3ca228849bb11875faa744c95e7ff123949.zip |
Version bump, bug #469580
(Portage version: 2.2.01.21938-prefix/cvs/SunOS i386, signed Manifest commit with key 0x5F75F607C5C74E89)
Diffstat (limited to 'dev-util/uncrustify/uncrustify-0.60.ebuild')
-rw-r--r-- | dev-util/uncrustify/uncrustify-0.60.ebuild | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/dev-util/uncrustify/uncrustify-0.60.ebuild b/dev-util/uncrustify/uncrustify-0.60.ebuild new file mode 100644 index 000000000000..a569e8a123f0 --- /dev/null +++ b/dev-util/uncrustify/uncrustify-0.60.ebuild @@ -0,0 +1,29 @@ +# Copyright 1999-2013 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/dev-util/uncrustify/uncrustify-0.60.ebuild,v 1.1 2013/05/18 17:48:58 grobian Exp $ + +EAPI="3" + +inherit eutils + +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 ~x64-macos ~x64-solaris ~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" +} |