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.3.ebuild ChangeLog
Date: Mon, 06 Sep 2010 17:39:20
Message-Id: 20100906173915.9211720051@flycatcher.gentoo.org
1 matsuu 10/09/06 17:39:15
2
3 Modified: ChangeLog
4 Added: augeas-0.7.3.ebuild
5 Log:
6 Version bumped, bug #325125.
7 (Portage version: 2.1.8.3/cvs/Linux x86_64)
8
9 Revision Changes Path
10 1.17 app-admin/augeas/ChangeLog
11
12 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-admin/augeas/ChangeLog?rev=1.17&view=markup
13 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-admin/augeas/ChangeLog?rev=1.17&content-type=text/plain
14 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-admin/augeas/ChangeLog?r1=1.16&r2=1.17
15
16 Index: ChangeLog
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/app-admin/augeas/ChangeLog,v
19 retrieving revision 1.16
20 retrieving revision 1.17
21 diff -u -r1.16 -r1.17
22 --- ChangeLog 21 Jun 2010 20:40:17 -0000 1.16
23 +++ ChangeLog 6 Sep 2010 17:39:15 -0000 1.17
24 @@ -1,6 +1,11 @@
25 # ChangeLog for app-admin/augeas
26 # Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
27 -# $Header: /var/cvsroot/gentoo-x86/app-admin/augeas/ChangeLog,v 1.16 2010/06/21 20:40:17 gmsoft Exp $
28 +# $Header: /var/cvsroot/gentoo-x86/app-admin/augeas/ChangeLog,v 1.17 2010/09/06 17:39:15 matsuu Exp $
29 +
30 +*augeas-0.7.3 (06 Sep 2010)
31 +
32 + 06 Sep 2010; MATSUU Takuto <matsuu@g.o> +augeas-0.7.3.ebuild:
33 + Version bumped, bug #325125.
34
35 21 Jun 2010; Guy Martin <gmsoft@g.o> augeas-0.7.1.ebuild:
36 added ~hppa to KEYWORDS
37
38
39
40 1.1 app-admin/augeas/augeas-0.7.3.ebuild
41
42 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-admin/augeas/augeas-0.7.3.ebuild?rev=1.1&view=markup
43 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-admin/augeas/augeas-0.7.3.ebuild?rev=1.1&content-type=text/plain
44
45 Index: augeas-0.7.3.ebuild
46 ===================================================================
47 # Copyright 1999-2010 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.7.3.ebuild,v 1.1 2010/09/06 17:39:15 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 ~hppa ~ppc ~sparc ~x86"
58 IUSE="test"
59
60 RDEPEND="sys-libs/readline"
61 DEPEND="${RDEPEND}
62 >=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 }