Update to evolution-data-server-3.6.0.

This commit is contained in:
ajacoutot 2012-09-28 06:35:36 +00:00
parent 189bbb6808
commit cfc8fd1089
13 changed files with 259 additions and 151 deletions

View File

@ -1,27 +1,26 @@
# $OpenBSD: Makefile,v 1.115 2012/09/10 09:13:10 ajacoutot Exp $
# $OpenBSD: Makefile,v 1.116 2012/09/28 06:35:36 ajacoutot Exp $
SHARED_ONLY= Yes
COMMENT= unified backend for PIM programs
GNOME_PROJECT= evolution-data-server
GNOME_VERSION= 3.4.4
REVISION= 1
GNOME_VERSION= 3.6.0
# Only get the first x.y which is needed in the PLIST.
R= ${GNOME_VERSION:C/^([0-9]+\.[0-9]+).*/\1/}
SUBST_VARS= R
CATEGORIES= databases
CATEGORIES= databases productivity
SHARED_LIBS += camel-1.2 33.0 # 33.0
SHARED_LIBS += edataserver-1.2 16.0 # 16.0
SHARED_LIBS += ebackend-1.2 2.0 # 2.0
SHARED_LIBS += ebook-1.2 16.1 # 16.1
SHARED_LIBS += edata-book-1.2 13.0 # 13.0
SHARED_LIBS += ecal-1.2 13.2 # 13.2
SHARED_LIBS += edata-cal-1.2 15.0 # 15.0
SHARED_LIBS += edataserverui-3.0 1.0 # 1.0
SHARED_LIBS += camel-1.2 34.0 # 40.0
SHARED_LIBS += edataserver-1.2 17.0 # 17.0
SHARED_LIBS += ebackend-1.2 3.0 # 5.0
SHARED_LIBS += ebook-1.2 17.0 # 17.1
SHARED_LIBS += edata-book-1.2 14.0 # 15.0
SHARED_LIBS += ecal-1.2 14.0 # 15.0
SHARED_LIBS += edata-cal-1.2 16.0 # 18.0
SHARED_LIBS += edataserverui-3.0 2.0 # 4.0
HOMEPAGE= http://www.gnome.org/projects/evolution/
@ -36,8 +35,8 @@ PERMIT_DISTFILES_FTP= Yes
WANTLIB += GL X11 Xau Xcomposite Xcursor Xdamage Xdmcp Xext Xfixes
WANTLIB += Xi Xinerama Xrandr Xrender Xxf86vm asn1 atk-1.0 c cairo
WANTLIB += cairo-gobject com_err crypto curl db dbus-1 dbus-glib-1
WANTLIB += drm expat ffi fontconfig freetype gconf-2 gcrypt gdata
WANTLIB += cairo-gobject com_err crypto curl db dbus-1
WANTLIB += drm expat ffi fontconfig freetype gcrypt gdata
WANTLIB += gdk-3 gdk_pixbuf-2.0 gio-2.0 glib-2.0 gmodule-2.0 gnome-keyring
WANTLIB += goa-1.0 gobject-2.0 gpg-error gssapi gthread-2.0 gtk-3
WANTLIB += gweather-3 ical icalss icalvcal idn krb5 lber-2.4 ldap-2.4
@ -45,6 +44,8 @@ WANTLIB += m nspr4 nss3 nssutil3 oauth pango-1.0 pangocairo-1.0
WANTLIB += pangoft2-1.0 pcre pixman-1 plc4 plds4 png pthread pthread-stubs
WANTLIB += sasl2 smime3 softokn3 soup-2.4 soup-gnome-2.4 sqlite3
WANTLIB += ssl ssl3 stdc++ xcb xcb-render xcb-shm xml2 z
WANTLIB += ICE SM atk-bridge-2.0 atspi harfbuzz icudata icule
WANTLIB += icuuc p11-kit
MODULES= devel/gettext \
devel/dconf \
@ -66,7 +67,7 @@ YACC= bison
MODPY_RUNDEP= No
MODPY_ADJ_FILES= addressbook/libebook/gen-western-table.py
AUTOCONF_VERSION= 2.69
AUTOCONF_VERSION= 2.68
AUTOMAKE_VERSION= 1.10
MODGNOME_TOOLS= goi vala
@ -85,4 +86,7 @@ CONFIGURE_ARGS= --enable-ssl \
MODGNOME_CPPFLAGS= -I${LOCALBASE}/include/db4
MODGNOME_LDFLAGS= -pthread
post-install:
rm ${PREFIX}/lib/evolution-data-server/*/*.{a,la}
.include <bsd.port.mk>

View File

@ -1,2 +1,2 @@
SHA256 (evolution-data-server-3.4.4.tar.xz) = zp4dViVQPNfx8GMewvVS4mgAwzMFtFcis066jaXO1JE=
SIZE (evolution-data-server-3.4.4.tar.xz) = 3647048
SHA256 (evolution-data-server-3.6.0.tar.xz) = UKfdGoEJrvp0jmuntkabtb+HObMKGXxJXbUWcD86q6g=
SIZE (evolution-data-server-3.6.0.tar.xz) = 4238696

View File

@ -1,15 +1,15 @@
$OpenBSD: patch-addressbook_backends_file_e-book-backend-file_c,v 1.14 2012/08/13 07:50:27 ajacoutot Exp $
$OpenBSD: patch-addressbook_backends_file_e-book-backend-file_c,v 1.15 2012/09/28 06:35:36 ajacoutot Exp $
On OpenBSD, time_t is an int.
--- addressbook/backends/file/e-book-backend-file.c.orig Mon Jun 18 00:09:39 2012
+++ addressbook/backends/file/e-book-backend-file.c Fri Jul 13 16:21:56 2012
@@ -759,7 +759,7 @@ e_book_backend_file_create_unique_id (void)
--- addressbook/backends/file/e-book-backend-file.c.orig Fri Sep 28 07:55:56 2012
+++ addressbook/backends/file/e-book-backend-file.c Fri Sep 28 07:56:06 2012
@@ -755,7 +755,7 @@ e_book_backend_file_create_unique_id (void)
* it's doubtful 2^32 id's will be created in a second, so we
* should be okay. */
static guint c = 0;
- return g_strdup_printf (PAS_ID_PREFIX "%08lX%08X", time(NULL), c++);
+ return g_strdup_printf (PAS_ID_PREFIX "%08X%08X", time(NULL), c++);
- return g_strdup_printf (PAS_ID_PREFIX "%08lX%08X", time (NULL), c++);
+ return g_strdup_printf (PAS_ID_PREFIX "%08X%08X", time (NULL), c++);
}
static gchar *

View File

@ -1,10 +1,10 @@
$OpenBSD: patch-addressbook_backends_ldap_e-book-backend-ldap_c,v 1.7 2012/03/29 06:45:21 ajacoutot Exp $
$OpenBSD: patch-addressbook_backends_ldap_e-book-backend-ldap_c,v 1.8 2012/09/28 06:35:36 ajacoutot Exp $
On OpenBSD, time_t is an int.
--- addressbook/backends/ldap/e-book-backend-ldap.c.orig Tue Feb 28 06:01:01 2012
+++ addressbook/backends/ldap/e-book-backend-ldap.c Fri Mar 23 23:05:19 2012
@@ -1248,7 +1248,7 @@ create_dn_from_contact (EContact *contact,
--- addressbook/backends/ldap/e-book-backend-ldap.c.orig Sun Sep 16 17:41:56 2012
+++ addressbook/backends/ldap/e-book-backend-ldap.c Thu Sep 27 20:30:27 2012
@@ -1264,7 +1264,7 @@ create_dn_from_contact (EContact *contact,
}
}

