Gentoo Archives: gentoo-commits

From: "Ryan Hill (dirtyepic)" <dirtyepic@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in media-libs/gegl: ChangeLog gegl-0.1.2.ebuild
Date: Sun, 22 Aug 2010 05:36:43
Message-Id: 20100822053639.5B4CB20051@flycatcher.gentoo.org
1 dirtyepic 10/08/22 05:36:39
2
3 Modified: ChangeLog gegl-0.1.2.ebuild
4 Log:
5 Fix buffer overflow in gegl_buffer_header_init() (bug #319789).
6 (Portage version: 2.2_rc67/cvs/Linux x86_64)
7
8 Revision Changes Path
9 1.33 media-libs/gegl/ChangeLog
10
11 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/gegl/ChangeLog?rev=1.33&view=markup
12 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/gegl/ChangeLog?rev=1.33&content-type=text/plain
13 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/gegl/ChangeLog?r1=1.32&r2=1.33
14
15 Index: ChangeLog
16 ===================================================================
17 RCS file: /var/cvsroot/gentoo-x86/media-libs/gegl/ChangeLog,v
18 retrieving revision 1.32
19 retrieving revision 1.33
20 diff -u -r1.32 -r1.33
21 --- ChangeLog 21 Feb 2010 07:00:51 -0000 1.32
22 +++ ChangeLog 22 Aug 2010 05:36:39 -0000 1.33
23 @@ -1,6 +1,10 @@
24 # ChangeLog for media-libs/gegl
25 # Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
26 -# $Header: /var/cvsroot/gentoo-x86/media-libs/gegl/ChangeLog,v 1.32 2010/02/21 07:00:51 abcd Exp $
27 +# $Header: /var/cvsroot/gentoo-x86/media-libs/gegl/ChangeLog,v 1.33 2010/08/22 05:36:39 dirtyepic Exp $
28 +
29 + 22 Aug 2010; Ryan Hill <dirtyepic@g.o> gegl-0.1.2.ebuild,
30 + +files/gegl-0.1.2-buffer-overflow.patch:
31 + Fix buffer overflow in gegl_buffer_header_init() (bug #319789).
32
33 21 Feb 2010; Jonathan Callen <abcd@g.o> gegl-0.1.2.ebuild:
34 Transfer prefix keywords (no other changes)
35
36
37
38 1.4 media-libs/gegl/gegl-0.1.2.ebuild
39
40 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/gegl/gegl-0.1.2.ebuild?rev=1.4&view=markup
41 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/gegl/gegl-0.1.2.ebuild?rev=1.4&content-type=text/plain
42 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/gegl/gegl-0.1.2.ebuild?r1=1.3&r2=1.4
43
44 Index: gegl-0.1.2.ebuild
45 ===================================================================
46 RCS file: /var/cvsroot/gentoo-x86/media-libs/gegl/gegl-0.1.2.ebuild,v
47 retrieving revision 1.3
48 retrieving revision 1.4
49 diff -u -r1.3 -r1.4
50 --- gegl-0.1.2.ebuild 21 Feb 2010 07:00:51 -0000 1.3
51 +++ gegl-0.1.2.ebuild 22 Aug 2010 05:36:39 -0000 1.4
52 @@ -1,6 +1,6 @@
53 # Copyright 1999-2010 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.1.2.ebuild,v 1.3 2010/02/21 07:00:51 abcd Exp $
56 +# $Header: /var/cvsroot/gentoo-x86/media-libs/gegl/gegl-0.1.2.ebuild,v 1.4 2010/08/22 05:36:39 dirtyepic Exp $
57
58 EAPI="2"
59
60 @@ -36,6 +36,10 @@
61 svg? ( >=gnome-base/librsvg-2.14.0 )"
62 RDEPEND="${DEPEND}"
63
64 +src_prepare() {
65 + epatch "${FILESDIR}"/${P}-buffer-overflow.patch
66 +}
67 +
68 src_configure() {
69 econf --with-gtk --with-pango --with-gdk-pixbuf \
70 $(use_enable debug) \