summaryrefslogtreecommitdiffstats
path: root/databases/evolution-data-server
diff options
context:
space:
mode:
Diffstat (limited to 'databases/evolution-data-server')
-rw-r--r--databases/evolution-data-server/Makefile64
-rw-r--r--databases/evolution-data-server/distinfo3
-rw-r--r--databases/evolution-data-server/files/extra-patch-libedataserver_e-msgport.c53
-rw-r--r--databases/evolution-data-server/files/patch-addressbook_backends_ldap_e-book-backend-ldap.c13
-rw-r--r--databases/evolution-data-server/files/patch-calendar_libical_configure11
-rw-r--r--databases/evolution-data-server/files/patch-camel_camel-net-utils.c24
-rw-r--r--databases/evolution-data-server/files/patch-camel_camel-object.c22
-rw-r--r--databases/evolution-data-server/files/patch-configure44
-rw-r--r--databases/evolution-data-server/files/patch-libedataserverui_e-source-option-menu.c11
-rw-r--r--databases/evolution-data-server/files/patch-offical-sleepycat480
-rw-r--r--databases/evolution-data-server/pkg-descr3
-rw-r--r--databases/evolution-data-server/pkg-plist1017
12 files changed, 0 insertions, 1745 deletions
diff --git a/databases/evolution-data-server/Makefile b/databases/evolution-data-server/Makefile
deleted file mode 100644
index 0aafed507..000000000
--- a/databases/evolution-data-server/Makefile
+++ /dev/null
@@ -1,64 +0,0 @@
-# New ports collection makefile for: evolution-data-server
-# Date created: 09 December 2003
-# Whom: Joe Marcus Clarke <marcus@FreeBSD.org>
-#
-# $FreeBSD$
-# $MCom: ports/databases/evolution-data-server/Makefile,v 1.82 2006/04/10 21:18:09 marcus Exp $
-#
-
-PORTNAME= evolution-data-server
-PORTVERSION= 1.6.1
-CATEGORIES= databases gnome
-MASTER_SITES= ${MASTER_SITE_GNOME}
-MASTER_SITE_SUBDIR= sources/${PORTNAME}/${PORTVERSION:C/^([0-9]+\.[0-9]+).*/\1/}
-DIST_SUBDIR= gnome2
-
-MAINTAINER= gnome@FreeBSD.org
-COMMENT= The data backends for the Evolution integrated mail/PIM suite
-
-LIB_DEPENDS= soup-2.2.8:${PORTSDIR}/devel/libsoup \
- nss3.1:${PORTSDIR}/security/nss \
- tasn1.2:${PORTSDIR}/security/libtasn1
-
-USE_BZIP2= yes
-USE_GMAKE= yes
-USE_BISON= yes
-USE_GETTEXT= yes
-USE_X_PREFIX= yes
-USE_GNOME= gnomeprefix gnomehack intlhack gnometarget libgnomeui \
- ltverhack
-USE_OPENLDAP= yes
-USE_AUTOTOOLS= libtool:15
-INSTALLS_SHLIB= yes
-CONFIGURE_ARGS= --enable-static \
- --enable-nss=yes \
- --with-openldap=yes \
- --with-nss-includes=${LOCALBASE}/include/nss/nss \
- --with-nss-libs=${LOCALBASE}/lib \
- --with-nspr-includes=${LOCALBASE}/include/nspr \
- --with-nspr-libs=${LOCALBASE}/lib \
- --with-krb5=/usr
-CONFIGURE_ENV= CPPFLAGS="-I${LOCALBASE}/include ${PTHREAD_CFLAGS}" \
- LDFLAGS="-L${LOCALBASE}/lib ${PTHREAD_LIBS}"
-
-PLIST_SUB= VERSION="1.6" EVO_VERSION="1.2"
-
-.include <bsd.port.pre.mk>
-
-.if ( ( ${OSVERSION} < 504101 ) || ( ${OSVERSION} >= 600000 && ${OSVERSION} < 600012 ) )
-EXTRA_PATCHES+= ${FILESDIR}/extra-patch-libedataserver_e-msgport.c
-.endif
-
-.if ${OSVERSION} >= 500000 && !defined(NO_KERBEROS) && \
- exists(/usr/lib/libkrb5.so)
-CONFIGURE_ARGS+= --with-krb5=/usr
-.else
-LIB_DEPENDS+= krb5:${PORTSDIR}/security/heimdal
-.if defined(HEIMDAL_HOME)
-CONFIGURE_ARGS+= --with-krb5=${HEIMDAL_HOME} --with-krb5-includes=${HEIMDAL_HOME}/include
-.else
-CONFIGURE_ARGS+= --with-krb5=${LOCALBASE}
-.endif
-.endif
-
-.include <bsd.port.post.mk>
diff --git a/databases/evolution-data-server/distinfo b/databases/evolution-data-server/distinfo
deleted file mode 100644
index 23bb7a712..000000000
--- a/databases/evolution-data-server/distinfo
+++ /dev/null
@@ -1,3 +0,0 @@
-MD5 (gnome2/evolution-data-server-1.6.1.tar.bz2) = d4def6cad1dc3508b8df55e7e794db49
-SHA256 (gnome2/evolution-data-server-1.6.1.tar.bz2) = 4536bbdba67eb4c51ca387c8d877eb868eb0bc60953b6185557307881f1009f6
-SIZE (gnome2/evolution-data-server-1.6.1.tar.bz2) = 7159551
diff --git a/databases/evolution-data-server/files/extra-patch-libedataserver_e-msgport.c b/databases/evolution-data-server/files/extra-patch-libedataserver_e-msgport.c
deleted file mode 100644
index b39a8fe3c..000000000
--- a/databases/evolution-data-server/files/extra-patch-libedataserver_e-msgport.c
+++ /dev/null
@@ -1,53 +0,0 @@
---- libedataserver/e-msgport.c.orig Sat Dec 10 07:31:28 2005
-+++ libedataserver/e-msgport.c Mon Dec 19 02:19:10 2005
-@@ -1069,9 +1069,18 @@ thread_dispatch(void *din)
- void e_thread_put(EThread *e, EMsg *msg)
- {
- pthread_t id;
-+ pthread_attr_t attr;
- EMsg *dmsg = NULL;
-
- pthread_mutex_lock(&e->mutex);
-+ pthread_attr_init(&attr);
-+ /* Give us a 1 MB thread stacksize on 32-bit architectures, and
-+ * a 2 MB thread stacksize on 64-bit architectures. */
-+ if (sizeof (void *) == 8) {
-+ pthread_attr_setstacksize(&attr, 0x200000);
-+ } else {
-+ pthread_attr_setstacksize(&attr, 0x100000);
-+ }
-
- /* the caller forgot to tell us what to do, well, we can't do anything can we */
- if (e->received == NULL) {
-@@ -1110,13 +1119,14 @@ void e_thread_put(EThread *e, EMsg *msg)
- e_msgport_put(e->server_port, msg);
- if (e->waiting == 0
- && g_list_length(e->id_list) < e->queue_limit
-- && pthread_create(&id, NULL, thread_dispatch, e) == 0) {
-+ && pthread_create(&id, &attr, thread_dispatch, e) == 0) {
- struct _thread_info *info = g_malloc0(sizeof(*info));
- t(printf("created NEW thread %" G_GUINT64_FORMAT "\n", e_util_pthread_id(id)));
- info->id = id;
- info->busy = TRUE;
- e->id_list = g_list_append(e->id_list, info);
- }
-+ pthread_attr_destroy(&attr);
- pthread_mutex_unlock(&e->mutex);
- return;
- }
-@@ -1125,13 +1135,14 @@ void e_thread_put(EThread *e, EMsg *msg)
- if (!e->have_thread) {
- int err;
-
-- if ((err = pthread_create(&e->id, NULL, thread_dispatch, e)) != 0) {
-+ if ((err = pthread_create(&e->id, &attr, thread_dispatch, e)) != 0) {
- g_warning("Could not create dispatcher thread, message queued?: %s", strerror(err));
- } else {
- e->have_thread = TRUE;
- }
- }
-
-+ pthread_attr_destroy(&attr);
- pthread_mutex_unlock(&e->mutex);
-
- if (dmsg) {
diff --git a/databases/evolution-data-server/files/patch-addressbook_backends_ldap_e-book-backend-ldap.c b/databases/evolution-data-server/files/patch-addressbook_backends_ldap_e-book-backend-ldap.c
deleted file mode 100644
index 51f468867..000000000
--- a/databases/evolution-data-server/files/patch-addressbook_backends_ldap_e-book-backend-ldap.c
+++ /dev/null
@@ -1,13 +0,0 @@
---- addressbook/backends/ldap/e-book-backend-ldap.c.orig Fri Sep 9 16:06:37 2005
-+++ addressbook/backends/ldap/e-book-backend-ldap.c Fri Sep 9 16:08:21 2005
-@@ -301,8 +301,8 @@ struct prop_info {
-
- /* misc fields */
- STRING_PROP (E_CONTACT_HOMEPAGE_URL, "labeledURI"),
-- /* map nickname to displayName */
-- STRING_PROP (E_CONTACT_NICKNAME, "displayName"),
-+ /* map nickname to nickname */
-+ STRING_PROP (E_CONTACT_NICKNAME, "nickname"),
- E_STRING_PROP (E_CONTACT_SPOUSE, "spouseName"),
- E_STRING_PROP (E_CONTACT_NOTE, "note"),
- E_COMPLEX_PROP (E_CONTACT_ANNIVERSARY, "anniversary", anniversary_populate, anniversary_ber, anniversary_compare),
diff --git a/databases/evolution-data-server/files/patch-calendar_libical_configure b/databases/evolution-data-server/files/patch-calendar_libical_configure
deleted file mode 100644
index 19028e5d4..000000000
--- a/databases/evolution-data-server/files/patch-calendar_libical_configure
+++ /dev/null
@@ -1,11 +0,0 @@
---- calendar/libical/configure.orig Sun Dec 26 16:54:57 2004
-+++ calendar/libical/configure Sun Dec 26 16:55:23 2004
-@@ -19736,7 +19736,7 @@
-
-
-
--if test "x$USE_MAINTAINER_MODE" == xyes; then
-+if test "x$USE_MAINTAINER_MODE" = xyes; then
- DEV="yes"
- echo "$as_me:$LINENO: result: Setting up for development: -Wall, flex, bison" >&5
- echo "${ECHO_T}Setting up for development: -Wall, flex, bison" >&6
diff --git a/databases/evolution-data-server/files/patch-camel_camel-net-utils.c b/databases/evolution-data-server/files/patch-camel_camel-net-utils.c
deleted file mode 100644
index 17bddca39..000000000
--- a/databases/evolution-data-server/files/patch-camel_camel-net-utils.c
+++ /dev/null
@@ -1,24 +0,0 @@
---- camel/camel-net-utils.c.orig Tue Dec 21 13:38:52 2004
-+++ camel/camel-net-utils.c Tue Dec 21 13:40:34 2004
-@@ -143,12 +143,21 @@
- case EAI_SERVICE:
- return NO_DATA;
- break;
-+#ifdef EAI_ADDRFAMILY
- case EAI_ADDRFAMILY:
- return NO_ADDRESS;
- break;
-+#endif
-+#if defined(EAI_NODATA) && EAI_NODATA != EAI_NONAME
- case EAI_NODATA:
- return NO_DATA;
- break;
-+#endif
-+#ifdef EAI_NOFAMILY
-+ case EAI_NOFAMILY:
-+ return NO_ADDRESS;
-+ break;
-+#endif
- case EAI_MEMORY:
- return ENOMEM;
- break;
diff --git a/databases/evolution-data-server/files/patch-camel_camel-object.c b/databases/evolution-data-server/files/patch-camel_camel-object.c
deleted file mode 100644
index 03e011165..000000000
--- a/databases/evolution-data-server/files/patch-camel_camel-object.c
+++ /dev/null
@@ -1,22 +0,0 @@
---- camel/camel-object.c.orig Sun Feb 19 17:04:42 2006
-+++ camel/camel-object.c Sun Feb 19 17:06:06 2006
-@@ -454,7 +454,7 @@ cobject_state_read(CamelObject *obj, FIL
- }
-
- /* we batch up the properties and set them in one go */
-- if (!(argv = g_try_malloc (sizeof (*argv) + (count - CAMEL_ARGV_MAX) * sizeof (argv->argv[0]))))
-+ if (!(argv = g_try_malloc ((guint32) (sizeof (*argv) + (count - CAMEL_ARGV_MAX) * sizeof (argv->argv[0])))))
- return -1;
-
- argv->argc = 0;
-@@ -534,8 +534,8 @@ cobject_state_write(CamelObject *obj, FI
-
- count = g_slist_length(props);
-
-- arggetv = g_malloc0(sizeof(*arggetv) + (count - CAMEL_ARGV_MAX) * sizeof(arggetv->argv[0]));
-- argv = g_malloc0(sizeof(*argv) + (count - CAMEL_ARGV_MAX) * sizeof(argv->argv[0]));
-+ arggetv = g_malloc0((guint32) (sizeof(*arggetv) + (count - CAMEL_ARGV_MAX) * sizeof(arggetv->argv[0])));
-+ argv = g_malloc0((guint32) (sizeof(*argv) + (count - CAMEL_ARGV_MAX) * sizeof(argv->argv[0])));
- l = props;
- i = 0;
- while (l) {
diff --git a/databases/evolution-data-server/files/patch-configure b/databases/evolution-data-server/files/patch-configure
deleted file mode 100644
index 91d8b09b9..000000000
--- a/databases/evolution-data-server/files/patch-configure
+++ /dev/null
@@ -1,44 +0,0 @@
---- configure.orig Sun Dec 25 01:57:35 2005
-+++ configure Sun Dec 25 01:58:23 2005
-@@ -23542,6 +23542,14 @@
- SOFTOKN3_LIB=''
- LIBEXECDIR_IN_SERVER_FILE='../../../libexec'
- ;;
-+*freebsd*)
-+ os_win32=no
-+ NO_UNDEFINED=''
-+ SOCKET_LIBS=''
-+ DL_LIB=''
-+ SOFTOKN3_LIB='-lsoftokn3'
-+ LIBEXECDIR_IN_SERVER_FILE="$libexecdir"
-+ ;;
- *) os_win32=no
- NO_UNDEFINED=''
- SOCKET_LIBS=''
-@@ -27317,7 +27325,7 @@
- #include <sys/socket.h>
- #include <netinet/in.h>
- #include <netdb.h>
--
-+ #include <stdio.h>
-
- int
- main ()
-@@ -27565,7 +27573,7 @@
- LDFLAGS_save="$LDFLAGS"
-
- mitlibs="-lkrb5 -lk5crypto -lcom_err -lgssapi_krb5"
-- heimlibs="-lkrb5 -lcrypto -lasn1 -lcom_err -lroken -lgssapi"
-+ heimlibs="-lkrb5 -lcrypto -lasn1 -lcom_err -lroken -lgssapi -lcrypt"
- echo "$as_me:$LINENO: checking for Kerberos 5" >&5
- echo $ECHO_N "checking for Kerberos 5... $ECHO_C" >&6
- if test "${ac_cv_lib_kerberos5+set}" = set; then
-@@ -31483,7 +31491,7 @@
- imagesdir="$datadir/pixmaps/evolution-data-server-$BASE_VERSION"
-
-
--serverdir="$libdir/bonobo/servers"
-+serverdir="$prefix/libdata/bonobo/servers"
-
-
- extensiondir='${libdir}'/evolution-data-server-$API_VERSION/extensions
diff --git a/databases/evolution-data-server/files/patch-libedataserverui_e-source-option-menu.c b/databases/evolution-data-server/files/patch-libedataserverui_e-source-option-menu.c
deleted file mode 100644
index 62532da02..000000000
--- a/databases/evolution-data-server/files/patch-libedataserverui_e-source-option-menu.c
+++ /dev/null
@@ -1,11 +0,0 @@
---- libedataserverui/e-source-option-menu.c.orig Tue Nov 23 13:50:14 2004
-+++ libedataserverui/e-source-option-menu.c Tue Nov 23 13:50:33 2004
-@@ -24,6 +24,8 @@
- #include <config.h>
- #endif
-
-+#include <sys/types.h>
-+
- #include <gtk/gtkmenu.h>
- #include <gtk/gtkmenuitem.h>
-
diff --git a/databases/evolution-data-server/files/patch-offical-sleepycat b/databases/evolution-data-server/files/patch-offical-sleepycat
deleted file mode 100644
index 0cd4d7909..000000000
--- a/databases/evolution-data-server/files/patch-offical-sleepycat
+++ /dev/null
@@ -1,480 +0,0 @@
---- libdb/fileops/fop_util.c.orig Thu Nov 20 23:13:30 2003
-+++ libdb/fileops/fop_util.c Fri Mar 18 20:31:10 2005
-@@ -40,7 +40,7 @@
- u_int32_t __lockval; \
- \
- if (LOCKING_ON((ENV))) { \
-- __lockval = 0; \
-+ __lockval = 1; \
- __dbt.data = &__lockval; \
- __dbt.size = sizeof(__lockval); \
- if ((ret = (ENV)->lock_get((ENV), (ID), \
---- libdb/dbinc/mp.h.orig Thu Nov 20 23:13:17 2003
-+++ libdb/dbinc/mp.h Fri Mar 18 20:31:14 2005
-@@ -149,6 +149,13 @@
- * region lock).
- */
- DB_MPOOL_STAT stat; /* Per-cache mpool statistics. */
-+
-+ /*
-+ * We track page puts so that we can decide when allocation is never
-+ * going to succeed. We don't lock the field, all we care about is
-+ * if it changes.
-+ */
-+ u_int32_t put_counter; /* Count of page put calls. */
- };
-
- struct __db_mpool_hash {
---- libdb/mp/mp_fput.c.orig Thu Nov 20 23:13:36 2003
-+++ libdb/mp/mp_fput.c Fri Mar 18 20:31:14 2005
-@@ -19,6 +19,8 @@
- #include "dbinc/db_shash.h"
- #include "dbinc/mp.h"
-
-+static void __memp_reset_lru __P((DB_ENV *, REGINFO *));
-+
- /*
- * __memp_fput --
- * Mpool file put function.
-@@ -198,5 +200,56 @@
-
- MUTEX_UNLOCK(dbenv, &hp->hash_mutex);
-
-+ /*
-+ * On every buffer put we update the buffer generation number and check
-+ * for wraparound.
-+ */
-+ if (++c_mp->lru_count == UINT32_T_MAX)
-+ __memp_reset_lru(dbenv, dbmp->reginfo);
-+
- return (0);
-+}
-+
-+/*
-+ * __memp_reset_lru --
-+ * Reset the cache LRU counter.
-+ */
-+static void
-+__memp_reset_lru(dbenv, memreg)
-+ DB_ENV *dbenv;
-+ REGINFO *memreg;
-+{
-+ BH *bhp;
-+ DB_MPOOL_HASH *hp;
-+ MPOOL *c_mp;
-+ int bucket;
-+
-+ c_mp = memreg->primary;
-+
-+ /*
-+ * Update the counter so all future allocations will start at the
-+ * bottom.
-+ */
-+ c_mp->lru_count -= MPOOL_BASE_DECREMENT;
-+
-+ /* Adjust the priority of every buffer in the system. */
-+ for (hp = R_ADDR(memreg, c_mp->htab),
-+ bucket = 0; bucket < c_mp->htab_buckets; ++hp, ++bucket) {
-+ /*
-+ * Skip empty buckets.
-+ *
-+ * We can check for empty buckets before locking as we
-+ * only care if the pointer is zero or non-zero.
-+ */
-+ if (SH_TAILQ_FIRST(&hp->hash_bucket, __bh) == NULL)
-+ continue;
-+
-+ MUTEX_LOCK(dbenv, &hp->hash_mutex);
-+ for (bhp = SH_TAILQ_FIRST(&hp->hash_bucket, __bh);
-+ bhp != NULL; bhp = SH_TAILQ_NEXT(bhp, hq, __bh))
-+ if (bhp->priority != UINT32_T_MAX &&
-+ bhp->priority > MPOOL_BASE_DECREMENT)
-+ bhp->priority -= MPOOL_BASE_DECREMENT;
-+ MUTEX_UNLOCK(dbenv, &hp->hash_mutex);
-+ }
- }
---- libdb/mp/mp_alloc.c.orig Thu Nov 20 23:13:36 2003
-+++ libdb/mp/mp_alloc.c Fri Mar 18 20:31:14 2005
-@@ -25,7 +25,6 @@
- } HS;
-
- static void __memp_bad_buffer __P((DB_MPOOL_HASH *));
--static void __memp_reset_lru __P((DB_ENV *, REGINFO *, MPOOL *));
-
- /*
- * __memp_alloc --
-@@ -50,8 +49,9 @@
- MPOOL *c_mp;
- MPOOLFILE *bh_mfp;
- size_t freed_space;
-- u_int32_t buckets, buffers, high_priority, max_na, priority;
-- int aggressive, ret;
-+ u_int32_t buckets, buffers, high_priority, priority, put_counter;
-+ u_int32_t total_buckets;
-+ int aggressive, giveup, ret;
- void *p;
-
- dbenv = dbmp->dbenv;
-@@ -59,18 +59,13 @@
- dbht = R_ADDR(memreg, c_mp->htab);
- hp_end = &dbht[c_mp->htab_buckets];
-
-- buckets = buffers = 0;
-- aggressive = 0;
-+ buckets = buffers = put_counter = total_buckets = 0;
-+ aggressive = giveup = 0;
-+ hp_tmp = NULL;
-
- c_mp->stat.st_alloc++;
-
- /*
-- * Get aggressive if we've tried to flush the number of pages as are
-- * in the system without finding space.
-- */
-- max_na = 5 * c_mp->htab_buckets;
--
-- /*
- * If we're allocating a buffer, and the one we're discarding is the
- * same size, we don't want to waste the time to re-integrate it into
- * the shared memory free list. If the DB_MPOOLFILE argument isn't
-@@ -81,19 +76,10 @@
- len = (sizeof(BH) - sizeof(u_int8_t)) + mfp->stat.st_pagesize;
-
- R_LOCK(dbenv, memreg);
--
-- /*
-- * On every buffer allocation we update the buffer generation number
-- * and check for wraparound.
-- */
-- if (++c_mp->lru_count == UINT32_T_MAX)
-- __memp_reset_lru(dbenv, memreg, c_mp);
--
- /*
- * Anything newer than 1/10th of the buffer pool is ignored during
- * allocation (unless allocation starts failing).
- */
-- DB_ASSERT(c_mp->lru_count > c_mp->stat.st_pages / 10);
- high_priority = c_mp->lru_count - c_mp->stat.st_pages / 10;
-
- /*
-@@ -120,10 +106,11 @@
- * We're not holding the region locked here, these statistics
- * can't be trusted.
- */
-- if (buckets != 0) {
-- if (buckets > c_mp->stat.st_alloc_max_buckets)
-- c_mp->stat.st_alloc_max_buckets = buckets;
-- c_mp->stat.st_alloc_buckets += buckets;
-+ total_buckets += buckets;
-+ if (total_buckets != 0) {
-+ if (total_buckets > c_mp->stat.st_alloc_max_buckets)
-+ c_mp->stat.st_alloc_max_buckets = total_buckets;
-+ c_mp->stat.st_alloc_buckets += total_buckets;
- }
- if (buffers != 0) {
- if (buffers > c_mp->stat.st_alloc_max_pages)
-@@ -131,6 +118,12 @@
- c_mp->stat.st_alloc_pages += buffers;
- }
- return (0);
-+ } else if (giveup || c_mp->stat.st_pages == 0) {
-+ R_UNLOCK(dbenv, memreg);
-+
-+ __db_err(dbenv,
-+ "unable to allocate space from the buffer cache");
-+ return (ret);
- }
-
- /*
-@@ -138,26 +131,24 @@
- * we need. Reset our free-space counter.
- */
- freed_space = 0;
-+ total_buckets += buckets;
-+ buckets = 0;
-
- /*
- * Walk the hash buckets and find the next two with potentially useful
- * buffers. Free the buffer with the lowest priority from the buckets'
- * chains.
- */
-- for (hp_tmp = NULL;;) {
-+ for (;;) {
-+ /* All pages have been freed, make one last try */
-+ if (c_mp->stat.st_pages == 0)
-+ goto alloc;
-+
- /* Check for wrap around. */
- hp = &dbht[c_mp->last_checked++];
- if (hp >= hp_end) {
- c_mp->last_checked = 0;
--
-- /*
-- * If we've gone through all of the hash buckets, try
-- * an allocation. If the cache is small, the old page
-- * size is small, and the new page size is large, we
-- * might have freed enough memory (but not 3 times the
-- * memory).
-- */
-- goto alloc;
-+ hp = &dbht[c_mp->last_checked++];
- }
-
- /*
-@@ -172,39 +163,59 @@
- /*
- * The failure mode is when there are too many buffers we can't
- * write or there's not enough memory in the system. We don't
-- * have a metric for deciding if allocation has no possible way
-- * to succeed, so we don't ever fail, we assume memory will be
-- * available if we wait long enough.
-+ * have a way to know that allocation has no way to succeed.
-+ * We fail if there were no pages returned to the cache after
-+ * we've been trying for a relatively long time.
- *
-- * Get aggressive if we've tried to flush 5 times the number of
-- * hash buckets as are in the system -- it's possible we have
-- * been repeatedly trying to flush the same buffers, although
-- * it's unlikely. Aggressive means:
-+ * Get aggressive if we've tried to flush the number of hash
-+ * buckets as are in the system and have not found any more
-+ * space. Aggressive means:
- *
- * a: set a flag to attempt to flush high priority buffers as
- * well as other buffers.
- * b: sync the mpool to force out queue extent pages. While we
- * might not have enough space for what we want and flushing
- * is expensive, why not?
-- * c: sleep for a second -- hopefully someone else will run and
-- * free up some memory. Try to allocate memory too, in case
-- * the other thread returns its memory to the region.
-- * d: look at a buffer in every hash bucket rather than choose
-+ * c: look at a buffer in every hash bucket rather than choose
- * the more preferable of two.
-+ * d: start to think about giving up.
-+ *
-+ * If we get here twice, sleep for a second, hopefully someone
-+ * else will run and free up some memory.
-+ *
-+ * Always try to allocate memory too, in case some other thread
-+ * returns its memory to the region.
- *
- * !!!
- * This test ignores pathological cases like no buffers in the
- * system -- that shouldn't be possible.
- */
-- if ((++buckets % max_na) == 0) {
-- aggressive = 1;
--
-+ if ((++buckets % c_mp->htab_buckets) == 0) {
-+ if (freed_space > 0)
-+ goto alloc;
- R_UNLOCK(dbenv, memreg);
-
-- (void)__memp_sync_int(
-- dbenv, NULL, 0, DB_SYNC_ALLOC, NULL);
--
-- (void)__os_sleep(dbenv, 1, 0);
-+ switch (++aggressive) {
-+ case 1:
-+ break;
-+ case 2:
-+ put_counter = c_mp->put_counter;
-+ /* FALLTHROUGH */
-+ case 3:
-+ case 4:
-+ case 5:
-+ case 6:
-+ (void)__memp_sync_int(
-+ dbenv, NULL, 0, DB_SYNC_ALLOC, NULL);
-+
-+ (void)__os_sleep(dbenv, 1, 0);
-+ break;
-+ default:
-+ aggressive = 1;
-+ if (put_counter == c_mp->put_counter)
-+ giveup = 1;
-+ break;
-+ }
-
- R_LOCK(dbenv, memreg);
- goto alloc;
-@@ -277,7 +288,8 @@
- * thread may have acquired this buffer and incremented the ref
- * count after we wrote it, in which case we can't have it.
- *
-- * If there's a write error, avoid selecting this buffer again
-+ * If there's a write error and we're having problems finding
-+ * something to allocate, avoid selecting this buffer again
- * by making it the bucket's least-desirable buffer.
- */
- if (ret != 0 || bhp->ref != 0) {
-@@ -301,6 +313,8 @@
-
- freed_space += __db_shsizeof(bhp);
- __memp_bhfree(dbmp, hp, bhp, 1);
-+ if (aggressive > 1)
-+ aggressive = 1;
-
- /*
- * Unlock this hash bucket and re-acquire the region lock. If
-@@ -360,54 +374,6 @@
-
- /* Reset the hash bucket's priority. */
- hp->hash_priority = SH_TAILQ_FIRST(&hp->hash_bucket, __bh)->priority;
--}
--
--/*
-- * __memp_reset_lru --
-- * Reset the cache LRU counter.
-- */
--static void
--__memp_reset_lru(dbenv, memreg, c_mp)
-- DB_ENV *dbenv;
-- REGINFO *memreg;
-- MPOOL *c_mp;
--{
-- BH *bhp;
-- DB_MPOOL_HASH *hp;
-- int bucket;
--
-- /*
-- * Update the counter so all future allocations will start at the
-- * bottom.
-- */
-- c_mp->lru_count -= MPOOL_BASE_DECREMENT;
--
-- /* Release the region lock. */
-- R_UNLOCK(dbenv, memreg);
--
-- /* Adjust the priority of every buffer in the system. */
-- for (hp = R_ADDR(memreg, c_mp->htab),
-- bucket = 0; bucket < c_mp->htab_buckets; ++hp, ++bucket) {
-- /*
-- * Skip empty buckets.
-- *
-- * We can check for empty buckets before locking as we
-- * only care if the pointer is zero or non-zero.
-- */
-- if (SH_TAILQ_FIRST(&hp->hash_bucket, __bh) == NULL)
-- continue;
--
-- MUTEX_LOCK(dbenv, &hp->hash_mutex);
-- for (bhp = SH_TAILQ_FIRST(&hp->hash_bucket, __bh);
-- bhp != NULL; bhp = SH_TAILQ_NEXT(bhp, hq, __bh))
-- if (bhp->priority != UINT32_T_MAX &&
-- bhp->priority > MPOOL_BASE_DECREMENT)
-- bhp->priority -= MPOOL_BASE_DECREMENT;
-- MUTEX_UNLOCK(dbenv, &hp->hash_mutex);
-- }
--
-- /* Reacquire the region lock. */
-- R_LOCK(dbenv, memreg);
- }
-
- #ifdef DIAGNOSTIC
---- libdb/dbreg/dbreg_rec.c.orig Thu Nov 20 23:13:19 2003
-+++ libdb/dbreg/dbreg_rec.c Fri Mar 18 20:31:14 2005
-@@ -174,19 +174,20 @@
- * Typically, closes should match an open which means
- * that if this is a close, there should be a valid
- * entry in the dbentry table when we get here,
-- * however there is an exception. If this is an
-+ * however there are exceptions. 1. If this is an
- * OPENFILES pass, then we may have started from
- * a log file other than the first, and the
- * corresponding open appears in an earlier file.
-- * We can ignore that case, but all others are errors.
-+ * 2. If we are undoing an open on an abort or
-+ * recovery, it's possible that we failed after
-+ * the log record, but before we actually entered
-+ * a handle here.
- */
- dbe = &dblp->dbentry[argp->fileid];
- if (dbe->dbp == NULL && !dbe->deleted) {
- /* No valid entry here. */
-- if ((argp->opcode != LOG_CLOSE &&
-- argp->opcode != LOG_RCLOSE) ||
-- (op != DB_TXN_OPENFILES &&
-- op !=DB_TXN_POPENFILES)) {
-+ if (DB_REDO(op) ||
-+ argp->opcode == LOG_CHECKPOINT) {
- __db_err(dbenv,
- "Improper file close at %lu/%lu",
- (u_long)lsnp->file,
---- libdb/env/env_recover.c.orig Thu Nov 20 23:13:20 2003
-+++ libdb/env/env_recover.c Fri Mar 18 20:31:14 2005
-@@ -232,12 +232,9 @@
- * we'll still need to do a vtruncate based on information we haven't
- * yet collected.
- */
-- if (ret == DB_NOTFOUND) {
-+ if (ret == DB_NOTFOUND)
- ret = 0;
-- if (max_lsn == NULL)
-- goto done;
-- }
-- if (ret != 0)
-+ else if (ret != 0)
- goto err;
-
- hi_txn = txnid;
-@@ -331,7 +328,7 @@
-
- /* Find a low txnid. */
- ret = 0;
-- do {
-+ if (hi_txn != 0) do {
- /* txnid is after rectype, which is a u_int32. */
- memcpy(&txnid,
- (u_int8_t *)data.data + sizeof(u_int32_t), sizeof(txnid));
-@@ -344,11 +341,8 @@
- * There are no transactions and we're not recovering to an LSN (see
- * above), so there is nothing to do.
- */
-- if (ret == DB_NOTFOUND) {
-+ if (ret == DB_NOTFOUND)
- ret = 0;
-- if (max_lsn == NULL)
-- goto done;
-- }
-
- /* Reset to the first lsn. */
- if (ret != 0 || (ret = logc->get(logc, &first_lsn, &data, DB_SET)) != 0)
-@@ -367,6 +361,10 @@
- txninfo, &data, &first_lsn, &last_lsn, nfiles, 1)) != 0)
- goto err;
-
-+ /* If there were no transactions, then we can bail out early. */
-+ if (hi_txn == 0 && max_lsn == NULL)
-+ goto done;
-+
- /*
- * Pass #2.
- *
-@@ -483,6 +481,7 @@
- if ((ret = __dbreg_close_files(dbenv)) != 0)
- goto err;
-
-+done:
- if (max_lsn != NULL) {
- region->last_ckp = ((DB_TXNHEAD *)txninfo)->ckplsn;
-
-@@ -538,7 +537,8 @@
- __db_err(dbenv, "Recovery complete at %.24s", ctime(&now));
- __db_err(dbenv, "%s %lx %s [%lu][%lu]",
- "Maximum transaction ID",
-- ((DB_TXNHEAD *)txninfo)->maxid,
-+ txninfo == NULL ? TXN_MINIMUM :
-+ ((DB_TXNHEAD *)txninfo)->maxid,
- "Recovery checkpoint",
- (u_long)region->last_ckp.file,
- (u_long)region->last_ckp.offset);
-@@ -550,7 +550,6 @@
- (u_long)lsn.file, (u_long)lsn.offset, pass);
- }
-
--done:
- err: if (lockid != DB_LOCK_INVALIDID) {
- if ((t_ret = __rep_unlockpages(dbenv, lockid)) != 0 && ret == 0)
- ret = t_ret;
diff --git a/databases/evolution-data-server/pkg-descr b/databases/evolution-data-server/pkg-descr
deleted file mode 100644
index 076bb0ef7..000000000
--- a/databases/evolution-data-server/pkg-descr
+++ /dev/null
@@ -1,3 +0,0 @@
-Evolution-data-server provides the various backend components for the
-Evolution integrated mail/PIM suite, including the Berkeley database
-backend and the libical calendar components.
diff --git a/databases/evolution-data-server/pkg-plist b/databases/evolution-data-server/pkg-plist
deleted file mode 100644
index e3b1781b5..000000000
--- a/databases/evolution-data-server/pkg-plist
+++ /dev/null
@@ -1,1017 +0,0 @@
-include/evolution-data-server-%%VERSION%%/camel/broken-date-parser.h
-include/evolution-data-server-%%VERSION%%/camel/camel-address.h
-include/evolution-data-server-%%VERSION%%/camel/camel-arg.h
-include/evolution-data-server-%%VERSION%%/camel/camel-block-file.h
-include/evolution-data-server-%%VERSION%%/camel/camel-certdb.h
-include/evolution-data-server-%%VERSION%%/camel/camel-charset-map.h
-include/evolution-data-server-%%VERSION%%/camel/camel-cipher-context.h
-include/evolution-data-server-%%VERSION%%/camel/camel-data-cache.h
-include/evolution-data-server-%%VERSION%%/camel/camel-data-wrapper.h
-include/evolution-data-server-%%VERSION%%/camel/camel-debug.h
-include/evolution-data-server-%%VERSION%%/camel/camel-digest-folder.h
-include/evolution-data-server-%%VERSION%%/camel/camel-digest-store.h
-include/evolution-data-server-%%VERSION%%/camel/camel-digest-summary.h
-include/evolution-data-server-%%VERSION%%/camel/camel-disco-diary.h
-include/evolution-data-server-%%VERSION%%/camel/camel-disco-folder.h
-include/evolution-data-server-%%VERSION%%/camel/camel-disco-store.h
-include/evolution-data-server-%%VERSION%%/camel/camel-exception-list.def
-include/evolution-data-server-%%VERSION%%/camel/camel-exception.h
-include/evolution-data-server-%%VERSION%%/camel/camel-file-utils.h
-include/evolution-data-server-%%VERSION%%/camel/camel-filter-driver.h
-include/evolution-data-server-%%VERSION%%/camel/camel-filter-search.h
-include/evolution-data-server-%%VERSION%%/camel/camel-folder-search.h
-include/evolution-data-server-%%VERSION%%/camel/camel-folder-summary.h
-include/evolution-data-server-%%VERSION%%/camel/camel-folder-thread.h
-include/evolution-data-server-%%VERSION%%/camel/camel-folder.h
-include/evolution-data-server-%%VERSION%%/camel/camel-gpg-context.h
-include/evolution-data-server-%%VERSION%%/camel/camel-http-stream.h
-include/evolution-data-server-%%VERSION%%/camel/camel-i18n.h
-include/evolution-data-server-%%VERSION%%/camel/camel-index.h
-include/evolution-data-server-%%VERSION%%/camel/camel-internet-address.h
-include/evolution-data-server-%%VERSION%%/camel/camel-junk-plugin.h
-include/evolution-data-server-%%VERSION%%/camel/camel-list-utils.h
-include/evolution-data-server-%%VERSION%%/camel/camel-lock-client.h
-include/evolution-data-server-%%VERSION%%/camel/camel-lock.h
-include/evolution-data-server-%%VERSION%%/camel/camel-medium.h
-include/evolution-data-server-%%VERSION%%/camel/camel-mime-filter-basic.h
-include/evolution-data-server-%%VERSION%%/camel/camel-mime-filter-bestenc.h
-include/evolution-data-server-%%VERSION%%/camel/camel-mime-filter-canon.h
-include/evolution-data-server-%%VERSION%%/camel/camel-mime-filter-charset.h
-include/evolution-data-server-%%VERSION%%/camel/camel-mime-filter-crlf.h
-include/evolution-data-server-%%VERSION%%/camel/camel-mime-filter-enriched.h
-include/evolution-data-server-%%VERSION%%/camel/camel-mime-filter-from.h
-include/evolution-data-server-%%VERSION%%/camel/camel-mime-filter-gzip.h
-include/evolution-data-server-%%VERSION%%/camel/camel-mime-filter-html.h
-include/evolution-data-server-%%VERSION%%/camel/camel-mime-filter-index.h
-include/evolution-data-server-%%VERSION%%/camel/camel-mime-filter-linewrap.h
-include/evolution-data-server-%%VERSION%%/camel/camel-mime-filter-pgp.h
-include/evolution-data-server-%%VERSION%%/camel/camel-mime-filter-save.h
-include/evolution-data-server-%%VERSION%%/camel/camel-mime-filter-tohtml.h
-include/evolution-data-server-%%VERSION%%/camel/camel-mime-filter-windows.h
-include/evolution-data-server-%%VERSION%%/camel/camel-mime-filter-yenc.h
-include/evolution-data-server-%%VERSION%%/camel/camel-mime-filter.h
-include/evolution-data-server-%%VERSION%%/camel/camel-mime-message.h
-include/evolution-data-server-%%VERSION%%/camel/camel-mime-parser.h
-include/evolution-data-server-%%VERSION%%/camel/camel-mime-part-utils.h
-include/evolution-data-server-%%VERSION%%/camel/camel-mime-part.h
-include/evolution-data-server-%%VERSION%%/camel/camel-mime-utils.h
-include/evolution-data-server-%%VERSION%%/camel/camel-movemail.h
-include/evolution-data-server-%%VERSION%%/camel/camel-multipart-encrypted.h
-include/evolution-data-server-%%VERSION%%/camel/camel-multipart-signed.h
-include/evolution-data-server-%%VERSION%%/camel/camel-multipart.h
-include/evolution-data-server-%%VERSION%%/camel/camel-net-utils.h
-include/evolution-data-server-%%VERSION%%/camel/camel-nntp-address.h
-include/evolution-data-server-%%VERSION%%/camel/camel-object.h
-include/evolution-data-server-%%VERSION%%/camel/camel-offline-folder.h
-include/evolution-data-server-%%VERSION%%/camel/camel-offline-journal.h
-include/evolution-data-server-%%VERSION%%/camel/camel-offline-store.h
-include/evolution-data-server-%%VERSION%%/camel/camel-operation.h
-include/evolution-data-server-%%VERSION%%/camel/camel-partition-table.h
-include/evolution-data-server-%%VERSION%%/camel/camel-provider.h
-include/evolution-data-server-%%VERSION%%/camel/camel-sasl-anonymous.h
-include/evolution-data-server-%%VERSION%%/camel/camel-sasl-cram-md5.h
-include/evolution-data-server-%%VERSION%%/camel/camel-sasl-digest-md5.h
-include/evolution-data-server-%%VERSION%%/camel/camel-sasl-gssapi.h
-include/evolution-data-server-%%VERSION%%/camel/camel-sasl-kerberos4.h
-include/evolution-data-server-%%VERSION%%/camel/camel-sasl-login.h
-include/evolution-data-server-%%VERSION%%/camel/camel-sasl-ntlm.h
-include/evolution-data-server-%%VERSION%%/camel/camel-sasl-plain.h
-include/evolution-data-server-%%VERSION%%/camel/camel-sasl-popb4smtp.h
-include/evolution-data-server-%%VERSION%%/camel/camel-sasl.h
-include/evolution-data-server-%%VERSION%%/camel/camel-search-private.h
-include/evolution-data-server-%%VERSION%%/camel/camel-seekable-stream.h
-include/evolution-data-server-%%VERSION%%/camel/camel-seekable-substream.h
-include/evolution-data-server-%%VERSION%%/camel/camel-service.h
-include/evolution-data-server-%%VERSION%%/camel/camel-session.h
-include/evolution-data-server-%%VERSION%%/camel/camel-smime-context.h
-include/evolution-data-server-%%VERSION%%/camel/camel-store-summary.h
-include/evolution-data-server-%%VERSION%%/camel/camel-store.h
-include/evolution-data-server-%%VERSION%%/camel/camel-stream-buffer.h
-include/evolution-data-server-%%VERSION%%/camel/camel-stream-filter.h
-include/evolution-data-server-%%VERSION%%/camel/camel-stream-fs.h
-include/evolution-data-server-%%VERSION%%/camel/camel-stream-mem.h
-include/evolution-data-server-%%VERSION%%/camel/camel-stream-null.h
-include/evolution-data-server-%%VERSION%%/camel/camel-stream-process.h
-include/evolution-data-server-%%VERSION%%/camel/camel-stream.h
-include/evolution-data-server-%%VERSION%%/camel/camel-string-utils.h
-include/evolution-data-server-%%VERSION%%/camel/camel-tcp-stream-raw.h
-include/evolution-data-server-%%VERSION%%/camel/camel-tcp-stream-ssl.h
-include/evolution-data-server-%%VERSION%%/camel/camel-tcp-stream.h
-include/evolution-data-server-%%VERSION%%/camel/camel-text-index.h
-include/evolution-data-server-%%VERSION%%/camel/camel-transport.h
-include/evolution-data-server-%%VERSION%%/camel/camel-types.h
-include/evolution-data-server-%%VERSION%%/camel/camel-uid-cache.h
-include/evolution-data-server-%%VERSION%%/camel/camel-url-scanner.h
-include/evolution-data-server-%%VERSION%%/camel/camel-url.h
-include/evolution-data-server-%%VERSION%%/camel/camel-utf8.h
-include/evolution-data-server-%%VERSION%%/camel/camel-vee-folder.h
-include/evolution-data-server-%%VERSION%%/camel/camel-vee-store.h
-include/evolution-data-server-%%VERSION%%/camel/camel-vee-summary.h
-include/evolution-data-server-%%VERSION%%/camel/camel-vtrash-folder.h
-include/evolution-data-server-%%VERSION%%/camel/camel.h
-include/evolution-data-server-%%VERSION%%/exchange/e-folder-exchange.h
-include/evolution-data-server-%%VERSION%%/exchange/e-folder.h
-include/evolution-data-server-%%VERSION%%/exchange/e-shell-marshal.h
-include/evolution-data-server-%%VERSION%%/exchange/e-storage.h
-include/evolution-data-server-%%VERSION%%/exchange/e2k-autoconfig.h
-include/evolution-data-server-%%VERSION%%/exchange/e2k-context.h
-include/evolution-data-server-%%VERSION%%/exchange/e2k-freebusy.h
-include/evolution-data-server-%%VERSION%%/exchange/e2k-global-catalog-ldap.h
-include/evolution-data-server-%%VERSION%%/exchange/e2k-global-catalog.h
-include/evolution-data-server-%%VERSION%%/exchange/e2k-http-utils.h
-include/evolution-data-server-%%VERSION%%/exchange/e2k-marshal.h
-include/evolution-data-server-%%VERSION%%/exchange/e2k-operation.h
-include/evolution-data-server-%%VERSION%%/exchange/e2k-properties.h
-include/evolution-data-server-%%VERSION%%/exchange/e2k-propnames.h
-include/evolution-data-server-%%VERSION%%/exchange/e2k-restriction.h
-include/evolution-data-server-%%VERSION%%/exchange/e2k-result.h
-include/evolution-data-server-%%VERSION%%/exchange/e2k-security-descriptor.h
-include/evolution-data-server-%%VERSION%%/exchange/e2k-sid.h
-include/evolution-data-server-%%VERSION%%/exchange/e2k-types.h
-include/evolution-data-server-%%VERSION%%/exchange/e2k-uri.h
-include/evolution-data-server-%%VERSION%%/exchange/e2k-utils.h
-include/evolution-data-server-%%VERSION%%/exchange/e2k-validate.h
-include/evolution-data-server-%%VERSION%%/exchange/e2k-xml-utils.h
-include/evolution-data-server-%%VERSION%%/exchange/exchange-account.h
-include/evolution-data-server-%%VERSION%%/exchange/exchange-constants.h
-include/evolution-data-server-%%VERSION%%/exchange/exchange-folder-size.h
-include/evolution-data-server-%%VERSION%%/exchange/exchange-hierarchy-foreign.h
-include/evolution-data-server-%%VERSION%%/exchange/exchange-hierarchy-somedav.h
-include/evolution-data-server-%%VERSION%%/exchange/exchange-hierarchy-webdav.h
-include/evolution-data-server-%%VERSION%%/exchange/exchange-hierarchy.h
-include/evolution-data-server-%%VERSION%%/exchange/exchange-oof.h
-include/evolution-data-server-%%VERSION%%/exchange/exchange-types.h
-include/evolution-data-server-%%VERSION%%/exchange/mapi.h
-include/evolution-data-server-%%VERSION%%/groupwise/e-gw-connection.h
-include/evolution-data-server-%%VERSION%%/groupwise/e-gw-container.h
-include/evolution-data-server-%%VERSION%%/groupwise/e-gw-filter.h
-include/evolution-data-server-%%VERSION%%/groupwise/e-gw-item.h
-include/evolution-data-server-%%VERSION%%/groupwise/e-gw-message.h
-include/evolution-data-server-%%VERSION%%/groupwise/e-gw-proxy.h
-include/evolution-data-server-%%VERSION%%/groupwise/e-gw-recur-utils.h
-include/evolution-data-server-%%VERSION%%/groupwise/e-gw-sendoptions.h
-include/evolution-data-server-%%VERSION%%/libebook/Evolution-DataServer-Addressbook.h
-include/evolution-data-server-%%VERSION%%/libebook/e-address-western.h
-include/evolution-data-server-%%VERSION%%/libebook/e-book-listener.h
-include/evolution-data-server-%%VERSION%%/libebook/e-book-query.h
-include/evolution-data-server-%%VERSION%%/libebook/e-book-types.h
-include/evolution-data-server-%%VERSION%%/libebook/e-book-view-listener.h
-include/evolution-data-server-%%VERSION%%/libebook/e-book-view.h
-include/evolution-data-server-%%VERSION%%/libebook/e-book.h
-include/evolution-data-server-%%VERSION%%/libebook/e-contact.h
-include/evolution-data-server-%%VERSION%%/libebook/e-destination.h
-include/evolution-data-server-%%VERSION%%/libebook/e-name-western-tables.h
-include/evolution-data-server-%%VERSION%%/libebook/e-name-western.h
-include/evolution-data-server-%%VERSION%%/libebook/e-vcard.h
-include/evolution-data-server-%%VERSION%%/libecal/Evolution-DataServer-Calendar.h
-include/evolution-data-server-%%VERSION%%/libecal/e-cal-component.h
-include/evolution-data-server-%%VERSION%%/libecal/e-cal-listener.h
-include/evolution-data-server-%%VERSION%%/libecal/e-cal-recur.h
-include/evolution-data-server-%%VERSION%%/libecal/e-cal-time-util.h
-include/evolution-data-server-%%VERSION%%/libecal/e-cal-types.h
-include/evolution-data-server-%%VERSION%%/libecal/e-cal-util.h
-include/evolution-data-server-%%VERSION%%/libecal/e-cal-view-listener.h
-include/evolution-data-server-%%VERSION%%/libecal/e-cal-view.h
-include/evolution-data-server-%%VERSION%%/libecal/e-cal.h
-include/evolution-data-server-%%VERSION%%/libedata-book/Evolution-DataServer-Addressbook.h
-include/evolution-data-server-%%VERSION%%/libedata-book/e-book-backend-cache.h
-include/evolution-data-server-%%VERSION%%/libedata-book/e-book-backend-factory.h
-include/evolution-data-server-%%VERSION%%/libedata-book/e-book-backend-sexp.h
-include/evolution-data-server-%%VERSION%%/libedata-book/e-book-backend-summary.h
-include/evolution-data-server-%%VERSION%%/libedata-book/e-book-backend-sync.h
-include/evolution-data-server-%%VERSION%%/libedata-book/e-book-backend.h
-include/evolution-data-server-%%VERSION%%/libedata-book/e-data-book-factory.h
-include/evolution-data-server-%%VERSION%%/libedata-book/e-data-book-types.h
-include/evolution-data-server-%%VERSION%%/libedata-book/e-data-book-view.h
-include/evolution-data-server-%%VERSION%%/libedata-book/e-data-book.h
-include/evolution-data-server-%%VERSION%%/libedata-cal/Evolution-DataServer-Calendar.h
-include/evolution-data-server-%%VERSION%%/libedata-cal/e-cal-backend-cache.h
-include/evolution-data-server-%%VERSION%%/libedata-cal/e-cal-backend-factory.h
-include/evolution-data-server-%%VERSION%%/libedata-cal/e-cal-backend-sexp.h
-include/evolution-data-server-%%VERSION%%/libedata-cal/e-cal-backend-sync.h
-include/evolution-data-server-%%VERSION%%/libedata-cal/e-cal-backend-util.h
-include/evolution-data-server-%%VERSION%%/libedata-cal/e-cal-backend.h
-include/evolution-data-server-%%VERSION%%/libedata-cal/e-data-cal-common.h
-include/evolution-data-server-%%VERSION%%/libedata-cal/e-data-cal-factory.h
-include/evolution-data-server-%%VERSION%%/libedata-cal/e-data-cal-view.h
-include/evolution-data-server-%%VERSION%%/libedata-cal/e-data-cal.h
-include/evolution-data-server-%%VERSION%%/libedataserver/e-account-list.h
-include/evolution-data-server-%%VERSION%%/libedataserver/e-account.h
-include/evolution-data-server-%%VERSION%%/libedataserver/e-categories.h
-include/evolution-data-server-%%VERSION%%/libedataserver/e-component-listener.h
-include/evolution-data-server-%%VERSION%%/libedataserver/e-data-server-module.h
-include/evolution-data-server-%%VERSION%%/libedataserver/e-data-server-util.h
-include/evolution-data-server-%%VERSION%%/libedataserver/e-db3-utils.h
-include/evolution-data-server-%%VERSION%%/libedataserver/e-dbhash.h
-include/evolution-data-server-%%VERSION%%/libedataserver/e-file-cache.h
-include/evolution-data-server-%%VERSION%%/libedataserver/e-iconv.h
-include/evolution-data-server-%%VERSION%%/libedataserver/e-iterator.h
-include/evolution-data-server-%%VERSION%%/libedataserver/e-list-iterator.h
-include/evolution-data-server-%%VERSION%%/libedataserver/e-list.h
-include/evolution-data-server-%%VERSION%%/libedataserver/e-memory.h
-include/evolution-data-server-%%VERSION%%/libedataserver/e-msgport.h
-include/evolution-data-server-%%VERSION%%/libedataserver/e-sexp.h
-include/evolution-data-server-%%VERSION%%/libedataserver/e-source-group.h
-include/evolution-data-server-%%VERSION%%/libedataserver/e-source-list.h
-include/evolution-data-server-%%VERSION%%/libedataserver/e-source.h
-include/evolution-data-server-%%VERSION%%/libedataserver/e-time-utils.h
-include/evolution-data-server-%%VERSION%%/libedataserver/e-trie.h
-include/evolution-data-server-%%VERSION%%/libedataserver/e-uid.h
-include/evolution-data-server-%%VERSION%%/libedataserver/e-url.h
-include/evolution-data-server-%%VERSION%%/libedataserver/e-xml-hash-utils.h
-include/evolution-data-server-%%VERSION%%/libedataserver/e-xml-utils.h
-include/evolution-data-server-%%VERSION%%/libedataserver/md5-utils.h
-include/evolution-data-server-%%VERSION%%/libedataserverui/e-book-auth-util.h
-include/evolution-data-server-%%VERSION%%/libedataserverui/e-categories-dialog.h
-include/evolution-data-server-%%VERSION%%/libedataserverui/e-contact-store.h
-include/evolution-data-server-%%VERSION%%/libedataserverui/e-destination-store.h
-include/evolution-data-server-%%VERSION%%/libedataserverui/e-name-selector-dialog.h
-include/evolution-data-server-%%VERSION%%/libedataserverui/e-name-selector-entry.h
-include/evolution-data-server-%%VERSION%%/libedataserverui/e-name-selector-list.h
-include/evolution-data-server-%%VERSION%%/libedataserverui/e-name-selector-model.h
-include/evolution-data-server-%%VERSION%%/libedataserverui/e-name-selector.h
-include/evolution-data-server-%%VERSION%%/libedataserverui/e-passwords.h
-include/evolution-data-server-%%VERSION%%/libedataserverui/e-source-option-menu.h
-include/evolution-data-server-%%VERSION%%/libedataserverui/e-source-selector-dialog.h
-include/evolution-data-server-%%VERSION%%/libedataserverui/e-source-selector.h
-include/evolution-data-server-%%VERSION%%/libedataserverui/e-tree-model-generator.h
-include/evolution-data-server-%%VERSION%%/libical/ical.h
-include/evolution-data-server-%%VERSION%%/libical/icalarray.h
-include/evolution-data-server-%%VERSION%%/libical/icalattach.h
-include/evolution-data-server-%%VERSION%%/libical/icalcalendar.h
-include/evolution-data-server-%%VERSION%%/libical/icalclassify.h
-include/evolution-data-server-%%VERSION%%/libical/icalcluster.h
-include/evolution-data-server-%%VERSION%%/libical/icalcomponent.h
-include/evolution-data-server-%%VERSION%%/libical/icalderivedparameter.h
-include/evolution-data-server-%%VERSION%%/libical/icalderivedproperty.h
-include/evolution-data-server-%%VERSION%%/libical/icalderivedvalue.h
-include/evolution-data-server-%%VERSION%%/libical/icaldirset.h
-include/evolution-data-server-%%VERSION%%/libical/icaldirsetimpl.h
-include/evolution-data-server-%%VERSION%%/libical/icalduration.h
-include/evolution-data-server-%%VERSION%%/libical/icalenums.h
-include/evolution-data-server-%%VERSION%%/libical/icalerror.h
-include/evolution-data-server-%%VERSION%%/libical/icalfileset.h
-include/evolution-data-server-%%VERSION%%/libical/icalfilesetimpl.h
-include/evolution-data-server-%%VERSION%%/libical/icalgauge.h
-include/evolution-data-server-%%VERSION%%/libical/icalgaugeimpl.h
-include/evolution-data-server-%%VERSION%%/libical/icallangbind.h
-include/evolution-data-server-%%VERSION%%/libical/icalmemory.h
-include/evolution-data-server-%%VERSION%%/libical/icalmessage.h
-include/evolution-data-server-%%VERSION%%/libical/icalmime.h
-include/evolution-data-server-%%VERSION%%/libical/icalparameter.h
-include/evolution-data-server-%%VERSION%%/libical/icalparser.h
-include/evolution-data-server-%%VERSION%%/libical/icalperiod.h
-include/evolution-data-server-%%VERSION%%/libical/icalproperty.h
-include/evolution-data-server-%%VERSION%%/libical/icalrecur.h
-include/evolution-data-server-%%VERSION%%/libical/icalrestriction.h
-include/evolution-data-server-%%VERSION%%/libical/icalset.h
-include/evolution-data-server-%%VERSION%%/libical/icalspanlist.h
-include/evolution-data-server-%%VERSION%%/libical/icalss.h
-include/evolution-data-server-%%VERSION%%/libical/icalssyacc.h
-include/evolution-data-server-%%VERSION%%/libical/icaltime.h
-include/evolution-data-server-%%VERSION%%/libical/icaltimezone.h
-include/evolution-data-server-%%VERSION%%/libical/icaltypes.h
-include/evolution-data-server-%%VERSION%%/libical/icalvalue.h
-include/evolution-data-server-%%VERSION%%/libical/icalvcal.h
-include/evolution-data-server-%%VERSION%%/libical/port.h
-include/evolution-data-server-%%VERSION%%/libical/pvl.h
-include/evolution-data-server-%%VERSION%%/libical/sspm.h
-include/evolution-data-server-%%VERSION%%/libical/vcaltmp.h
-include/evolution-data-server-%%VERSION%%/libical/vcc.h
-include/evolution-data-server-%%VERSION%%/libical/vobject.h
-lib/evolution-data-server-%%EVO_VERSION%%/camel-providers/libcamelgroupwise.a
-lib/evolution-data-server-%%EVO_VERSION%%/camel-providers/libcamelgroupwise.la
-lib/evolution-data-server-%%EVO_VERSION%%/camel-providers/libcamelgroupwise.so
-lib/evolution-data-server-%%EVO_VERSION%%/camel-providers/libcamelgroupwise.urls
-lib/evolution-data-server-%%EVO_VERSION%%/camel-providers/libcamelhula.a
-lib/evolution-data-server-%%EVO_VERSION%%/camel-providers/libcamelhula.la
-lib/evolution-data-server-%%EVO_VERSION%%/camel-providers/libcamelhula.so
-lib/evolution-data-server-%%EVO_VERSION%%/camel-providers/libcamelhula.urls
-lib/evolution-data-server-%%EVO_VERSION%%/camel-providers/libcamelimap.a
-lib/evolution-data-server-%%EVO_VERSION%%/camel-providers/libcamelimap.la
-lib/evolution-data-server-%%EVO_VERSION%%/camel-providers/libcamelimap.so
-lib/evolution-data-server-%%EVO_VERSION%%/camel-providers/libcamelimap.urls
-lib/evolution-data-server-%%EVO_VERSION%%/camel-providers/libcamelimap4.a
-lib/evolution-data-server-%%EVO_VERSION%%/camel-providers/libcamelimap4.la
-lib/evolution-data-server-%%EVO_VERSION%%/camel-providers/libcamelimap4.so
-lib/evolution-data-server-%%EVO_VERSION%%/camel-providers/libcamelimap4.urls
-lib/evolution-data-server-%%EVO_VERSION%%/camel-providers/libcamellocal.a
-lib/evolution-data-server-%%EVO_VERSION%%/camel-providers/libcamellocal.la
-lib/evolution-data-server-%%EVO_VERSION%%/camel-providers/libcamellocal.so
-lib/evolution-data-server-%%EVO_VERSION%%/camel-providers/libcamellocal.urls
-lib/evolution-data-server-%%EVO_VERSION%%/camel-providers/libcamelnntp.a
-lib/evolution-data-server-%%EVO_VERSION%%/camel-providers/libcamelnntp.la
-lib/evolution-data-server-%%EVO_VERSION%%/camel-providers/libcamelnntp.so
-lib/evolution-data-server-%%EVO_VERSION%%/camel-providers/libcamelnntp.urls
-lib/evolution-data-server-%%EVO_VERSION%%/camel-providers/libcamelpop3.a
-lib/evolution-data-server-%%EVO_VERSION%%/camel-providers/libcamelpop3.la
-lib/evolution-data-server-%%EVO_VERSION%%/camel-providers/libcamelpop3.so
-lib/evolution-data-server-%%EVO_VERSION%%/camel-providers/libcamelpop3.urls
-lib/evolution-data-server-%%EVO_VERSION%%/camel-providers/libcamelsendmail.a
-lib/evolution-data-server-%%EVO_VERSION%%/camel-providers/libcamelsendmail.la
-lib/evolution-data-server-%%EVO_VERSION%%/camel-providers/libcamelsendmail.so
-lib/evolution-data-server-%%EVO_VERSION%%/camel-providers/libcamelsendmail.urls
-lib/evolution-data-server-%%EVO_VERSION%%/camel-providers/libcamelsmtp.a
-lib/evolution-data-server-%%EVO_VERSION%%/camel-providers/libcamelsmtp.la
-lib/evolution-data-server-%%EVO_VERSION%%/camel-providers/libcamelsmtp.so
-lib/evolution-data-server-%%EVO_VERSION%%/camel-providers/libcamelsmtp.urls
-lib/evolution-data-server-%%EVO_VERSION%%/extensions/libebookbackendfile.a
-lib/evolution-data-server-%%EVO_VERSION%%/extensions/libebookbackendfile.la
-lib/evolution-data-server-%%EVO_VERSION%%/extensions/libebookbackendfile.so
-lib/evolution-data-server-%%EVO_VERSION%%/extensions/libebookbackendgroupwise.a
-lib/evolution-data-server-%%EVO_VERSION%%/extensions/libebookbackendgroupwise.la
-lib/evolution-data-server-%%EVO_VERSION%%/extensions/libebookbackendgroupwise.so
-lib/evolution-data-server-%%EVO_VERSION%%/extensions/libebookbackendldap.a
-lib/evolution-data-server-%%EVO_VERSION%%/extensions/libebookbackendldap.la
-lib/evolution-data-server-%%EVO_VERSION%%/extensions/libebookbackendldap.so
-lib/evolution-data-server-%%EVO_VERSION%%/extensions/libebookbackendvcf.a
-lib/evolution-data-server-%%EVO_VERSION%%/extensions/libebookbackendvcf.la
-lib/evolution-data-server-%%EVO_VERSION%%/extensions/libebookbackendvcf.so
-lib/evolution-data-server-%%EVO_VERSION%%/extensions/libecalbackendcaldav.a
-lib/evolution-data-server-%%EVO_VERSION%%/extensions/libecalbackendcaldav.la
-lib/evolution-data-server-%%EVO_VERSION%%/extensions/libecalbackendcaldav.so
-lib/evolution-data-server-%%EVO_VERSION%%/extensions/libecalbackendcontacts.a
-lib/evolution-data-server-%%EVO_VERSION%%/extensions/libecalbackendcontacts.la
-lib/evolution-data-server-%%EVO_VERSION%%/extensions/libecalbackendcontacts.so
-lib/evolution-data-server-%%EVO_VERSION%%/extensions/libecalbackendfile.a
-lib/evolution-data-server-%%EVO_VERSION%%/extensions/libecalbackendfile.la
-lib/evolution-data-server-%%EVO_VERSION%%/extensions/libecalbackendfile.so
-lib/evolution-data-server-%%EVO_VERSION%%/extensions/libecalbackendgroupwise.a
-lib/evolution-data-server-%%EVO_VERSION%%/extensions/libecalbackendgroupwise.la
-lib/evolution-data-server-%%EVO_VERSION%%/extensions/libecalbackendgroupwise.so
-lib/evolution-data-server-%%EVO_VERSION%%/extensions/libecalbackendhttp.a
-lib/evolution-data-server-%%EVO_VERSION%%/extensions/libecalbackendhttp.la
-lib/evolution-data-server-%%EVO_VERSION%%/extensions/libecalbackendhttp.so
-lib/evolution-data-server-%%EVO_VERSION%%/extensions/libecalbackendweather.a
-lib/evolution-data-server-%%EVO_VERSION%%/extensions/libecalbackendweather.la
-lib/evolution-data-server-%%EVO_VERSION%%/extensions/libecalbackendweather.so
-lib/libcamel-%%EVO_VERSION%%.a
-lib/libcamel-%%EVO_VERSION%%.la
-lib/libcamel-%%EVO_VERSION%%.so
-lib/libcamel-%%EVO_VERSION%%.so.0
-lib/libcamel-provider-%%EVO_VERSION%%.a
-lib/libcamel-provider-%%EVO_VERSION%%.la
-lib/libcamel-provider-%%EVO_VERSION%%.so
-lib/libcamel-provider-%%EVO_VERSION%%.so.8
-lib/libebook-%%EVO_VERSION%%.a
-lib/libebook-%%EVO_VERSION%%.la
-lib/libebook-%%EVO_VERSION%%.so
-lib/libebook-%%EVO_VERSION%%.so.5
-lib/libecal-%%EVO_VERSION%%.a
-lib/libecal-%%EVO_VERSION%%.la
-lib/libecal-%%EVO_VERSION%%.so
-lib/libecal-%%EVO_VERSION%%.so.3
-lib/libedata-book-%%EVO_VERSION%%.a
-lib/libedata-book-%%EVO_VERSION%%.la
-lib/libedata-book-%%EVO_VERSION%%.so
-lib/libedata-book-%%EVO_VERSION%%.so.2
-lib/libedata-cal-%%EVO_VERSION%%.a
-lib/libedata-cal-%%EVO_VERSION%%.la
-lib/libedata-cal-%%EVO_VERSION%%.so
-lib/libedata-cal-%%EVO_VERSION%%.so.1
-lib/libedataserver-%%EVO_VERSION%%.a
-lib/libedataserver-%%EVO_VERSION%%.la
-lib/libedataserver-%%EVO_VERSION%%.so
-lib/libedataserver-%%EVO_VERSION%%.so.7
-lib/libedataserverui-%%EVO_VERSION%%.a
-lib/libedataserverui-%%EVO_VERSION%%.la
-lib/libedataserverui-%%EVO_VERSION%%.so
-lib/libedataserverui-%%EVO_VERSION%%.so.6
-lib/libegroupwise-%%EVO_VERSION%%.a
-lib/libegroupwise-%%EVO_VERSION%%.la
-lib/libegroupwise-%%EVO_VERSION%%.so
-lib/libegroupwise-%%EVO_VERSION%%.so.9
-lib/libexchange-storage-%%EVO_VERSION%%.a
-lib/libexchange-storage-%%EVO_VERSION%%.la
-lib/libexchange-storage-%%EVO_VERSION%%.so
-lib/libexchange-storage-%%EVO_VERSION%%.so.1
-libdata/bonobo/servers/GNOME_Evolution_DataServer_%%EVO_VERSION%%.server
-libdata/pkgconfig/camel-%%EVO_VERSION%%.pc
-libdata/pkgconfig/camel-provider-%%EVO_VERSION%%.pc
-libdata/pkgconfig/evolution-data-server-%%EVO_VERSION%%.pc
-libdata/pkgconfig/libebook-%%EVO_VERSION%%.pc
-libdata/pkgconfig/libecal-%%EVO_VERSION%%.pc
-libdata/pkgconfig/libedata-book-%%EVO_VERSION%%.pc
-libdata/pkgconfig/libedata-cal-%%EVO_VERSION%%.pc
-libdata/pkgconfig/libedataserver-%%EVO_VERSION%%.pc
-libdata/pkgconfig/libedataserverui-%%EVO_VERSION%%.pc
-libdata/pkgconfig/libegroupwise-%%EVO_VERSION%%.pc
-libdata/pkgconfig/libexchange-storage-%%EVO_VERSION%%.pc
-libexec/camel-index-control-%%EVO_VERSION%%
-libexec/camel-lock-helper-%%EVO_VERSION%%
-libexec/evolution-data-server-%%VERSION%%
-share/doc/libebook/EBook.html
-share/doc/libebook/EBookListener.html
-share/doc/libebook/EBookView.html
-share/doc/libebook/EBookViewListener.html
-share/doc/libebook/EContact.html
-share/doc/libebook/EVCard.html
-share/doc/libebook/ch01.html
-share/doc/libebook/home.png
-share/doc/libebook/index.html
-share/doc/libebook/index.sgml
-share/doc/libebook/left.png
-share/doc/libebook/libebook-EAddressWestern.html
-share/doc/libebook/libebook-ENameWestern.html
-share/doc/libebook/libebook-e-book-async.html
-share/doc/libebook/libebook-e-book-query.html
-share/doc/libebook/libebook-e-book-types.html
-share/doc/libebook/libebook.devhelp
-share/doc/libebook/libebook.devhelp2
-share/doc/libebook/right.png
-share/doc/libebook/style.css
-share/doc/libebook/up.png
-share/doc/libecal/ECal.html
-share/doc/libecal/ECalComponent.html
-share/doc/libecal/ch01.html
-share/doc/libecal/home.png
-share/doc/libecal/index.html
-share/doc/libecal/index.sgml
-share/doc/libecal/left.png
-share/doc/libecal/libecal-ECalListener.html
-share/doc/libecal/libecal-ECalView.html
-share/doc/libecal/libecal-ECalViewListener.html
-share/doc/libecal/libecal-e-cal-recur.html
-share/doc/libecal/libecal-e-cal-time-util.html
-share/doc/libecal/libecal-e-cal-types.html
-share/doc/libecal/libecal-e-cal-util.html
-share/doc/libecal/libecal.devhelp
-share/doc/libecal/libecal.devhelp2
-share/doc/libecal/right.png
-share/doc/libecal/style.css
-share/doc/libecal/up.png
-share/doc/libedata-cal/ECalBackend.html
-share/doc/libedata-cal/ECalBackendSExp.html
-share/doc/libedata-cal/EDataCal.html
-share/doc/libedata-cal/EDataCalView.html
-share/doc/libedata-cal/ch01.html
-share/doc/libedata-cal/home.png
-share/doc/libedata-cal/index.html
-share/doc/libedata-cal/index.sgml
-share/doc/libedata-cal/left.png
-share/doc/libedata-cal/libedata-cal-ECalBackendCache.html
-share/doc/libedata-cal/libedata-cal-ECalBackendFactory.html
-share/doc/libedata-cal/libedata-cal-ECalBackendSync.html
-share/doc/libedata-cal/libedata-cal-EDataCalFactory.html
-share/doc/libedata-cal/libedata-cal-e-cal-backend-util.html
-share/doc/libedata-cal/libedata-cal.devhelp
-share/doc/libedata-cal/libedata-cal.devhelp2
-share/doc/libedata-cal/right.png
-share/doc/libedata-cal/style.css
-share/doc/libedata-cal/up.png
-share/doc/libedataserver/ch01.html
-share/doc/libedataserver/home.png
-share/doc/libedataserver/index.html
-share/doc/libedataserver/index.sgml
-share/doc/libedataserver/left.png
-share/doc/libedataserver/libedataserver-EAccount.html
-share/doc/libedataserver/libedataserver-EAccountList.html
-share/doc/libedataserver/libedataserver-EComponentListener.html
-share/doc/libedataserver/libedataserver-EFileCache.html
-share/doc/libedataserver/libedataserver-EIterator.html
-share/doc/libedataserver/libedataserver-EList.html
-share/doc/libedataserver/libedataserver-EListIterator.html
-share/doc/libedataserver/libedataserver-ESExp.html
-share/doc/libedataserver/libedataserver-ESource.html
-share/doc/libedataserver/libedataserver-ESourceGroup.html
-share/doc/libedataserver/libedataserver-ESourceList.html
-share/doc/libedataserver/libedataserver-e-categories.html
-share/doc/libedataserver/libedataserver-e-data-server-module.html
-share/doc/libedataserver/libedataserver-e-db3-utils.html
-share/doc/libedataserver/libedataserver-e-dbhash.html
-share/doc/libedataserver/libedataserver-e-iconv.html
-share/doc/libedataserver/libedataserver-e-memory.html
-share/doc/libedataserver/libedataserver-e-msgport.html
-share/doc/libedataserver/libedataserver-e-time-utils.html
-share/doc/libedataserver/libedataserver-e-trie.html
-share/doc/libedataserver/libedataserver-e-uid.html
-share/doc/libedataserver/libedataserver-e-url.html
-share/doc/libedataserver/libedataserver-e-util.html
-share/doc/libedataserver/libedataserver-e-xml-hash-utils.html
-share/doc/libedataserver/libedataserver-md5-utils.html
-share/doc/libedataserver/libedataserver.devhelp
-share/doc/libedataserver/libedataserver.devhelp2
-share/doc/libedataserver/right.png
-share/doc/libedataserver/style.css
-share/doc/libedataserver/up.png
-share/gnome/evolution-data-server-%%VERSION%%/evolutionperson.schema
-share/gnome/evolution-data-server-%%VERSION%%/glade/e-categories-dialog.glade
-share/gnome/evolution-data-server-%%VERSION%%/glade/e-name-selector-dialog.glade
-share/gnome/evolution-data-server-%%VERSION%%/weather/Locations.xml
-share/gnome/evolution-data-server-%%VERSION%%/zoneinfo/Africa/Abidjan.ics
-share/gnome/evolution-data-server-%%VERSION%%/zoneinfo/Africa/Accra.ics
-share/gnome/evolution-data-server-%%VERSION%%/zoneinfo/Africa/Addis_Ababa.ics
-share/gnome/evolution-data-server-%%VERSION%%/zoneinfo/Africa/Algiers.ics
-share/gnome/evolution-data-server-%%VERSION%%/zoneinfo/Africa/Asmera.ics
-share/gnome/evolution-data-server-%%VERSION%%/zoneinfo/Africa/Bamako.ics
-share/gnome/evolution-data-server-%%VERSION%%/zoneinfo/Africa/Bangui.ics
-share/gnome/evolution-data-server-%%VERSION%%/zoneinfo/Africa/Banjul.ics
-share/gnome/evolution-data-server-%%VERSION%%/zoneinfo/Africa/Bissau.ics
-share/gnome/evolution-data-server-%%VERSION%%/zoneinfo/Africa/Blantyre.ics
-share/gnome/evolution-data-server-%%VERSION%%/zoneinfo/Africa/Brazzaville.ics
-share/gnome/evolution-data-server-%%VERSION%%/zoneinfo/Africa/Bujumbura.ics
-share/gnome/evolution-data-server-%%VERSION%%/zoneinfo/Africa/Cairo.ics
-share/gnome/evolution-data-server-%%VERSION%%/zoneinfo/Africa/Casablanca.ics
-share/gnome/evolution-data-server-%%VERSION%%/zoneinfo/Africa/Ceuta.ics
-share/gnome/evolution-data-server-%%VERSION%%/zoneinfo/Africa/Conakry.ics
-share/gnome/evolution-data-server-%%VERSION%%/zoneinfo/Africa/Dakar.ics
-share/gnome/evolution-data-server-%%VERSION%%/zoneinfo/Africa/Dar_es_Salaam.ics
-share/gnome/evolution-data-server-%%VERSION%%/zoneinfo/Africa/Djibouti.ics
-share/gnome/evolution-data-server-%%VERSION%%/zoneinfo/Africa/Douala.ics
-share/gnome/evolution-data-server-%%VERSION%%/zoneinfo/Africa/El_Aaiun.ics
-share/gnome/evolution-data-server-%%VERSION%%/zoneinfo/Africa/Freetown.ics
-share/gnome/evolution-data-server-%%VERSION%%/zoneinfo/Africa/Gaborone.ics
-share/gnome/evolution-data-server-%%VERSION%%/zoneinfo/Africa/Harare.ics
-share/gnome/evolution-data-server-%%VERSION%%/zoneinfo/Africa/Johannesburg.ics
-share/gnome/evolution-data-server-%%VERSION%%/zoneinfo/Africa/Kampala.ics
-share/gnome/evolution-data-server-%%VERSION%%/zoneinfo/Africa/Khartoum.ics
-share/gnome/evolution-data-server-%%VERSION%%/zoneinfo/Africa/Kigali.ics
-share/gnome/evolution-data-server-%%VERSION%%/zoneinfo/Africa/Kinshasa.ics
-share/gnome/evolution-data-server-%%VERSION%%/zoneinfo/Africa/Lagos.ics
-share/gnome/evolution-data-server-%%VERSION%%/zoneinfo/Africa/Libreville.ics
-share/gnome/evolution-data-server-%%VERSION%%/zoneinfo/Africa/Lome.ics
-share/gnome/evolution-data-server-%%VERSION%%/zoneinfo/Africa/Luanda.ics
-share/gnome/evolution-data-server-%%VERSION%%/zoneinfo/Africa/Lubumbashi.ics
-share/gnome/evolution-data-server-%%VERSION%%/zoneinfo/Africa/Lusaka.ics
-share/gnome/evolution-data-server-%%VERSION%%/zoneinfo/Africa/Malabo.ics
-share/gnome/evolution-data-server-%%VERSION%%/zoneinfo/Africa/Maputo.ics
-share/gnome/evolution-data-server-%%VERSION%%/zoneinfo/Africa/Maseru.ics
-share/gnome/evolution-data-server-%%VERSION%%/zoneinfo/Africa/Mbabane.ics
-share/gnome/evolution-data-server-%%VERSION%%/zoneinfo/Africa/Mogadishu.ics
-share/gnome/evolution-data-server-%%VERSION%%/zoneinfo/Africa/Monrovia.ics
-share/gnome/evolution-data-server-%%VERSION%%/zoneinfo/Africa/Nairobi.ics
-share/gnome/evolution-data-server-%%VERSION%%/zoneinfo/Africa/Ndjamena.ics
-share/gnome/evolution-data-server-%%VERSION%%/zoneinfo/Africa/Niamey.ics
-share/gnome/evolution-data-server-%%VERSION%%/zoneinfo/Africa/Nouakchott.ics
-share/gnome/evolution-data-server-%%VERSION%%/zoneinfo/Africa/Ouagadougou.ics
-share/gnome/evolution-data-server-%%VERSION%%/zoneinfo/Africa/Porto-Novo.ics
-share/gnome/evolution-data-server-%%VERSION%%/zoneinfo/Africa/Sao_Tome.ics
-share/gnome/evolution-data-server-%%VERSION%%/zoneinfo/Africa/Timbuktu.ics
-share/gnome/evolution-data-server-%%VERSION%%/zoneinfo/Africa/Tripoli.ics
-share/gnome/evolution-data-server-%%VERSION%%/zoneinfo/Africa/Tunis.ics
-share/gnome/evolution-data-server-%%VERSION%%/zoneinfo/Africa/Windhoek.ics
-share/gnome/evolution-data-server-%%VERSION%%/zoneinfo/America/Adak.ics
-share/gnome/evolution-data-server-%%VERSION%%/zoneinfo/America/Anchorage.ics
-share/gnome/evolution-data-server-%%VERSION%%/zoneinfo/America/Anguilla.ics
-share/gnome/evolution-data-server-%%VERSION%%/zoneinfo/America/Antigua.ics
-share/gnome/evolution-data-server-%%VERSION%%/zoneinfo/America/Araguaina.ics
-share/gnome/evolution-data-server-%%VERSION%%/zoneinfo/America/Aruba.ics
-share/gnome/evolution-data-server-%%VERSION%%/zoneinfo/America/Asuncion.ics
-share/gnome/evolution-data-server-%%VERSION%%/zoneinfo/America/Barbados.ics
-share/gnome/evolution-data-server-%%VERSION%%/zoneinfo/America/Belem.ics
-share/gnome/evolution-data-server-%%VERSION%%/zoneinfo/America/Belize.ics
-share/gnome/evolution-data-server-%%VERSION%%/zoneinfo/America/Boa_Vista.ics
-share/gnome/evolution-data-server-%%VERSION%%/zoneinfo/America/Bogota.ics
-share/gnome/evolution-data-server-%%VERSION%%/zoneinfo/America/Boise.ics
-share/gnome/evolution-data-server-%%VERSION%%/zoneinfo/America/Buenos_Aires.ics
-share/gnome/evolution-data-server-%%VERSION%%/zoneinfo/America/Cambridge_Bay.ics
-share/gnome/evolution-data-server-%%VERSION%%/zoneinfo/America/Cancun.ics
-share/gnome/evolution-data-server-%%VERSION%%/zoneinfo/America/Caracas.ics
-share/gnome/evolution-data-server-%%VERSION%%/zoneinfo/America/Catamarca.ics
-share/gnome/evolution-data-server-%%VERSION%%/zoneinfo/America/Cayenne.ics
-share/gnome/evolution-data-server-%%VERSION%%/zoneinfo/America/Cayman.ics
-share/gnome/evolution-data-server-%%VERSION%%/zoneinfo/America/Chicago.ics
-share/gnome/evolution-data-server-%%VERSION%%/zoneinfo/America/Chihuahua.ics
-share/gnome/evolution-data-server-%%VERSION%%/zoneinfo/America/Cordoba.ics
-share/gnome/evolution-data-server-%%VERSION%%/zoneinfo/America/Costa_Rica.ics
-share/gnome/evolution-data-server-%%VERSION%%/zoneinfo/America/Cuiaba.ics
-share/gnome/evolution-data-server-%%VERSION%%/zoneinfo/America/Curacao.ics
-share/gnome/evolution-data-server-%%VERSION%%/zoneinfo/America/Danmarkshavn.ics
-share/gnome/evolution-data-server-%%VERSION%%/zoneinfo/America/Dawson.ics
-share/gnome/evolution-data-server-%%VERSION%%/zoneinfo/America/Dawson_Creek.ics
-share/gnome/evolution-data-server-%%VERSION%%/zoneinfo/America/Denver.ics
-share/gnome/evolution-data-server-%%VERSION%%/zoneinfo/America/Detroit.ics
-share/gnome/evolution-data-server-%%VERSION%%/zoneinfo/America/Dominica.ics
-share/gnome/evolution-data-server-%%VERSION%%/zoneinfo/America/Edmonton.ics
-share/gnome/evolution-data-server-%%VERSION%%/zoneinfo/America/Eirunepe.ics
-share/gnome/evolution-data-server-%%VERSION%%/zoneinfo/America/El_Salvador.ics
-share/gnome/evolution-data-server-%%VERSION%%/zoneinfo/America/Fortaleza.ics
-share/gnome/evolution-data-server-%%VERSION%%/zoneinfo/America/Glace_Bay.ics
-share/gnome/evolution-data-server-%%VERSION%%/zoneinfo/America/Godthab.ics
-share/gnome/evolution-data-server-%%VERSION%%/zoneinfo/America/Goose_Bay.ics
-share/gnome/evolution-data-server-%%VERSION%%/zoneinfo/America/Grand_Turk.ics
-share/gnome/evolution-data-server-%%VERSION%%/zoneinfo/America/Grenada.ics
-share/gnome/evolution-data-server-%%VERSION%%/zoneinfo/America/Guadeloupe.ics
-share/gnome/evolution-data-server-%%VERSION%%/zoneinfo/America/Guatemala.ics
-share/gnome/evolution-data-server-%%VERSION%%/zoneinfo/America/Guayaquil.ics
-share/gnome/evolution-data-server-%%VERSION%%/zoneinfo/America/Guyana.ics
-share/gnome/evolution-data-server-%%VERSION%%/zoneinfo/America/Halifax.ics
-share/gnome/evolution-data-server-%%VERSION%%/zoneinfo/America/Havana.ics
-share/gnome/evolution-data-server-%%VERSION%%/zoneinfo/America/Hermosillo.ics
-share/gnome/evolution-data-server-%%VERSION%%/zoneinfo/America/Indiana/Indianapolis.ics
-share/gnome/evolution-data-server-%%VERSION%%/zoneinfo/America/Indiana/Knox.ics
-share/gnome/evolution-data-server-%%VERSION%%/zoneinfo/America/Indiana/Marengo.ics
-share/gnome/evolution-data-server-%%VERSION%%/zoneinfo/America/Indiana/Vevay.ics
-share/gnome/evolution-data-server-%%VERSION%%/zoneinfo/America/Indianapolis.ics
-share/gnome/evolution-data-server-%%VERSION%%/zoneinfo/America/Inuvik.ics
-share/gnome/evolution-data-server-%%VERSION%%/zoneinfo/America/Iqaluit.ics
-share/gnome/evolution-data-server-%%VERSION%%/zoneinfo/America/Jamaica.ics
-share/gnome/evolution-data-server-%%VERSION%%/zoneinfo/America/Jujuy.ics
-share/gnome/evolution-data-server-%%VERSION%%/zoneinfo/America/Juneau.ics
-share/gnome/evolution-data-server-%%VERSION%%/zoneinfo/America/Kentucky/Louisville.ics
-share/gnome/evolution-data-server-%%VERSION%%/zoneinfo/America/Kentucky/Monticello.ics
-share/gnome/evolution-data-server-%%VERSION%%/zoneinfo/America/La_Paz.ics
-share/gnome/evolution-data-server-%%VERSION%%/zoneinfo/America/Lima.ics
-share/gnome/evolution-data-server-%%VERSION%%/zoneinfo/America/Los_Angeles.ics
-share/gnome/evolution-data-server-%%VERSION%%/zoneinfo/America/Louisville.ics
-share/gnome/evolution-data-server-%%VERSION%%/zoneinfo/America/Maceio.ics
-share/gnome/evolution-data-server-%%VERSION%%/zoneinfo/America/Managua.ics
-share/gnome/evolution-data-server-%%VERSION%%/zoneinfo/America/Manaus.ics
-share/gnome/evolution-data-server-%%VERSION%%/zoneinfo/America/Martinique.ics
-share/gnome/evolution-data-server-%%VERSION%%/zoneinfo/America/Mazatlan.ics
-share/gnome/evolution-data-server-%%VERSION%%/zoneinfo/America/Mendoza.ics
-share/gnome/evolution-data-server-%%VERSION%%/zoneinfo/America/Menominee.ics
-share/gnome/evolution-data-server-%%VERSION%%/zoneinfo/America/Merida.ics
-share/gnome/evolution-data-server-%%VERSION%%/zoneinfo/America/Mexico_City.ics
-share/gnome/evolution-data-server-%%VERSION%%/zoneinfo/America/Miquelon.ics
-share/gnome/evolution-data-server-%%VERSION%%/zoneinfo/America/Monterrey.ics
-share/gnome/evolution-data-server-%%VERSION%%/zoneinfo/America/Montevideo.ics
-share/gnome/evolution-data-server-%%VERSION%%/zoneinfo/America/Montreal.ics
-share/gnome/evolution-data-server-%%VERSION%%/zoneinfo/America/Montserrat.ics
-share/gnome/evolution-data-server-%%VERSION%%/zoneinfo/America/Nassau.ics
-share/gnome/evolution-data-server-%%VERSION%%/zoneinfo/America/New_York.ics
-share/gnome/evolution-data-server-%%VERSION%%/zoneinfo/America/Nipigon.ics
-share/gnome/evolution-data-server-%%VERSION%%/zoneinfo/America/Nome.ics
-share/gnome/evolution-data-server-%%VERSION%%/zoneinfo/America/Noronha.ics
-share/gnome/evolution-data-server-%%VERSION%%/zoneinfo/America/North_Dakota/Center.ics
-share/gnome/evolution-data-server-%%VERSION%%/zoneinfo/America/Panama.ics
-share/gnome/evolution-data-server-%%VERSION%%/zoneinfo/America/Pangnirtung.ics
-share/gnome/evolution-data-server-%%VERSION%%/zoneinfo/America/Paramaribo.ics
-share/gnome/evolution-data-server-%%VERSION%%/zoneinfo/America/Phoenix.ics
-share/gnome/evolution-data-server-%%VERSION%%/zoneinfo/America/Port-au-Prince.ics
-share/gnome/evolution-data-server-%%VERSION%%/zoneinfo/America/Port_of_Spain.ics
-share/gnome/evolution-data-server-%%VERSION%%/zoneinfo/America/Porto_Velho.ics
-share/gnome/evolution-data-server-%%VERSION%%/zoneinfo/America/Puerto_Rico.ics
-share/gnome/evolution-data-server-%%VERSION%%/zoneinfo/America/Rainy_River.ics
-share/gnome/evolution-data-server-%%VERSION%%/zoneinfo/America/Rankin_Inlet.ics
-share/gnome/evolution-data-server-%%VERSION%%/zoneinfo/America/Recife.ics
-share/gnome/evolution-data-server-%%VERSION%%/zoneinfo/America/Regina.ics
-share/gnome/evolution-data-server-%%VERSION%%/zoneinfo/America/Rio_Branco.ics
-share/gnome/evolution-data-server-%%VERSION%%/zoneinfo/America/Rosario.ics
-share/gnome/evolution-data-server-%%VERSION%%/zoneinfo/America/Santiago.ics
-share/gnome/evolution-data-server-%%VERSION%%/zoneinfo/America/Santo_Domingo.ics
-share/gnome/evolution-data-server-%%VERSION%%/zoneinfo/America/Sao_Paulo.ics
-share/gnome/evolution-data-server-%%VERSION%%/zoneinfo/America/Scoresbysund.ics
-share/gnome/evolution-data-server-%%VERSION%%/zoneinfo/America/Shiprock.ics
-share/gnome/evolution-data-server-%%VERSION%%/zoneinfo/America/St_Johns.ics
-share/gnome/evolution-data-server-%%VERSION%%/zoneinfo/America/St_Kitts.ics
-share/gnome/evolution-data-server-%%VERSION%%/zoneinfo/America/St_Lucia.ics
-share/gnome/evolution-data-server-%%VERSION%%/zoneinfo/America/St_Thomas.ics
-share/gnome/evolution-data-server-%%VERSION%%/zoneinfo/America/St_Vincent.ics
-share/gnome/evolution-data-server-%%VERSION%%/zoneinfo/America/Swift_Current.ics
-share/gnome/evolution-data-server-%%VERSION%%/zoneinfo/America/Tegucigalpa.ics
-share/gnome/evolution-data-server-%%VERSION%%/zoneinfo/America/Thule.ics
-share/gnome/evolution-data-server-%%VERSION%%/zoneinfo/America/Thunder_Bay.ics
-share/gnome/evolution-data-server-%%VERSION%%/zoneinfo/America/Tijuana.ics
-share/gnome/evolution-data-server-%%VERSION%%/zoneinfo/America/Tortola.ics
-share/gnome/evolution-data-server-%%VERSION%%/zoneinfo/America/Vancouver.ics
-share/gnome/evolution-data-server-%%VERSION%%/zoneinfo/America/Whitehorse.ics
-share/gnome/evolution-data-server-%%VERSION%%/zoneinfo/America/Winnipeg.ics
-share/gnome/evolution-data-server-%%VERSION%%/zoneinfo/America/Yakutat.ics
-share/gnome/evolution-data-server-%%VERSION%%/zoneinfo/America/Yellowknife.ics
-share/gnome/evolution-data-server-%%VERSION%%/zoneinfo/Antarctica/Casey.ics
-share/gnome/evolution-data-server-%%VERSION%%/zoneinfo/Antarctica/Davis.ics
-share/gnome/evolution-data-server-%%VERSION%%/zoneinfo/Antarctica/DumontDUrville.ics
-share/gnome/evolution-data-server-%%VERSION%%/zoneinfo/Antarctica/Mawson.ics
-share/gnome/evolution-data-server-%%VERSION%%/zoneinfo/Antarctica/McMurdo.ics
-share/gnome/evolution-data-server-%%VERSION%%/zoneinfo/Antarctica/Palmer.ics
-share/gnome/evolution-data-server-%%VERSION%%/zoneinfo/Antarctica/South_Pole.ics
-share/gnome/evolution-data-server-%%VERSION%%/zoneinfo/Antarctica/Syowa.ics
-share/gnome/evolution-data-server-%%VERSION%%/zoneinfo/Antarctica/Vostok.ics
-share/gnome/evolution-data-server-%%VERSION%%/zoneinfo/Arctic/Longyearbyen.ics
-share/gnome/evolution-data-server-%%VERSION%%/zoneinfo/Asia/Aden.ics
-share/gnome/evolution-data-server-%%VERSION%%/zoneinfo/Asia/Almaty.ics
-share/gnome/evolution-data-server-%%VERSION%%/zoneinfo/Asia/Amman.ics
-share/gnome/evolution-data-server-%%VERSION%%/zoneinfo/Asia/Anadyr.ics
-share/gnome/evolution-data-server-%%VERSION%%/zoneinfo/Asia/Aqtau.ics
-share/gnome/evolution-data-server-%%VERSION%%/zoneinfo/Asia/Aqtobe.ics
-share/gnome/evolution-data-server-%%VERSION%%/zoneinfo/Asia/Ashgabat.ics
-share/gnome/evolution-data-server-%%VERSION%%/zoneinfo/Asia/Baghdad.ics
-share/gnome/evolution-data-server-%%VERSION%%/zoneinfo/Asia/Bahrain.ics
-share/gnome/evolution-data-server-%%VERSION%%/zoneinfo/Asia/Baku.ics
-share/gnome/evolution-data-server-%%VERSION%%/zoneinfo/Asia/Bangkok.ics
-share/gnome/evolution-data-server-%%VERSION%%/zoneinfo/Asia/Beirut.ics
-share/gnome/evolution-data-server-%%VERSION%%/zoneinfo/Asia/Bishkek.ics
-share/gnome/evolution-data-server-%%VERSION%%/zoneinfo/Asia/Brunei.ics
-share/gnome/evolution-data-server-%%VERSION%%/zoneinfo/Asia/Calcutta.ics
-share/gnome/evolution-data-server-%%VERSION%%/zoneinfo/Asia/Choibalsan.ics
-share/gnome/evolution-data-server-%%VERSION%%/zoneinfo/Asia/Chongqing.ics
-share/gnome/evolution-data-server-%%VERSION%%/zoneinfo/Asia/Chungking.ics
-share/gnome/evolution-data-server-%%VERSION%%/zoneinfo/Asia/Colombo.ics
-share/gnome/evolution-data-server-%%VERSION%%/zoneinfo/Asia/Damascus.ics
-share/gnome/evolution-data-server-%%VERSION%%/zoneinfo/Asia/Dhaka.ics
-share/gnome/evolution-data-server-%%VERSION%%/zoneinfo/Asia/Dili.ics
-share/gnome/evolution-data-server-%%VERSION%%/zoneinfo/Asia/Dubai.ics
-share/gnome/evolution-data-server-%%VERSION%%/zoneinfo/Asia/Dushanbe.ics
-share/gnome/evolution-data-server-%%VERSION%%/zoneinfo/Asia/Gaza.ics
-share/gnome/evolution-data-server-%%VERSION%%/zoneinfo/Asia/Harbin.ics
-share/gnome/evolution-data-server-%%VERSION%%/zoneinfo/Asia/Hong_Kong.ics
-share/gnome/evolution-data-server-%%VERSION%%/zoneinfo/Asia/Hovd.ics
-share/gnome/evolution-data-server-%%VERSION%%/zoneinfo/Asia/Irkutsk.ics
-share/gnome/evolution-data-server-%%VERSION%%/zoneinfo/Asia/Istanbul.ics
-share/gnome/evolution-data-server-%%VERSION%%/zoneinfo/Asia/Jakarta.ics
-share/gnome/evolution-data-server-%%VERSION%%/zoneinfo/Asia/Jayapura.ics
-share/gnome/evolution-data-server-%%VERSION%%/zoneinfo/Asia/Jerusalem.ics
-share/gnome/evolution-data-server-%%VERSION%%/zoneinfo/Asia/Kabul.ics
-share/gnome/evolution-data-server-%%VERSION%%/zoneinfo/Asia/Kamchatka.ics
-share/gnome/evolution-data-server-%%VERSION%%/zoneinfo/Asia/Karachi.ics
-share/gnome/evolution-data-server-%%VERSION%%/zoneinfo/Asia/Kashgar.ics
-share/gnome/evolution-data-server-%%VERSION%%/zoneinfo/Asia/Katmandu.ics
-share/gnome/evolution-data-server-%%VERSION%%/zoneinfo/Asia/Krasnoyarsk.ics
-share/gnome/evolution-data-server-%%VERSION%%/zoneinfo/Asia/Kuala_Lumpur.ics
-share/gnome/evolution-data-server-%%VERSION%%/zoneinfo/Asia/Kuching.ics
-share/gnome/evolution-data-server-%%VERSION%%/zoneinfo/Asia/Kuwait.ics
-share/gnome/evolution-data-server-%%VERSION%%/zoneinfo/Asia/Macao.ics
-share/gnome/evolution-data-server-%%VERSION%%/zoneinfo/Asia/Magadan.ics
-share/gnome/evolution-data-server-%%VERSION%%/zoneinfo/Asia/Manila.ics
-share/gnome/evolution-data-server-%%VERSION%%/zoneinfo/Asia/Muscat.ics
-share/gnome/evolution-data-server-%%VERSION%%/zoneinfo/Asia/Nicosia.ics
-share/gnome/evolution-data-server-%%VERSION%%/zoneinfo/Asia/Novosibirsk.ics
-share/gnome/evolution-data-server-%%VERSION%%/zoneinfo/Asia/Omsk.ics
-share/gnome/evolution-data-server-%%VERSION%%/zoneinfo/Asia/Phnom_Penh.ics
-share/gnome/evolution-data-server-%%VERSION%%/zoneinfo/Asia/Pontianak.ics
-share/gnome/evolution-data-server-%%VERSION%%/zoneinfo/Asia/Pyongyang.ics
-share/gnome/evolution-data-server-%%VERSION%%/zoneinfo/Asia/Qatar.ics
-share/gnome/evolution-data-server-%%VERSION%%/zoneinfo/Asia/Rangoon.ics
-share/gnome/evolution-data-server-%%VERSION%%/zoneinfo/Asia/Riyadh.ics
-share/gnome/evolution-data-server-%%VERSION%%/zoneinfo/Asia/Saigon.ics
-share/gnome/evolution-data-server-%%VERSION%%/zoneinfo/Asia/Sakhalin.ics
-share/gnome/evolution-data-server-%%VERSION%%/zoneinfo/Asia/Samarkand.ics
-share/gnome/evolution-data-server-%%VERSION%%/zoneinfo/Asia/Seoul.ics
-share/gnome/evolution-data-server-%%VERSION%%/zoneinfo/Asia/Shanghai.ics
-share/gnome/evolution-data-server-%%VERSION%%/zoneinfo/Asia/Singapore.ics
-share/gnome/evolution-data-server-%%VERSION%%/zoneinfo/Asia/Taipei.ics
-share/gnome/evolution-data-server-%%VERSION%%/zoneinfo/Asia/Tashkent.ics
-share/gnome/evolution-data-server-%%VERSION%%/zoneinfo/Asia/Tbilisi.ics
-share/gnome/evolution-data-server-%%VERSION%%/zoneinfo/Asia/Tehran.ics
-share/gnome/evolution-data-server-%%VERSION%%/zoneinfo/Asia/Thimphu.ics
-share/gnome/evolution-data-server-%%VERSION%%/zoneinfo/Asia/Tokyo.ics
-share/gnome/evolution-data-server-%%VERSION%%/zoneinfo/Asia/Ujung_Pandang.ics
-share/gnome/evolution-data-server-%%VERSION%%/zoneinfo/Asia/Ulaanbaatar.ics
-share/gnome/evolution-data-server-%%VERSION%%/zoneinfo/Asia/Urumqi.ics
-share/gnome/evolution-data-server-%%VERSION%%/zoneinfo/Asia/Vientiane.ics
-share/gnome/evolution-data-server-%%VERSION%%/zoneinfo/Asia/Vladivostok.ics
-share/gnome/evolution-data-server-%%VERSION%%/zoneinfo/Asia/Yakutsk.ics
-share/gnome/evolution-data-server-%%VERSION%%/zoneinfo/Asia/Yekaterinburg.ics
-share/gnome/evolution-data-server-%%VERSION%%/zoneinfo/Asia/Yerevan.ics
-share/gnome/evolution-data-server-%%VERSION%%/zoneinfo/Atlantic/Azores.ics
-share/gnome/evolution-data-server-%%VERSION%%/zoneinfo/Atlantic/Bermuda.ics
-share/gnome/evolution-data-server-%%VERSION%%/zoneinfo/Atlantic/Canary.ics
-share/gnome/evolution-data-server-%%VERSION%%/zoneinfo/Atlantic/Cape_Verde.ics
-share/gnome/evolution-data-server-%%VERSION%%/zoneinfo/Atlantic/Faeroe.ics
-share/gnome/evolution-data-server-%%VERSION%%/zoneinfo/Atlantic/Jan_Mayen.ics
-share/gnome/evolution-data-server-%%VERSION%%/zoneinfo/Atlantic/Madeira.ics
-share/gnome/evolution-data-server-%%VERSION%%/zoneinfo/Atlantic/Reykjavik.ics
-share/gnome/evolution-data-server-%%VERSION%%/zoneinfo/Atlantic/South_Georgia.ics
-share/gnome/evolution-data-server-%%VERSION%%/zoneinfo/Atlantic/St_Helena.ics
-share/gnome/evolution-data-server-%%VERSION%%/zoneinfo/Atlantic/Stanley.ics
-share/gnome/evolution-data-server-%%VERSION%%/zoneinfo/Australia/Adelaide.ics
-share/gnome/evolution-data-server-%%VERSION%%/zoneinfo/Australia/Brisbane.ics
-share/gnome/evolution-data-server-%%VERSION%%/zoneinfo/Australia/Broken_Hill.ics
-share/gnome/evolution-data-server-%%VERSION%%/zoneinfo/Australia/Darwin.ics
-share/gnome/evolution-data-server-%%VERSION%%/zoneinfo/Australia/Hobart.ics
-share/gnome/evolution-data-server-%%VERSION%%/zoneinfo/Australia/Lindeman.ics
-share/gnome/evolution-data-server-%%VERSION%%/zoneinfo/Australia/Lord_Howe.ics
-share/gnome/evolution-data-server-%%VERSION%%/zoneinfo/Australia/Melbourne.ics
-share/gnome/evolution-data-server-%%VERSION%%/zoneinfo/Australia/Perth.ics
-share/gnome/evolution-data-server-%%VERSION%%/zoneinfo/Australia/Sydney.ics
-share/gnome/evolution-data-server-%%VERSION%%/zoneinfo/Europe/Amsterdam.ics
-share/gnome/evolution-data-server-%%VERSION%%/zoneinfo/Europe/Andorra.ics
-share/gnome/evolution-data-server-%%VERSION%%/zoneinfo/Europe/Athens.ics
-share/gnome/evolution-data-server-%%VERSION%%/zoneinfo/Europe/Belfast.ics
-share/gnome/evolution-data-server-%%VERSION%%/zoneinfo/Europe/Belgrade.ics
-share/gnome/evolution-data-server-%%VERSION%%/zoneinfo/Europe/Berlin.ics
-share/gnome/evolution-data-server-%%VERSION%%/zoneinfo/Europe/Bratislava.ics
-share/gnome/evolution-data-server-%%VERSION%%/zoneinfo/Europe/Brussels.ics
-share/gnome/evolution-data-server-%%VERSION%%/zoneinfo/Europe/Bucharest.ics
-share/gnome/evolution-data-server-%%VERSION%%/zoneinfo/Europe/Budapest.ics
-share/gnome/evolution-data-server-%%VERSION%%/zoneinfo/Europe/Chisinau.ics
-share/gnome/evolution-data-server-%%VERSION%%/zoneinfo/Europe/Copenhagen.ics
-share/gnome/evolution-data-server-%%VERSION%%/zoneinfo/Europe/Dublin.ics
-share/gnome/evolution-data-server-%%VERSION%%/zoneinfo/Europe/Gibraltar.ics
-share/gnome/evolution-data-server-%%VERSION%%/zoneinfo/Europe/Helsinki.ics
-share/gnome/evolution-data-server-%%VERSION%%/zoneinfo/Europe/Istanbul.ics
-share/gnome/evolution-data-server-%%VERSION%%/zoneinfo/Europe/Kaliningrad.ics
-share/gnome/evolution-data-server-%%VERSION%%/zoneinfo/Europe/Kiev.ics
-share/gnome/evolution-data-server-%%VERSION%%/zoneinfo/Europe/Lisbon.ics
-share/gnome/evolution-data-server-%%VERSION%%/zoneinfo/Europe/Ljubljana.ics
-share/gnome/evolution-data-server-%%VERSION%%/zoneinfo/Europe/London.ics
-share/gnome/evolution-data-server-%%VERSION%%/zoneinfo/Europe/Luxembourg.ics
-share/gnome/evolution-data-server-%%VERSION%%/zoneinfo/Europe/Madrid.ics
-share/gnome/evolution-data-server-%%VERSION%%/zoneinfo/Europe/Malta.ics
-share/gnome/evolution-data-server-%%VERSION%%/zoneinfo/Europe/Minsk.ics
-share/gnome/evolution-data-server-%%VERSION%%/zoneinfo/Europe/Monaco.ics
-share/gnome/evolution-data-server-%%VERSION%%/zoneinfo/Europe/Moscow.ics
-share/gnome/evolution-data-server-%%VERSION%%/zoneinfo/Europe/Nicosia.ics
-share/gnome/evolution-data-server-%%VERSION%%/zoneinfo/Europe/Oslo.ics
-share/gnome/evolution-data-server-%%VERSION%%/zoneinfo/Europe/Paris.ics
-share/gnome/evolution-data-server-%%VERSION%%/zoneinfo/Europe/Prague.ics
-share/gnome/evolution-data-server-%%VERSION%%/zoneinfo/Europe/Riga.ics
-share/gnome/evolution-data-server-%%VERSION%%/zoneinfo/Europe/Rome.ics
-share/gnome/evolution-data-server-%%VERSION%%/zoneinfo/Europe/Samara.ics
-share/gnome/evolution-data-server-%%VERSION%%/zoneinfo/Europe/San_Marino.ics
-share/gnome/evolution-data-server-%%VERSION%%/zoneinfo/Europe/Sarajevo.ics
-share/gnome/evolution-data-server-%%VERSION%%/zoneinfo/Europe/Simferopol.ics
-share/gnome/evolution-data-server-%%VERSION%%/zoneinfo/Europe/Skopje.ics
-share/gnome/evolution-data-server-%%VERSION%%/zoneinfo/Europe/Sofia.ics
-share/gnome/evolution-data-server-%%VERSION%%/zoneinfo/Europe/Stockholm.ics
-share/gnome/evolution-data-server-%%VERSION%%/zoneinfo/Europe/Tallinn.ics
-share/gnome/evolution-data-server-%%VERSION%%/zoneinfo/Europe/Tirane.ics
-share/gnome/evolution-data-server-%%VERSION%%/zoneinfo/Europe/Uzhgorod.ics
-share/gnome/evolution-data-server-%%VERSION%%/zoneinfo/Europe/Vaduz.ics
-share/gnome/evolution-data-server-%%VERSION%%/zoneinfo/Europe/Vatican.ics
-share/gnome/evolution-data-server-%%VERSION%%/zoneinfo/Europe/Vienna.ics
-share/gnome/evolution-data-server-%%VERSION%%/zoneinfo/Europe/Vilnius.ics
-share/gnome/evolution-data-server-%%VERSION%%/zoneinfo/Europe/Warsaw.ics
-share/gnome/evolution-data-server-%%VERSION%%/zoneinfo/Europe/Zagreb.ics
-share/gnome/evolution-data-server-%%VERSION%%/zoneinfo/Europe/Zaporozhye.ics
-share/gnome/evolution-data-server-%%VERSION%%/zoneinfo/Europe/Zurich.ics
-share/gnome/evolution-data-server-%%VERSION%%/zoneinfo/Indian/Antananarivo.ics
-share/gnome/evolution-data-server-%%VERSION%%/zoneinfo/Indian/Chagos.ics
-share/gnome/evolution-data-server-%%VERSION%%/zoneinfo/Indian/Christmas.ics
-share/gnome/evolution-data-server-%%VERSION%%/zoneinfo/Indian/Cocos.ics
-share/gnome/evolution-data-server-%%VERSION%%/zoneinfo/Indian/Comoro.ics
-share/gnome/evolution-data-server-%%VERSION%%/zoneinfo/Indian/Kerguelen.ics
-share/gnome/evolution-data-server-%%VERSION%%/zoneinfo/Indian/Mahe.ics
-share/gnome/evolution-data-server-%%VERSION%%/zoneinfo/Indian/Maldives.ics
-share/gnome/evolution-data-server-%%VERSION%%/zoneinfo/Indian/Mauritius.ics
-share/gnome/evolution-data-server-%%VERSION%%/zoneinfo/Indian/Mayotte.ics
-share/gnome/evolution-data-server-%%VERSION%%/zoneinfo/Indian/Reunion.ics
-share/gnome/evolution-data-server-%%VERSION%%/zoneinfo/Pacific/Apia.ics
-share/gnome/evolution-data-server-%%VERSION%%/zoneinfo/Pacific/Auckland.ics
-share/gnome/evolution-data-server-%%VERSION%%/zoneinfo/Pacific/Chatham.ics
-share/gnome/evolution-data-server-%%VERSION%%/zoneinfo/Pacific/Easter.ics
-share/gnome/evolution-data-server-%%VERSION%%/zoneinfo/Pacific/Efate.ics
-share/gnome/evolution-data-server-%%VERSION%%/zoneinfo/Pacific/Enderbury.ics
-share/gnome/evolution-data-server-%%VERSION%%/zoneinfo/Pacific/Fakaofo.ics
-share/gnome/evolution-data-server-%%VERSION%%/zoneinfo/Pacific/Fiji.ics
-share/gnome/evolution-data-server-%%VERSION%%/zoneinfo/Pacific/Funafuti.ics
-share/gnome/evolution-data-server-%%VERSION%%/zoneinfo/Pacific/Galapagos.ics
-share/gnome/evolution-data-server-%%VERSION%%/zoneinfo/Pacific/Gambier.ics
-share/gnome/evolution-data-server-%%VERSION%%/zoneinfo/Pacific/Guadalcanal.ics
-share/gnome/evolution-data-server-%%VERSION%%/zoneinfo/Pacific/Guam.ics
-share/gnome/evolution-data-server-%%VERSION%%/zoneinfo/Pacific/Honolulu.ics
-share/gnome/evolution-data-server-%%VERSION%%/zoneinfo/Pacific/Johnston.ics
-share/gnome/evolution-data-server-%%VERSION%%/zoneinfo/Pacific/Kiritimati.ics
-share/gnome/evolution-data-server-%%VERSION%%/zoneinfo/Pacific/Kosrae.ics
-share/gnome/evolution-data-server-%%VERSION%%/zoneinfo/Pacific/Kwajalein.ics
-share/gnome/evolution-data-server-%%VERSION%%/zoneinfo/Pacific/Majuro.ics
-share/gnome/evolution-data-server-%%VERSION%%/zoneinfo/Pacific/Marquesas.ics
-share/gnome/evolution-data-server-%%VERSION%%/zoneinfo/Pacific/Midway.ics
-share/gnome/evolution-data-server-%%VERSION%%/zoneinfo/Pacific/Nauru.ics
-share/gnome/evolution-data-server-%%VERSION%%/zoneinfo/Pacific/Niue.ics
-share/gnome/evolution-data-server-%%VERSION%%/zoneinfo/Pacific/Norfolk.ics
-share/gnome/evolution-data-server-%%VERSION%%/zoneinfo/Pacific/Noumea.ics
-share/gnome/evolution-data-server-%%VERSION%%/zoneinfo/Pacific/Pago_Pago.ics
-share/gnome/evolution-data-server-%%VERSION%%/zoneinfo/Pacific/Palau.ics
-share/gnome/evolution-data-server-%%VERSION%%/zoneinfo/Pacific/Pitcairn.ics
-share/gnome/evolution-data-server-%%VERSION%%/zoneinfo/Pacific/Ponape.ics
-share/gnome/evolution-data-server-%%VERSION%%/zoneinfo/Pacific/Port_Moresby.ics
-share/gnome/evolution-data-server-%%VERSION%%/zoneinfo/Pacific/Rarotonga.ics
-share/gnome/evolution-data-server-%%VERSION%%/zoneinfo/Pacific/Saipan.ics
-share/gnome/evolution-data-server-%%VERSION%%/zoneinfo/Pacific/Tahiti.ics
-share/gnome/evolution-data-server-%%VERSION%%/zoneinfo/Pacific/Tarawa.ics
-share/gnome/evolution-data-server-%%VERSION%%/zoneinfo/Pacific/Tongatapu.ics
-share/gnome/evolution-data-server-%%VERSION%%/zoneinfo/Pacific/Truk.ics
-share/gnome/evolution-data-server-%%VERSION%%/zoneinfo/Pacific/Wake.ics
-share/gnome/evolution-data-server-%%VERSION%%/zoneinfo/Pacific/Wallis.ics
-share/gnome/evolution-data-server-%%VERSION%%/zoneinfo/Pacific/Yap.ics
-share/gnome/evolution-data-server-%%VERSION%%/zoneinfo/zones.tab
-share/gnome/idl/evolution-data-server-%%EVO_VERSION%%/Evolution-DataServer-Addressbook.idl
-share/gnome/idl/evolution-data-server-%%EVO_VERSION%%/Evolution-DataServer-Calendar.idl
-share/gnome/idl/evolution-data-server-%%EVO_VERSION%%/Evolution-DataServer.idl
-share/gnome/pixmaps/evolution-data-server-%%VERSION%%/category_birthday_16.png
-share/gnome/pixmaps/evolution-data-server-%%VERSION%%/category_business_16.png
-share/gnome/pixmaps/evolution-data-server-%%VERSION%%/category_favorites_16.png
-share/gnome/pixmaps/evolution-data-server-%%VERSION%%/category_gifts_16.png
-share/gnome/pixmaps/evolution-data-server-%%VERSION%%/category_goals_16.png
-share/gnome/pixmaps/evolution-data-server-%%VERSION%%/category_holiday-cards_16.png
-share/gnome/pixmaps/evolution-data-server-%%VERSION%%/category_holiday_16.png
-share/gnome/pixmaps/evolution-data-server-%%VERSION%%/category_hot-contacts_16.png
-share/gnome/pixmaps/evolution-data-server-%%VERSION%%/category_ideas_16.png
-share/gnome/pixmaps/evolution-data-server-%%VERSION%%/category_international_16.png
-share/gnome/pixmaps/evolution-data-server-%%VERSION%%/category_key-customer_16.png
-share/gnome/pixmaps/evolution-data-server-%%VERSION%%/category_miscellaneous_16.png
-share/gnome/pixmaps/evolution-data-server-%%VERSION%%/category_personal_16.png
-share/gnome/pixmaps/evolution-data-server-%%VERSION%%/category_phonecalls_16.png
-share/gnome/pixmaps/evolution-data-server-%%VERSION%%/category_status_16.png
-share/gnome/pixmaps/evolution-data-server-%%VERSION%%/category_strategies_16.png
-share/gnome/pixmaps/evolution-data-server-%%VERSION%%/category_suppliers_16.png
-share/gnome/pixmaps/evolution-data-server-%%VERSION%%/category_time-and-expenses_16.png
-share/locale/am/LC_MESSAGES/evolution-data-server-%%VERSION%%.mo
-share/locale/ar/LC_MESSAGES/evolution-data-server-%%VERSION%%.mo
-share/locale/az/LC_MESSAGES/evolution-data-server-%%VERSION%%.mo
-share/locale/be/LC_MESSAGES/evolution-data-server-%%VERSION%%.mo
-share/locale/bg/LC_MESSAGES/evolution-data-server-%%VERSION%%.mo
-share/locale/bn/LC_MESSAGES/evolution-data-server-%%VERSION%%.mo
-share/locale/bs/LC_MESSAGES/evolution-data-server-%%VERSION%%.mo
-share/locale/ca/LC_MESSAGES/evolution-data-server-%%VERSION%%.mo
-share/locale/cs/LC_MESSAGES/evolution-data-server-%%VERSION%%.mo
-share/locale/cy/LC_MESSAGES/evolution-data-server-%%VERSION%%.mo
-share/locale/da/LC_MESSAGES/evolution-data-server-%%VERSION%%.mo
-share/locale/de/LC_MESSAGES/evolution-data-server-%%VERSION%%.mo
-share/locale/dz/LC_MESSAGES/evolution-data-server-%%VERSION%%.mo
-share/locale/el/LC_MESSAGES/evolution-data-server-%%VERSION%%.mo
-share/locale/en_AU/LC_MESSAGES/evolution-data-server-%%VERSION%%.mo
-share/locale/en_CA/LC_MESSAGES/evolution-data-server-%%VERSION%%.mo
-share/locale/en_GB/LC_MESSAGES/evolution-data-server-%%VERSION%%.mo
-share/locale/es/LC_MESSAGES/evolution-data-server-%%VERSION%%.mo
-share/locale/et/LC_MESSAGES/evolution-data-server-%%VERSION%%.mo
-share/locale/eu/LC_MESSAGES/evolution-data-server-%%VERSION%%.mo
-share/locale/fa/LC_MESSAGES/evolution-data-server-%%VERSION%%.mo
-share/locale/fi/LC_MESSAGES/evolution-data-server-%%VERSION%%.mo
-share/locale/fr/LC_MESSAGES/evolution-data-server-%%VERSION%%.mo
-share/locale/ga/LC_MESSAGES/evolution-data-server-%%VERSION%%.mo
-share/locale/gl/LC_MESSAGES/evolution-data-server-%%VERSION%%.mo
-share/locale/gu/LC_MESSAGES/evolution-data-server-%%VERSION%%.mo
-share/locale/he/LC_MESSAGES/evolution-data-server-%%VERSION%%.mo
-share/locale/hi/LC_MESSAGES/evolution-data-server-%%VERSION%%.mo
-share/locale/hr/LC_MESSAGES/evolution-data-server-%%VERSION%%.mo
-share/locale/hu/LC_MESSAGES/evolution-data-server-%%VERSION%%.mo
-share/locale/id/LC_MESSAGES/evolution-data-server-%%VERSION%%.mo
-share/locale/is/LC_MESSAGES/evolution-data-server-%%VERSION%%.mo
-share/locale/it/LC_MESSAGES/evolution-data-server-%%VERSION%%.mo
-share/locale/ja/LC_MESSAGES/evolution-data-server-%%VERSION%%.mo
-share/locale/ka/LC_MESSAGES/evolution-data-server-%%VERSION%%.mo
-share/locale/ko/LC_MESSAGES/evolution-data-server-%%VERSION%%.mo
-share/locale/ku/LC_MESSAGES/evolution-data-server-%%VERSION%%.mo
-share/locale/lt/LC_MESSAGES/evolution-data-server-%%VERSION%%.mo
-share/locale/lv/LC_MESSAGES/evolution-data-server-%%VERSION%%.mo
-share/locale/mk/LC_MESSAGES/evolution-data-server-%%VERSION%%.mo
-share/locale/ml/LC_MESSAGES/evolution-data-server-%%VERSION%%.mo
-share/locale/mn/LC_MESSAGES/evolution-data-server-%%VERSION%%.mo
-share/locale/ms/LC_MESSAGES/evolution-data-server-%%VERSION%%.mo
-share/locale/nb/LC_MESSAGES/evolution-data-server-%%VERSION%%.mo
-share/locale/ne/LC_MESSAGES/evolution-data-server-%%VERSION%%.mo
-share/locale/nl/LC_MESSAGES/evolution-data-server-%%VERSION%%.mo
-share/locale/nn/LC_MESSAGES/evolution-data-server-%%VERSION%%.mo
-share/locale/no/LC_MESSAGES/evolution-data-server-%%VERSION%%.mo
-share/locale/pa/LC_MESSAGES/evolution-data-server-%%VERSION%%.mo
-share/locale/pl/LC_MESSAGES/evolution-data-server-%%VERSION%%.mo
-share/locale/pt/LC_MESSAGES/evolution-data-server-%%VERSION%%.mo
-share/locale/pt_BR/LC_MESSAGES/evolution-data-server-%%VERSION%%.mo
-share/locale/ro/LC_MESSAGES/evolution-data-server-%%VERSION%%.mo
-share/locale/ru/LC_MESSAGES/evolution-data-server-%%VERSION%%.mo
-share/locale/rw/LC_MESSAGES/evolution-data-server-%%VERSION%%.mo
-share/locale/sk/LC_MESSAGES/evolution-data-server-%%VERSION%%.mo
-share/locale/sl/LC_MESSAGES/evolution-data-server-%%VERSION%%.mo
-share/locale/sq/LC_MESSAGES/evolution-data-server-%%VERSION%%.mo
-share/locale/sr/LC_MESSAGES/evolution-data-server-%%VERSION%%.mo
-share/locale/sr@Latn/LC_MESSAGES/evolution-data-server-%%VERSION%%.mo
-share/locale/sv/LC_MESSAGES/evolution-data-server-%%VERSION%%.mo
-share/locale/th/LC_MESSAGES/evolution-data-server-%%VERSION%%.mo
-share/locale/tr/LC_MESSAGES/evolution-data-server-%%VERSION%%.mo
-share/locale/uk/LC_MESSAGES/evolution-data-server-%%VERSION%%.mo
-share/locale/vi/LC_MESSAGES/evolution-data-server-%%VERSION%%.mo
-share/locale/wa/LC_MESSAGES/evolution-data-server-%%VERSION%%.mo
-share/locale/xh/LC_MESSAGES/evolution-data-server-%%VERSION%%.mo
-share/locale/zh_CN/LC_MESSAGES/evolution-data-server-%%VERSION%%.mo
-share/locale/zh_HK/LC_MESSAGES/evolution-data-server-%%VERSION%%.mo
-share/locale/zh_TW/LC_MESSAGES/evolution-data-server-%%VERSION%%.mo
-@dirrmtry share/locale/zh_TW/LC_MESSAGES
-@dirrmtry share/locale/zh_TW
-@dirrmtry share/locale/xh/LC_MESSAGES
-@dirrmtry share/locale/xh
-@dirrmtry share/locale/rw/LC_MESSAGES
-@dirrmtry share/locale/rw
-@dirrmtry share/locale/ku/LC_MESSAGES
-@dirrmtry share/locale/ku
-@dirrmtry share/locale/dz/LC_MESSAGES
-@dirrmtry share/locale/dz
-@dirrm share/gnome/pixmaps/evolution-data-server-%%VERSION%%
-@dirrm share/gnome/idl/evolution-data-server-%%EVO_VERSION%%
-@dirrm share/gnome/evolution-data-server-%%VERSION%%/zoneinfo/Pacific
-@dirrm share/gnome/evolution-data-server-%%VERSION%%/zoneinfo/Indian
-@dirrm share/gnome/evolution-data-server-%%VERSION%%/zoneinfo/Europe
-@dirrm share/gnome/evolution-data-server-%%VERSION%%/zoneinfo/Australia
-@dirrm share/gnome/evolution-data-server-%%VERSION%%/zoneinfo/Atlantic
-@dirrm share/gnome/evolution-data-server-%%VERSION%%/zoneinfo/Asia
-@dirrm share/gnome/evolution-data-server-%%VERSION%%/zoneinfo/Arctic
-@dirrm share/gnome/evolution-data-server-%%VERSION%%/zoneinfo/Antarctica
-@dirrm share/gnome/evolution-data-server-%%VERSION%%/zoneinfo/America/North_Dakota
-@dirrm share/gnome/evolution-data-server-%%VERSION%%/zoneinfo/America/Kentucky
-@dirrm share/gnome/evolution-data-server-%%VERSION%%/zoneinfo/America/Indiana
-@dirrm share/gnome/evolution-data-server-%%VERSION%%/zoneinfo/America
-@dirrm share/gnome/evolution-data-server-%%VERSION%%/zoneinfo/Africa
-@dirrm share/gnome/evolution-data-server-%%VERSION%%/zoneinfo
-@dirrm share/gnome/evolution-data-server-%%VERSION%%/weather
-@dirrm share/gnome/evolution-data-server-%%VERSION%%/glade
-@dirrm share/gnome/evolution-data-server-%%VERSION%%
-@dirrm share/doc/libedataserver
-@dirrm share/doc/libedata-cal
-@dirrm share/doc/libecal
-@dirrm share/doc/libebook
-@dirrm lib/evolution-data-server-%%EVO_VERSION%%/extensions
-@dirrm lib/evolution-data-server-%%EVO_VERSION%%/camel-providers
-@dirrm lib/evolution-data-server-%%EVO_VERSION%%
-@dirrm include/evolution-data-server-%%VERSION%%/libical
-@dirrm include/evolution-data-server-%%VERSION%%/libedataserverui
-@dirrm include/evolution-data-server-%%VERSION%%/libedataserver
-@dirrm include/evolution-data-server-%%VERSION%%/libedata-cal
-@dirrm include/evolution-data-server-%%VERSION%%/libedata-book
-@dirrm include/evolution-data-server-%%VERSION%%/libecal
-@dirrm include/evolution-data-server-%%VERSION%%/libebook
-@dirrm include/evolution-data-server-%%VERSION%%/groupwise
-@dirrm include/evolution-data-server-%%VERSION%%/exchange
-@dirrm include/evolution-data-server-%%VERSION%%/camel
-@dirrm include/evolution-data-server-%%VERSION%%