Gentoo Archives: gentoo-commits

From: "Fabian Groffen (grobian)" <grobian@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: Sat, 02 Oct 2010 18:04:16
Message-Id: 20101002180401.CED2C2003C@flycatcher.gentoo.org
1 grobian 10/10/02 18:04:01
2
3 Modified: ChangeLog gegl-0.1.2.ebuild
4 Log:
5 Add patch to fix compilation on Solaris and Darwin 8
6
7 (Portage version: 2.2.01.16711-prefix/cvs/SunOS i386)
8
9 Revision Changes Path
10 1.34 media-libs/gegl/ChangeLog
11
12 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/gegl/ChangeLog?rev=1.34&view=markup
13 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/gegl/ChangeLog?rev=1.34&content-type=text/plain
14 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/gegl/ChangeLog?r1=1.33&r2=1.34
15
16 Index: ChangeLog
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/media-libs/gegl/ChangeLog,v
19 retrieving revision 1.33
20 retrieving revision 1.34
21 diff -u -r1.33 -r1.34
22 --- ChangeLog 22 Aug 2010 05:36:39 -0000 1.33
23 +++ ChangeLog 2 Oct 2010 18:04:01 -0000 1.34
24 @@ -1,6 +1,10 @@
25 # ChangeLog for media-libs/gegl
26 # Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
27 -# $Header: /var/cvsroot/gentoo-x86/media-libs/gegl/ChangeLog,v 1.33 2010/08/22 05:36:39 dirtyepic Exp $
28 +# $Header: /var/cvsroot/gentoo-x86/media-libs/gegl/ChangeLog,v 1.34 2010/10/02 18:04:01 grobian Exp $
29 +
30 + 02 Oct 2010; Fabian Groffen <grobian@g.o> gegl-0.1.2.ebuild,
31 + +files/gegl-0.1.2-backtrace.patch:
32 + Add patch to fix compilation on Solaris and Darwin 8
33
34 22 Aug 2010; Ryan Hill <dirtyepic@g.o> gegl-0.1.2.ebuild,
35 +files/gegl-0.1.2-buffer-overflow.patch:
36
37
38
39 1.5 media-libs/gegl/gegl-0.1.2.ebuild
40
41 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/gegl/gegl-0.1.2.ebuild?rev=1.5&view=markup
42 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/gegl/gegl-0.1.2.ebuild?rev=1.5&content-type=text/plain
43 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/gegl/gegl-0.1.2.ebuild?r1=1.4&r2=1.5
44
45 Index: gegl-0.1.2.ebuild
46 ===================================================================
47 RCS file: /var/cvsroot/gentoo-x86/media-libs/gegl/gegl-0.1.2.ebuild,v
48 retrieving revision 1.4
49 retrieving revision 1.5
50 diff -u -r1.4 -r1.5
51 --- gegl-0.1.2.ebuild 22 Aug 2010 05:36:39 -0000 1.4
52 +++ gegl-0.1.2.ebuild 2 Oct 2010 18:04:01 -0000 1.5
53 @@ -1,10 +1,10 @@
54 # Copyright 1999-2010 Gentoo Foundation
55 # Distributed under the terms of the GNU General Public License v2
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 +# $Header: /var/cvsroot/gentoo-x86/media-libs/gegl/gegl-0.1.2.ebuild,v 1.5 2010/10/02 18:04:01 grobian Exp $
58
59 EAPI="2"
60
61 -inherit eutils
62 +inherit eutils autotools
63
64 DESCRIPTION="A graph based image processing framework"
65 HOMEPAGE="http://www.gegl.org/"
66 @@ -38,6 +38,10 @@
67
68 src_prepare() {
69 epatch "${FILESDIR}"/${P}-buffer-overflow.patch
70 + epatch "${FILESDIR}"/${P}-backtrace.patch
71 + # fix OSX loadable module filename extension
72 + sed -i -e 's/\.dylib/.bundle/' configure.ac || die
73 + eautoreconf
74 }
75
76 src_configure() {