Import evolution-data-server-3.0.1.

The Evolution Data Server package provides a unified backend for
programs that work with contacts, tasks, and calendar information. It
was originally developed for Evolution (hence the name), but is now used
by other packages as well. 

The Evolution Data Server provides a single database for common,
desktop-wide information, such as a user's address book or calendar
events.

ok jasper@
This commit is contained in:
ajacoutot 2011-05-17 17:07:32 +00:00
parent 80bfdfdd6f
commit 347101e7d3
16 changed files with 1150 additions and 0 deletions

View File

@ -0,0 +1,89 @@
# $OpenBSD: Makefile,v 1.1.1.1 2011/05/17 17:07:32 ajacoutot Exp $
SHARED_ONLY= Yes
COMMENT= unified backend for PIM programs
GNOME_PROJECT= evolution-data-server
GNOME_VERSION= 3.0.1
CATEGORIES= databases
SHARED_LIBS += edataserver-1.2 12.0 # 14.0
SHARED_LIBS += ebackend-1.2 2.0 # 1.0
SHARED_LIBS += egroupwise-1.2 15.0 # 13.1
SHARED_LIBS += camel-1.2 16.0 # 23.0
SHARED_LIBS += camel-provider-1.2 16.0 # 23.0
SHARED_LIBS += ebook-1.2 14.0 # 13.1
SHARED_LIBS += edata-book-1.2 8.0 # 9.0
SHARED_LIBS += ecal-1.2 11.0 # 10.2
SHARED_LIBS += edata-cal-1.2 8.0 # 11.0
SHARED_LIBS += edataserverui-3.0 0.0 # 0.0
HOMEPAGE= http://www.gnome.org/projects/evolution/
MAINTAINER= Jasper Lievisse Adriaanse <jasper@openbsd.org>, \
Antoine Jacoutot <ajacoutot@openbsd.org>
# LGPLv2
PERMIT_PACKAGE_CDROM= Yes
PERMIT_PACKAGE_FTP= Yes
PERMIT_DISTFILES_CDROM= Yes
PERMIT_DISTFILES_FTP= Yes
WANTLIB += GL ORBit-2 X11 Xau Xcomposite Xcursor Xdamage Xdmcp
WANTLIB += Xext Xfixes Xi Xinerama Xrandr Xrender Xxf86vm asn1
WANTLIB += atk-1.0 c cairo cairo-gobject com_err crypto db dbus-1
WANTLIB += drm expat fontconfig freetype gconf-2 gcrypt gdata
WANTLIB += gdk-3 gdk_pixbuf-2.0 gio-2.0 glib-2.0 gmodule-2.0 gnome-keyring
WANTLIB += gobject-2.0 gpg-error gssapi gthread-2.0 gtk-3 gweather-3
WANTLIB += ical icalss icalvcal krb5 lber-2.4 ldap-2.4 m nspr4
WANTLIB += nss3 nssutil3 pango-1.0 pangocairo-1.0 pangoft2-1.0
WANTLIB += pcre pixman-1 plc4 plds4 png pthread pthread-stubs
WANTLIB += sasl2 smime3 soup-2.4 soup-gnome-2.4 sqlite3 ssl ssl3
WANTLIB += xcb xcb-render xcb-shm xml2 z
MODULES= devel/gettext \
lang/python \
x11/gnome
BUILD_DEPENDS= devel/bison \
devel/gperf \
devel/gobject-introspection
LIB_DEPENDS= databases/db/v4 \
databases/openldap \
security/nss>=3.11.4p1 \
textproc/libical \
x11/gnome/libgweather \
devel/libgdata>=0.8.0
YACC= bison
CONFIGURE_STYLE= gnu
CONFIGURE_ARGS= ${CONFIGURE_SHARED} \
--disable-gtk-doc \
--enable-introspection \
--enable-ssl \
--enable-smime \
--enable-ipv6 \
--enable-weather \
--enable-nntp \
--with-nss-libs="${LOCALBASE}/lib" \
--with-nss-includes="${LOCALBASE}/include/nss" \
--with-nspr-libs=${LOCALBASE}/lib \
--with-nspr-includes=${LOCALBASE}/include/nspr \
--with-krb5 \
--with-krb5-libs=/usr/lib \
--with-krb5-includes=/usr/include/kerberosV \
--with-libdb="${LOCALBASE}/lib" \
--with-openldap=${LOCALBASE}
CONFIGURE_ENV= CPPFLAGS="-I${LOCALBASE}/include -I${LOCALBASE}/include/db4" \
LDFLAGS="-L${LOCALBASE}/lib -pthread"
# Only get the first x.y which is needed in the PLIST.
R= ${GNOME_VERSION:C/^([0-9]+\.[0-9]+).*/\1/}
SUBST_VARS= R
MODPY_ADJ_FILES= addressbook/libebook/gen-western-table.py
.include <bsd.port.mk>

View File

@ -0,0 +1,5 @@
MD5 (evolution-data-server-3.0.1.tar.bz2) = VsNQ92XEL484EUD/rPVS5w==
RMD160 (evolution-data-server-3.0.1.tar.bz2) = /XoE16V58ZCgE346iPXKeS/03kk=
SHA1 (evolution-data-server-3.0.1.tar.bz2) = domsuGHauU+U1MqX9Mcj7x5W3Ko=
SHA256 (evolution-data-server-3.0.1.tar.bz2) = hZK+lAJ6mEisGGcKDobkjoV1Oc0oE+s0XtoKzhlojdA=
SIZE (evolution-data-server-3.0.1.tar.bz2) = 4397721

View File

@ -0,0 +1,12 @@
$OpenBSD: patch-addressbook_backends_file_e-book-backend-file_c,v 1.1.1.1 2011/05/17 17:07:32 ajacoutot Exp $
--- addressbook/backends/file/e-book-backend-file.c.orig Tue Sep 28 07:47:33 2010
+++ addressbook/backends/file/e-book-backend-file.c Tue Sep 28 07:49:03 2010
@@ -175,7 +175,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 "%08lX%08X", (long)time(NULL), c++);
}
static void

View File

@ -0,0 +1,17 @@
$OpenBSD: patch-addressbook_backends_ldap_e-book-backend-ldap_c,v 1.1.1.1 2011/05/17 17:07:32 ajacoutot Exp $
--- addressbook/backends/ldap/e-book-backend-ldap.c.orig Thu Feb 17 11:51:12 2011
+++ addressbook/backends/ldap/e-book-backend-ldap.c Tue May 17 13:40:32 2011
@@ -1205,11 +1205,11 @@ create_dn_from_contact (EContact *contact, gchar *root
}
}
- dn = g_strdup_printf ("%s=%s%s%lu",
+ dn = g_strdup_printf ("%s=%s%s%llu",
get_dn_attribute_name (rootdn),
(cn_part && *cn_part) ? cn_part : "",
(cn_part && *cn_part) ? "." : "",
- time (NULL));
+ (long long)time (NULL));
g_free (cn_part);

View File

