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: evolution-exchange-2.28.1.ebuild ChangeLog evolution-exchange-2.26.2.ebuild
Date: Thu, 29 Oct 2009 23:19:28
Message-Id: E1N3eH8-0000nj-8W@stork.gentoo.org
1 eva 09/10/29 23:19:26
2
3 Modified: ChangeLog
4 Added: evolution-exchange-2.28.1.ebuild
5 Removed: evolution-exchange-2.26.2.ebuild
6 Log:
7 New version for GNOME 2.28. Clean up old revision.
8 (Portage version: 2.2_rc46/cvs/Linux x86_64)
9
10 Revision Changes Path
11 1.105 gnome-extra/evolution-exchange/ChangeLog
12
13 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/gnome-extra/evolution-exchange/ChangeLog?rev=1.105&view=markup
14 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/gnome-extra/evolution-exchange/ChangeLog?rev=1.105&content-type=text/plain
15 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/gnome-extra/evolution-exchange/ChangeLog?r1=1.104&r2=1.105
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/gnome-extra/evolution-exchange/ChangeLog,v
20 retrieving revision 1.104
21 retrieving revision 1.105
22 diff -u -r1.104 -r1.105
23 --- ChangeLog 27 Oct 2009 10:37:32 -0000 1.104
24 +++ ChangeLog 29 Oct 2009 23:19:25 -0000 1.105
25 @@ -1,6 +1,14 @@
26 # ChangeLog for gnome-extra/evolution-exchange
27 # Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/gnome-extra/evolution-exchange/ChangeLog,v 1.104 2009/10/27 10:37:32 volkmar Exp $
29 +# $Header: /var/cvsroot/gentoo-x86/gnome-extra/evolution-exchange/ChangeLog,v 1.105 2009/10/29 23:19:25 eva Exp $
30 +
31 +*evolution-exchange-2.28.1 (29 Oct 2009)
32 +
33 + 29 Oct 2009; Gilles Dartiguelongue <eva@g.o>
34 + -evolution-exchange-2.26.2.ebuild,
35 + +files/evolution-exchange-2.28.0-as-needed.patch,
36 + +evolution-exchange-2.28.1.ebuild:
37 + New version for GNOME 2.28. Clean up old revision.
38
39 27 Oct 2009; Mounir Lamouri <volkmar@g.o>
40 evolution-exchange-2.26.2.ebuild:
41
42
43
44 1.1 gnome-extra/evolution-exchange/evolution-exchange-2.28.1.ebuild
45
46 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/gnome-extra/evolution-exchange/evolution-exchange-2.28.1.ebuild?rev=1.1&view=markup
47 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/gnome-extra/evolution-exchange/evolution-exchange-2.28.1.ebuild?rev=1.1&content-type=text/plain
48
49 Index: evolution-exchange-2.28.1.ebuild
50 ===================================================================
51 # Copyright 1999-2009 Gentoo Foundation
52 # Distributed under the terms of the GNU General Public License v2
53 # $Header: /var/cvsroot/gentoo-x86/gnome-extra/evolution-exchange/evolution-exchange-2.28.1.ebuild,v 1.1 2009/10/29 23:19:25 eva Exp $
54
55 EAPI="2"
56
57 inherit autotools eutils gnome2
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="~alpha ~amd64 ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86"
65 IUSE="debug doc static"
66
67 RDEPEND="
68 >=mail-client/evolution-2.28.0
69 >=gnome-extra/evolution-data-server-2.28.0[ldap,kerberos]
70 >=dev-libs/glib-2.16.0
71 >=x11-libs/gtk+-2.10
72 >=gnome-base/gconf-2.0
73 >=gnome-base/libbonobo-2.20.3
74 >=gnome-base/libglade-2.0
75 >=gnome-base/libgnomeui-2.0
76 dev-libs/libxml2
77 net-libs/libsoup:2.4
78 >=net-nds/openldap-2.1.30-r2"
79
80 DEPEND="${RDEPEND}
81 >=dev-util/intltool-0.40
82 dev-util/pkgconfig
83 dev-util/gtk-doc-am
84 doc? ( >=dev-util/gtk-doc-1 )"
85
86 DOCS="AUTHORS ChangeLog NEWS README"
87
88 pkg_setup() {
89 G2CONF="${G2CONF}
90 --with-openldap
91 --disable-static
92 $(use_with debug e2k-debug)
93 $(use_with static static-ldap)"
94 }
95
96 src_prepare() {
97 gnome2_src_prepare
98
99 # Fix build with --as-needed, upstream bug #597489
100 epatch "${FILESDIR}/${PN}-2.28.0-as-needed.patch"
101
102 # FIXME: Fix compilation flags crazyness
103 sed 's/CFLAGS="$CFLAGS $WARNING_FLAGS"//' \
104 -i configure.ac configure || die "sed 1 failed"
105
106 intltoolize --force --copy --automake || die "intltoolize failed"
107 eautoreconf
108 }