Gentoo Archives: gentoo-commits

From: "Matsuu Takuto (matsuu)" <matsuu@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in app-admin/augeas: ChangeLog augeas-0.5.0.ebuild
Date: Sun, 29 Mar 2009 16:59:37
Message-Id: E1LnyMA-0007Ki-Q7@stork.gentoo.org
1 matsuu 09/03/29 16:59:34
2
3 Modified: ChangeLog
4 Added: augeas-0.5.0.ebuild
5 Log:
6 Version bumped. Fixed NaturalDocs related issue, bug #264063.
7 (Portage version: 2.1.6.8/cvs/Linux x86_64)
8
9 Revision Changes Path
10 1.4 app-admin/augeas/ChangeLog
11
12 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-admin/augeas/ChangeLog?rev=1.4&view=markup
13 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-admin/augeas/ChangeLog?rev=1.4&content-type=text/plain
14 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-admin/augeas/ChangeLog?r1=1.3&r2=1.4
15
16 Index: ChangeLog
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/app-admin/augeas/ChangeLog,v
19 retrieving revision 1.3
20 retrieving revision 1.4
21 diff -u -r1.3 -r1.4
22 --- ChangeLog 24 Mar 2009 23:19:14 -0000 1.3
23 +++ ChangeLog 29 Mar 2009 16:59:34 -0000 1.4
24 @@ -1,6 +1,11 @@
25 # ChangeLog for app-admin/augeas
26 # Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
27 -# $Header: /var/cvsroot/gentoo-x86/app-admin/augeas/ChangeLog,v 1.3 2009/03/24 23:19:14 josejx Exp $
28 +# $Header: /var/cvsroot/gentoo-x86/app-admin/augeas/ChangeLog,v 1.4 2009/03/29 16:59:34 matsuu Exp $
29 +
30 +*augeas-0.5.0 (29 Mar 2009)
31 +
32 + 29 Mar 2009; MATSUU Takuto <matsuu@g.o> +augeas-0.5.0.ebuild:
33 + Version bumped. Fixed NaturalDocs related issue, bug #264063.
34
35 24 Mar 2009; Joseph Jezak <josejx@g.o> augeas-0.4.1.ebuild:
36 Marked ~ppc for bug #263622.
37
38
39
40 1.1 app-admin/augeas/augeas-0.5.0.ebuild
41
42 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-admin/augeas/augeas-0.5.0.ebuild?rev=1.1&view=markup
43 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-admin/augeas/augeas-0.5.0.ebuild?rev=1.1&content-type=text/plain
44
45 Index: augeas-0.5.0.ebuild
46 ===================================================================
47 # Copyright 1999-2009 Gentoo Foundation
48 # Distributed under the terms of the GNU General Public License v2
49 # $Header: /var/cvsroot/gentoo-x86/app-admin/augeas/augeas-0.5.0.ebuild,v 1.1 2009/03/29 16:59:34 matsuu Exp $
50
51 DESCRIPTION="A library for changing configuration files"
52 HOMEPAGE="http://augeas.net/"
53 SRC_URI="http://augeas.net/download/${P}.tar.gz"
54
55 LICENSE="LGPL-2.1"
56 SLOT="0"
57 KEYWORDS="~amd64 ~ppc ~x86"
58 IUSE="doc test"
59
60 RDEPEND="sys-libs/readline"
61 DEPEND="${RDEPEND}
62 doc? ( >=app-doc/NaturalDocs-1.40 )
63 test? ( dev-lang/ruby )"
64
65 src_compile() {
66 if [ -f /usr/share/NaturalDocs/Config/Languages.txt ] ; then
67 addwrite /usr/share/NaturalDocs/Config/Languages.txt
68 fi
69 if [ -f /usr/share/NaturalDocs/Config/Topics.txt ] ; then
70 addwrite /usr/share/NaturalDocs/Config/Topics.txt
71 fi
72
73 econf || die
74 emake || die
75 }
76
77 src_install() {
78 emake DESTDIR="${D}" install || die "install failed"
79
80 dodoc AUTHORS ChangeLog README NEWS
81 }