@ -0,0 +1,12 @@
$OpenBSD: patch-addressbook_backends_vcf_e-book-backend-vcf_c,v 1.1.1.1 2011/05/17 17:07:32 ajacoutot Exp $
--- addressbook/backends/vcf/e-book-backend-vcf.c.orig Tue Sep 28 07:49:28 2010
+++ addressbook/backends/vcf/e-book-backend-vcf.c Tue Sep 28 07:49:42 2010
@@ -79,7 +79,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 "%08lX%08X", (long)time(NULL), c++);
}
static void

View File

@ -0,0 +1,13 @@
$OpenBSD: patch-calendar_libedata-cal_Makefile_in,v 1.1.1.1 2011/05/17 17:07:32 ajacoutot Exp $
--- calendar/libedata-cal/Makefile.in.orig Sun Apr 24 19:39:38 2011
+++ calendar/libedata-cal/Makefile.in Tue May 17 13:41:51 2011
@@ -614,8 +614,7 @@ test_intervaltree_coverage_LDADD = \
libedata-cal-1.2.la \
$(top_builddir)/calendar/libecal/libecal-1.2.la \
$(top_builddir)/libedataserver/libedataserver-1.2.la \
- $(EVOLUTION_CALENDAR_LIBS) \
- -lgcov
+ $(EVOLUTION_CALENDAR_LIBS)
all: $(BUILT_SOURCES)
$(MAKE) $(AM_MAKEFLAGS) all-am

View File

