Gentoo Archives: gentoo-commits

From: "Gilles Dartiguelongue (eva)" <eva@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in gnome-extra/evolution-exchange: ChangeLog evolution-exchange-2.22.3-r2.ebuild evolution-exchange-2.22.3.ebuild evolution-exchange-2.22.0.ebuild
Date: Sun, 12 Oct 2008 20:43:22
Message-Id: E1Kp7ma-0001lD-39@stork.gentoo.org
1 eva 08/10/12 20:43:20
2
3 Modified: ChangeLog
4 Added: evolution-exchange-2.22.3-r2.ebuild
5 Removed: evolution-exchange-2.22.3.ebuild
6 evolution-exchange-2.22.0.ebuild
7 Log:
8 Fix exchange contacts tracking, upstream bug #546934.
9 (Portage version: 2.2_rc11/cvs/Linux 2.6.24-gentoo-r8 i686)
10
11 Revision Changes Path
12 1.74 gnome-extra/evolution-exchange/ChangeLog
13
14 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/gnome-extra/evolution-exchange/ChangeLog?rev=1.74&view=markup
15 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/gnome-extra/evolution-exchange/ChangeLog?rev=1.74&content-type=text/plain
16 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/gnome-extra/evolution-exchange/ChangeLog?r1=1.73&r2=1.74
17
18 Index: ChangeLog
19 ===================================================================
20 RCS file: /var/cvsroot/gentoo-x86/gnome-extra/evolution-exchange/ChangeLog,v
21 retrieving revision 1.73
22 retrieving revision 1.74
23 diff -u -r1.73 -r1.74
24 --- ChangeLog 25 Sep 2008 16:13:58 -0000 1.73
25 +++ ChangeLog 12 Oct 2008 20:43:20 -0000 1.74
26 @@ -1,6 +1,14 @@
27 # ChangeLog for gnome-extra/evolution-exchange
28 # Copyright 1999-2008 Gentoo Foundation; Distributed under the GPL v2
29 -# $Header: /var/cvsroot/gentoo-x86/gnome-extra/evolution-exchange/ChangeLog,v 1.73 2008/09/25 16:13:58 jer Exp $
30 +# $Header: /var/cvsroot/gentoo-x86/gnome-extra/evolution-exchange/ChangeLog,v 1.74 2008/10/12 20:43:20 eva Exp $
31 +
32 +*evolution-exchange-2.22.3-r2 (12 Oct 2008)
33 +
34 + 12 Oct 2008; Gilles Dartiguelongue <eva@g.o>
35 + +files/evolution-exchange-2.22.3-exchange-contact.patch,
36 + -evolution-exchange-2.22.0.ebuild, -evolution-exchange-2.22.3.ebuild,
37 + +evolution-exchange-2.22.3-r2.ebuild:
38 + Fix exchange contacts tracking, upstream bug #546934.
39
40 25 Sep 2008; Jeroen Roovers <jer@g.o>
41 evolution-exchange-2.22.3-r1.ebuild:
42
43
44
45 1.1 gnome-extra/evolution-exchange/evolution-exchange-2.22.3-r2.ebuild
46
47 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/gnome-extra/evolution-exchange/evolution-exchange-2.22.3-r2.ebuild?rev=1.1&view=markup
48 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/gnome-extra/evolution-exchange/evolution-exchange-2.22.3-r2.ebuild?rev=1.1&content-type=text/plain
49
50 Index: evolution-exchange-2.22.3-r2.ebuild
51 ===================================================================
52 # Copyright 1999-2008 Gentoo Foundation
53 # Distributed under the terms of the GNU General Public License v2
54 # $Header: /var/cvsroot/gentoo-x86/gnome-extra/evolution-exchange/evolution-exchange-2.22.3-r2.ebuild,v 1.1 2008/10/12 20:43:20 eva Exp $
55 EAPI="1"
56
57 inherit gnome2 eutils
58
59 DESCRIPTION="Evolution module for connecting to Microsoft Exchange"
60 HOMEPAGE="http://www.novell.com/products/desktop/features/evolution.html"
61 LICENSE="GPL-2"
62
63 SLOT="2.0"
64 KEYWORDS="~amd64 ~hppa ~ppc ~sparc ~x86"
65 IUSE="debug doc static"
66
67 RDEPEND="
68 >=mail-client/evolution-2.22.0
69 >=dev-libs/glib-2.15.3
70 >=x11-libs/gtk+-2.10
71 >=gnome-base/gconf-2.0
72 >=gnome-base/libbonobo-2.20.3
73 >=gnome-base/libglade-2.0
74 >=gnome-base/libgnomeui-2.0
75 dev-libs/libxml2
76 net-libs/libsoup:2.4
77 >=gnome-extra/evolution-data-server-2.22.3
78 >=net-nds/openldap-2.1.30-r2"
79
80 DEPEND="${RDEPEND}
81 >=dev-util/intltool-0.35.5
82 dev-util/pkgconfig
83 doc? ( >=dev-util/gtk-doc-1 )"
84
85 DOCS="AUTHORS ChangeLog NEWS README"
86
87 pkg_setup() {
88 G2CONF="${G2CONF} $(use_with debug e2k-debug)"
89
90 if ! built_with_use gnome-extra/evolution-data-server ldap || ! built_with_use gnome-extra/evolution-data-server kerberos; then
91 eerror "Please re-emerge gnome-extra/evolution-data-server with"
92 eerror "the use flags ldap and kerberos."
93 die
94 fi
95
96 G2CONF="${G2CONF} $(use_with static static-ldap) --with-openldap"
97 }
98
99 src_unpack() {
100 gnome2_src_unpack
101
102 # Fix addressbook crash, bug #233263
103 epatch "${FILESDIR}/${P}-addressbook-crash.patch"
104
105 # Fix exchange contacts tracking, upstream bug #546934
106 epatch "${FILESDIR}/${P}-exchange-contact.patch"
107 }