Gentoo Archives: gentoo-commits

From: "Sebastian Pipping (sping)" <sping@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in media-gfx/gimp: ChangeLog gimp-9999.ebuild
Date: Wed, 31 Aug 2011 19:05:45
Message-Id: 20110831190535.AB2952004C@flycatcher.gentoo.org
1 sping 11/08/31 19:05:35
2
3 Modified: ChangeLog gimp-9999.ebuild
4 Log:
5 media-gfx/gimp: Pass --disable-gtk-doc to autogen.sh in live ebuild (bug #346341)
6
7 (Portage version: 2.1.10.11/cvs/Linux x86_64)
8
9 Revision Changes Path
10 1.332 media-gfx/gimp/ChangeLog
11
12 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-gfx/gimp/ChangeLog?rev=1.332&view=markup
13 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-gfx/gimp/ChangeLog?rev=1.332&content-type=text/plain
14 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-gfx/gimp/ChangeLog?r1=1.331&r2=1.332
15
16 Index: ChangeLog
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/media-gfx/gimp/ChangeLog,v
19 retrieving revision 1.331
20 retrieving revision 1.332
21 diff -u -r1.331 -r1.332
22 --- ChangeLog 31 Aug 2011 18:44:34 -0000 1.331
23 +++ ChangeLog 31 Aug 2011 19:05:35 -0000 1.332
24 @@ -1,6 +1,9 @@
25 # ChangeLog for media-gfx/gimp
26 # Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
27 -# $Header: /var/cvsroot/gentoo-x86/media-gfx/gimp/ChangeLog,v 1.331 2011/08/31 18:44:34 sping Exp $
28 +# $Header: /var/cvsroot/gentoo-x86/media-gfx/gimp/ChangeLog,v 1.332 2011/08/31 19:05:35 sping Exp $
29 +
30 + 31 Aug 2011; Sebastian Pipping <sping@g.o> gimp-9999.ebuild:
31 + Pass --disable-gtk-doc to autogen.sh in live ebuild (bug #346341)
32
33 31 Aug 2011; Sebastian Pipping <sping@g.o> gimp-9999.ebuild:
34 Sync and fix live ebuild with 2.7.3
35
36
37
38 1.37 media-gfx/gimp/gimp-9999.ebuild
39
40 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-gfx/gimp/gimp-9999.ebuild?rev=1.37&view=markup
41 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-gfx/gimp/gimp-9999.ebuild?rev=1.37&content-type=text/plain
42 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-gfx/gimp/gimp-9999.ebuild?r1=1.36&r2=1.37
43
44 Index: gimp-9999.ebuild
45 ===================================================================
46 RCS file: /var/cvsroot/gentoo-x86/media-gfx/gimp/gimp-9999.ebuild,v
47 retrieving revision 1.36
48 retrieving revision 1.37
49 diff -u -r1.36 -r1.37
50 --- gimp-9999.ebuild 31 Aug 2011 18:44:34 -0000 1.36
51 +++ gimp-9999.ebuild 31 Aug 2011 19:05:35 -0000 1.37
52 @@ -1,6 +1,6 @@
53 # Copyright 1999-2011 Gentoo Foundation
54 # Distributed under the terms of the GNU General Public License v2
55 -# $Header: /var/cvsroot/gentoo-x86/media-gfx/gimp/gimp-9999.ebuild,v 1.36 2011/08/31 18:44:34 sping Exp $
56 +# $Header: /var/cvsroot/gentoo-x86/media-gfx/gimp/gimp-9999.ebuild,v 1.37 2011/08/31 19:05:35 sping Exp $
57
58 EAPI="3"
59 PYTHON_DEPEND="python? 2:2.5"
60 @@ -110,7 +110,11 @@
61 echo '#!/bin/sh' > py-compile
62 chmod a+x py-compile || die
63 sed -i -e 's:\$srcdir/configure:#:g' autogen.sh
64 - ./autogen.sh || die
65 + local myconf
66 + if ! use doc; then
67 + myconf="${myconf} --disable-gtk-doc"
68 + fi
69 + ./autogen.sh ${myconf} || die
70 gnome2_src_prepare
71 }