@ -0,0 +1,14 @@
$OpenBSD: patch-calendar_libedata-cal_e-cal-backend-intervaltree_c,v 1.1.1.1 2011/05/17 17:07:32 ajacoutot Exp $
--- calendar/libedata-cal/e-cal-backend-intervaltree.c.orig Thu Mar 10 10:50:17 2011
+++ calendar/libedata-cal/e-cal-backend-intervaltree.c Tue May 17 13:40:32 2011
@@ -589,8 +589,8 @@ e_intervaltree_node_dump (EIntervalTree *tree, EInterv
*/
EIntervalTreePrivate *priv = tree->priv;
if (node != priv->nil)
- g_print ("%*s[%ld - %ld] [%ld - %ld] red %d\n", indent, "", node->start,
- node->end, node->min, node->max, node->red);
+ g_print ("%*s[%ld - %ld] [%ld - %ld] red %d\n", indent, "", (long)node->start,
+ (long)node->end, (long)node->min, (long)node->max, node->red);
else
{
g_print ("%*s[ - ]\n", indent, "");

View File

@ -0,0 +1,12 @@
$OpenBSD: patch-calendar_libedata-cal_e-cal-backend-sexp_c,v 1.1.1.1 2011/05/17 17:07:32 ajacoutot Exp $
--- calendar/libedata-cal/e-cal-backend-sexp.c.orig Sun Apr 24 18:52:16 2011
+++ calendar/libedata-cal/e-cal-backend-sexp.c Tue May 17 13:40:32 2011
@@ -1476,7 +1476,7 @@ test_query (const gchar * query)
gboolean generator = e_cal_backend_sexp_evaluate_occur_times (sexp, &start, &end);
if (generator) {
- printf ("%s: %ld - %ld\n", query, start, end);
+ printf ("%s: %ld - %ld\n", query, (long)start, (long)end);
} else {
printf ("%s: no time prunning possible\n", query);
}

View File

@ -0,0 +1,12 @@
$OpenBSD: patch-calendar_libedata-cal_test-intervaltree_c,v 1.1.1.1 2011/05/17 17:07:32 ajacoutot Exp $
--- calendar/libedata-cal/test-intervaltree.c.orig Tue Nov 23 04:26:37 2010
+++ calendar/libedata-cal/test-intervaltree.c Sat Feb 26 16:47:10 2011
@@ -162,7 +162,7 @@ create_test_component (time_t start, time_t end)
e_cal_component_set_dtend (comp, &dtend);
*/
- summary.value = g_strdup_printf ("%ld - %ld", start, end);
+ summary.value = g_strdup_printf ("%ld - %ld", (long)start, (long)end);
summary.altrep = NULL;
e_cal_component_set_summary (comp, &summary);

View File

@ -0,0 +1,11 @@
$OpenBSD: patch-camel_camel-block-file_h,v 1.1.1.1 2011/05/17 17:07:32 ajacoutot Exp $
--- camel/camel-block-file.h.orig Mon Sep 13 14:16:52 2010
+++ camel/camel-block-file.h Mon Sep 27 19:11:45 2010
@@ -25,6 +25,7 @@
#ifndef CAMEL_BLOCK_FILE_H
#define CAMEL_BLOCK_FILE_H
+#include <sys/types.h>
#include <camel/camel-object.h>
#include <camel/camel-list-utils.h>
#include <stdio.h>

View File

@ -0,0 +1,12 @@
$OpenBSD: patch-camel_camel-lock_c,v 1.1.1.1 2011/05/17 17:07:32 ajacoutot Exp $
--- camel/camel-lock.c.orig Thu Sep 16 14:47:54 2010
+++ camel/camel-lock.c Tue May 17 13:40:32 2011
@@ -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 %ld seconds old\n", (long)now-st.st_ctime));
if (st.st_ctime < now - CAMEL_LOCK_DOT_STALE) {
d(printf("Removing it now\n"));
unlink (lock);

View File

@ -0,0 +1,57 @@
$OpenBSD: patch-camel_camel-search-sql-sexp_c,v 1.1.1.1 2011/05/17 17:07:32 ajacoutot Exp $
--- camel/camel-search-sql-sexp.c.orig Thu Sep 16 14:47:54 2010
+++ camel/camel-search-sql-sexp.c Tue May 17 13:40:32 2011
@@ -176,7 +176,7 @@ eval_eq (struct _ESExp *f, gint argc, struct _ESExpTer
if (r1->type == ESEXP_RES_INT)
g_string_append_printf(str, "%d", r1->value.number);
else if (r1->type == ESEXP_RES_TIME)
- g_string_append_printf(str, "%ld", r1->value.time);
+ g_string_append_printf(str, "%lld", (long long)r1->value.time);
else if (r1->type == ESEXP_RES_STRING)
g_string_append_printf(str, "%s", r1->value.string);
@@ -194,7 +194,7 @@ eval_eq (struct _ESExp *f, gint argc, struct _ESExpTer
if (r2->type == ESEXP_RES_BOOL)
g_string_append_printf(str, "%d", r2->value.boolean);
else if (r2->type == ESEXP_RES_TIME)
- g_string_append_printf(str, "%ld", r2->value.time);
+ g_string_append_printf(str, "%lld", (long long)r2->value.time);
else if (r2->type == ESEXP_RES_STRING) {
gchar *tmp = g_strdup_printf("%c%s%c", ut ? '%':' ', r2->value.string, ut?'%':' ');
gchar *safe = get_db_safe_string (tmp);
@@ -229,7 +229,7 @@ eval_lt (struct _ESExp *f, gint argc, struct _ESExpTer
if (r1->type == ESEXP_RES_INT)
g_string_append_printf(str, "%d", r1->value.number);
else if (r1->type == ESEXP_RES_TIME)
- g_string_append_printf(str, "%ld", r1->value.time);
+ g_string_append_printf(str, "%lld", (long long)r1->value.time);
else if (r1->type == ESEXP_RES_STRING)
g_string_append_printf(str, "%s", r1->value.string);
@@ -239,7 +239,7 @@ eval_lt (struct _ESExp *f, gint argc, struct _ESExpTer
if (r2->type == ESEXP_RES_BOOL)
g_string_append_printf(str, "%d", r2->value.boolean);
else if (r2->type == ESEXP_RES_TIME)
- g_string_append_printf(str, "%ld", r2->value.time);
+ g_string_append_printf(str, "%lld", (long long)r2->value.time);
else if (r2->type == ESEXP_RES_STRING)
g_string_append_printf(str, "%s", r2->value.string);
e_sexp_result_free (f, r1);
@@ -268,7 +268,7 @@ eval_gt (struct _ESExp *f, gint argc, struct _ESExpTer
if (r1->type == ESEXP_RES_INT)
g_string_append_printf(str, "%d", r1->value.number);
else if (r1->type == ESEXP_RES_TIME)
- g_string_append_printf(str, "%ld", r1->value.time);
+ g_string_append_printf(str, "%lld", (long long)r1->value.time);
else if (r1->type == ESEXP_RES_STRING)
g_string_append_printf(str, "%s", r1->value.string);
@@ -278,7 +278,7 @@ eval_gt (struct _ESExp *f, gint argc, struct _ESExpTer
if (r2->type == ESEXP_RES_BOOL)
g_string_append_printf(str, "%d", r2->value.boolean);
else if (r2->type == ESEXP_RES_TIME)
- g_string_append_printf(str, "%ld", r2->value.time);
+ g_string_append_printf(str, "%lld", (long long)r2->value.time);
else if (r2->type == ESEXP_RES_STRING)
g_string_append_printf(str, "%s", r2->value.string);
e_sexp_result_free (f, r1);

View File

@ -0,0 +1,12 @@
$OpenBSD: patch-camel_providers_local_camel-maildir-summary_c,v 1.1.1.1 2011/05/17 17:07:32 ajacoutot Exp $
--- camel/providers/local/camel-maildir-summary.c.orig Thu Mar 10 10:50:18 2011
+++ camel/providers/local/camel-maildir-summary.c Tue May 17 13:40:32 2011
@@ -376,7 +376,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("%lld.%d_%u.%s", (long long)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

@ -0,0 +1,43 @@
$OpenBSD: patch-configure,v 1.1.1.1 2011/05/17 17:07:32 ajacoutot Exp $
"$host" fails for some reason.
--- configure.orig Sun Apr 24 19:39:33 2011
+++ configure Tue May 17 14:39:47 2011
@@ -4472,13 +4472,6 @@ AM_CPPFLAGS="$WARNING_FLAGS -fno-strict-aliasing"
-case "$host" in
-*openbsd*|*freebsd*)
- ;;
-*)
- LDFLAGS="$LDFLAGS -Wl,--no-undefined"
- ;;
-esac
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking whether to enable maintainer-specific portions of Makefiles" >&5
@@ -15374,6 +15367,13 @@ fi
$as_echo "#define _WIN32_WINNT 0x501" >>confdefs.h
;;
+*openbsd*)
+ os_win32='no'
+ NO_UNDEFINED=''
+ SOCKET_LIBS=''
+ DL_LIB=''
+ LIBEXECDIR_IN_SERVER_FILE="$libexecdir"
+ ;;
*)
os_win32='no'
NO_UNDEFINED=''
@@ -17358,7 +17358,7 @@ $as_echo_n "checking for Kerberos 5... " >&6; }
LIBS_save="$LIBS"
mitlibs="-lkrb5 -lk5crypto -lcom_err -lgssapi_krb5"
- heimlibs="-lkrb5 -lcrypto -lasn1 -lcom_err -lroken -lgssapi"
+ heimlibs="-lkrb5 -lcrypto -lasn1 -lcom_err -lgssapi"
sunlibs="-lkrb5 -lgss"
if test "${ac_cv_lib_kerberos5+set}" = set; then :
$as_echo_n "(cached) " >&6

View File

@ -0,0 +1,8 @@
The Evolution Data Server package provides a unified backend for
programs that work with contacts, tasks, and calendar information. It
was originally developed for Evolution (hence the name), but is now used
by other packages as well.
The Evolution Data Server provides a single database for common,
desktop-wide information, such as a user's address book or calendar
events.

View File

@ -0,0 +1,821 @@
@comment $OpenBSD: PLIST,v 1.1.1.1 2011/05/17 17:07:32 ajacoutot Exp $
include/evolution-data-server-${R}/
include/evolution-data-server-${R}/camel/
include/evolution-data-server-${R}/camel/camel-address.h
include/evolution-data-server-${R}/camel/camel-block-file.h
include/evolution-data-server-${R}/camel/camel-certdb.h
include/evolution-data-server-${R}/camel/camel-charset-map.h
include/evolution-data-server-${R}/camel/camel-cipher-context.h
include/evolution-data-server-${R}/camel/camel-data-cache.h
include/evolution-data-server-${R}/camel/camel-data-wrapper.h
include/evolution-data-server-${R}/camel/camel-db.h
include/evolution-data-server-${R}/camel/camel-debug.h
include/evolution-data-server-${R}/camel/camel-disco-diary.h
include/evolution-data-server-${R}/camel/camel-disco-folder.h
include/evolution-data-server-${R}/camel/camel-disco-store.h
include/evolution-data-server-${R}/camel/camel-file-utils.h
include/evolution-data-server-${R}/camel/camel-filter-driver.h
include/evolution-data-server-${R}/camel/camel-filter-search.h
include/evolution-data-server-${R}/camel/camel-folder-search.h
include/evolution-data-server-${R}/camel/camel-folder-summary.h
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-index.h
include/evolution-data-server-${R}/camel/camel-internet-address.h
include/evolution-data-server-${R}/camel/camel-junk-plugin.h
include/evolution-data-server-${R}/camel/camel-list-utils.h
include/evolution-data-server-${R}/camel/camel-lock-client.h
include/evolution-data-server-${R}/camel/camel-lock-helper.h
include/evolution-data-server-${R}/camel/camel-lock.h
include/evolution-data-server-${R}/camel/camel-medium.h
include/evolution-data-server-${R}/camel/camel-mempool.h
include/evolution-data-server-${R}/camel/camel-mime-filter-basic.h
include/evolution-data-server-${R}/camel/camel-mime-filter-bestenc.h
include/evolution-data-server-${R}/camel/camel-mime-filter-canon.h
include/evolution-data-server-${R}/camel/camel-mime-filter-charset.h
include/evolution-data-server-${R}/camel/camel-mime-filter-crlf.h
include/evolution-data-server-${R}/camel/camel-mime-filter-enriched.h
include/evolution-data-server-${R}/camel/camel-mime-filter-from.h
include/evolution-data-server-${R}/camel/camel-mime-filter-gzip.h
include/evolution-data-server-${R}/camel/camel-mime-filter-html.h
include/evolution-data-server-${R}/camel/camel-mime-filter-index.h
include/evolution-data-server-${R}/camel/camel-mime-filter-linewrap.h
include/evolution-data-server-${R}/camel/camel-mime-filter-pgp.h
include/evolution-data-server-${R}/camel/camel-mime-filter-progress.h
include/evolution-data-server-${R}/camel/camel-mime-filter-save.h
include/evolution-data-server-${R}/camel/camel-mime-filter-tohtml.h
include/evolution-data-server-${R}/camel/camel-mime-filter-windows.h
include/evolution-data-server-${R}/camel/camel-mime-filter-yenc.h
include/evolution-data-server-${R}/camel/camel-mime-filter.h
include/evolution-data-server-${R}/camel/camel-mime-message.h
include/evolution-data-server-${R}/camel/camel-mime-parser.h
include/evolution-data-server-${R}/camel/camel-mime-part-utils.h
include/evolution-data-server-${R}/camel/camel-mime-part.h
include/evolution-data-server-${R}/camel/camel-mime-utils.h
include/evolution-data-server-${R}/camel/camel-movemail.h
include/evolution-data-server-${R}/camel/camel-msgport.h
include/evolution-data-server-${R}/camel/camel-multipart-encrypted.h
include/evolution-data-server-${R}/camel/camel-multipart-signed.h
include/evolution-data-server-${R}/camel/camel-multipart.h
include/evolution-data-server-${R}/camel/camel-net-utils.h
include/evolution-data-server-${R}/camel/camel-nntp-address.h
include/evolution-data-server-${R}/camel/camel-object-bag.h
include/evolution-data-server-${R}/camel/camel-object.h
include/evolution-data-server-${R}/camel/camel-offline-folder.h
include/evolution-data-server-${R}/camel/camel-offline-journal.h
include/evolution-data-server-${R}/camel/camel-offline-store.h
include/evolution-data-server-${R}/camel/camel-operation.h
include/evolution-data-server-${R}/camel/camel-partition-table.h
include/evolution-data-server-${R}/camel/camel-provider.h
include/evolution-data-server-${R}/camel/camel-sasl-anonymous.h
include/evolution-data-server-${R}/camel/camel-sasl-cram-md5.h
include/evolution-data-server-${R}/camel/camel-sasl-digest-md5.h
include/evolution-data-server-${R}/camel/camel-sasl-gssapi.h
include/evolution-data-server-${R}/camel/camel-sasl-login.h
include/evolution-data-server-${R}/camel/camel-sasl-ntlm.h
include/evolution-data-server-${R}/camel/camel-sasl-plain.h
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-smime-context.h
include/evolution-data-server-${R}/camel/camel-store-summary.h
include/evolution-data-server-${R}/camel/camel-store.h
include/evolution-data-server-${R}/camel/camel-stream-buffer.h
include/evolution-data-server-${R}/camel/camel-stream-filter.h
include/evolution-data-server-${R}/camel/camel-stream-fs.h
include/evolution-data-server-${R}/camel/camel-stream-mem.h
include/evolution-data-server-${R}/camel/camel-stream-null.h
include/evolution-data-server-${R}/camel/camel-stream-process.h
include/evolution-data-server-${R}/camel/camel-stream-vfs.h
include/evolution-data-server-${R}/camel/camel-stream.h
include/evolution-data-server-${R}/camel/camel-string-utils.h
include/evolution-data-server-${R}/camel/camel-tcp-stream-raw.h
include/evolution-data-server-${R}/camel/camel-tcp-stream-ssl.h
include/evolution-data-server-${R}/camel/camel-tcp-stream.h
include/evolution-data-server-${R}/camel/camel-text-index.h
include/evolution-data-server-${R}/camel/camel-transport.h
include/evolution-data-server-${R}/camel/camel-trie.h
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-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}/groupwise/
include/evolution-data-server-${R}/groupwise/e-gw-connection.h
include/evolution-data-server-${R}/groupwise/e-gw-container.h
include/evolution-data-server-${R}/groupwise/e-gw-filter.h
include/evolution-data-server-${R}/groupwise/e-gw-item.h
include/evolution-data-server-${R}/groupwise/e-gw-message.h
include/evolution-data-server-${R}/groupwise/e-gw-proxy.h
include/evolution-data-server-${R}/groupwise/e-gw-recur-utils.h
include/evolution-data-server-${R}/groupwise/e-gw-sendoptions.h
include/evolution-data-server-${R}/groupwise/soup-soap-message.h
include/evolution-data-server-${R}/groupwise/soup-soap-response.h
include/evolution-data-server-${R}/libebackend/
include/evolution-data-server-${R}/libebackend/e-data-server-module.h
include/evolution-data-server-${R}/libebackend/e-db3-utils.h
include/evolution-data-server-${R}/libebackend/e-dbhash.h
include/evolution-data-server-${R}/libebackend/e-file-cache.h
include/evolution-data-server-${R}/libebackend/e-offline-listener.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-query.h
include/evolution-data-server-${R}/libebook/e-book-types.h
include/evolution-data-server-${R}/libebook/e-book-view.h
include/evolution-data-server-${R}/libebook/e-book.h
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}/libecal/
include/evolution-data-server-${R}/libecal/e-cal-check-timezones.h
include/evolution-data-server-${R}/libecal/e-cal-component.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
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}/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
include/evolution-data-server-${R}/libedata-book/e-book-backend-factory.h
include/evolution-data-server-${R}/libedata-book/e-book-backend-sexp.h
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-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
include/evolution-data-server-${R}/libedata-cal/e-cal-backend-file-store.h
include/evolution-data-server-${R}/libedata-cal/e-cal-backend-intervaltree.h
include/evolution-data-server-${R}/libedata-cal/e-cal-backend-sexp.h
include/evolution-data-server-${R}/libedata-cal/e-cal-backend-store.h
include/evolution-data-server-${R}/libedata-cal/e-cal-backend-sync.h
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}/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-data-server-util.h
include/evolution-data-server-${R}/libedataserver/e-debug-log.h
include/evolution-data-server-${R}/libedataserver/e-flag.h
include/evolution-data-server-${R}/libedataserver/e-iterator.h
include/evolution-data-server-${R}/libedataserver/e-list-iterator.h
include/evolution-data-server-${R}/libedataserver/e-list.h
include/evolution-data-server-${R}/libedataserver/e-memory.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.h
include/evolution-data-server-${R}/libedataserver/e-time-utils.h
include/evolution-data-server-${R}/libedataserver/e-uid.h
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}/libedataserverui/
include/evolution-data-server-${R}/libedataserverui/e-book-auth-util.h
include/evolution-data-server-${R}/libedataserverui/e-categories-dialog.h
include/evolution-data-server-${R}/libedataserverui/e-category-completion.h
include/evolution-data-server-${R}/libedataserverui/e-cell-renderer-color.h
include/evolution-data-server-${R}/libedataserverui/e-contact-store.h
include/evolution-data-server-${R}/libedataserverui/e-destination-store.h
include/evolution-data-server-${R}/libedataserverui/e-name-selector-dialog.h
include/evolution-data-server-${R}/libedataserverui/e-name-selector-entry.h
include/evolution-data-server-${R}/libedataserverui/e-name-selector-list.h
include/evolution-data-server-${R}/libedataserverui/e-name-selector-model.h
include/evolution-data-server-${R}/libedataserverui/e-name-selector.h
include/evolution-data-server-${R}/libedataserverui/e-passwords.h
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
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/libebookbackendgroupwise.a
@comment lib/evolution-data-server/addressbook-backends/libebookbackendgroupwise.la
lib/evolution-data-server/addressbook-backends/libebookbackendgroupwise.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/libecalbackendgroupwise.a
@comment lib/evolution-data-server/calendar-backends/libecalbackendgroupwise.la
lib/evolution-data-server/calendar-backends/libecalbackendgroupwise.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/libcamelgroupwise.a
@comment lib/evolution-data-server/camel-providers/libcamelgroupwise.la
lib/evolution-data-server/camel-providers/libcamelgroupwise.so
lib/evolution-data-server/camel-providers/libcamelgroupwise.urls
@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/girepository-1.0/ECalendar-1.2.typelib
lib/girepository-1.0/EDataServer-1.2.typelib
lib/libcamel-1.2.a
lib/libcamel-1.2.la
@lib lib/libcamel-1.2.so.${LIBcamel-1.2_VERSION}
lib/libcamel-provider-1.2.a
lib/libcamel-provider-1.2.la
@lib lib/libcamel-provider-1.2.so.${LIBcamel-provider-1.2_VERSION}
lib/libebackend-1.2.a
lib/libebackend-1.2.la
@lib lib/libebackend-1.2.so.${LIBebackend-1.2_VERSION}
lib/libebook-1.2.a
lib/libebook-1.2.la
@lib lib/libebook-1.2.so.${LIBebook-1.2_VERSION}
lib/libecal-1.2.a
lib/libecal-1.2.la
@lib lib/libecal-1.2.so.${LIBecal-1.2_VERSION}
lib/libedata-book-1.2.a
lib/libedata-book-1.2.la
@lib lib/libedata-book-1.2.so.${LIBedata-book-1.2_VERSION}
lib/libedata-cal-1.2.a
lib/libedata-cal-1.2.la
@lib lib/libedata-cal-1.2.so.${LIBedata-cal-1.2_VERSION}
lib/libedataserver-1.2.a
lib/libedataserver-1.2.la
@lib lib/libedataserver-1.2.so.${LIBedataserver-1.2_VERSION}
lib/libedataserverui-${R}.a
lib/libedataserverui-${R}.la
@lib lib/libedataserverui-${R}.so.${LIBedataserverui-3.0_VERSION}
lib/libegroupwise-1.2.a
lib/libegroupwise-1.2.la
@lib lib/libegroupwise-1.2.so.${LIBegroupwise-1.2_VERSION}
lib/pkgconfig/camel-1.2.pc
lib/pkgconfig/camel-provider-1.2.pc
lib/pkgconfig/evolution-data-server-1.2.pc
lib/pkgconfig/libebackend-1.2.pc
lib/pkgconfig/libebook-1.2.pc
lib/pkgconfig/libecal-1.2.pc
lib/pkgconfig/libedata-book-1.2.pc
lib/pkgconfig/libedata-cal-1.2.pc
lib/pkgconfig/libedataserver-1.2.pc
lib/pkgconfig/libedataserverui-${R}.pc
lib/pkgconfig/libegroupwise-1.2.pc
@bin libexec/camel-index-control-1.2
@mode 4555
@bin libexec/camel-lock-helper-1.2
@mode
@bin libexec/e-addressbook-factory
@bin libexec/e-calendar-factory
share/dbus-1/services/org.gnome.evolution.dataserver.AddressBook.service
share/dbus-1/services/org.gnome.evolution.dataserver.Calendar.service
share/evolution-data-server-${R}/
share/evolution-data-server-${R}/evolutionperson.schema
share/gir-1.0/ECalendar-1.2.gir
share/gir-1.0/EDataServer-1.2.gir
share/gtk-doc/html/camel/
share/gtk-doc/html/camel/Addresses.html
share/gtk-doc/html/camel/CamelAddress.html
share/gtk-doc/html/camel/CamelCertDB.html
share/gtk-doc/html/camel/CamelCipherContext.html
share/gtk-doc/html/camel/CamelDataCache.html
share/gtk-doc/html/camel/CamelDataWrapper.html
share/gtk-doc/html/camel/CamelDiscoDiary.html
share/gtk-doc/html/camel/CamelDiscoFolder.html
share/gtk-doc/html/camel/CamelDiscoStore.html
share/gtk-doc/html/camel/CamelFilterDriver.html
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/CamelIndex.html
share/gtk-doc/html/camel/CamelInternetAddress.html
share/gtk-doc/html/camel/CamelKeyFile.html
share/gtk-doc/html/camel/CamelKeyTable.html
share/gtk-doc/html/camel/CamelMedium.html
share/gtk-doc/html/camel/CamelMimeFilter.html
share/gtk-doc/html/camel/CamelMimeFilterBasic.html
share/gtk-doc/html/camel/CamelMimeFilterBestenc.html
share/gtk-doc/html/camel/CamelMimeFilterCRLF.html
share/gtk-doc/html/camel/CamelMimeFilterCanon.html
share/gtk-doc/html/camel/CamelMimeFilterCharset.html
share/gtk-doc/html/camel/CamelMimeFilterEnriched.html
share/gtk-doc/html/camel/CamelMimeFilterFrom.html
share/gtk-doc/html/camel/CamelMimeFilterGZip.html
share/gtk-doc/html/camel/CamelMimeFilterHTML.html
share/gtk-doc/html/camel/CamelMimeFilterIndex.html
share/gtk-doc/html/camel/CamelMimeFilterLinewrap.html
share/gtk-doc/html/camel/CamelMimeFilterPgp.html
share/gtk-doc/html/camel/CamelMimeFilterProgress.html
share/gtk-doc/html/camel/CamelMimeFilterSave.html
share/gtk-doc/html/camel/CamelMimeFilterToHTML.html
share/gtk-doc/html/camel/CamelMimeFilterWindows.html
share/gtk-doc/html/camel/CamelMimeFilterYenc.html
share/gtk-doc/html/camel/CamelMimeMessage.html
share/gtk-doc/html/camel/CamelMimeParser.html
share/gtk-doc/html/camel/CamelMimePart.html
share/gtk-doc/html/camel/CamelMultipart.html
share/gtk-doc/html/camel/CamelMultipartEncrypted.html
share/gtk-doc/html/camel/CamelMultipartSigned.html
share/gtk-doc/html/camel/CamelNNTPAddress.html
share/gtk-doc/html/camel/CamelObject.html
share/gtk-doc/html/camel/CamelOfflineFolder.html
share/gtk-doc/html/camel/CamelOfflineJournal.html
share/gtk-doc/html/camel/CamelOfflineStore.html
share/gtk-doc/html/camel/CamelSMIMEContext.html
share/gtk-doc/html/camel/CamelSasl.html
share/gtk-doc/html/camel/CamelSaslAnonymous.html
share/gtk-doc/html/camel/CamelSaslCramMd5.html
share/gtk-doc/html/camel/CamelSaslDigestMd5.html
share/gtk-doc/html/camel/CamelSaslGssapi.html
share/gtk-doc/html/camel/CamelSaslLogin.html
share/gtk-doc/html/camel/CamelSaslNTLM.html
share/gtk-doc/html/camel/CamelSaslPOPB4SMTP.html
share/gtk-doc/html/camel/CamelSaslPlain.html
share/gtk-doc/html/camel/CamelService.html
share/gtk-doc/html/camel/CamelSession.html
share/gtk-doc/html/camel/CamelStore.html
share/gtk-doc/html/camel/CamelStoreSummary.html
share/gtk-doc/html/camel/CamelStream.html
share/gtk-doc/html/camel/CamelStreamBuffer.html
share/gtk-doc/html/camel/CamelStreamFilter.html
share/gtk-doc/html/camel/CamelStreamFs.html
share/gtk-doc/html/camel/CamelStreamMem.html
share/gtk-doc/html/camel/CamelStreamNull.html
share/gtk-doc/html/camel/CamelStreamProcess.html
share/gtk-doc/html/camel/CamelStreamVFS.html
share/gtk-doc/html/camel/CamelTcpStream.html
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/CamelVeeFolder.html
share/gtk-doc/html/camel/CamelVeeStore.html
share/gtk-doc/html/camel/CamelVeeSummary.html
share/gtk-doc/html/camel/ClassTree.html
share/gtk-doc/html/camel/Crypto.html
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/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/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
share/gtk-doc/html/camel/api-index-2.28.html
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-${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-CamelMsgPort.html
share/gtk-doc/html/camel/camel-CamelTcpStreamSSL.html
share/gtk-doc/html/camel/camel-camel-charset-map.html
share/gtk-doc/html/camel/camel-camel-debug.html
share/gtk-doc/html/camel/camel-camel-file-utils.html
share/gtk-doc/html/camel/camel-camel-filter-search.html
share/gtk-doc/html/camel/camel-camel-folder-thread.html
share/gtk-doc/html/camel/camel-camel-iconv.html
share/gtk-doc/html/camel/camel-camel-junk-plugin.html
share/gtk-doc/html/camel/camel-camel-list-utils.html
share/gtk-doc/html/camel/camel-camel-lock-client.html
share/gtk-doc/html/camel/camel-camel-lock.html
share/gtk-doc/html/camel/camel-camel-mempool.html
share/gtk-doc/html/camel/camel-camel-mime-utils.html
share/gtk-doc/html/camel/camel-camel-movemail.html
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
share/gtk-doc/html/camel/camel-camel-url-scanner.html
share/gtk-doc/html/camel/camel-camel-url.html
share/gtk-doc/html/camel/camel-camel-utf8.html
share/gtk-doc/html/camel/camel-camel.html
share/gtk-doc/html/camel/camel.devhelp
share/gtk-doc/html/camel/camel.devhelp2
share/gtk-doc/html/camel/classes.html
share/gtk-doc/html/camel/home.png
share/gtk-doc/html/camel/index.html
share/gtk-doc/html/camel/index.sgml
share/gtk-doc/html/camel/left.png
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/EFileCache.html
share/gtk-doc/html/libebackend/EOfflineListener.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-deprecated.html
share/gtk-doc/html/libebackend/ch01.html
share/gtk-doc/html/libebackend/home.png
share/gtk-doc/html/libebackend/index.html
share/gtk-doc/html/libebackend/index.sgml
share/gtk-doc/html/libebackend/ix01.html
share/gtk-doc/html/libebackend/left.png
share/gtk-doc/html/libebackend/libebackend-e-data-server-module.html
share/gtk-doc/html/libebackend/libebackend-e-db3-utils.html
share/gtk-doc/html/libebackend/libebackend-e-dbhash.html
share/gtk-doc/html/libebackend/libebackend.devhelp
share/gtk-doc/html/libebackend/libebackend.devhelp2
share/gtk-doc/html/libebackend/right.png
share/gtk-doc/html/libebackend/style.css
share/gtk-doc/html/libebackend/up.png
share/gtk-doc/html/libebook/
share/gtk-doc/html/libebook/EBook.html
share/gtk-doc/html/libebook/EBookView.html
share/gtk-doc/html/libebook/EContact.html
share/gtk-doc/html/libebook/EDestination.html
share/gtk-doc/html/libebook/EVCard.html
share/gtk-doc/html/libebook/annotation-glossary.html
share/gtk-doc/html/libebook/api-index-1.12.html
share/gtk-doc/html/libebook/api-index-2.22.html
share/gtk-doc/html/libebook/api-index-2.24.html
share/gtk-doc/html/libebook/api-index-2.26.html
share/gtk-doc/html/libebook/api-index-2.28.html
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-${R}.html
share/gtk-doc/html/libebook/api-index-deprecated.html
share/gtk-doc/html/libebook/api-index-full.html
share/gtk-doc/html/libebook/ch01.html
share/gtk-doc/html/libebook/home.png
share/gtk-doc/html/libebook/index.html
share/gtk-doc/html/libebook/index.sgml
share/gtk-doc/html/libebook/left.png
share/gtk-doc/html/libebook/libebook-EAddressWestern.html
share/gtk-doc/html/libebook/libebook-ENameWestern.html
share/gtk-doc/html/libebook/libebook-e-book-query.html
share/gtk-doc/html/libebook/libebook-e-book-types.html
share/gtk-doc/html/libebook/libebook.devhelp
share/gtk-doc/html/libebook/libebook.devhelp2
share/gtk-doc/html/libebook/right.png
share/gtk-doc/html/libebook/style.css
share/gtk-doc/html/libebook/up.png
share/gtk-doc/html/libecal/
share/gtk-doc/html/libecal/ECal.html
share/gtk-doc/html/libecal/ECalComponent.html
share/gtk-doc/html/libecal/ECalView.html
share/gtk-doc/html/libecal/annotation-glossary.html
share/gtk-doc/html/libecal/api-index-1.12.html
share/gtk-doc/html/libecal/api-index-2.22.html
share/gtk-doc/html/libecal/api-index-2.24.html
share/gtk-doc/html/libecal/api-index-2.26.html
share/gtk-doc/html/libecal/api-index-2.28.html
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-${R}.html
share/gtk-doc/html/libecal/api-index-deprecated.html
share/gtk-doc/html/libecal/api-index-full.html
share/gtk-doc/html/libecal/ch01.html
share/gtk-doc/html/libecal/home.png
share/gtk-doc/html/libecal/index.html
share/gtk-doc/html/libecal/index.sgml
share/gtk-doc/html/libecal/left.png
share/gtk-doc/html/libecal/libecal-e-cal-check-timezones.html
share/gtk-doc/html/libecal/libecal-e-cal-recur.html
share/gtk-doc/html/libecal/libecal-e-cal-system-timezone.html
share/gtk-doc/html/libecal/libecal-e-cal-time-util.html
share/gtk-doc/html/libecal/libecal-e-cal-types.html
share/gtk-doc/html/libecal/libecal-e-cal-util.html
share/gtk-doc/html/libecal/libecal.devhelp
share/gtk-doc/html/libecal/libecal.devhelp2
share/gtk-doc/html/libecal/right.png
share/gtk-doc/html/libecal/style.css
share/gtk-doc/html/libecal/up.png
share/gtk-doc/html/libedata-book/
share/gtk-doc/html/libedata-book/EBookBackend.html
share/gtk-doc/html/libedata-book/EBookBackendCache.html
share/gtk-doc/html/libedata-book/EBookBackendFactory.html
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/EDataBookView.html
share/gtk-doc/html/libedata-book/api-index-1.12.html
share/gtk-doc/html/libedata-book/api-index-2.22.html
share/gtk-doc/html/libedata-book/api-index-2.24.html
share/gtk-doc/html/libedata-book/api-index-2.26.html
share/gtk-doc/html/libedata-book/api-index-2.28.html
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-${R}.html
share/gtk-doc/html/libedata-book/api-index-deprecated.html
share/gtk-doc/html/libedata-book/api-index-full.html
share/gtk-doc/html/libedata-book/ch01.html
share/gtk-doc/html/libedata-book/home.png
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-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.devhelp
share/gtk-doc/html/libedata-book/libedata-book.devhelp2
share/gtk-doc/html/libedata-book/right.png
share/gtk-doc/html/libedata-book/style.css
share/gtk-doc/html/libedata-book/up.png
share/gtk-doc/html/libedata-cal/
share/gtk-doc/html/libedata-cal/ECalBackend.html
share/gtk-doc/html/libedata-cal/ECalBackendCache.html
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/api-index-1.12.html
share/gtk-doc/html/libedata-cal/api-index-2.22.html
share/gtk-doc/html/libedata-cal/api-index-2.24.html
share/gtk-doc/html/libedata-cal/api-index-2.26.html
share/gtk-doc/html/libedata-cal/api-index-2.28.html
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-${R}.html
share/gtk-doc/html/libedata-cal/api-index-deprecated.html
share/gtk-doc/html/libedata-cal/api-index-full.html
share/gtk-doc/html/libedata-cal/ch01.html
share/gtk-doc/html/libedata-cal/home.png
share/gtk-doc/html/libedata-cal/index.html
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-ECalBackendLoaderFactory.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
share/gtk-doc/html/libedata-cal/libedata-cal.devhelp
share/gtk-doc/html/libedata-cal/libedata-cal.devhelp2
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/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/annotation-glossary.html
share/gtk-doc/html/libedataserver/api-index-1.12.html
share/gtk-doc/html/libedataserver/api-index-2.22.html
share/gtk-doc/html/libedataserver/api-index-2.24.html
share/gtk-doc/html/libedataserver/api-index-2.26.html
share/gtk-doc/html/libedataserver/api-index-2.28.html
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-${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/home.png
share/gtk-doc/html/libedataserver/index.html
share/gtk-doc/html/libedataserver/index.sgml
share/gtk-doc/html/libedataserver/left.png
share/gtk-doc/html/libedataserver/libedataserver-EFlag.html
share/gtk-doc/html/libedataserver/libedataserver-ESExp.html
share/gtk-doc/html/libedataserver/libedataserver-Version-Information.html
share/gtk-doc/html/libedataserver/libedataserver-e-categories.html
share/gtk-doc/html/libedataserver/libedataserver-e-debug-log.html
share/gtk-doc/html/libedataserver/libedataserver-e-memory.html
share/gtk-doc/html/libedataserver/libedataserver-e-time-utils.html
share/gtk-doc/html/libedataserver/libedataserver-e-uid.html
share/gtk-doc/html/libedataserver/libedataserver-e-url.html
share/gtk-doc/html/libedataserver/libedataserver-e-util.html
share/gtk-doc/html/libedataserver/libedataserver-e-xml-hash-utils.html
share/gtk-doc/html/libedataserver/libedataserver.devhelp
share/gtk-doc/html/libedataserver/libedataserver.devhelp2
share/gtk-doc/html/libedataserver/right.png
share/gtk-doc/html/libedataserver/style.css
share/gtk-doc/html/libedataserver/up.png
share/gtk-doc/html/libedataserverui/
share/gtk-doc/html/libedataserverui/ECategoriesDialog.html
share/gtk-doc/html/libedataserverui/EContactStore.html
share/gtk-doc/html/libedataserverui/EDestinationStore.html
share/gtk-doc/html/libedataserverui/ENameSelector.html
share/gtk-doc/html/libedataserverui/ENameSelectorDialog.html
share/gtk-doc/html/libedataserverui/ENameSelectorEntry.html
share/gtk-doc/html/libedataserverui/ENameSelectorList.html
share/gtk-doc/html/libedataserverui/ENameSelectorModel.html
share/gtk-doc/html/libedataserverui/ESourceComboBox.html
share/gtk-doc/html/libedataserverui/ESourceSelector.html
share/gtk-doc/html/libedataserverui/ESourceSelectorDialog.html
share/gtk-doc/html/libedataserverui/ETreeModelGenerator.html
share/gtk-doc/html/libedataserverui/api-index-1.12.html
share/gtk-doc/html/libedataserverui/api-index-2.22.html
share/gtk-doc/html/libedataserverui/api-index-2.24.html
share/gtk-doc/html/libedataserverui/api-index-2.26.html
share/gtk-doc/html/libedataserverui/api-index-2.28.html
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-${R}.html
share/gtk-doc/html/libedataserverui/api-index-deprecated.html
share/gtk-doc/html/libedataserverui/api-index-full.html
share/gtk-doc/html/libedataserverui/ch01.html
share/gtk-doc/html/libedataserverui/home.png
share/gtk-doc/html/libedataserverui/index.html
share/gtk-doc/html/libedataserverui/index.sgml
share/gtk-doc/html/libedataserverui/left.png
share/gtk-doc/html/libedataserverui/libedataserverui-ECategoryCompletion.html
share/gtk-doc/html/libedataserverui/libedataserverui-ECellRendererColor.html
share/gtk-doc/html/libedataserverui/libedataserverui-e-book-auth-util.html
share/gtk-doc/html/libedataserverui/libedataserverui-e-passwords.html
share/gtk-doc/html/libedataserverui/libedataserverui.devhelp
share/gtk-doc/html/libedataserverui/libedataserverui.devhelp2
share/gtk-doc/html/libedataserverui/right.png
share/gtk-doc/html/libedataserverui/style.css
share/gtk-doc/html/libedataserverui/up.png
share/locale/am/LC_MESSAGES/evolution-data-server-${R}.mo
share/locale/ar/LC_MESSAGES/evolution-data-server-${R}.mo
share/locale/as/LC_MESSAGES/evolution-data-server-${R}.mo
share/locale/ast/LC_MESSAGES/evolution-data-server-${R}.mo
share/locale/az/LC_MESSAGES/evolution-data-server-${R}.mo
share/locale/be/LC_MESSAGES/evolution-data-server-${R}.mo
share/locale/bg/LC_MESSAGES/evolution-data-server-${R}.mo
share/locale/bn/LC_MESSAGES/evolution-data-server-${R}.mo
share/locale/bn_IN/LC_MESSAGES/evolution-data-server-${R}.mo
share/locale/bs/LC_MESSAGES/evolution-data-server-${R}.mo
share/locale/ca/LC_MESSAGES/evolution-data-server-${R}.mo
share/locale/ca@valencia/LC_MESSAGES/evolution-data-server-${R}.mo
share/locale/cs/LC_MESSAGES/evolution-data-server-${R}.mo
share/locale/cy/LC_MESSAGES/evolution-data-server-${R}.mo
share/locale/da/LC_MESSAGES/evolution-data-server-${R}.mo
share/locale/de/LC_MESSAGES/evolution-data-server-${R}.mo
share/locale/dz/LC_MESSAGES/evolution-data-server-${R}.mo
share/locale/el/LC_MESSAGES/evolution-data-server-${R}.mo
share/locale/en@shaw/LC_MESSAGES/evolution-data-server-${R}.mo
share/locale/en_AU/
share/locale/en_AU/LC_MESSAGES/
share/locale/en_AU/LC_MESSAGES/evolution-data-server-${R}.mo
share/locale/en_CA/LC_MESSAGES/evolution-data-server-${R}.mo
share/locale/en_GB/LC_MESSAGES/evolution-data-server-${R}.mo
share/locale/eo/LC_MESSAGES/evolution-data-server-${R}.mo
share/locale/es/LC_MESSAGES/evolution-data-server-${R}.mo
share/locale/et/LC_MESSAGES/evolution-data-server-${R}.mo
share/locale/eu/LC_MESSAGES/evolution-data-server-${R}.mo
share/locale/fa/LC_MESSAGES/evolution-data-server-${R}.mo
share/locale/fi/LC_MESSAGES/evolution-data-server-${R}.mo
share/locale/fr/LC_MESSAGES/evolution-data-server-${R}.mo
share/locale/ga/LC_MESSAGES/evolution-data-server-${R}.mo
share/locale/gl/LC_MESSAGES/evolution-data-server-${R}.mo
share/locale/gu/LC_MESSAGES/evolution-data-server-${R}.mo
share/locale/he/LC_MESSAGES/evolution-data-server-${R}.mo
share/locale/hi/LC_MESSAGES/evolution-data-server-${R}.mo
share/locale/hr/LC_MESSAGES/evolution-data-server-${R}.mo
share/locale/hu/LC_MESSAGES/evolution-data-server-${R}.mo
share/locale/id/LC_MESSAGES/evolution-data-server-${R}.mo
share/locale/is/LC_MESSAGES/evolution-data-server-${R}.mo
share/locale/it/LC_MESSAGES/evolution-data-server-${R}.mo
share/locale/ja/LC_MESSAGES/evolution-data-server-${R}.mo
share/locale/ka/LC_MESSAGES/evolution-data-server-${R}.mo
share/locale/kn/LC_MESSAGES/evolution-data-server-${R}.mo
share/locale/ko/LC_MESSAGES/evolution-data-server-${R}.mo
share/locale/ku/LC_MESSAGES/evolution-data-server-${R}.mo
share/locale/lt/LC_MESSAGES/evolution-data-server-${R}.mo
share/locale/lv/LC_MESSAGES/evolution-data-server-${R}.mo
share/locale/mai/LC_MESSAGES/evolution-data-server-${R}.mo
share/locale/mk/LC_MESSAGES/evolution-data-server-${R}.mo
share/locale/ml/LC_MESSAGES/evolution-data-server-${R}.mo
share/locale/mn/LC_MESSAGES/evolution-data-server-${R}.mo
share/locale/mr/LC_MESSAGES/evolution-data-server-${R}.mo
share/locale/ms/LC_MESSAGES/evolution-data-server-${R}.mo
share/locale/nb/LC_MESSAGES/evolution-data-server-${R}.mo
share/locale/ne/LC_MESSAGES/evolution-data-server-${R}.mo
share/locale/nl/LC_MESSAGES/evolution-data-server-${R}.mo
share/locale/nn/LC_MESSAGES/evolution-data-server-${R}.mo
share/locale/oc/LC_MESSAGES/evolution-data-server-${R}.mo
share/locale/or/LC_MESSAGES/evolution-data-server-${R}.mo
share/locale/pa/LC_MESSAGES/evolution-data-server-${R}.mo
share/locale/pl/LC_MESSAGES/evolution-data-server-${R}.mo
share/locale/pt/LC_MESSAGES/evolution-data-server-${R}.mo
share/locale/pt_BR/LC_MESSAGES/evolution-data-server-${R}.mo
share/locale/ro/LC_MESSAGES/evolution-data-server-${R}.mo
share/locale/ru/LC_MESSAGES/evolution-data-server-${R}.mo
share/locale/rw/LC_MESSAGES/evolution-data-server-${R}.mo
share/locale/si/LC_MESSAGES/evolution-data-server-${R}.mo
share/locale/sk/LC_MESSAGES/evolution-data-server-${R}.mo
share/locale/sl/LC_MESSAGES/evolution-data-server-${R}.mo
share/locale/sq/LC_MESSAGES/evolution-data-server-${R}.mo
share/locale/sr/LC_MESSAGES/evolution-data-server-${R}.mo
share/locale/sr@latin/LC_MESSAGES/evolution-data-server-${R}.mo
share/locale/sv/LC_MESSAGES/evolution-data-server-${R}.mo
share/locale/ta/LC_MESSAGES/evolution-data-server-${R}.mo
share/locale/te/LC_MESSAGES/evolution-data-server-${R}.mo
share/locale/th/LC_MESSAGES/evolution-data-server-${R}.mo
share/locale/tr/LC_MESSAGES/evolution-data-server-${R}.mo
share/locale/ug/LC_MESSAGES/evolution-data-server-${R}.mo
share/locale/uk/LC_MESSAGES/evolution-data-server-${R}.mo
share/locale/vi/LC_MESSAGES/evolution-data-server-${R}.mo
share/locale/wa/LC_MESSAGES/evolution-data-server-${R}.mo
share/locale/xh/LC_MESSAGES/evolution-data-server-${R}.mo
share/locale/zh_CN/LC_MESSAGES/evolution-data-server-${R}.mo
share/locale/zh_HK/LC_MESSAGES/evolution-data-server-${R}.mo
share/locale/zh_TW/LC_MESSAGES/evolution-data-server-${R}.mo
share/pixmaps/
share/pixmaps/evolution-data-server/
share/pixmaps/evolution-data-server/category_birthday_16.png
share/pixmaps/evolution-data-server/category_business_16.png
share/pixmaps/evolution-data-server/category_favorites_16.png
share/pixmaps/evolution-data-server/category_gifts_16.png
share/pixmaps/evolution-data-server/category_goals_16.png
share/pixmaps/evolution-data-server/category_holiday-cards_16.png
share/pixmaps/evolution-data-server/category_holiday_16.png
share/pixmaps/evolution-data-server/category_hot-contacts_16.png
share/pixmaps/evolution-data-server/category_ideas_16.png
share/pixmaps/evolution-data-server/category_international_16.png
share/pixmaps/evolution-data-server/category_key-customer_16.png
share/pixmaps/evolution-data-server/category_miscellaneous_16.png
share/pixmaps/evolution-data-server/category_personal_16.png
share/pixmaps/evolution-data-server/category_phonecalls_16.png
share/pixmaps/evolution-data-server/category_status_16.png
share/pixmaps/evolution-data-server/category_strategies_16.png
share/pixmaps/evolution-data-server/category_suppliers_16.png
share/pixmaps/evolution-data-server/category_time-and-expenses_16.png
@exec %D/bin/glib-compile-schemas %D/share/glib-2.0/schemas
@unexec-delete %D/bin/glib-compile-schemas %D/share/glib-2.0/schemas