View File

@ -1,15 +1,15 @@
$OpenBSD: patch-addressbook_backends_vcf_e-book-backend-vcf_c,v 1.7 2012/03/29 06:45:21 ajacoutot Exp $
$OpenBSD: patch-addressbook_backends_vcf_e-book-backend-vcf_c,v 1.8 2012/09/28 06:35:36 ajacoutot Exp $
On OpenBSD, time_t is an int.
--- addressbook/backends/vcf/e-book-backend-vcf.c.orig Tue Feb 21 09:04:18 2012
+++ addressbook/backends/vcf/e-book-backend-vcf.c Fri Mar 23 23:05:19 2012
@@ -83,7 +83,7 @@ e_book_backend_vcf_create_unique_id (void)
--- addressbook/backends/vcf/e-book-backend-vcf.c.orig Fri Sep 28 07:55:26 2012
+++ addressbook/backends/vcf/e-book-backend-vcf.c Fri Sep 28 07:55:42 2012
@@ -75,7 +75,7 @@ e_book_backend_vcf_create_unique_id (void)
* it's doubtful 2^32 id's will be created in a second, so we
* should be okay. */
static guint c = 0;
- return g_strdup_printf (PAS_ID_PREFIX "%08lX%08X", time(NULL), c++);
+ return g_strdup_printf (PAS_ID_PREFIX "%08X%08X", time(NULL), c++);
- return g_strdup_printf (PAS_ID_PREFIX "%08lX%08X", time (NULL), c++);
+ return g_strdup_printf (PAS_ID_PREFIX "%08X%08X", time (NULL), c++);
}
static void

View File

