Gentoo Archives: gentoo-commits

From: "Hanno Boeck (hanno)" <hanno@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in media-libs/gegl: ChangeLog gegl-0.0.22.ebuild
Date: Thu, 15 Jan 2009 14:01:10
Message-Id: E1LNSmR-0002bf-6j@stork.gentoo.org
1 hanno 09/01/15 14:01:07
2
3 Modified: ChangeLog gegl-0.0.22.ebuild
4 Log:
5 gegl: add missing include of locale.h
6 (Portage version: 2.2_rc22/cvs/Linux 2.6.28 x86_64)
7
8 Revision Changes Path
9 1.19 media-libs/gegl/ChangeLog
10
11 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-libs/gegl/ChangeLog?rev=1.19&view=markup
12 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-libs/gegl/ChangeLog?rev=1.19&content-type=text/plain
13 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-libs/gegl/ChangeLog?r1=1.18&r2=1.19
14
15 Index: ChangeLog
16 ===================================================================
17 RCS file: /var/cvsroot/gentoo-x86/media-libs/gegl/ChangeLog,v
18 retrieving revision 1.18
19 retrieving revision 1.19
20 diff -u -r1.18 -r1.19
21 --- ChangeLog 10 Jan 2009 23:08:30 -0000 1.18
22 +++ ChangeLog 15 Jan 2009 14:01:07 -0000 1.19
23 @@ -1,6 +1,10 @@
24 # ChangeLog for media-libs/gegl
25 # Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
26 -# $Header: /var/cvsroot/gentoo-x86/media-libs/gegl/ChangeLog,v 1.18 2009/01/10 23:08:30 mr_bones_ Exp $
27 +# $Header: /var/cvsroot/gentoo-x86/media-libs/gegl/ChangeLog,v 1.19 2009/01/15 14:01:07 hanno Exp $
28 +
29 + 15 Jan 2009; Hanno Boeck <hanno@g.o>
30 + +files/gegl-0.0.22-locale_h.diff, gegl-0.0.22.ebuild:
31 + Add missing include, fixes #254619.
32
33 10 Jan 2009; Michael Sterrett <mr_bones_@g.o> gegl-0.0.22.ebuild:
34 inherit goes near the top
35
36
37
38 1.5 media-libs/gegl/gegl-0.0.22.ebuild
39
40 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-libs/gegl/gegl-0.0.22.ebuild?rev=1.5&view=markup
41 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-libs/gegl/gegl-0.0.22.ebuild?rev=1.5&content-type=text/plain
42 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-libs/gegl/gegl-0.0.22.ebuild?r1=1.4&r2=1.5
43
44 Index: gegl-0.0.22.ebuild
45 ===================================================================
46 RCS file: /var/cvsroot/gentoo-x86/media-libs/gegl/gegl-0.0.22.ebuild,v
47 retrieving revision 1.4
48 retrieving revision 1.5
49 diff -u -r1.4 -r1.5
50 --- gegl-0.0.22.ebuild 10 Jan 2009 23:08:30 -0000 1.4
51 +++ gegl-0.0.22.ebuild 15 Jan 2009 14:01:07 -0000 1.5
52 @@ -1,6 +1,6 @@
53 # Copyright 1999-2009 Gentoo Foundation
54 # Distributed under the terms of the GNU General Public License v2
55 -# $Header: /var/cvsroot/gentoo-x86/media-libs/gegl/gegl-0.0.22.ebuild,v 1.4 2009/01/10 23:08:30 mr_bones_ Exp $
56 +# $Header: /var/cvsroot/gentoo-x86/media-libs/gegl/gegl-0.0.22.ebuild,v 1.5 2009/01/15 14:01:07 hanno Exp $
57
58 inherit eutils
59
60 @@ -40,6 +40,12 @@
61 fi
62 }
63
64 +src_unpack() {
65 + unpack ${A}
66 + cd "${S}"
67 + epatch "${FILESDIR}/${P}-locale_h.diff"
68 +}
69 +
70 src_compile() {
71 econf --with-gtk --with-pango --with-gdk-pixbuf \
72 $(use_enable debug) \