Gentoo Archives: gentoo-commits

From: "Alexandre Rostovtsev (tetromino)" <tetromino@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in mail-client/evolution/files: evolution-3.2.1-reorder-mx-clutter-gtk.patch
Date: Mon, 31 Oct 2011 07:35:27
Message-Id: 20111031073516.D8AF42004C@flycatcher.gentoo.org
1 tetromino 11/10/31 07:35:16
2
3 Added: evolution-3.2.1-reorder-mx-clutter-gtk.patch
4 Log:
5 Bump to 3.2.1 from the gnome overlay. Add a patch to fix building when clutter-gtk:0.10 is installed. Switch to EAPI4 and add a REQUIRED_USE. Update the CPPFLAGS sed for configure.ac changes.
6 In addition, fix clutter dependencies in existing evolution ebuilds.
7
8 (Portage version: 2.2.0_alpha72/cvs/Linux x86_64)
9
10 Revision Changes Path
11 1.1 mail-client/evolution/files/evolution-3.2.1-reorder-mx-clutter-gtk.patch
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/mail-client/evolution/files/evolution-3.2.1-reorder-mx-clutter-gtk.patch?rev=1.1&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/mail-client/evolution/files/evolution-3.2.1-reorder-mx-clutter-gtk.patch?rev=1.1&content-type=text/plain
15
16 Index: evolution-3.2.1-reorder-mx-clutter-gtk.patch
17 ===================================================================
18 From 1c036f9a0a922f68fbbf09540a14173465e51a1e Mon Sep 17 00:00:00 2001
19 From: Alexandre Rostovtsev <tetromino@g.o>
20 Date: Mon, 31 Oct 2011 02:15:54 -0400
21 Subject: [PATCH] reorder mx-1.0 and clutter-gtk-1.0 in PKG_CHECK_MODULES:q
22
23 clutter-gtk-1.0 installs headers in /usr/include/clutter-gtk-1.0/clutter-gtk;
24 clutter-gtk-0.10 installs headers in /usr/include/clutter-1.0/clutter-gtk
25
26 To ensure that clutter-gtk-1.0's headers (and not 0.10's) are used,
27 -I/usr/include/clutter-gtk-1.0 must come before -I/usr/include/clutter-1.0
28 in CLUTTER_CFLAGS. And that means clutter-gtk-1.0 must come before mx-1.0
29 in PKG_CHECK_MODULES.
30
31 https://bugzilla.gnome.org/show_bug.cgi?id=663077
32 ---
33 configure.ac | 2 +-
34 1 files changed, 1 insertions(+), 1 deletions(-)
35
36 diff --git a/configure.ac b/configure.ac
37 index 5c2c5ed..b5c74ee 100644
38 --- a/configure.ac
39 +++ b/configure.ac
40 @@ -596,7 +596,7 @@ AC_ARG_WITH([clutter],
41 AC_MSG_RESULT($with_clutter)
42
43 if test "x$with_clutter" = "xyes"; then
44 - PKG_CHECK_MODULES(CLUTTER, [mx-1.0 clutter-gtk-1.0 >= clutter_gtk_minimum_version clutter-1.0 >= 1.0.0])
45 + PKG_CHECK_MODULES(CLUTTER, [clutter-gtk-1.0 >= clutter_gtk_minimum_version mx-1.0 clutter-1.0 >= 1.0.0])
46
47 AC_DEFINE(HAVE_CLUTTER, 1, [Clutter available])
48 AM_CONDITIONAL(ENABLE_CLUTTER, true)
49 --
50 1.7.7.1