@ -1,15 +1,15 @@
$OpenBSD: patch-camel_camel-lock_c,v 1.5 2011/12/29 09:23:19 ajacoutot Exp $
$OpenBSD: patch-camel_camel-lock_c,v 1.6 2012/09/28 06:35:36 ajacoutot Exp $
On OpenBSD, time_t is an int.
--- camel/camel-lock.c.orig Mon Sep 19 07:03:01 2011
+++ camel/camel-lock.c Thu Dec 29 09:12:01 2011
--- camel/camel-lock.c.orig Fri Sep 28 07:55:00 2012
+++ camel/camel-lock.c Fri Sep 28 07:55:10 2012
@@ -128,7 +128,7 @@ camel_lock_dot (const gchar *path,
/* check for stale lock, kill it */
if (g_stat (lock, &st) == 0) {
time_t now = time (NULL);
- (printf("There is an existing lock %ld seconds old\n", now-st.st_ctime));
+ (printf("There is an existing lock %d seconds old\n", now-st.st_ctime));
- (printf ("There is an existing lock %ld seconds old\n", now - st.st_ctime));
+ (printf ("There is an existing lock %d seconds old\n", now - st.st_ctime));
if (st.st_ctime < now - CAMEL_LOCK_DOT_STALE) {
d(printf("Removing it now\n"));
d (printf ("Removing it now\n"));
unlink (lock);

View File

@ -1,60 +1,60 @@
$OpenBSD: patch-camel_camel-search-sql-sexp_c,v 1.6 2012/03/29 06:45:21 ajacoutot Exp $
$OpenBSD: patch-camel_camel-search-sql-sexp_c,v 1.7 2012/09/28 06:35:36 ajacoutot Exp $
On OpenBSD, time_t is an int.
--- camel/camel-search-sql-sexp.c.orig Fri Mar 23 23:14:46 2012
+++ camel/camel-search-sql-sexp.c Fri Mar 23 23:15:37 2012
--- camel/camel-search-sql-sexp.c.orig Fri Sep 28 07:53:54 2012
+++ camel/camel-search-sql-sexp.c Fri Sep 28 07:54:44 2012
@@ -188,7 +188,7 @@ eval_eq (struct _CamelSExp *f,
if (r1->type == CAMEL_SEXP_RES_INT)
g_string_append_printf(str, "%d", r1->value.number);
g_string_append_printf (str, "%d", r1->value.number);
else if (r1->type == CAMEL_SEXP_RES_TIME)
- g_string_append_printf(str, "%ld", r1->value.time);
+ g_string_append_printf(str, "%d", r1->value.time);
- g_string_append_printf (str, "%ld", r1->value.time);
+ g_string_append_printf (str, "%d", r1->value.time);
else if (r1->type == CAMEL_SEXP_RES_STRING)
g_string_append_printf(str, "%s", r1->value.string);
g_string_append_printf (str, "%s", r1->value.string);
@@ -206,7 +206,7 @@ eval_eq (struct _CamelSExp *f,
if (r2->type == CAMEL_SEXP_RES_BOOL)
g_string_append_printf(str, "%d", r2->value.boolean);
g_string_append_printf (str, "%d", r2->value.boolean);
else if (r2->type == CAMEL_SEXP_RES_TIME)
- g_string_append_printf(str, "%ld", r2->value.time);
+ g_string_append_printf(str, "%d", r2->value.time);
- g_string_append_printf (str, "%ld", r2->value.time);
+ g_string_append_printf (str, "%d", r2->value.time);
else if (r2->type == CAMEL_SEXP_RES_STRING) {
gchar *tmp = g_strdup_printf("%c%s%c", ut ? '%':' ', r2->value.string, ut?'%':' ');
gchar *tmp = g_strdup_printf ("%c%s%c", ut ? '%':' ', r2->value.string, ut ? '%':' ');
gchar *safe = get_db_safe_string (tmp);
@@ -244,7 +244,7 @@ eval_lt (struct _CamelSExp *f,
if (r1->type == CAMEL_SEXP_RES_INT)
g_string_append_printf(str, "%d", r1->value.number);
g_string_append_printf (str, "%d", r1->value.number);
else if (r1->type == CAMEL_SEXP_RES_TIME)
- g_string_append_printf(str, "%ld", r1->value.time);
+ g_string_append_printf(str, "%d", r1->value.time);
- g_string_append_printf (str, "%ld", r1->value.time);
+ g_string_append_printf (str, "%d", r1->value.time);
else if (r1->type == CAMEL_SEXP_RES_STRING)
g_string_append_printf(str, "%s", r1->value.string);
g_string_append_printf (str, "%s", r1->value.string);
@@ -254,7 +254,7 @@ eval_lt (struct _CamelSExp *f,
if (r2->type == CAMEL_SEXP_RES_BOOL)
g_string_append_printf(str, "%d", r2->value.boolean);
g_string_append_printf (str, "%d", r2->value.boolean);
else if (r2->type == CAMEL_SEXP_RES_TIME)
- g_string_append_printf(str, "%ld", r2->value.time);
+ g_string_append_printf(str, "%d", r2->value.time);
- g_string_append_printf (str, "%ld", r2->value.time);
+ g_string_append_printf (str, "%d", r2->value.time);
else if (r2->type == CAMEL_SEXP_RES_STRING)
g_string_append_printf(str, "%s", r2->value.string);
g_string_append_printf (str, "%s", r2->value.string);
camel_sexp_result_free (f, r1);
@@ -286,7 +286,7 @@ eval_gt (struct _CamelSExp *f,
if (r1->type == CAMEL_SEXP_RES_INT)
g_string_append_printf(str, "%d", r1->value.number);
g_string_append_printf (str, "%d", r1->value.number);
else if (r1->type == CAMEL_SEXP_RES_TIME)
- g_string_append_printf(str, "%ld", r1->value.time);
+ g_string_append_printf(str, "%d", r1->value.time);
- g_string_append_printf (str, "%ld", r1->value.time);
+ g_string_append_printf (str, "%d", r1->value.time);
else if (r1->type == CAMEL_SEXP_RES_STRING)
g_string_append_printf(str, "%s", r1->value.string);
g_string_append_printf (str, "%s", r1->value.string);
@@ -296,7 +296,7 @@ eval_gt (struct _CamelSExp *f,
if (r2->type == CAMEL_SEXP_RES_BOOL)
g_string_append_printf(str, "%d", r2->value.boolean);
g_string_append_printf (str, "%d", r2->value.boolean);
else if (r2->type == CAMEL_SEXP_RES_TIME)
- g_string_append_printf(str, "%ld", r2->value.time);
+ g_string_append_printf(str, "%d", r2->value.time);
- g_string_append_printf (str, "%ld", r2->value.time);
+ g_string_append_printf (str, "%d", r2->value.time);
else if (r2->type == CAMEL_SEXP_RES_STRING)
g_string_append_printf(str, "%s", r2->value.string);
g_string_append_printf (str, "%s", r2->value.string);
camel_sexp_result_free (f, r1);

View File

@ -1,15 +1,15 @@
$OpenBSD: patch-camel_providers_local_camel-maildir-summary_c,v 1.8 2012/04/16 14:22:30 jasper Exp $
$OpenBSD: patch-camel_providers_local_camel-maildir-summary_c,v 1.9 2012/09/28 06:35:36 ajacoutot Exp $
On OpenBSD, time_t is an int.
--- camel/providers/local/camel-maildir-summary.c.orig Mon Apr 9 07:00:58 2012
+++ camel/providers/local/camel-maildir-summary.c Mon Apr 16 15:42:48 2012
--- camel/providers/local/camel-maildir-summary.c.orig Fri Sep 28 07:53:03 2012
+++ camel/providers/local/camel-maildir-summary.c Fri Sep 28 07:53:37 2012
@@ -395,7 +395,7 @@ static gchar *maildir_summary_next_uid_string (CamelFo
g_free (uid);
g_usleep (2 * G_USEC_PER_SEC);
}
- uid = g_strdup_printf("%ld.%d_%u.%s", time(NULL), getpid(), nextuid, mds->priv->hostname);
+ uid = g_strdup_printf("%d.%d_%u.%s", time(NULL), getpid(), nextuid, mds->priv->hostname);
name = g_strdup_printf("%s/tmp/%s", cls->folder_path, uid);
- uid = g_strdup_printf ("%ld.%d_%u.%s", time (NULL), getpid (), nextuid, mds->priv->hostname);
+ uid = g_strdup_printf ("%d.%d_%u.%s", time (NULL), getpid (), nextuid, mds->priv->hostname);
name = g_strdup_printf ("%s/tmp/%s", cls->folder_path, uid);
retry++;
} while (g_stat (name, &st) == 0 && retry < 3);

View File

@ -1,15 +1,15 @@
$OpenBSD: patch-camel_providers_pop3_camel-pop3-folder_c,v 1.1 2012/03/29 06:45:21 ajacoutot Exp $
$OpenBSD: patch-camel_providers_pop3_camel-pop3-folder_c,v 1.2 2012/09/28 06:35:36 ajacoutot Exp $
On OpenBSD, time_t is an int.
--- camel/providers/pop3/camel-pop3-folder.c.orig Fri Mar 23 23:15:50 2012
+++ camel/providers/pop3/camel-pop3-folder.c Fri Mar 23 23:16:02 2012
@@ -1074,7 +1074,7 @@ camel_pop3_delete_old (CamelFolder *folder,
gdouble time_diff = difftime (temp,message_time);
--- camel/providers/pop3/camel-pop3-folder.c.orig Fri Sep 28 07:52:33 2012
+++ camel/providers/pop3/camel-pop3-folder.c Fri Sep 28 07:52:50 2012
@@ -1113,7 +1113,7 @@ camel_pop3_delete_old (CamelFolder *folder,
gint day_lag = time_diff / (60 * 60 * 24);
- d(printf("%s(%d): message_time= [%ld]\n", __FILE__, __LINE__, message_time));
+ d(printf("%s(%d): message_time= [%d]\n", __FILE__, __LINE__, message_time));
d(printf("%s(%d): day_lag=[%d] \t days_to_delete=[%d]\n",
__FILE__, __LINE__, day_lag, days_to_delete));
d (printf (
- "%s(%d): message_time= [%ld]\n",
+ "%s(%d): message_time= [%d]\n",
__FILE__, __LINE__, message_time));
d (printf (
"%s(%d): day_lag=[%d] \t days_to_delete=[%d]\n",

View File

@ -1,9 +1,9 @@
$OpenBSD: patch-libedataserver_e-debug-log_c,v 1.2 2011/12/29 09:23:19 ajacoutot Exp $
$OpenBSD: patch-libedataserver_e-debug-log_c,v 1.3 2012/09/28 06:35:36 ajacoutot Exp $
e-debug-log.c:172: warning: passing argument 1 of 'localtime' from incompatible pointer type
--- libedataserver/e-debug-log.c.orig Mon Sep 19 07:03:01 2011
+++ libedataserver/e-debug-log.c Thu Dec 29 09:17:10 2011
--- libedataserver/e-debug-log.c.orig Sun Sep 16 17:42:01 2012
+++ libedataserver/e-debug-log.c Thu Sep 27 20:30:27 2012
@@ -160,6 +160,7 @@ e_debug_logv (gboolean is_milestone,
gchar *debug_str;
struct timeval tv;
@ -20,5 +20,5 @@ e-debug-log.c:172: warning: passing argument 1 of 'localtime' from incompatible
+ tmp = tv.tv_sec;
+ tm = *localtime (&tmp);
debug_str = g_strdup_printf ("%p;%04d/%02d/%02d;%02d:%02d:%02d.%04d;(%s);%s",
g_thread_self (),
debug_str = g_strdup_printf (
"%p;%04d/%02d/%02d;%02d:%02d:%02d.%04d;(%s);%s",

View File

@ -1,13 +1,15 @@
$OpenBSD: patch-tests_libedata-cal_Makefile_in,v 1.7 2012/06/18 11:15:22 jasper Exp $
--- tests/libedata-cal/Makefile.in.orig Mon Jun 18 00:11:20 2012
+++ tests/libedata-cal/Makefile.in Mon Jun 18 13:06:32 2012
@@ -477,8 +477,7 @@ test_intervaltree_coverage_LDADD = \
$(top_builddir)/calendar/libedata-cal/libedata-cal-1.2.la \
$(top_builddir)/calendar/libecal/libecal-1.2.la \
$OpenBSD: patch-tests_libedata-cal_Makefile_in,v 1.8 2012/09/28 06:35:36 ajacoutot Exp $
XXX push upstream
--- tests/libedata-cal/Makefile.in.orig Fri Sep 28 07:49:11 2012
+++ tests/libedata-cal/Makefile.in Fri Sep 28 07:51:23 2012
@@ -458,7 +458,7 @@ test_intervaltree_coverage_LDADD = \
$(top_builddir)/libedataserver/libedataserver-1.2.la \
- $(EVOLUTION_CALENDAR_LIBS) \
$(EVOLUTION_CALENDAR_LIBS) \
$(CAMEL_LIBS) \
- -lgcov
+ $(EVOLUTION_CALENDAR_LIBS)
+ $(CODE_COVERAGE_LDFLAGS)
all: all-am

View File

@ -1,10 +1,10 @@
$OpenBSD: patch-tests_libedata-cal_test-intervaltree_c,v 1.2 2011/12/29 09:23:19 ajacoutot Exp $
$OpenBSD: patch-tests_libedata-cal_test-intervaltree_c,v 1.3 2012/09/28 06:35:36 ajacoutot Exp $
On OpenBSD, time_t is an int.
--- tests/libedata-cal/test-intervaltree.c.orig Mon Sep 19 07:03:01 2011
+++ tests/libedata-cal/test-intervaltree.c Thu Dec 29 09:08:45 2011
@@ -168,7 +168,7 @@ create_test_component (time_t start,
--- tests/libedata-cal/test-intervaltree.c.orig Sun Sep 16 17:42:04 2012
+++ tests/libedata-cal/test-intervaltree.c Thu Sep 27 20:30:27 2012
@@ -166,7 +166,7 @@ create_test_component (time_t start,
e_cal_component_set_dtend (comp, &dtend);
*/

View File

@ -1,4 +1,4 @@
@comment $OpenBSD: PLIST,v 1.31 2012/09/10 09:13:10 ajacoutot Exp $
@comment $OpenBSD: PLIST,v 1.32 2012/09/28 06:35:36 ajacoutot Exp $
include/evolution-data-server-${R}/
include/evolution-data-server-${R}/camel/
include/evolution-data-server-${R}/camel/camel-address.h
@ -24,8 +24,18 @@ include/evolution-data-server-${R}/camel/camel-folder-thread.h
include/evolution-data-server-${R}/camel/camel-folder.h
include/evolution-data-server-${R}/camel/camel-gpg-context.h
include/evolution-data-server-${R}/camel/camel-html-parser.h
include/evolution-data-server-${R}/camel/camel-http-stream.h
include/evolution-data-server-${R}/camel/camel-iconv.h
include/evolution-data-server-${R}/camel/camel-imapx-command.h
include/evolution-data-server-${R}/camel/camel-imapx-conn-manager.h
include/evolution-data-server-${R}/camel/camel-imapx-folder.h
include/evolution-data-server-${R}/camel/camel-imapx-job.h
include/evolution-data-server-${R}/camel/camel-imapx-server.h
include/evolution-data-server-${R}/camel/camel-imapx-settings.h
include/evolution-data-server-${R}/camel/camel-imapx-store-summary.h
include/evolution-data-server-${R}/camel/camel-imapx-store.h
include/evolution-data-server-${R}/camel/camel-imapx-stream.h
include/evolution-data-server-${R}/camel/camel-imapx-summary.h
include/evolution-data-server-${R}/camel/camel-imapx-utils.h
include/evolution-data-server-${R}/camel/camel-index.h
include/evolution-data-server-${R}/camel/camel-internet-address.h
include/evolution-data-server-${R}/camel/camel-junk-filter.h
@ -88,7 +98,6 @@ include/evolution-data-server-${R}/camel/camel-sasl-popb4smtp.h
include/evolution-data-server-${R}/camel/camel-sasl.h
include/evolution-data-server-${R}/camel/camel-search-private.h
include/evolution-data-server-${R}/camel/camel-search-sql-sexp.h
include/evolution-data-server-${R}/camel/camel-search-sql.h
include/evolution-data-server-${R}/camel/camel-service.h
include/evolution-data-server-${R}/camel/camel-session.h
include/evolution-data-server-${R}/camel/camel-settings.h
@ -117,14 +126,21 @@ include/evolution-data-server-${R}/camel/camel-uid-cache.h
include/evolution-data-server-${R}/camel/camel-url-scanner.h
include/evolution-data-server-${R}/camel/camel-url.h
include/evolution-data-server-${R}/camel/camel-utf8.h
include/evolution-data-server-${R}/camel/camel-vee-data-cache.h
include/evolution-data-server-${R}/camel/camel-vee-folder.h
include/evolution-data-server-${R}/camel/camel-vee-store.h
include/evolution-data-server-${R}/camel/camel-vee-summary.h
include/evolution-data-server-${R}/camel/camel-vtrash-folder.h
include/evolution-data-server-${R}/camel/camel.h
include/evolution-data-server-${R}/libebackend/
include/evolution-data-server-${R}/libebackend/e-authentication-mediator.h
include/evolution-data-server-${R}/libebackend/e-authentication-session.h
include/evolution-data-server-${R}/libebackend/e-backend-enums.h
include/evolution-data-server-${R}/libebackend/e-backend-enumtypes.h
include/evolution-data-server-${R}/libebackend/e-backend-factory.h
include/evolution-data-server-${R}/libebackend/e-backend.h
include/evolution-data-server-${R}/libebackend/e-collection-backend-factory.h
include/evolution-data-server-${R}/libebackend/e-collection-backend.h
include/evolution-data-server-${R}/libebackend/e-data-factory.h
include/evolution-data-server-${R}/libebackend/e-db3-utils.h
include/evolution-data-server-${R}/libebackend/e-dbhash.h
@ -134,11 +150,15 @@ include/evolution-data-server-${R}/libebackend/e-extension.h
include/evolution-data-server-${R}/libebackend/e-file-cache.h
include/evolution-data-server-${R}/libebackend/e-module.h
include/evolution-data-server-${R}/libebackend/e-offline-listener.h
include/evolution-data-server-${R}/libebackend/e-server-side-source.h
include/evolution-data-server-${R}/libebackend/e-source-registry-server.h
include/evolution-data-server-${R}/libebackend/e-sqlite3-vfs.h
include/evolution-data-server-${R}/libebackend/libebackend.h
include/evolution-data-server-${R}/libebook/
include/evolution-data-server-${R}/libebook/e-address-western.h
include/evolution-data-server-${R}/libebook/e-book-client-view.h
include/evolution-data-server-${R}/libebook/e-book-client.h
include/evolution-data-server-${R}/libebook/e-book-enumtypes.h
include/evolution-data-server-${R}/libebook/e-book-query.h
include/evolution-data-server-${R}/libebook/e-book-types.h
include/evolution-data-server-${R}/libebook/e-book-view.h
@ -147,11 +167,13 @@ include/evolution-data-server-${R}/libebook/e-contact.h
include/evolution-data-server-${R}/libebook/e-destination.h
include/evolution-data-server-${R}/libebook/e-name-western.h
include/evolution-data-server-${R}/libebook/e-vcard.h
include/evolution-data-server-${R}/libebook/libebook.h
include/evolution-data-server-${R}/libecal/
include/evolution-data-server-${R}/libecal/e-cal-check-timezones.h
include/evolution-data-server-${R}/libecal/e-cal-client-view.h
include/evolution-data-server-${R}/libecal/e-cal-client.h
include/evolution-data-server-${R}/libecal/e-cal-component.h
include/evolution-data-server-${R}/libecal/e-cal-enumtypes.h
include/evolution-data-server-${R}/libecal/e-cal-recur.h
include/evolution-data-server-${R}/libecal/e-cal-system-timezone.h
include/evolution-data-server-${R}/libecal/e-cal-time-util.h
@ -159,6 +181,7 @@ include/evolution-data-server-${R}/libecal/e-cal-types.h
include/evolution-data-server-${R}/libecal/e-cal-util.h
include/evolution-data-server-${R}/libecal/e-cal-view.h
include/evolution-data-server-${R}/libecal/e-cal.h
include/evolution-data-server-${R}/libecal/libecal.h
include/evolution-data-server-${R}/libedata-book/
include/evolution-data-server-${R}/libedata-book/e-book-backend-cache.h
include/evolution-data-server-${R}/libedata-book/e-book-backend-db-cache.h
@ -169,9 +192,9 @@ include/evolution-data-server-${R}/libedata-book/e-book-backend-summary.h
include/evolution-data-server-${R}/libedata-book/e-book-backend-sync.h
include/evolution-data-server-${R}/libedata-book/e-book-backend.h
include/evolution-data-server-${R}/libedata-book/e-data-book-factory.h
include/evolution-data-server-${R}/libedata-book/e-data-book-types.h
include/evolution-data-server-${R}/libedata-book/e-data-book-view.h
include/evolution-data-server-${R}/libedata-book/e-data-book.h
include/evolution-data-server-${R}/libedata-book/libedata-book.h
include/evolution-data-server-${R}/libedata-cal/
include/evolution-data-server-${R}/libedata-cal/e-cal-backend-cache.h
include/evolution-data-server-${R}/libedata-cal/e-cal-backend-factory.h
@ -184,12 +207,10 @@ include/evolution-data-server-${R}/libedata-cal/e-cal-backend-util.h
include/evolution-data-server-${R}/libedata-cal/e-cal-backend.h
include/evolution-data-server-${R}/libedata-cal/e-data-cal-common.h
include/evolution-data-server-${R}/libedata-cal/e-data-cal-factory.h
include/evolution-data-server-${R}/libedata-cal/e-data-cal-types.h
include/evolution-data-server-${R}/libedata-cal/e-data-cal-view.h
include/evolution-data-server-${R}/libedata-cal/e-data-cal.h
include/evolution-data-server-${R}/libedata-cal/libedata-cal.h
include/evolution-data-server-${R}/libedataserver/
include/evolution-data-server-${R}/libedataserver/e-account-list.h
include/evolution-data-server-${R}/libedataserver/e-account.h
include/evolution-data-server-${R}/libedataserver/e-categories.h
include/evolution-data-server-${R}/libedataserver/e-client.h
include/evolution-data-server-${R}/libedataserver/e-credentials.h
@ -205,8 +226,35 @@ include/evolution-data-server-${R}/libedataserver/e-memory.h
include/evolution-data-server-${R}/libedataserver/e-operation-pool.h
include/evolution-data-server-${R}/libedataserver/e-proxy.h
include/evolution-data-server-${R}/libedataserver/e-sexp.h
include/evolution-data-server-${R}/libedataserver/e-source-group.h
include/evolution-data-server-${R}/libedataserver/e-source-list.h
include/evolution-data-server-${R}/libedataserver/e-source-address-book.h
include/evolution-data-server-${R}/libedataserver/e-source-alarms.h
include/evolution-data-server-${R}/libedataserver/e-source-authentication.h
include/evolution-data-server-${R}/libedataserver/e-source-authenticator.h
include/evolution-data-server-${R}/libedataserver/e-source-autocomplete.h
include/evolution-data-server-${R}/libedataserver/e-source-backend.h
include/evolution-data-server-${R}/libedataserver/e-source-calendar.h
include/evolution-data-server-${R}/libedataserver/e-source-camel.h
include/evolution-data-server-${R}/libedataserver/e-source-collection.h
include/evolution-data-server-${R}/libedataserver/e-source-enums.h
include/evolution-data-server-${R}/libedataserver/e-source-enumtypes.h
include/evolution-data-server-${R}/libedataserver/e-source-extension.h
include/evolution-data-server-${R}/libedataserver/e-source-goa.h
include/evolution-data-server-${R}/libedataserver/e-source-mail-account.h
include/evolution-data-server-${R}/libedataserver/e-source-mail-composition.h
include/evolution-data-server-${R}/libedataserver/e-source-mail-identity.h
include/evolution-data-server-${R}/libedataserver/e-source-mail-signature.h
include/evolution-data-server-${R}/libedataserver/e-source-mail-submission.h
include/evolution-data-server-${R}/libedataserver/e-source-mail-transport.h
include/evolution-data-server-${R}/libedataserver/e-source-mdn.h
include/evolution-data-server-${R}/libedataserver/e-source-offline.h
include/evolution-data-server-${R}/libedataserver/e-source-openpgp.h
include/evolution-data-server-${R}/libedataserver/e-source-refresh.h
include/evolution-data-server-${R}/libedataserver/e-source-registry.h
include/evolution-data-server-${R}/libedataserver/e-source-resource.h
include/evolution-data-server-${R}/libedataserver/e-source-security.h
include/evolution-data-server-${R}/libedataserver/e-source-selectable.h
include/evolution-data-server-${R}/libedataserver/e-source-smime.h
include/evolution-data-server-${R}/libedataserver/e-source-webdav.h
include/evolution-data-server-${R}/libedataserver/e-source.h
include/evolution-data-server-${R}/libedataserver/e-time-utils.h
include/evolution-data-server-${R}/libedataserver/e-uid.h
@ -214,6 +262,7 @@ include/evolution-data-server-${R}/libedataserver/e-url.h
include/evolution-data-server-${R}/libedataserver/e-xml-hash-utils.h
include/evolution-data-server-${R}/libedataserver/e-xml-utils.h
include/evolution-data-server-${R}/libedataserver/eds-version.h
include/evolution-data-server-${R}/libedataserver/libedataserver.h
include/evolution-data-server-${R}/libedataserverui/
include/evolution-data-server-${R}/libedataserverui/e-book-auth-util.h
include/evolution-data-server-${R}/libedataserverui/e-categories-dialog.h
@ -235,68 +284,40 @@ include/evolution-data-server-${R}/libedataserverui/e-source-combo-box.h
include/evolution-data-server-${R}/libedataserverui/e-source-selector-dialog.h
include/evolution-data-server-${R}/libedataserverui/e-source-selector.h
include/evolution-data-server-${R}/libedataserverui/e-tree-model-generator.h
include/evolution-data-server-${R}/libedataserverui/libedataserverui.h
lib/evolution-data-server/
lib/evolution-data-server/addressbook-backends/
@comment lib/evolution-data-server/addressbook-backends/libebookbackendfile.a
@comment lib/evolution-data-server/addressbook-backends/libebookbackendfile.la
lib/evolution-data-server/addressbook-backends/libebookbackendfile.so
@comment lib/evolution-data-server/addressbook-backends/libebookbackendgoogle.a
@comment lib/evolution-data-server/addressbook-backends/libebookbackendgoogle.la
lib/evolution-data-server/addressbook-backends/libebookbackendgoogle.so
@comment lib/evolution-data-server/addressbook-backends/libebookbackendldap.a
@comment lib/evolution-data-server/addressbook-backends/libebookbackendldap.la
lib/evolution-data-server/addressbook-backends/libebookbackendldap.so
@comment lib/evolution-data-server/addressbook-backends/libebookbackendvcf.a
@comment lib/evolution-data-server/addressbook-backends/libebookbackendvcf.la
lib/evolution-data-server/addressbook-backends/libebookbackendvcf.so
@comment lib/evolution-data-server/addressbook-backends/libebookbackendwebdav.a
@comment lib/evolution-data-server/addressbook-backends/libebookbackendwebdav.la
lib/evolution-data-server/addressbook-backends/libebookbackendwebdav.so
lib/evolution-data-server/calendar-backends/
@comment lib/evolution-data-server/calendar-backends/libecalbackendcaldav.a
@comment lib/evolution-data-server/calendar-backends/libecalbackendcaldav.la
lib/evolution-data-server/calendar-backends/libecalbackendcaldav.so
@comment lib/evolution-data-server/calendar-backends/libecalbackendcontacts.a
@comment lib/evolution-data-server/calendar-backends/libecalbackendcontacts.la
lib/evolution-data-server/calendar-backends/libecalbackendcontacts.so
@comment lib/evolution-data-server/calendar-backends/libecalbackendfile.a
@comment lib/evolution-data-server/calendar-backends/libecalbackendfile.la
lib/evolution-data-server/calendar-backends/libecalbackendfile.so
@comment lib/evolution-data-server/calendar-backends/libecalbackendhttp.a
@comment lib/evolution-data-server/calendar-backends/libecalbackendhttp.la
lib/evolution-data-server/calendar-backends/libecalbackendhttp.so
@comment lib/evolution-data-server/calendar-backends/libecalbackendweather.a
@comment lib/evolution-data-server/calendar-backends/libecalbackendweather.la
lib/evolution-data-server/calendar-backends/libecalbackendweather.so
lib/evolution-data-server/camel-providers/
@comment lib/evolution-data-server/camel-providers/libcamelimap.a
@comment lib/evolution-data-server/camel-providers/libcamelimap.la
lib/evolution-data-server/camel-providers/libcamelimap.so
lib/evolution-data-server/camel-providers/libcamelimap.urls
@comment lib/evolution-data-server/camel-providers/libcamelimapx.a
@comment lib/evolution-data-server/camel-providers/libcamelimapx.la
lib/evolution-data-server/camel-providers/libcamelimapx.so
lib/evolution-data-server/camel-providers/libcamelimapx.urls
@comment lib/evolution-data-server/camel-providers/libcamellocal.a
@comment lib/evolution-data-server/camel-providers/libcamellocal.la
lib/evolution-data-server/camel-providers/libcamellocal.so
lib/evolution-data-server/camel-providers/libcamellocal.urls
@comment lib/evolution-data-server/camel-providers/libcamelnntp.a
@comment lib/evolution-data-server/camel-providers/libcamelnntp.la
lib/evolution-data-server/camel-providers/libcamelnntp.so
lib/evolution-data-server/camel-providers/libcamelnntp.urls
@comment lib/evolution-data-server/camel-providers/libcamelpop3.a
@comment lib/evolution-data-server/camel-providers/libcamelpop3.la
lib/evolution-data-server/camel-providers/libcamelpop3.so
lib/evolution-data-server/camel-providers/libcamelpop3.urls
@comment lib/evolution-data-server/camel-providers/libcamelsendmail.a
@comment lib/evolution-data-server/camel-providers/libcamelsendmail.la
lib/evolution-data-server/camel-providers/libcamelsendmail.so
lib/evolution-data-server/camel-providers/libcamelsendmail.urls
@comment lib/evolution-data-server/camel-providers/libcamelsmtp.a
@comment lib/evolution-data-server/camel-providers/libcamelsmtp.la
lib/evolution-data-server/camel-providers/libcamelsmtp.so
lib/evolution-data-server/camel-providers/libcamelsmtp.urls
lib/evolution-data-server/registry-modules/
lib/evolution-data-server/registry-modules/module-cache-reaper.so
lib/evolution-data-server/registry-modules/module-google-backend.so
lib/evolution-data-server/registry-modules/module-online-accounts.so
lib/evolution-data-server/registry-modules/module-yahoo-backend.so
lib/girepository-1.0/EBook-1.2.typelib
lib/girepository-1.0/ECalendar-1.2.typelib
lib/girepository-1.0/EDataServer-1.2.typelib
@ -339,14 +360,38 @@ lib/pkgconfig/libedataserverui-3.0.pc
@mode
@bin libexec/evolution-addressbook-factory
@bin libexec/evolution-calendar-factory
@bin libexec/evolution-source-registry
share/GConf/gsettings/evolution-data-server.convert
share/GConf/gsettings/libedataserver.convert
share/dbus-1/services/org.gnome.evolution.dataserver.AddressBook.service
share/dbus-1/services/org.gnome.evolution.dataserver.Calendar.service
share/dbus-1/services/org.gnome.evolution.dataserver.Sources.service
share/evolution-data-server-${R}/
share/evolution-data-server-${R}/evolutionperson.schema
share/evolution-data-server-${R}/ro-sources/
share/evolution-data-server-${R}/ro-sources/caldav-stub.source
share/evolution-data-server-${R}/ro-sources/contacts-stub.source
share/evolution-data-server-${R}/ro-sources/google-stub.source
share/evolution-data-server-${R}/ro-sources/ldap-stub.source
share/evolution-data-server-${R}/ro-sources/local-stub.source
share/evolution-data-server-${R}/ro-sources/weather-stub.source
share/evolution-data-server-${R}/ro-sources/webcal-stub.source
share/evolution-data-server-${R}/ro-sources/webdav-stub.source
share/evolution-data-server-${R}/rw-sources/
share/evolution-data-server-${R}/rw-sources/birthdays.source
share/evolution-data-server-${R}/rw-sources/local.source
share/evolution-data-server-${R}/rw-sources/sendmail.source
share/evolution-data-server-${R}/rw-sources/system-address-book.source
share/evolution-data-server-${R}/rw-sources/system-calendar.source
share/evolution-data-server-${R}/rw-sources/system-memo-list.source
share/evolution-data-server-${R}/rw-sources/system-task-list.source
share/evolution-data-server-${R}/rw-sources/vfolder.source
share/gir-1.0/EBook-1.2.gir
share/gir-1.0/ECalendar-1.2.gir
share/gir-1.0/EDataServer-1.2.gir
share/glib-2.0/schemas/org.gnome.Evolution.DefaultSources.gschema.xml
share/glib-2.0/schemas/org.gnome.evolution-data-server.addressbook.gschema.xml
share/glib-2.0/schemas/org.gnome.evolution-data-server.calendar.gschema.xml
share/glib-2.0/schemas/org.gnome.evolution.eds-shell.gschema.xml
share/glib-2.0/schemas/org.gnome.evolution.shell.network-config.gschema.xml
share/gtk-doc/html/camel/
@ -364,7 +409,13 @@ share/gtk-doc/html/camel/CamelFolder.html
share/gtk-doc/html/camel/CamelFolderSearch.html
share/gtk-doc/html/camel/CamelFolderSummary.html
share/gtk-doc/html/camel/CamelGpgContext.html
share/gtk-doc/html/camel/CamelHttpStream.html
share/gtk-doc/html/camel/CamelIMAPXConnManager.html
share/gtk-doc/html/camel/CamelIMAPXServer.html
share/gtk-doc/html/camel/CamelIMAPXSettings.html
share/gtk-doc/html/camel/CamelIMAPXStore.html
share/gtk-doc/html/camel/CamelIMAPXStoreSummary.html
share/gtk-doc/html/camel/CamelIMAPXStream.html
share/gtk-doc/html/camel/CamelIMAPXSummary.html
share/gtk-doc/html/camel/CamelIndex.html
share/gtk-doc/html/camel/CamelInternetAddress.html
share/gtk-doc/html/camel/CamelJunkFilter.html
@ -434,8 +485,11 @@ share/gtk-doc/html/camel/CamelTcpStreamRaw.html
share/gtk-doc/html/camel/CamelTextIndexName.html
share/gtk-doc/html/camel/CamelTransport.html
share/gtk-doc/html/camel/CamelVTrashFolder.html
share/gtk-doc/html/camel/CamelVeeDataCache.html
share/gtk-doc/html/camel/CamelVeeFolder.html
share/gtk-doc/html/camel/CamelVeeMessageInfoData.html
share/gtk-doc/html/camel/CamelVeeStore.html
share/gtk-doc/html/camel/CamelVeeSubfolderData.html
share/gtk-doc/html/camel/CamelVeeSummary.html
share/gtk-doc/html/camel/ClassTree.html
share/gtk-doc/html/camel/Crypto.html
@ -443,13 +497,14 @@ share/gtk-doc/html/camel/Deprecated.html
share/gtk-doc/html/camel/Filters.html
share/gtk-doc/html/camel/Folders.html
share/gtk-doc/html/camel/Fundamentals.html
share/gtk-doc/html/camel/IMAP.html
share/gtk-doc/html/camel/MIME.html
share/gtk-doc/html/camel/Search-Folders.html
share/gtk-doc/html/camel/Services.html
share/gtk-doc/html/camel/Storage.html
share/gtk-doc/html/camel/Stream-Filters.html
share/gtk-doc/html/camel/Streams.html
share/gtk-doc/html/camel/Utilities.html
share/gtk-doc/html/camel/Virtual-Folders.html
share/gtk-doc/html/camel/api-index-2.22.html
share/gtk-doc/html/camel/api-index-2.24.html
share/gtk-doc/html/camel/api-index-2.26.html
@ -458,10 +513,14 @@ share/gtk-doc/html/camel/api-index-2.30.html
share/gtk-doc/html/camel/api-index-2.32.html
share/gtk-doc/html/camel/api-index-3.0.html
share/gtk-doc/html/camel/api-index-3.2.html
share/gtk-doc/html/camel/api-index-3.4.html
share/gtk-doc/html/camel/api-index-${R}.html
share/gtk-doc/html/camel/api-index-deprecated.html
share/gtk-doc/html/camel/api-index-full.html
share/gtk-doc/html/camel/camel-CamelDB.html
share/gtk-doc/html/camel/camel-CamelIMAPXCommand.html
share/gtk-doc/html/camel/camel-CamelIMAPXFolder.html
share/gtk-doc/html/camel/camel-CamelIMAPXJob.html
share/gtk-doc/html/camel/camel-CamelLocalSettings.html
share/gtk-doc/html/camel/camel-CamelMsgPort.html
share/gtk-doc/html/camel/camel-CamelTcpStreamSSL.html
@ -481,7 +540,6 @@ share/gtk-doc/html/camel/camel-camel-net-utils.html
share/gtk-doc/html/camel/camel-camel-operation.html
share/gtk-doc/html/camel/camel-camel-provider.html
share/gtk-doc/html/camel/camel-camel-search-sql-sexp.html
share/gtk-doc/html/camel/camel-camel-search-sql.html
share/gtk-doc/html/camel/camel-camel-string-utils.html
share/gtk-doc/html/camel/camel-camel-trie.html
share/gtk-doc/html/camel/camel-camel-uid-cache.html
@ -499,8 +557,12 @@ share/gtk-doc/html/camel/right.png
share/gtk-doc/html/camel/style.css
share/gtk-doc/html/camel/up.png
share/gtk-doc/html/libebackend/
share/gtk-doc/html/libebackend/EAuthenticationMediator.html
share/gtk-doc/html/libebackend/EAuthenticationSession.html
share/gtk-doc/html/libebackend/EBackend.html
share/gtk-doc/html/libebackend/EBackendFactory.html
share/gtk-doc/html/libebackend/ECollectionBackend.html
share/gtk-doc/html/libebackend/ECollectionBackendFactory.html
share/gtk-doc/html/libebackend/EDBusServer.html
share/gtk-doc/html/libebackend/EDataFactory.html
share/gtk-doc/html/libebackend/EExtensible.html
@ -508,14 +570,20 @@ share/gtk-doc/html/libebackend/EExtension.html
share/gtk-doc/html/libebackend/EFileCache.html
share/gtk-doc/html/libebackend/EModule.html
share/gtk-doc/html/libebackend/EOfflineListener.html
share/gtk-doc/html/libebackend/EServerSideSource.html
share/gtk-doc/html/libebackend/ESourceRegistryServer.html
share/gtk-doc/html/libebackend/api-index-2.24.html
share/gtk-doc/html/libebackend/api-index-2.26.html
share/gtk-doc/html/libebackend/api-index-2.28.html
share/gtk-doc/html/libebackend/api-index-2.30.html
share/gtk-doc/html/libebackend/api-index-3.2.html
share/gtk-doc/html/libebackend/api-index-3.4.html
share/gtk-doc/html/libebackend/api-index-${R}.html
share/gtk-doc/html/libebackend/api-index-deprecated.html
share/gtk-doc/html/libebackend/ch01.html
share/gtk-doc/html/libebackend/ch02.html
share/gtk-doc/html/libebackend/ch03.html
share/gtk-doc/html/libebackend/ch04.html
share/gtk-doc/html/libebackend/home.png
share/gtk-doc/html/libebackend/index.html
share/gtk-doc/html/libebackend/index.sgml
@ -546,6 +614,7 @@ share/gtk-doc/html/libebook/api-index-2.30.html
share/gtk-doc/html/libebook/api-index-2.32.html
share/gtk-doc/html/libebook/api-index-3.0.html
share/gtk-doc/html/libebook/api-index-3.2.html
share/gtk-doc/html/libebook/api-index-3.4.html
share/gtk-doc/html/libebook/api-index-${R}.html
share/gtk-doc/html/libebook/api-index-deprecated.html
share/gtk-doc/html/libebook/api-index-full.html
@ -579,6 +648,7 @@ share/gtk-doc/html/libecal/api-index-2.30.html
share/gtk-doc/html/libecal/api-index-2.32.html
share/gtk-doc/html/libecal/api-index-3.0.html
share/gtk-doc/html/libecal/api-index-3.2.html
share/gtk-doc/html/libecal/api-index-3.4.html
share/gtk-doc/html/libecal/api-index-${R}.html
share/gtk-doc/html/libecal/api-index-deprecated.html
share/gtk-doc/html/libecal/api-index-full.html
@ -606,6 +676,7 @@ share/gtk-doc/html/libedata-book/EBookBackendSExp.html
share/gtk-doc/html/libedata-book/EBookBackendSummary.html
share/gtk-doc/html/libedata-book/EBookBackendSync.html
share/gtk-doc/html/libedata-book/EDataBook.html
share/gtk-doc/html/libedata-book/EDataBookFactory.html
share/gtk-doc/html/libedata-book/EDataBookView.html
share/gtk-doc/html/libedata-book/annotation-glossary.html
share/gtk-doc/html/libedata-book/api-index-1.12.html
@ -617,6 +688,7 @@ share/gtk-doc/html/libedata-book/api-index-2.30.html
share/gtk-doc/html/libedata-book/api-index-2.32.html
share/gtk-doc/html/libedata-book/api-index-3.0.html
share/gtk-doc/html/libedata-book/api-index-3.2.html
share/gtk-doc/html/libedata-book/api-index-3.4.html
share/gtk-doc/html/libedata-book/api-index-${R}.html
share/gtk-doc/html/libedata-book/api-index-deprecated.html
share/gtk-doc/html/libedata-book/api-index-full.html
@ -626,7 +698,6 @@ share/gtk-doc/html/libedata-book/index.html
share/gtk-doc/html/libedata-book/index.sgml
share/gtk-doc/html/libedata-book/left.png
share/gtk-doc/html/libedata-book/libedata-book-EBookBackendSqliteDB.html
share/gtk-doc/html/libedata-book/libedata-book-EDataBookFactory.html
share/gtk-doc/html/libedata-book/libedata-book-e-book-backend-db-cache.html
share/gtk-doc/html/libedata-book/libedata-book-ximian-vcard.html
share/gtk-doc/html/libedata-book/libedata-book.devhelp2
@ -640,6 +711,7 @@ share/gtk-doc/html/libedata-cal/ECalBackendFactory.html
share/gtk-doc/html/libedata-cal/ECalBackendSExp.html
share/gtk-doc/html/libedata-cal/ECalBackendSync.html
share/gtk-doc/html/libedata-cal/EDataCal.html
share/gtk-doc/html/libedata-cal/EDataCalFactory.html
share/gtk-doc/html/libedata-cal/annotation-glossary.html
share/gtk-doc/html/libedata-cal/api-index-1.12.html
share/gtk-doc/html/libedata-cal/api-index-2.22.html
@ -650,6 +722,7 @@ share/gtk-doc/html/libedata-cal/api-index-2.30.html
share/gtk-doc/html/libedata-cal/api-index-2.32.html
share/gtk-doc/html/libedata-cal/api-index-3.0.html
share/gtk-doc/html/libedata-cal/api-index-3.2.html
share/gtk-doc/html/libedata-cal/api-index-3.4.html
share/gtk-doc/html/libedata-cal/api-index-${R}.html
share/gtk-doc/html/libedata-cal/api-index-deprecated.html
share/gtk-doc/html/libedata-cal/api-index-full.html
@ -660,7 +733,6 @@ share/gtk-doc/html/libedata-cal/index.sgml
share/gtk-doc/html/libedata-cal/left.png
share/gtk-doc/html/libedata-cal/libedata-cal-ECalBackendFileStore.html
share/gtk-doc/html/libedata-cal/libedata-cal-ECalBackendStore.html
share/gtk-doc/html/libedata-cal/libedata-cal-EDataCalFactory.html
share/gtk-doc/html/libedata-cal/libedata-cal-EDataCalView.html
share/gtk-doc/html/libedata-cal/libedata-cal-EIntervalTree.html
share/gtk-doc/html/libedata-cal/libedata-cal-e-cal-backend-util.html
@ -669,16 +741,41 @@ share/gtk-doc/html/libedata-cal/right.png
share/gtk-doc/html/libedata-cal/style.css
share/gtk-doc/html/libedata-cal/up.png
share/gtk-doc/html/libedataserver/
share/gtk-doc/html/libedataserver/EAccount.html
share/gtk-doc/html/libedataserver/EAccountList.html
share/gtk-doc/html/libedataserver/EClient.html
share/gtk-doc/html/libedataserver/EIterator.html
share/gtk-doc/html/libedataserver/EList.html
share/gtk-doc/html/libedataserver/EListIterator.html
share/gtk-doc/html/libedataserver/EProxy.html
share/gtk-doc/html/libedataserver/ESource.html
share/gtk-doc/html/libedataserver/ESourceGroup.html
share/gtk-doc/html/libedataserver/ESourceList.html
share/gtk-doc/html/libedataserver/ESourceAddressBook.html
share/gtk-doc/html/libedataserver/ESourceAlarms.html
share/gtk-doc/html/libedataserver/ESourceAuthentication.html
share/gtk-doc/html/libedataserver/ESourceAuthenticator.html
share/gtk-doc/html/libedataserver/ESourceAutocomplete.html
share/gtk-doc/html/libedataserver/ESourceBackend.html
share/gtk-doc/html/libedataserver/ESourceCalendar.html
share/gtk-doc/html/libedataserver/ESourceCamel.html
share/gtk-doc/html/libedataserver/ESourceCollection.html
share/gtk-doc/html/libedataserver/ESourceExtension.html
share/gtk-doc/html/libedataserver/ESourceGoa.html
share/gtk-doc/html/libedataserver/ESourceMDN.html
share/gtk-doc/html/libedataserver/ESourceMailAccount.html
share/gtk-doc/html/libedataserver/ESourceMailComposition.html
share/gtk-doc/html/libedataserver/ESourceMailIdentity.html
share/gtk-doc/html/libedataserver/ESourceMailSignature.html
share/gtk-doc/html/libedataserver/ESourceMailSubmission.html
share/gtk-doc/html/libedataserver/ESourceMailTransport.html
share/gtk-doc/html/libedataserver/ESourceMemoList.html
share/gtk-doc/html/libedataserver/ESourceOffline.html
share/gtk-doc/html/libedataserver/ESourceOpenPGP.html
share/gtk-doc/html/libedataserver/ESourceRefresh.html
share/gtk-doc/html/libedataserver/ESourceRegistry.html
share/gtk-doc/html/libedataserver/ESourceResource.html
share/gtk-doc/html/libedataserver/ESourceSMIME.html
share/gtk-doc/html/libedataserver/ESourceSecurity.html
share/gtk-doc/html/libedataserver/ESourceSelectable.html
share/gtk-doc/html/libedataserver/ESourceTaskList.html
share/gtk-doc/html/libedataserver/ESourceWebdav.html
share/gtk-doc/html/libedataserver/annotation-glossary.html
share/gtk-doc/html/libedataserver/api-index-1.12.html
share/gtk-doc/html/libedataserver/api-index-2.22.html
@ -689,10 +786,14 @@ share/gtk-doc/html/libedataserver/api-index-2.30.html
share/gtk-doc/html/libedataserver/api-index-2.32.html
share/gtk-doc/html/libedataserver/api-index-3.0.html
share/gtk-doc/html/libedataserver/api-index-3.2.html
share/gtk-doc/html/libedataserver/api-index-3.4.html
share/gtk-doc/html/libedataserver/api-index-${R}.html
share/gtk-doc/html/libedataserver/api-index-deprecated.html
share/gtk-doc/html/libedataserver/api-index-full.html
share/gtk-doc/html/libedataserver/ch01.html
share/gtk-doc/html/libedataserver/ch02.html
share/gtk-doc/html/libedataserver/ch03.html
share/gtk-doc/html/libedataserver/ch04.html
share/gtk-doc/html/libedataserver/home.png
share/gtk-doc/html/libedataserver/index.html
share/gtk-doc/html/libedataserver/index.sgml
@ -740,6 +841,7 @@ share/gtk-doc/html/libedataserverui/api-index-2.30.html
share/gtk-doc/html/libedataserverui/api-index-2.32.html
share/gtk-doc/html/libedataserverui/api-index-3.0.html
share/gtk-doc/html/libedataserverui/api-index-3.2.html
share/gtk-doc/html/libedataserverui/api-index-3.4.html
share/gtk-doc/html/libedataserverui/api-index-${R}.html
share/gtk-doc/html/libedataserverui/api-index-deprecated.html
share/gtk-doc/html/libedataserverui/api-index-full.html