Gentoo Archives: gentoo-commits

From: "Alexandre Rostovtsev (tetromino)" <tetromino@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in gnome-extra/evolution-webcal: ChangeLog evolution-webcal-2.32.0.ebuild
Date: Tue, 28 Aug 2012 15:48:19
Message-Id: 20120828154758.F1C0F20A41@flycatcher.gentoo.org
1 tetromino 12/08/28 15:47:58
2
3 Modified: ChangeLog evolution-webcal-2.32.0.ebuild
4 Log:
5 Fix build failure with glib-2.32 (bug #433040, thanks to Matthias Heizmann).
6
7 (Portage version: 2.2.0_alpha122/cvs/Linux x86_64)
8
9 Revision Changes Path
10 1.125 gnome-extra/evolution-webcal/ChangeLog
11
12 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/gnome-extra/evolution-webcal/ChangeLog?rev=1.125&view=markup
13 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/gnome-extra/evolution-webcal/ChangeLog?rev=1.125&content-type=text/plain
14 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/gnome-extra/evolution-webcal/ChangeLog?r1=1.124&r2=1.125
15
16 Index: ChangeLog
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/gnome-extra/evolution-webcal/ChangeLog,v
19 retrieving revision 1.124
20 retrieving revision 1.125
21 diff -u -r1.124 -r1.125
22 --- ChangeLog 5 May 2012 06:25:21 -0000 1.124
23 +++ ChangeLog 28 Aug 2012 15:47:58 -0000 1.125
24 @@ -1,6 +1,11 @@
25 # ChangeLog for gnome-extra/evolution-webcal
26 # Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
27 -# $Header: /var/cvsroot/gentoo-x86/gnome-extra/evolution-webcal/ChangeLog,v 1.124 2012/05/05 06:25:21 jdhore Exp $
28 +# $Header: /var/cvsroot/gentoo-x86/gnome-extra/evolution-webcal/ChangeLog,v 1.125 2012/08/28 15:47:58 tetromino Exp $
29 +
30 + 28 Aug 2012; Alexandre Rostovtsev <tetromino@g.o>
31 + evolution-webcal-2.32.0.ebuild,
32 + +files/evolution-webcal-2.32.0-g_thread_init.patch:
33 + Fix build failure with glib-2.32 (bug #433040, thanks to Matthias Heizmann).
34
35 05 May 2012; Jeff Horelick <jdhore@g.o>
36 evolution-webcal-2.32.0.ebuild:
37
38
39
40 1.9 gnome-extra/evolution-webcal/evolution-webcal-2.32.0.ebuild
41
42 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/gnome-extra/evolution-webcal/evolution-webcal-2.32.0.ebuild?rev=1.9&view=markup
43 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/gnome-extra/evolution-webcal/evolution-webcal-2.32.0.ebuild?rev=1.9&content-type=text/plain
44 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/gnome-extra/evolution-webcal/evolution-webcal-2.32.0.ebuild?r1=1.8&r2=1.9
45
46 Index: evolution-webcal-2.32.0.ebuild
47 ===================================================================
48 RCS file: /var/cvsroot/gentoo-x86/gnome-extra/evolution-webcal/evolution-webcal-2.32.0.ebuild,v
49 retrieving revision 1.8
50 retrieving revision 1.9
51 diff -u -r1.8 -r1.9
52 --- evolution-webcal-2.32.0.ebuild 5 May 2012 06:25:21 -0000 1.8
53 +++ evolution-webcal-2.32.0.ebuild 28 Aug 2012 15:47:58 -0000 1.9
54 @@ -1,11 +1,11 @@
55 # Copyright 1999-2012 Gentoo Foundation
56 # Distributed under the terms of the GNU General Public License v2
57 -# $Header: /var/cvsroot/gentoo-x86/gnome-extra/evolution-webcal/evolution-webcal-2.32.0.ebuild,v 1.8 2012/05/05 06:25:21 jdhore Exp $
58 +# $Header: /var/cvsroot/gentoo-x86/gnome-extra/evolution-webcal/evolution-webcal-2.32.0.ebuild,v 1.9 2012/08/28 15:47:58 tetromino Exp $
59
60 EAPI="3"
61 GCONF_DEBUG="no"
62
63 -inherit gnome2
64 +inherit eutils gnome2
65
66 DESCRIPTION="A GNOME URL handler for web-published ical calendar files"
67 HOMEPAGE="http://www.gnome.org/"
68 @@ -25,3 +25,8 @@
69 >=dev-util/intltool-0.40"
70
71 DOCS="AUTHORS ChangeLog NEWS TODO"
72 +
73 +src_prepare() {
74 + epatch "${FILESDIR}/${P}-g_thread_init.patch" #433040
75 + gnome2_src_prepare
76 +}