Gentoo Archives: gentoo-commits

From: "Fabian Groffen (grobian)" <grobian@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in dev-util/uncrustify: metadata.xml ChangeLog uncrustify-0.52.ebuild
Date: Thu, 01 Oct 2009 17:43:47
Message-Id: E1MtPgu-0005tt-Tb@stork.gentoo.org
1 grobian 09/10/01 17:43:44
2
3 Added: metadata.xml ChangeLog uncrustify-0.52.ebuild
4 Log:
5 Initial version, ebuild by Nick Fortino and Mario Fetka, bug #208199
6 (Portage version: 2.2.00.14456-prefix/cvs/Darwin powerpc)
7
8 Revision Changes Path
9 1.1 dev-util/uncrustify/metadata.xml
10
11 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-util/uncrustify/metadata.xml?rev=1.1&view=markup
12 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-util/uncrustify/metadata.xml?rev=1.1&content-type=text/plain
13
14 Index: metadata.xml
15 ===================================================================
16 <?xml version="1.0" encoding="UTF-8"?>
17 <!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
18 <pkgmetadata>
19 <herd>no-herd</herd>
20 <maintainer>
21 <email>grobian@g.o</email>
22 <name>Fabian Groffen</name>
23 </maintainer>
24 </pkgmetadata>
25
26
27
28 1.1 dev-util/uncrustify/ChangeLog
29
30 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-util/uncrustify/ChangeLog?rev=1.1&view=markup
31 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-util/uncrustify/ChangeLog?rev=1.1&content-type=text/plain
32
33 Index: ChangeLog
34 ===================================================================
35 # ChangeLog for dev-util/uncrustify
36 # Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
37 # $Header: /var/cvsroot/gentoo-x86/dev-util/uncrustify/ChangeLog,v 1.1 2009/10/01 17:43:44 grobian Exp $
38
39 *uncrustify-0.52 (01 Oct 2009)
40
41 01 Oct 2009; Fabian Groffen <grobian@g.o> +uncrustify-0.52.ebuild,
42 +metadata.xml:
43 Initial version, ebuild by Nick Fortino and Mario Fetka, bug #208199
44
45
46
47
48 1.1 dev-util/uncrustify/uncrustify-0.52.ebuild
49
50 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-util/uncrustify/uncrustify-0.52.ebuild?rev=1.1&view=markup
51 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-util/uncrustify/uncrustify-0.52.ebuild?rev=1.1&content-type=text/plain
52
53 Index: uncrustify-0.52.ebuild
54 ===================================================================
55 # Copyright 1999-2009 Gentoo Foundation
56 # Distributed under the terms of the GNU General Public License v2
57 # $Header: /var/cvsroot/gentoo-x86/dev-util/uncrustify/uncrustify-0.52.ebuild,v 1.1 2009/10/01 17:43:44 grobian Exp $
58
59 DESCRIPTION="C/C++/C#/D/Java/Pawn code indenter and beautifier"
60 HOMEPAGE="http://uncrustify.sourceforge.net/"
61 SRC_URI="mirror://sourceforge/${PN}/${P}.tgz"
62
63 LICENSE="GPL-2"
64 SLOT="0"
65 KEYWORDS="~amd64 ~x86 ~ppc-macos ~x86-solaris"
66 IUSE="test"
67
68 DEPEND="test? ( dev-lang/python )"
69 RDEPEND=""
70
71 src_test() {
72 cd tests
73 ./run_tests.py || die "tests failed"
74 }
75
76 src_install() {
77 emake DESTDIR="${D}" install || die "Install failed"
78 dodoc AUTHORS BUGS NEWS README || die "dodoc failed"
79 }