Gentoo Archives: gentoo-commits

From: "Lars Wendler (polynomial-c)" <polynomial-c@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in net-im/pidgin/files: pidgin-2.10.10-eds-3.6-configure.ac.patch
Date: Thu, 30 Oct 2014 20:48:41
Message-Id: 20141030204835.D54569188@oystercatcher.gentoo.org
1 polynomial-c 14/10/30 20:48:35
2
3 Added: pidgin-2.10.10-eds-3.6-configure.ac.patch
4 Log:
5 Fixed detection of evolution data server with USE=eds (bug #526644)
6
7 (Portage version: 2.2.14/cvs/Linux x86_64, signed Manifest commit with key 0x981CA6FC)
8
9 Revision Changes Path
10 1.1 net-im/pidgin/files/pidgin-2.10.10-eds-3.6-configure.ac.patch
11
12 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-im/pidgin/files/pidgin-2.10.10-eds-3.6-configure.ac.patch?rev=1.1&view=markup
13 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-im/pidgin/files/pidgin-2.10.10-eds-3.6-configure.ac.patch?rev=1.1&content-type=text/plain
14
15 Index: pidgin-2.10.10-eds-3.6-configure.ac.patch
16 ===================================================================
17 diff -urN pidgin-2.10.10.orig/configure.ac pidgin-2.10.10/configure.ac
18 --- pidgin-2.10.10.orig/configure.ac 2014-10-17 04:19:33.000000000 +0400
19 +++ pidgin-2.10.10/configure.ac 2014-10-28 15:56:27.853702740 +0300
20 @@ -569,18 +569,10 @@
21 dnl # Check for stuff needed by the Evolution integration plugin.
22 dnl #######################################################################
23 if test "x$enable_gevolution" = "xyes"; then
24 - evo_deps="libebook-1.2 libedata-book-1.2 evolution-data-server-1.2 < 3.6"
25 + evo_deps="libebook-1.2 libedata-book-1.2 evolution-data-server-1.2 >= 3.6"
26 PKG_CHECK_MODULES(EVOLUTION_ADDRESSBOOK, $evo_deps, , [
27 enable_gevolution="no"
28 ])
29 - if test "x$enable_gevolution" = "xno"; then
30 - evo_deps="libebook-1.0 libedata-book-1.0"
31 - PKG_CHECK_MODULES(EVOLUTION_ADDRESSBOOK, $evo_deps, [
32 - enable_gevolution="yes"
33 - ], [
34 - enable_gevolution="no"
35 - ])
36 - fi
37 if test "x$enable_gevolution" = "xyes"; then
38 AC_DEFINE(HAVE_EVOLUTION_ADDRESSBOOK, 1, [Define if we're using evolution addressbook.])
39 AC_SUBST(EVOLUTION_ADDRESSBOOK_CFLAGS)