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: augeas-0.7.0.ebuild ChangeLog
Date: Thu, 04 Feb 2010 11:35:18
Message-Id: E1NczzP-0000ra-Aw@stork.gentoo.org
1 matsuu 10/02/04 11:35:15
2
3 Modified: ChangeLog
4 Added: augeas-0.7.0.ebuild
5 Log:
6 Version bumped, bug #303261.
7 (Portage version: 2.1.7.16/cvs/Linux x86_64)
8
9 Revision Changes Path
10 1.14 app-admin/augeas/ChangeLog
11
12 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-admin/augeas/ChangeLog?rev=1.14&view=markup
13 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-admin/augeas/ChangeLog?rev=1.14&content-type=text/plain
14 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-admin/augeas/ChangeLog?r1=1.13&r2=1.14
15
16 Index: ChangeLog
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/app-admin/augeas/ChangeLog,v
19 retrieving revision 1.13
20 retrieving revision 1.14
21 diff -u -r1.13 -r1.14
22 --- ChangeLog 10 Oct 2009 14:59:01 -0000 1.13
23 +++ ChangeLog 4 Feb 2010 11:35:14 -0000 1.14
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.13 2009/10/10 14:59:01 armin76 Exp $
28 +# Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
29 +# $Header: /var/cvsroot/gentoo-x86/app-admin/augeas/ChangeLog,v 1.14 2010/02/04 11:35:14 matsuu Exp $
30 +
31 +*augeas-0.7.0 (04 Feb 2010)
32 +
33 + 04 Feb 2010; MATSUU Takuto <matsuu@g.o> +augeas-0.7.0.ebuild:
34 + Version bumped, bug #303261.
35
36 10 Oct 2009; Raúl Porcel <armin76@g.o> augeas-0.5.2.ebuild:
37 sparc stable wrt #282759
38
39
40
41 1.1 app-admin/augeas/augeas-0.7.0.ebuild
42
43 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-admin/augeas/augeas-0.7.0.ebuild?rev=1.1&view=markup
44 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-admin/augeas/augeas-0.7.0.ebuild?rev=1.1&content-type=text/plain
45
46 Index: augeas-0.7.0.ebuild
47 ===================================================================
48 # Copyright 1999-2010 Gentoo Foundation
49 # Distributed under the terms of the GNU General Public License v2
50 # $Header: /var/cvsroot/gentoo-x86/app-admin/augeas/augeas-0.7.0.ebuild,v 1.1 2010/02/04 11:35:14 matsuu Exp $
51
52 DESCRIPTION="A library for changing configuration files"
53 HOMEPAGE="http://augeas.net/"
54 SRC_URI="http://augeas.net/download/${P}.tar.gz"
55
56 LICENSE="LGPL-2.1"
57 SLOT="0"
58 KEYWORDS="~amd64 ~ppc ~sparc ~x86"
59 IUSE="test"
60
61 RDEPEND="sys-libs/readline"
62 DEPEND="${RDEPEND}
63 >=app-doc/NaturalDocs-1.40
64 test? ( dev-lang/ruby )"
65
66 src_compile() {
67 if [ -f /usr/share/NaturalDocs/Config/Languages.txt ] ; then
68 addwrite /usr/share/NaturalDocs/Config/Languages.txt
69 fi
70 if [ -f /usr/share/NaturalDocs/Config/Topics.txt ] ; then
71 addwrite /usr/share/NaturalDocs/Config/Topics.txt
72 fi
73
74 econf || die
75 emake || die
76 }
77
78 src_install() {
79 emake DESTDIR="${D}" install || die "install failed"
80
81 dodoc AUTHORS ChangeLog README NEWS
82 }