summaryrefslogtreecommitdiffstats
path: root/mail/evolution
diff options
context:
space:
mode:
authormarcus <marcus@df743ca5-7f9a-e211-a948-0013205c9059>2003-12-10 05:03:53 +0800
committermarcus <marcus@df743ca5-7f9a-e211-a948-0013205c9059>2003-12-10 05:03:53 +0800
commit03cdf3a8d53308eafb9b011f4699c479ed79833f (patch)
tree52976e72c6e6f17975d7833f59fa3e6d2620138b /mail/evolution
parent52fd943c8ef4cf3944e3d37320ab4898f826414b (diff)
downloadmarcuscom-ports-03cdf3a8d53308eafb9b011f4699c479ed79833f.tar
marcuscom-ports-03cdf3a8d53308eafb9b011f4699c479ed79833f.tar.gz
marcuscom-ports-03cdf3a8d53308eafb9b011f4699c479ed79833f.tar.bz2
marcuscom-ports-03cdf3a8d53308eafb9b011f4699c479ed79833f.tar.lz
marcuscom-ports-03cdf3a8d53308eafb9b011f4699c479ed79833f.tar.xz
marcuscom-ports-03cdf3a8d53308eafb9b011f4699c479ed79833f.tar.zst
marcuscom-ports-03cdf3a8d53308eafb9b011f4699c479ed79833f.zip
Update to 1.5. Note, this new version is back to requiring the Mozilla
NSS SSL libraries. Hopefully, Evo 2.0 will allow us to use OpenSSL instead. For now, this means that Evo might freeze up when dealing with encrypted data (let's hope not, though). Also new to this port release is default LDAP support, and Palm Pilot support is OFF by default. git-svn-id: svn://creme-brulee.marcuscom.com/ports/trunk@1431 df743ca5-7f9a-e211-a948-0013205c9059
Diffstat (limited to 'mail/evolution')
-rw-r--r--mail/evolution/Makefile74
-rw-r--r--mail/evolution/distinfo1
-rw-r--r--mail/evolution/files/patch-aa33
-rw-r--r--mail/evolution/files/patch-camel::camel-store.h13
-rw-r--r--mail/evolution/files/patch-camel_camel-mime-utils.c11
-rw-r--r--mail/evolution/files/patch-camel_camel-utf8.c10
-rw-r--r--mail/evolution/files/patch-camel_camel-vee-folder.c20
-rw-r--r--mail/evolution/files/patch-ltmain.sh51
-rw-r--r--mail/evolution/pkg-descr11
-rw-r--r--mail/evolution/pkg-plist862
10 files changed, 1086 insertions, 0 deletions
diff --git a/mail/evolution/Makefile b/mail/evolution/Makefile
new file mode 100644
index 000000000..cec9f2ce8
--- /dev/null
+++ b/mail/evolution/Makefile
@@ -0,0 +1,74 @@
+# New ports collection makefile for: evolution
+# Date created: 28th June 2000
+# Whom: Ade Lovett <ade@FreeBSD.org>
+#
+# $FreeBSD: ports/mail/evolution/Makefile,v 1.91 2003/09/25 03:11:21 marcus Exp $
+#
+
+PORTNAME= evolution
+PORTVERSION= 1.5
+CATEGORIES= mail gnome
+MASTER_SITES= ${MASTER_SITE_GNOME}
+MASTER_SITE_SUBDIR= sources/${PORTNAME}/1.5
+DIST_SUBDIR= gnome2
+
+MAINTAINER= gnome@FreeBSD.org
+COMMENT= An integrated mail, calendar and address book distributed suite
+
+LIB_DEPENDS= edataserver.0:${PORTSDIR}/databases/evolution-data-server \
+ nss3.1:${PORTSDIR}/security/nss
+
+RUN_DEPENDS= ${X11BASE}/lib/gnome-spell/libgnome-spell-component-0.3.so:${PORTSDIR}/textproc/gnomespell
+.if defined(WITH_PILOT)
+LIB_DEPENDS+= gpilotdconduit.2:${PORTSDIR}/palm/gnomepilot2
+.endif
+
+USE_BZIP2= yes
+USE_GMAKE= yes
+USE_BISON= yes
+USE_X_PREFIX= yes
+USE_GNOME= gnomeprefix gnomehack gnometarget intlhack
+USE_REINPLACE= yes
+GNU_CONFIGURE= yes
+CONFIGURE_ARGS= --enable-nss=yes \
+ --with-nss-includes=${LOCALBASE}/include/nss/nss \
+ --with-nss-libs=${LOCALBASE}/lib \
+ --with-nspr-includes=${LOCALBASE}/include/nspr \
+ --with-nspr-libs=${LOCALBASE}/lib \
+ --enable-openssl=no \
+ --with-sub-version="FreeBSD GNOME Team Port"
+
+EVO_VERSION= 1.5
+
+.if !defined(WITHOUT_LDAP)
+USE_OPENLDAP= yes
+CONFIGURE_ARGS+=--with-openldap=${LOCALBASE}
+.else
+CONFIGURE_ARGS+=--with-openldap=no
+.endif
+
+.if defined(WITH_PILOT)
+CONFIGURE_ARGS+= --with-pisock=${LOCALBASE} \
+ --enable-pilot-conduits=yes
+PLIST_SUB= PILOT:=""
+.else
+PLIST_SUB= PILOT:="@comment "
+.endif
+CONFIGURE_ENV= CPPFLAGS="-I${LOCALBASE}/include" \
+ LIBS="${PTHREAD_LIBS} -L${LOCALBASE}/lib"
+
+PLIST_SUB+= VERSION=${EVO_VERSION}
+PKGINSTALL= ${WRKDIR}/pkg-install
+
+pre-everything::
+ @${ECHO_MSG} ""
+ @${ECHO_MSG} "evolution has the following configurable option(s):"
+ @${ECHO_MSG} " WITH_PILOT Build Palm Pilot sync support"
+ @${ECHO_MSG} " WITHOUT_LDAP Disable LDAP support"
+ @${ECHO_MSG} ""
+
+post-install:
+ @${FIND} ${PREFIX}/share/gnome/evolution/${EVO_VERSION}/default_user \
+ -type f | ${XARGS} ${CHMOD} u+w
+
+.include <bsd.port.mk>
diff --git a/mail/evolution/distinfo b/mail/evolution/distinfo
new file mode 100644
index 000000000..b75f51e0b
--- /dev/null
+++ b/mail/evolution/distinfo
@@ -0,0 +1 @@
+MD5 (gnome2/evolution-1.5.tar.bz2) = cc820ffb5c9e91ad79d94e700262c418
diff --git a/mail/evolution/files/patch-aa b/mail/evolution/files/patch-aa
new file mode 100644
index 000000000..17a3d3d2f
--- /dev/null
+++ b/mail/evolution/files/patch-aa
@@ -0,0 +1,33 @@
+--- configure.orig Sun Dec 7 20:17:19 2003
++++ configure Tue Dec 9 14:29:13 2003
+@@ -23977,10 +23977,10 @@
+ Example: --with-nspr-libs=/usr/lib" >&2;}
+ { (exit 1); exit 1; }; }
+ else
+- nsprlibs="-ldl $with_nspr_libs/libplc4.a $with_nspr_libs/libplds4.a $with_nspr_libs/libnspr4.a $PTHREAD_LIB"
++ nsprlibs="$with_nspr_libs/libplc4.a $with_nspr_libs/libplds4.a $with_nspr_libs/libnspr4.a $PTHREAD_LIB"
+ fi
+ else
+- nsprlibs="-ldl -lplc4 -lplds4 -lnspr4 $PTHREAD_LIB"
++ nsprlibs="-lplc4 -lplds4 -lnspr4 $PTHREAD_LIB"
+ fi
+
+ echo "$as_me:$LINENO: checking for Mozilla nspr libraries" >&5
+@@ -24792,6 +24792,8 @@
+ _ACEOF
+
+ msg_ssl="yes (OpenSSL)"
++ enable_smime="yes"
++ msg_smime="yes"
+ OPENSSL_LDFLAGS="$with_openssl_libs -lssl -lcrypto $DL_LDFLAGS"
+ else
+ OPENSSL_CFLAGS=""
+@@ -27767,7 +27769,7 @@
+ idldir="$datadir/idl/evolution-$BASE_VERSION"
+
+
+-serverdir="$libdir/bonobo/servers"
++serverdir="$prefix/libdata/bonobo/servers"
+
+
+ evolutionuidir="$privdatadir/ui"
diff --git a/mail/evolution/files/patch-camel::camel-store.h b/mail/evolution/files/patch-camel::camel-store.h
new file mode 100644
index 000000000..0ab306f5a
--- /dev/null
+++ b/mail/evolution/files/patch-camel::camel-store.h
@@ -0,0 +1,13 @@
+
+$FreeBSD: ports/mail/evolution/files/patch-camel::camel-store.h,v 1.2 2003/06/11 06:16:16 marcus Exp $
+
+--- camel/camel-store.h 2001/09/04 16:45:47 1.1
++++ camel/camel-store.h 2001/09/04 16:46:32
+@@ -33,6 +33,7 @@
+ #pragma }
+ #endif /* __cplusplus }*/
+
++#include <sys/types.h>
+ #include <camel/camel-object.h>
+ #include <camel/camel-service.h>
+
diff --git a/mail/evolution/files/patch-camel_camel-mime-utils.c b/mail/evolution/files/patch-camel_camel-mime-utils.c
new file mode 100644
index 000000000..33111196a
--- /dev/null
+++ b/mail/evolution/files/patch-camel_camel-mime-utils.c
@@ -0,0 +1,11 @@
+--- camel/camel-mime-utils.c.orig Fri May 3 15:47:41 2002
++++ camel/camel-mime-utils.c Sun May 5 18:09:24 2002
+@@ -3388,6 +3388,8 @@
+ }
+ d(printf("named offset = %d\n", offset));
+ }
++
++ tm.tm_isdst = -1;
+
+ t = mktime(&tm);
+ #if defined(HAVE_TIMEZONE)
diff --git a/mail/evolution/files/patch-camel_camel-utf8.c b/mail/evolution/files/patch-camel_camel-utf8.c
new file mode 100644
index 000000000..eb89a92cf
--- /dev/null
+++ b/mail/evolution/files/patch-camel_camel-utf8.c
@@ -0,0 +1,10 @@
+--- camel/camel-utf8.c.orig Tue Dec 9 15:21:35 2003
++++ camel/camel-utf8.c Tue Dec 9 15:21:43 2003
+@@ -25,6 +25,7 @@
+ #include <config.h>
+ #endif
+
++#include <sys/types.h>
+ #include <string.h>
+
+ #include <glib.h>
diff --git a/mail/evolution/files/patch-camel_camel-vee-folder.c b/mail/evolution/files/patch-camel_camel-vee-folder.c
new file mode 100644
index 000000000..019d60919
--- /dev/null
+++ b/mail/evolution/files/patch-camel_camel-vee-folder.c
@@ -0,0 +1,20 @@
+--- camel/camel-vee-folder.c.orig Mon Jun 23 13:59:58 2003
++++ camel/camel-vee-folder.c Tue Oct 21 20:04:10 2003
+@@ -969,7 +969,7 @@
+ }
+ if ((vf->flags & CAMEL_STORE_FOLDER_PRIVATE) == 0) {
+ if (still) {
+- if (g_hash_table_lookup_extended(unmatched_uids, uid, (void **)&oldkey, (void **)&n)) {
++ if (g_hash_table_lookup_extended(unmatched_uids, uid, (void **)&oldkey, (void **)&n) && n > 0) {
+ if (n == 1) {
+ g_hash_table_remove(unmatched_uids, oldkey);
+ if (vee_folder_add_uid(folder_unmatched, source, oldkey+8, hash))
+@@ -1290,7 +1290,7 @@
+ camel_folder_change_info_add_uid(folder_unmatched->changes, oldkey);
+ }
+ } else {
+- if (g_hash_table_lookup_extended(unmatched_uids, vuid, (void **)&oldkey, (void **)&n)) {
++ if (g_hash_table_lookup_extended(unmatched_uids, vuid, (void **)&oldkey, (void **)&n) && n > 0) {
+ g_hash_table_remove(unmatched_uids, oldkey);
+ g_free(oldkey);
+ }
diff --git a/mail/evolution/files/patch-ltmain.sh b/mail/evolution/files/patch-ltmain.sh
new file mode 100644
index 000000000..58384ee38
--- /dev/null
+++ b/mail/evolution/files/patch-ltmain.sh
@@ -0,0 +1,51 @@
+--- ltmain.sh.orig Sat Dec 6 14:47:45 2003
++++ ltmain.sh Tue Dec 9 14:09:01 2003
+@@ -1280,7 +1280,7 @@
+ esac
+ elif test "X$arg" = "X-lc_r"; then
+ case $host in
+- *-*-openbsd* | *-*-freebsd*)
++ *-*-openbsd* | *-*-freebsd4*)
+ # Do not include libc_r directly, use -pthread flag.
+ continue
+ ;;
+@@ -1290,8 +1290,16 @@
+ continue
+ ;;
+
++ -pthread)
++ compile_command="$compile_command -pthread"
++ finalize_command="$finalize_command -pthread"
++ compiler_flags="$compiler_flags -pthread"
++ continue
++ ;;
++
+ -module)
+ module=yes
++ build_old_libs=no
+ continue
+ ;;
+
+@@ -3000,6 +3008,9 @@
+ # problems, so we reset it completely
+ verstring=
+ ;;
++ *-*-freebsd*)
++ # FreeBSD doesn't need this...
++ ;;
+ *)
+ verstring="0.0"
+ ;;
+@@ -5428,10 +5439,12 @@
+ fi
+
+ # Install the pseudo-library for information purposes.
++ if /usr/bin/false; then
+ name=`$echo "X$file" | $Xsed -e 's%^.*/%%'`
+ instname="$dir/$name"i
+ $show "$install_prog $instname $destdir/$name"
+ $run eval "$install_prog $instname $destdir/$name" || exit $?
++ fi
+
+ # Maybe install the static library, too.
+ test -n "$old_library" && staticlibs="$staticlibs $dir/$old_library"
diff --git a/mail/evolution/pkg-descr b/mail/evolution/pkg-descr
new file mode 100644
index 000000000..5e9708594
--- /dev/null
+++ b/mail/evolution/pkg-descr
@@ -0,0 +1,11 @@
+Ximian Evolution[tm] is the premier personal and workgroup information
+management solution for UNIX. The software seamlessly integrates email,
+calendaring, meeting scheduling, contact management and online task lists in
+one powerful, fast, and easy to use application. Ximian Evolution also
+delivers a comprehensive set of features that help you keep your work
+organized and your projects on track. Automatic email indexing keeps your
+information at your fingertips. The unique Ximian vFolders[tm] are virtual
+folders you use to create and save powerful contextual views of your email
+messages.
+
+WWW: http://www.ximian.com/products/ximian_evolution/
diff --git a/mail/evolution/pkg-plist b/mail/evolution/pkg-plist
new file mode 100644
index 000000000..f12935da4
--- /dev/null
+++ b/mail/evolution/pkg-plist
@@ -0,0 +1,862 @@
+bin/evolution-%%VERSION%%
+etc/gconf/gconf.xml.defaults/apps/evolution/%gconf.xml
+etc/gconf/gconf.xml.defaults/apps/evolution/addressbook/%gconf.xml
+etc/gconf/gconf.xml.defaults/apps/evolution/addressbook/completion/%gconf.xml
+etc/gconf/gconf.xml.defaults/apps/evolution/addressbook/select_names/%gconf.xml
+etc/gconf/gconf.xml.defaults/apps/evolution/calendar/%gconf.xml
+etc/gconf/gconf.xml.defaults/apps/evolution/calendar/date_navigator/%gconf.xml
+etc/gconf/gconf.xml.defaults/apps/evolution/calendar/display/%gconf.xml
+etc/gconf/gconf.xml.defaults/apps/evolution/calendar/notify/%gconf.xml
+etc/gconf/gconf.xml.defaults/apps/evolution/calendar/other/%gconf.xml
+etc/gconf/gconf.xml.defaults/apps/evolution/calendar/prompts/%gconf.xml
+etc/gconf/gconf.xml.defaults/apps/evolution/calendar/tasks/%gconf.xml
+etc/gconf/gconf.xml.defaults/apps/evolution/calendar/tasks/colors/%gconf.xml
+etc/gconf/gconf.xml.defaults/apps/evolution/mail/%gconf.xml
+etc/gconf/gconf.xml.defaults/apps/evolution/mail/composer/%gconf.xml
+etc/gconf/gconf.xml.defaults/apps/evolution/mail/composer/view/%gconf.xml
+etc/gconf/gconf.xml.defaults/apps/evolution/mail/display/%gconf.xml
+etc/gconf/gconf.xml.defaults/apps/evolution/mail/display/fonts/%gconf.xml
+etc/gconf/gconf.xml.defaults/apps/evolution/mail/filters/%gconf.xml
+etc/gconf/gconf.xml.defaults/apps/evolution/mail/format/%gconf.xml
+etc/gconf/gconf.xml.defaults/apps/evolution/mail/junk/%gconf.xml
+etc/gconf/gconf.xml.defaults/apps/evolution/mail/notify/%gconf.xml
+etc/gconf/gconf.xml.defaults/apps/evolution/mail/prompts/%gconf.xml
+etc/gconf/gconf.xml.defaults/apps/evolution/mail/trash/%gconf.xml
+etc/gconf/gconf.xml.defaults/apps/evolution/shell/%gconf.xml
+etc/gconf/gconf.xml.defaults/apps/evolution/shell/default_folders/%gconf.xml
+etc/gconf/gconf.xml.defaults/apps/evolution/shell/offline/%gconf.xml
+etc/gconf/gconf.xml.defaults/apps/evolution/shell/view_defaults/%gconf.xml
+etc/gconf/gconf.xml.defaults/apps/evolution/shell/view_defaults/folder_bar/%gconf.xml
+etc/gconf/gconf.xml.defaults/apps/evolution/shell/view_defaults/shortcut_bar/%gconf.xml
+etc/gconf/gconf.xml.defaults/schemas/apps/evolution/%gconf.xml
+etc/gconf/gconf.xml.defaults/schemas/apps/evolution/addressbook/%gconf.xml
+etc/gconf/gconf.xml.defaults/schemas/apps/evolution/addressbook/completion/%gconf.xml
+etc/gconf/gconf.xml.defaults/schemas/apps/evolution/addressbook/select_names/%gconf.xml
+etc/gconf/gconf.xml.defaults/schemas/apps/evolution/calendar/%gconf.xml
+etc/gconf/gconf.xml.defaults/schemas/apps/evolution/calendar/date_navigator/%gconf.xml
+etc/gconf/gconf.xml.defaults/schemas/apps/evolution/calendar/display/%gconf.xml
+etc/gconf/gconf.xml.defaults/schemas/apps/evolution/calendar/notify/%gconf.xml
+etc/gconf/gconf.xml.defaults/schemas/apps/evolution/calendar/other/%gconf.xml
+etc/gconf/gconf.xml.defaults/schemas/apps/evolution/calendar/prompts/%gconf.xml
+etc/gconf/gconf.xml.defaults/schemas/apps/evolution/calendar/tasks/%gconf.xml
+etc/gconf/gconf.xml.defaults/schemas/apps/evolution/calendar/tasks/colors/%gconf.xml
+etc/gconf/gconf.xml.defaults/schemas/apps/evolution/mail/%gconf.xml
+etc/gconf/gconf.xml.defaults/schemas/apps/evolution/mail/composer/%gconf.xml
+etc/gconf/gconf.xml.defaults/schemas/apps/evolution/mail/composer/view/%gconf.xml
+etc/gconf/gconf.xml.defaults/schemas/apps/evolution/mail/display/%gconf.xml
+etc/gconf/gconf.xml.defaults/schemas/apps/evolution/mail/display/fonts/%gconf.xml
+etc/gconf/gconf.xml.defaults/schemas/apps/evolution/mail/filters/%gconf.xml
+etc/gconf/gconf.xml.defaults/schemas/apps/evolution/mail/format/%gconf.xml
+etc/gconf/gconf.xml.defaults/schemas/apps/evolution/mail/junk/%gconf.xml
+etc/gconf/gconf.xml.defaults/schemas/apps/evolution/mail/notify/%gconf.xml
+etc/gconf/gconf.xml.defaults/schemas/apps/evolution/mail/prompts/%gconf.xml
+etc/gconf/gconf.xml.defaults/schemas/apps/evolution/mail/trash/%gconf.xml
+etc/gconf/gconf.xml.defaults/schemas/apps/evolution/shell/%gconf.xml
+etc/gconf/gconf.xml.defaults/schemas/apps/evolution/shell/default_folders/%gconf.xml
+etc/gconf/gconf.xml.defaults/schemas/apps/evolution/shell/offline/%gconf.xml
+etc/gconf/gconf.xml.defaults/schemas/apps/evolution/shell/view_defaults/%gconf.xml
+etc/gconf/gconf.xml.defaults/schemas/apps/evolution/shell/view_defaults/folder_bar/%gconf.xml
+etc/gconf/gconf.xml.defaults/schemas/apps/evolution/shell/view_defaults/shortcut_bar/%gconf.xml
+etc/gconf/schemas/apps_evolution_addressbook-%%VERSION%%.schemas
+etc/gconf/schemas/apps_evolution_calendar-%%VERSION%%.schemas
+etc/gconf/schemas/apps_evolution_shell-%%VERSION%%.schemas
+etc/gconf/schemas/evolution-mail-%%VERSION%%.schemas
+include/evolution-%%VERSION%%/camel/broken-date-parser.h
+include/evolution-%%VERSION%%/camel/camel-address.h
+include/evolution-%%VERSION%%/camel/camel-arg.h
+include/evolution-%%VERSION%%/camel/camel-block-file.h
+include/evolution-%%VERSION%%/camel/camel-certdb.h
+include/evolution-%%VERSION%%/camel/camel-charset-map.h
+include/evolution-%%VERSION%%/camel/camel-cipher-context.h
+include/evolution-%%VERSION%%/camel/camel-data-cache.h
+include/evolution-%%VERSION%%/camel/camel-data-wrapper.h
+include/evolution-%%VERSION%%/camel/camel-digest-folder.h
+include/evolution-%%VERSION%%/camel/camel-digest-store.h
+include/evolution-%%VERSION%%/camel/camel-digest-summary.h
+include/evolution-%%VERSION%%/camel/camel-disco-diary.h
+include/evolution-%%VERSION%%/camel/camel-disco-folder.h
+include/evolution-%%VERSION%%/camel/camel-disco-store.h
+include/evolution-%%VERSION%%/camel/camel-exception-list.def
+include/evolution-%%VERSION%%/camel/camel-exception.h
+include/evolution-%%VERSION%%/camel/camel-file-utils.h
+include/evolution-%%VERSION%%/camel/camel-filter-driver.h
+include/evolution-%%VERSION%%/camel/camel-filter-search.h
+include/evolution-%%VERSION%%/camel/camel-folder-search.h
+include/evolution-%%VERSION%%/camel/camel-folder-summary.h
+include/evolution-%%VERSION%%/camel/camel-folder-thread.h
+include/evolution-%%VERSION%%/camel/camel-folder.h
+include/evolution-%%VERSION%%/camel/camel-gpg-context.h
+include/evolution-%%VERSION%%/camel/camel-http-stream.h
+include/evolution-%%VERSION%%/camel/camel-i18n.h
+include/evolution-%%VERSION%%/camel/camel-imap-command.h
+include/evolution-%%VERSION%%/camel/camel-imap-folder.h
+include/evolution-%%VERSION%%/camel/camel-imap-message-cache.h
+include/evolution-%%VERSION%%/camel/camel-imap-search.h
+include/evolution-%%VERSION%%/camel/camel-imap-store-summary.h
+include/evolution-%%VERSION%%/camel/camel-imap-store.h
+include/evolution-%%VERSION%%/camel/camel-imap-summary.h
+include/evolution-%%VERSION%%/camel/camel-imap-types.h
+include/evolution-%%VERSION%%/camel/camel-imap-utils.h
+include/evolution-%%VERSION%%/camel/camel-imap-wrapper.h
+include/evolution-%%VERSION%%/camel/camel-index.h
+include/evolution-%%VERSION%%/camel/camel-internet-address.h
+include/evolution-%%VERSION%%/camel/camel-junk-plugin.h
+include/evolution-%%VERSION%%/camel/camel-local-folder.h
+include/evolution-%%VERSION%%/camel/camel-local-store.h
+include/evolution-%%VERSION%%/camel/camel-local-summary.h
+include/evolution-%%VERSION%%/camel/camel-lock-client.h
+include/evolution-%%VERSION%%/camel/camel-lock.h
+include/evolution-%%VERSION%%/camel/camel-maildir-folder.h
+include/evolution-%%VERSION%%/camel/camel-maildir-store.h
+include/evolution-%%VERSION%%/camel/camel-maildir-summary.h
+include/evolution-%%VERSION%%/camel/camel-mbox-folder.h
+include/evolution-%%VERSION%%/camel/camel-mbox-store.h
+include/evolution-%%VERSION%%/camel/camel-mbox-summary.h
+include/evolution-%%VERSION%%/camel/camel-medium.h
+include/evolution-%%VERSION%%/camel/camel-mh-folder.h
+include/evolution-%%VERSION%%/camel/camel-mh-store.h
+include/evolution-%%VERSION%%/camel/camel-mh-summary.h
+include/evolution-%%VERSION%%/camel/camel-mime-filter-basic.h
+include/evolution-%%VERSION%%/camel/camel-mime-filter-bestenc.h
+include/evolution-%%VERSION%%/camel/camel-mime-filter-canon.h
+include/evolution-%%VERSION%%/camel/camel-mime-filter-charset.h
+include/evolution-%%VERSION%%/camel/camel-mime-filter-crlf.h
+include/evolution-%%VERSION%%/camel/camel-mime-filter-enriched.h
+include/evolution-%%VERSION%%/camel/camel-mime-filter-from.h
+include/evolution-%%VERSION%%/camel/camel-mime-filter-html.h
+include/evolution-%%VERSION%%/camel/camel-mime-filter-index.h
+include/evolution-%%VERSION%%/camel/camel-mime-filter-linewrap.h
+include/evolution-%%VERSION%%/camel/camel-mime-filter-save.h
+include/evolution-%%VERSION%%/camel/camel-mime-filter-tohtml.h
+include/evolution-%%VERSION%%/camel/camel-mime-filter-windows.h
+include/evolution-%%VERSION%%/camel/camel-mime-filter.h
+include/evolution-%%VERSION%%/camel/camel-mime-message.h
+include/evolution-%%VERSION%%/camel/camel-mime-parser.h
+include/evolution-%%VERSION%%/camel/camel-mime-part-utils.h
+include/evolution-%%VERSION%%/camel/camel-mime-part.h
+include/evolution-%%VERSION%%/camel/camel-mime-utils.h
+include/evolution-%%VERSION%%/camel/camel-movemail.h
+include/evolution-%%VERSION%%/camel/camel-multipart-encrypted.h
+include/evolution-%%VERSION%%/camel/camel-multipart-signed.h
+include/evolution-%%VERSION%%/camel/camel-multipart.h
+include/evolution-%%VERSION%%/camel/camel-object.h
+include/evolution-%%VERSION%%/camel/camel-operation.h
+include/evolution-%%VERSION%%/camel/camel-partition-table.h
+include/evolution-%%VERSION%%/camel/camel-pop3-engine.h
+include/evolution-%%VERSION%%/camel/camel-pop3-folder.h
+include/evolution-%%VERSION%%/camel/camel-pop3-store.h
+include/evolution-%%VERSION%%/camel/camel-pop3-stream.h
+include/evolution-%%VERSION%%/camel/camel-provider.h
+include/evolution-%%VERSION%%/camel/camel-sasl-anonymous.h
+include/evolution-%%VERSION%%/camel/camel-sasl-cram-md5.h
+include/evolution-%%VERSION%%/camel/camel-sasl-digest-md5.h
+include/evolution-%%VERSION%%/camel/camel-sasl-gssapi.h
+include/evolution-%%VERSION%%/camel/camel-sasl-kerberos4.h
+include/evolution-%%VERSION%%/camel/camel-sasl-login.h
+include/evolution-%%VERSION%%/camel/camel-sasl-ntlm.h
+include/evolution-%%VERSION%%/camel/camel-sasl-plain.h
+include/evolution-%%VERSION%%/camel/camel-sasl-popb4smtp.h
+include/evolution-%%VERSION%%/camel/camel-sasl.h
+include/evolution-%%VERSION%%/camel/camel-seekable-stream.h
+include/evolution-%%VERSION%%/camel/camel-seekable-substream.h
+include/evolution-%%VERSION%%/camel/camel-sendmail-transport.h
+include/evolution-%%VERSION%%/camel/camel-service.h
+include/evolution-%%VERSION%%/camel/camel-session.h
+include/evolution-%%VERSION%%/camel/camel-smime-context.h
+include/evolution-%%VERSION%%/camel/camel-smtp-transport.h
+include/evolution-%%VERSION%%/camel/camel-spool-folder.h
+include/evolution-%%VERSION%%/camel/camel-spool-store.h
+include/evolution-%%VERSION%%/camel/camel-spool-summary.h
+include/evolution-%%VERSION%%/camel/camel-store-summary.h
+include/evolution-%%VERSION%%/camel/camel-store.h
+include/evolution-%%VERSION%%/camel/camel-stream-buffer.h
+include/evolution-%%VERSION%%/camel/camel-stream-filter.h
+include/evolution-%%VERSION%%/camel/camel-stream-fs.h
+include/evolution-%%VERSION%%/camel/camel-stream-mem.h
+include/evolution-%%VERSION%%/camel/camel-stream-null.h
+include/evolution-%%VERSION%%/camel/camel-stream-process.h
+include/evolution-%%VERSION%%/camel/camel-stream.h
+include/evolution-%%VERSION%%/camel/camel-string-utils.h
+include/evolution-%%VERSION%%/camel/camel-tcp-stream-raw.h
+include/evolution-%%VERSION%%/camel/camel-tcp-stream-ssl.h
+include/evolution-%%VERSION%%/camel/camel-tcp-stream.h
+include/evolution-%%VERSION%%/camel/camel-text-index.h
+include/evolution-%%VERSION%%/camel/camel-transport.h
+include/evolution-%%VERSION%%/camel/camel-types.h
+include/evolution-%%VERSION%%/camel/camel-uid-cache.h
+include/evolution-%%VERSION%%/camel/camel-url-scanner.h
+include/evolution-%%VERSION%%/camel/camel-url.h
+include/evolution-%%VERSION%%/camel/camel-utf8.h
+include/evolution-%%VERSION%%/camel/camel-vee-folder.h
+include/evolution-%%VERSION%%/camel/camel-vee-store.h
+include/evolution-%%VERSION%%/camel/camel-vtrash-folder.h
+include/evolution-%%VERSION%%/camel/camel.h
+include/evolution-%%VERSION%%/e-conduit/e-pilot-map.h
+include/evolution-%%VERSION%%/e-conduit/e-pilot-settings.h
+include/evolution-%%VERSION%%/e-conduit/e-pilot-util.h
+include/evolution-%%VERSION%%/e-util/e-account-list.h
+include/evolution-%%VERSION%%/e-util/e-account.h
+include/evolution-%%VERSION%%/e-util/e-categories-config.h
+include/evolution-%%VERSION%%/e-util/e-categories-master-list-wombat.h
+include/evolution-%%VERSION%%/e-util/e-component-listener.h
+include/evolution-%%VERSION%%/e-util/e-config-listener.h
+include/evolution-%%VERSION%%/e-util/e-corba-utils.h
+include/evolution-%%VERSION%%/e-util/e-dialog-utils.h
+include/evolution-%%VERSION%%/e-util/e-dialog-widgets.h
+include/evolution-%%VERSION%%/e-util/e-gtk-utils.h
+include/evolution-%%VERSION%%/e-util/e-gui-utils.h
+include/evolution-%%VERSION%%/e-util/e-host-utils.h
+include/evolution-%%VERSION%%/e-util/e-html-utils.h
+include/evolution-%%VERSION%%/e-util/e-iterator.h
+include/evolution-%%VERSION%%/e-util/e-lang-utils.h
+include/evolution-%%VERSION%%/e-util/e-list-iterator.h
+include/evolution-%%VERSION%%/e-util/e-list.h
+include/evolution-%%VERSION%%/e-util/e-memory.h
+include/evolution-%%VERSION%%/e-util/e-meta.h
+include/evolution-%%VERSION%%/e-util/e-mktemp.h
+include/evolution-%%VERSION%%/e-util/e-msgport.h
+include/evolution-%%VERSION%%/e-util/e-passwords.h
+include/evolution-%%VERSION%%/e-util/e-path.h
+include/evolution-%%VERSION%%/e-util/e-request.h
+include/evolution-%%VERSION%%/e-util/e-sexp.h
+include/evolution-%%VERSION%%/e-util/e-time-utils.h
+include/evolution-%%VERSION%%/e-util/e-trie.h
+include/evolution-%%VERSION%%/e-util/e-uid.h
+include/evolution-%%VERSION%%/e-util/e-url.h
+include/evolution-%%VERSION%%/e-util/e-xml-hash-utils.h
+include/evolution-%%VERSION%%/e-util/md5-utils.h
+include/evolution-%%VERSION%%/importer/GNOME_Evolution_Importer.h
+include/evolution-%%VERSION%%/importer/evolution-importer-client.h
+include/evolution-%%VERSION%%/importer/evolution-importer-listener.h
+include/evolution-%%VERSION%%/importer/evolution-importer.h
+include/evolution-%%VERSION%%/importer/evolution-intelligent-importer.h
+include/evolution-%%VERSION%%/shell/Evolution.h
+include/evolution-%%VERSION%%/shell/e-activity-handler.h
+include/evolution-%%VERSION%%/shell/e-icon-factory.h
+include/evolution-%%VERSION%%/shell/e-shell-corba-icon-utils.h
+include/evolution-%%VERSION%%/shell/e-shell-utils.h
+include/evolution-%%VERSION%%/shell/e-task-bar.h
+include/evolution-%%VERSION%%/shell/e-task-widget.h
+include/evolution-%%VERSION%%/shell/evolution-config-control.h
+include/evolution-%%VERSION%%/shell/evolution-shell-component-utils.h
+include/evolution-%%VERSION%%/shell/evolution-wizard.h
+include/evolution-%%VERSION%%/widgets/e-calendar-item.h
+include/evolution-%%VERSION%%/widgets/e-calendar.h
+include/evolution-%%VERSION%%/widgets/e-cell-date-edit.h
+include/evolution-%%VERSION%%/widgets/e-cell-percent.h
+include/evolution-%%VERSION%%/widgets/e-cell-renderer-combo.h
+include/evolution-%%VERSION%%/widgets/e-charset-picker.h
+include/evolution-%%VERSION%%/widgets/e-clipped-label.h
+include/evolution-%%VERSION%%/widgets/e-combo-button.h
+include/evolution-%%VERSION%%/widgets/e-combo-cell-editable.h
+include/evolution-%%VERSION%%/widgets/e-config-page.h
+include/evolution-%%VERSION%%/widgets/e-dateedit.h
+include/evolution-%%VERSION%%/widgets/e-dropdown-button.h
+include/evolution-%%VERSION%%/widgets/e-map.h
+include/evolution-%%VERSION%%/widgets/e-multi-config-dialog.h
+include/evolution-%%VERSION%%/widgets/e-search-bar.h
+include/evolution-%%VERSION%%/widgets/e-source-option-menu.h
+include/evolution-%%VERSION%%/widgets/e-source-selector.h
+include/evolution-%%VERSION%%/widgets/e-title-bar.h
+include/evolution-%%VERSION%%/widgets/e-url-entry.h
+lib/evolution/%%VERSION%%/camel-providers/libcamelimap.so
+lib/evolution/%%VERSION%%/camel-providers/libcamelimap.urls
+lib/evolution/%%VERSION%%/camel-providers/libcamellocal.so
+lib/evolution/%%VERSION%%/camel-providers/libcamellocal.urls
+lib/evolution/%%VERSION%%/camel-providers/libcamelpop3.so
+lib/evolution/%%VERSION%%/camel-providers/libcamelpop3.urls
+lib/evolution/%%VERSION%%/camel-providers/libcamelsendmail.so
+lib/evolution/%%VERSION%%/camel-providers/libcamelsendmail.urls
+lib/evolution/%%VERSION%%/camel-providers/libcamelsmtp.so
+lib/evolution/%%VERSION%%/camel-providers/libcamelsmtp.urls
+lib/evolution/%%VERSION%%/components/libevolution-addressbook.so
+lib/evolution/%%VERSION%%/components/libevolution-calendar.so
+lib/evolution/%%VERSION%%/components/libevolution-mail.so
+lib/evolution/%%VERSION%%/evolution-calendar-importers/libevolution-calendar-importers.so
+lib/evolution/%%VERSION%%/libcamel.so
+lib/evolution/%%VERSION%%/libcamel.so.0
+lib/evolution/%%VERSION%%/libeconduit.so
+lib/evolution/%%VERSION%%/libeconduit.so.0
+lib/evolution/%%VERSION%%/libemiscwidgets.so
+lib/evolution/%%VERSION%%/libemiscwidgets.so.0
+lib/evolution/%%VERSION%%/libeselectnames.so
+lib/evolution/%%VERSION%%/libeselectnames.so.0
+lib/evolution/%%VERSION%%/libeshell.so
+lib/evolution/%%VERSION%%/libeshell.so.0
+lib/evolution/%%VERSION%%/libeutil.so
+lib/evolution/%%VERSION%%/libeutil.so.0
+lib/evolution/%%VERSION%%/libevolution-a11y.so
+lib/evolution/%%VERSION%%/libevolution-a11y.so.0
+lib/evolution/%%VERSION%%/libevolution-calendar-a11y.so
+lib/evolution/%%VERSION%%/libevolution-calendar-a11y.so.0
+lib/evolution/%%VERSION%%/libevolution-importer.so
+lib/evolution/%%VERSION%%/libevolution-importer.so.0
+lib/evolution/%%VERSION%%/libevolution-widgets-a11y.so
+lib/evolution/%%VERSION%%/libevolution-widgets-a11y.so.0
+%%PILOT:%%lib/gnome-pilot/conduits/libeaddress_conduit.so
+%%PILOT:%%lib/gnome-pilot/conduits/libecalendar_conduit.so
+%%PILOT:%%lib/gnome-pilot/conduits/libetodo_conduit.so
+libdata/bonobo/servers/GNOME_Evolution_Addressbook_%%VERSION%%.server
+libdata/bonobo/servers/GNOME_Evolution_Addressbook_SelectNames_%%VERSION%%.server
+libdata/bonobo/servers/GNOME_Evolution_Calendar_%%VERSION%%.server
+libdata/bonobo/servers/GNOME_Evolution_Calendar_AlarmNotify_%%VERSION%%.server
+libdata/bonobo/servers/GNOME_Evolution_Calendar_Importer_%%VERSION%%.server
+libdata/bonobo/servers/GNOME_Evolution_Mail_%%VERSION%%.server
+libdata/bonobo/servers/GNOME_Evolution_Shell_%%VERSION%%.server
+libdata/pkgconfig/camel-%%VERSION%%.pc
+libdata/pkgconfig/evolution-shell-%%VERSION%%.pc
+libexec/evolution-mbox-upgrade
+libexec/evolution/%%VERSION%%/camel/camel-index-control
+libexec/evolution/%%VERSION%%/camel/camel-lock-helper
+libexec/evolution/%%VERSION%%/evolution-alarm-notify
+libexec/evolution/%%VERSION%%/killev
+share/gnome/applications/evolution-%%VERSION%%.desktop
+share/gnome/evolution/%%VERSION%%/addresstypes.xml
+share/gnome/evolution/%%VERSION%%/default_user/addressbook-sources.xml
+share/gnome/evolution/%%VERSION%%/default_user/local/Calendar/calendar.ics
+share/gnome/evolution/%%VERSION%%/default_user/local/Calendar/folder-metadata.xml
+share/gnome/evolution/%%VERSION%%/default_user/local/Contacts/create-initial
+share/gnome/evolution/%%VERSION%%/default_user/local/Contacts/folder-metadata.xml
+share/gnome/evolution/%%VERSION%%/default_user/local/Drafts/folder-metadata.xml
+share/gnome/evolution/%%VERSION%%/default_user/local/Drafts/mbox
+share/gnome/evolution/%%VERSION%%/default_user/local/Inbox/folder-metadata.xml
+share/gnome/evolution/%%VERSION%%/default_user/local/Inbox/mbox
+share/gnome/evolution/%%VERSION%%/default_user/local/Outbox/folder-metadata.xml
+share/gnome/evolution/%%VERSION%%/default_user/local/Outbox/mbox
+share/gnome/evolution/%%VERSION%%/default_user/local/Sent/folder-metadata.xml
+share/gnome/evolution/%%VERSION%%/default_user/local/Sent/mbox
+share/gnome/evolution/%%VERSION%%/default_user/local/Tasks/folder-metadata.xml
+share/gnome/evolution/%%VERSION%%/default_user/local/Tasks/tasks.ics
+share/gnome/evolution/%%VERSION%%/default_user/local/Trash/folder-metadata.xml
+share/gnome/evolution/%%VERSION%%/default_user/searches.xml
+share/gnome/evolution/%%VERSION%%/default_user/vfolders.xml
+share/gnome/evolution/%%VERSION%%/ecps/medbook.ecps
+share/gnome/evolution/%%VERSION%%/ecps/phonelist.ecps
+share/gnome/evolution/%%VERSION%%/ecps/smallbook.ecps
+share/gnome/evolution/%%VERSION%%/etspec/e-addressbook-view.etspec
+share/gnome/evolution/%%VERSION%%/etspec/e-cal-list-view.etspec
+share/gnome/evolution/%%VERSION%%/etspec/e-calendar-table.etspec
+share/gnome/evolution/%%VERSION%%/etspec/e-contact-list-editor.etspec
+share/gnome/evolution/%%VERSION%%/etspec/e-meeting-time-sel.etspec
+share/gnome/evolution/%%VERSION%%/etspec/e-select-names-section.etspec
+share/gnome/evolution/%%VERSION%%/etspec/e-select-names.etspec
+share/gnome/evolution/%%VERSION%%/etspec/e-storage-set-view.etspec
+share/gnome/evolution/%%VERSION%%/etspec/message-list.etspec
+share/gnome/evolution/%%VERSION%%/filtertypes.xml
+share/gnome/evolution/%%VERSION%%/glade/alarm-notify.glade
+share/gnome/evolution/%%VERSION%%/glade/alarm-options.glade
+share/gnome/evolution/%%VERSION%%/glade/alarm-page.glade
+share/gnome/evolution/%%VERSION%%/glade/cal-prefs-dialog.glade
+share/gnome/evolution/%%VERSION%%/glade/contact-editor.glade
+share/gnome/evolution/%%VERSION%%/glade/contact-list-editor.glade
+share/gnome/evolution/%%VERSION%%/glade/e-active-connection-dialog.glade
+share/gnome/evolution/%%VERSION%%/glade/e-contact-print.glade
+share/gnome/evolution/%%VERSION%%/glade/e-delegate-dialog.glade
+share/gnome/evolution/%%VERSION%%/glade/e-folder-list.glade
+share/gnome/evolution/%%VERSION%%/glade/e-itip-control.glade
+share/gnome/evolution/%%VERSION%%/glade/e-msg-composer-attachment.glade
+share/gnome/evolution/%%VERSION%%/glade/e-shell-config-default-folders.glade
+share/gnome/evolution/%%VERSION%%/glade/e-shell-folder-creation-dialog.glade
+share/gnome/evolution/%%VERSION%%/glade/e-shell-shared-folder-picker-dialog.glade
+share/gnome/evolution/%%VERSION%%/glade/e-timezone-dialog.glade
+share/gnome/evolution/%%VERSION%%/glade/eab-contact-commit-duplicate-detected.glade
+share/gnome/evolution/%%VERSION%%/glade/eab-contact-duplicate-detected.glade
+share/gnome/evolution/%%VERSION%%/glade/event-page.glade
+share/gnome/evolution/%%VERSION%%/glade/evolution-startup-wizard.glade
+share/gnome/evolution/%%VERSION%%/glade/evolution.png
+share/gnome/evolution/%%VERSION%%/glade/filter.glade
+share/gnome/evolution/%%VERSION%%/glade/flag-for-followup-48.png
+share/gnome/evolution/%%VERSION%%/glade/fulladdr.glade
+share/gnome/evolution/%%VERSION%%/glade/fullname.glade
+share/gnome/evolution/%%VERSION%%/glade/goto-dialog.glade
+share/gnome/evolution/%%VERSION%%/glade/import.glade
+share/gnome/evolution/%%VERSION%%/glade/import.png
+share/gnome/evolution/%%VERSION%%/glade/ldap-config.glade
+share/gnome/evolution/%%VERSION%%/glade/local-config.glade
+share/gnome/evolution/%%VERSION%%/glade/mail-config-druid-account-name.png
+share/gnome/evolution/%%VERSION%%/glade/mail-config-druid-identity.png
+share/gnome/evolution/%%VERSION%%/glade/mail-config-druid-receive.png
+share/gnome/evolution/%%VERSION%%/glade/mail-config-druid-send.png
+share/gnome/evolution/%%VERSION%%/glade/mail-config-druid.png
+share/gnome/evolution/%%VERSION%%/glade/mail-config.glade
+share/gnome/evolution/%%VERSION%%/glade/mail-search.glade
+share/gnome/evolution/%%VERSION%%/glade/mail-security.glade
+share/gnome/evolution/%%VERSION%%/glade/meeting-page.glade
+share/gnome/evolution/%%VERSION%%/glade/message-tags.glade
+share/gnome/evolution/%%VERSION%%/glade/new-calendar.glade
+share/gnome/evolution/%%VERSION%%/glade/new-task-list.glade
+share/gnome/evolution/%%VERSION%%/glade/recurrence-page.glade
+share/gnome/evolution/%%VERSION%%/glade/schedule-page.glade
+share/gnome/evolution/%%VERSION%%/glade/select-names.glade
+share/gnome/evolution/%%VERSION%%/glade/smime-ui.glade
+share/gnome/evolution/%%VERSION%%/glade/subscribe-dialog.glade
+share/gnome/evolution/%%VERSION%%/glade/task-details-page.glade
+share/gnome/evolution/%%VERSION%%/glade/task-page.glade
+share/gnome/evolution/%%VERSION%%/glade/thankyou.png
+share/gnome/evolution/%%VERSION%%/glade/timezone-48.png
+share/gnome/evolution/%%VERSION%%/images/16_copy.png
+share/gnome/evolution/%%VERSION%%/images/16_customize.png
+share/gnome/evolution/%%VERSION%%/images/16_cut.png
+share/gnome/evolution/%%VERSION%%/images/16_paste.png
+share/gnome/evolution/%%VERSION%%/images/about-box.png
+share/gnome/evolution/%%VERSION%%/images/alarm.png
+share/gnome/evolution/%%VERSION%%/images/all_contacts.xpm
+share/gnome/evolution/%%VERSION%%/images/apply-filters-16.xpm
+share/gnome/evolution/%%VERSION%%/images/appointment-reminder-excl.png
+share/gnome/evolution/%%VERSION%%/images/appointment-reminder.png
+share/gnome/evolution/%%VERSION%%/images/bcg.png
+share/gnome/evolution/%%VERSION%%/images/briefcase.png
+share/gnome/evolution/%%VERSION%%/images/butterfly.png
+share/gnome/evolution/%%VERSION%%/images/buttons/add-attachment.png
+share/gnome/evolution/%%VERSION%%/images/buttons/add-service.png
+share/gnome/evolution/%%VERSION%%/images/buttons/arrow-left-24.png
+share/gnome/evolution/%%VERSION%%/images/buttons/arrow-right-24.png
+share/gnome/evolution/%%VERSION%%/images/buttons/compose-message.png
+share/gnome/evolution/%%VERSION%%/images/buttons/copy-message.png
+share/gnome/evolution/%%VERSION%%/images/buttons/copy.png
+share/gnome/evolution/%%VERSION%%/images/buttons/cut.png
+share/gnome/evolution/%%VERSION%%/images/buttons/dayview.xpm
+share/gnome/evolution/%%VERSION%%/images/buttons/delete-message.png
+share/gnome/evolution/%%VERSION%%/images/buttons/fetch-mail.png
+share/gnome/evolution/%%VERSION%%/images/buttons/forward.png
+share/gnome/evolution/%%VERSION%%/images/buttons/goto-24.png
+share/gnome/evolution/%%VERSION%%/images/buttons/listview.xpm
+share/gnome/evolution/%%VERSION%%/images/buttons/monthview.xpm
+share/gnome/evolution/%%VERSION%%/images/buttons/move-message.png
+share/gnome/evolution/%%VERSION%%/images/buttons/new_appointment.png
+share/gnome/evolution/%%VERSION%%/images/buttons/new_task.png
+share/gnome/evolution/%%VERSION%%/images/buttons/next-message.png
+share/gnome/evolution/%%VERSION%%/images/buttons/paste.png
+share/gnome/evolution/%%VERSION%%/images/buttons/previous-message.png
+share/gnome/evolution/%%VERSION%%/images/buttons/print-preview-24.png
+share/gnome/evolution/%%VERSION%%/images/buttons/print.png
+share/gnome/evolution/%%VERSION%%/images/buttons/receive-24.png
+share/gnome/evolution/%%VERSION%%/images/buttons/reply-to-all.png
+share/gnome/evolution/%%VERSION%%/images/buttons/reply.png
+share/gnome/evolution/%%VERSION%%/images/buttons/save-24.png
+share/gnome/evolution/%%VERSION%%/images/buttons/send-24-receive.png
+share/gnome/evolution/%%VERSION%%/images/buttons/send-24.png
+share/gnome/evolution/%%VERSION%%/images/buttons/weekview.xpm
+share/gnome/evolution/%%VERSION%%/images/buttons/workweekview.xpm
+share/gnome/evolution/%%VERSION%%/images/buttons/yearview.xpm
+share/gnome/evolution/%%VERSION%%/images/calendar-and-tasks-settings.png
+share/gnome/evolution/%%VERSION%%/images/cellphone.png
+share/gnome/evolution/%%VERSION%%/images/compose-message.png
+share/gnome/evolution/%%VERSION%%/images/composer-settings.png
+share/gnome/evolution/%%VERSION%%/images/conduits/evo-16-address-conduit.png
+share/gnome/evolution/%%VERSION%%/images/conduits/evo-16-calendar-conduit.png
+share/gnome/evolution/%%VERSION%%/images/conduits/evo-16-todo-conduit.png
+share/gnome/evolution/%%VERSION%%/images/conduits/evo-48-address-conduit.png
+share/gnome/evolution/%%VERSION%%/images/conduits/evo-48-calendar-conduit.png
+share/gnome/evolution/%%VERSION%%/images/conduits/evo-48-todo-conduit.png
+share/gnome/evolution/%%VERSION%%/images/configure_16_addressbook.xpm
+share/gnome/evolution/%%VERSION%%/images/configure_16_calendar.xpm
+share/gnome/evolution/%%VERSION%%/images/configure_16_folder.xpm
+share/gnome/evolution/%%VERSION%%/images/configure_16_mail.xpm
+share/gnome/evolution/%%VERSION%%/images/connect_to_url-16.xpm
+share/gnome/evolution/%%VERSION%%/images/contact-is-a-list.png
+share/gnome/evolution/%%VERSION%%/images/contact-list-16.png
+share/gnome/evolution/%%VERSION%%/images/copy_16_message.xpm
+share/gnome/evolution/%%VERSION%%/images/edit.xpm
+share/gnome/evolution/%%VERSION%%/images/empty.gif
+share/gnome/evolution/%%VERSION%%/images/encrypt.xpm
+share/gnome/evolution/%%VERSION%%/images/envelope.png
+share/gnome/evolution/%%VERSION%%/images/es-appointments.png
+share/gnome/evolution/%%VERSION%%/images/es-weather.png
+share/gnome/evolution/%%VERSION%%/images/evolution-calendar-mini.png
+share/gnome/evolution/%%VERSION%%/images/evolution-calendar.png
+share/gnome/evolution/%%VERSION%%/images/evolution-contacts-mini.png
+share/gnome/evolution/%%VERSION%%/images/evolution-contacts-plain.png
+share/gnome/evolution/%%VERSION%%/images/evolution-contacts.png
+share/gnome/evolution/%%VERSION%%/images/evolution-inbox-mini.png
+share/gnome/evolution/%%VERSION%%/images/evolution-inbox.png
+share/gnome/evolution/%%VERSION%%/images/evolution-junk-mini.png
+share/gnome/evolution/%%VERSION%%/images/evolution-junk.png
+share/gnome/evolution/%%VERSION%%/images/evolution-notes-mini.png
+share/gnome/evolution/%%VERSION%%/images/evolution-notes.png
+share/gnome/evolution/%%VERSION%%/images/evolution-tasks-mini.png
+share/gnome/evolution/%%VERSION%%/images/evolution-tasks.png
+share/gnome/evolution/%%VERSION%%/images/evolution-today-mini.png
+share/gnome/evolution/%%VERSION%%/images/evolution-today.png
+share/gnome/evolution/%%VERSION%%/images/evolution-trash-mini.png
+share/gnome/evolution/%%VERSION%%/images/evolution-trash.png
+share/gnome/evolution/%%VERSION%%/images/executive-summary-bg.png
+share/gnome/evolution/%%VERSION%%/images/executive-summary-curve.png
+share/gnome/evolution/%%VERSION%%/images/faq-16.png
+share/gnome/evolution/%%VERSION%%/images/fetch-mail.png
+share/gnome/evolution/%%VERSION%%/images/find_contact.xpm
+share/gnome/evolution/%%VERSION%%/images/find_message.xpm
+share/gnome/evolution/%%VERSION%%/images/flag-for-followup-16.png
+share/gnome/evolution/%%VERSION%%/images/folder-copy-16.png
+share/gnome/evolution/%%VERSION%%/images/folder-mini.png
+share/gnome/evolution/%%VERSION%%/images/folder-move-16.png
+share/gnome/evolution/%%VERSION%%/images/folder-settings.png
+share/gnome/evolution/%%VERSION%%/images/folder.png
+share/gnome/evolution/%%VERSION%%/images/folder.xpm
+share/gnome/evolution/%%VERSION%%/images/font.png
+share/gnome/evolution/%%VERSION%%/images/forward.xpm
+share/gnome/evolution/%%VERSION%%/images/globe.png
+share/gnome/evolution/%%VERSION%%/images/goto-16.png
+share/gnome/evolution/%%VERSION%%/images/hide_deleted_messages.xpm
+share/gnome/evolution/%%VERSION%%/images/hide_read_messages.xpm
+share/gnome/evolution/%%VERSION%%/images/hide_selected_messages.xpm
+share/gnome/evolution/%%VERSION%%/images/house.png
+share/gnome/evolution/%%VERSION%%/images/ico-calendar.png
+share/gnome/evolution/%%VERSION%%/images/ico-mail.png
+share/gnome/evolution/%%VERSION%%/images/ico-rdf.png
+share/gnome/evolution/%%VERSION%%/images/ico-weather.png
+share/gnome/evolution/%%VERSION%%/images/import.png
+share/gnome/evolution/%%VERSION%%/images/import.xpm
+share/gnome/evolution/%%VERSION%%/images/inbox-mini.png
+share/gnome/evolution/%%VERSION%%/images/inbox.png
+share/gnome/evolution/%%VERSION%%/images/info-bulb.png
+share/gnome/evolution/%%VERSION%%/images/ldap-mini.png
+share/gnome/evolution/%%VERSION%%/images/ldap-settings.png
+share/gnome/evolution/%%VERSION%%/images/ldap.png
+share/gnome/evolution/%%VERSION%%/images/mail-accounts-settings.png
+share/gnome/evolution/%%VERSION%%/images/mail-config-druid-account-name.png
+share/gnome/evolution/%%VERSION%%/images/mail-config-druid-identity.png
+share/gnome/evolution/%%VERSION%%/images/mail-config-druid-receive.png
+share/gnome/evolution/%%VERSION%%/images/mail-config-druid-send.png
+share/gnome/evolution/%%VERSION%%/images/mail-config-druid.png
+share/gnome/evolution/%%VERSION%%/images/mail-new.xpm
+share/gnome/evolution/%%VERSION%%/images/mail-read.xpm
+share/gnome/evolution/%%VERSION%%/images/mail.png
+share/gnome/evolution/%%VERSION%%/images/malehead.png
+share/gnome/evolution/%%VERSION%%/images/mark-as-important-16.png
+share/gnome/evolution/%%VERSION%%/images/meeting-request-16.png
+share/gnome/evolution/%%VERSION%%/images/meeting-request.png
+share/gnome/evolution/%%VERSION%%/images/monkey-16.png
+share/gnome/evolution/%%VERSION%%/images/move_message.xpm
+share/gnome/evolution/%%VERSION%%/images/myevo-appointments.png
+share/gnome/evolution/%%VERSION%%/images/myevo-mail-summary.png
+share/gnome/evolution/%%VERSION%%/images/myevo-post-it.png
+share/gnome/evolution/%%VERSION%%/images/myweather-clouds.png
+share/gnome/evolution/%%VERSION%%/images/myweather-fog.png
+share/gnome/evolution/%%VERSION%%/images/myweather-rain.png
+share/gnome/evolution/%%VERSION%%/images/myweather-snow.png
+share/gnome/evolution/%%VERSION%%/images/myweather-storm.png
+share/gnome/evolution/%%VERSION%%/images/myweather-sun.png
+share/gnome/evolution/%%VERSION%%/images/myweather-suncloud.png
+share/gnome/evolution/%%VERSION%%/images/new-message.xpm
+share/gnome/evolution/%%VERSION%%/images/new_all_day_event.png
+share/gnome/evolution/%%VERSION%%/images/new_appointment.xpm
+share/gnome/evolution/%%VERSION%%/images/new_contact.xpm
+share/gnome/evolution/%%VERSION%%/images/new_task-16.png
+share/gnome/evolution/%%VERSION%%/images/offline.png
+share/gnome/evolution/%%VERSION%%/images/online.png
+share/gnome/evolution/%%VERSION%%/images/open-in-new-window-16.png
+share/gnome/evolution/%%VERSION%%/images/outbox-mini.png
+share/gnome/evolution/%%VERSION%%/images/outbox.png
+share/gnome/evolution/%%VERSION%%/images/pattern.png
+share/gnome/evolution/%%VERSION%%/images/pgp-signature-bad.png
+share/gnome/evolution/%%VERSION%%/images/pgp-signature-nokey.png
+share/gnome/evolution/%%VERSION%%/images/pgp-signature-ok.png
+share/gnome/evolution/%%VERSION%%/images/post-message-16.png
+share/gnome/evolution/%%VERSION%%/images/post-reply-24.png
+share/gnome/evolution/%%VERSION%%/images/print-preview.xpm
+share/gnome/evolution/%%VERSION%%/images/print.xpm
+share/gnome/evolution/%%VERSION%%/images/priority-high.xpm
+share/gnome/evolution/%%VERSION%%/images/public-folder-mini.png
+share/gnome/evolution/%%VERSION%%/images/public-folder.png
+share/gnome/evolution/%%VERSION%%/images/rdf.png
+share/gnome/evolution/%%VERSION%%/images/reply.xpm
+share/gnome/evolution/%%VERSION%%/images/reply_to_all.xpm
+share/gnome/evolution/%%VERSION%%/images/save-16.png
+share/gnome/evolution/%%VERSION%%/images/save-as-16.png
+share/gnome/evolution/%%VERSION%%/images/save.xpm
+share/gnome/evolution/%%VERSION%%/images/schedule-meeting-16.xpm
+share/gnome/evolution/%%VERSION%%/images/schedule-meeting-24.png
+share/gnome/evolution/%%VERSION%%/images/search-16.png
+share/gnome/evolution/%%VERSION%%/images/search-and-replace-16.png
+share/gnome/evolution/%%VERSION%%/images/send-16.png
+share/gnome/evolution/%%VERSION%%/images/send-later-16.png
+share/gnome/evolution/%%VERSION%%/images/send-receive.xpm
+share/gnome/evolution/%%VERSION%%/images/service-close.png
+share/gnome/evolution/%%VERSION%%/images/service-configure.png
+share/gnome/evolution/%%VERSION%%/images/service-down-disabled.png
+share/gnome/evolution/%%VERSION%%/images/service-down.png
+share/gnome/evolution/%%VERSION%%/images/service-left-disabled.png
+share/gnome/evolution/%%VERSION%%/images/service-left.png
+share/gnome/evolution/%%VERSION%%/images/service-right-disabled.png
+share/gnome/evolution/%%VERSION%%/images/service-right.png
+share/gnome/evolution/%%VERSION%%/images/service-up-disabled.png
+share/gnome/evolution/%%VERSION%%/images/service-up.png
+share/gnome/evolution/%%VERSION%%/images/settings-16.png
+share/gnome/evolution/%%VERSION%%/images/settings.png
+share/gnome/evolution/%%VERSION%%/images/show_all_messages.xpm
+share/gnome/evolution/%%VERSION%%/images/splash.png
+share/gnome/evolution/%%VERSION%%/images/stock-edit-16.png
+share/gnome/evolution/%%VERSION%%/images/stock-edit-24.png
+share/gnome/evolution/%%VERSION%%/images/stock-junk-24.png
+share/gnome/evolution/%%VERSION%%/images/stock-notjunk-24.png
+share/gnome/evolution/%%VERSION%%/images/summary-settings.png
+share/gnome/evolution/%%VERSION%%/images/summary_preferences-16.png
+share/gnome/evolution/%%VERSION%%/images/talking-heads.png
+share/gnome/evolution/%%VERSION%%/images/task.png
+share/gnome/evolution/%%VERSION%%/images/task.xpm
+share/gnome/evolution/%%VERSION%%/images/thankyou.png
+share/gnome/evolution/%%VERSION%%/images/timezone-16.xpm
+share/gnome/evolution/%%VERSION%%/images/timezone-48.png
+share/gnome/evolution/%%VERSION%%/images/undelete_message-16.png
+share/gnome/evolution/%%VERSION%%/images/wax-seal-broken.png
+share/gnome/evolution/%%VERSION%%/images/wax-seal.png
+share/gnome/evolution/%%VERSION%%/images/work_offline.xpm
+share/gnome/evolution/%%VERSION%%/images/work_online-16.png
+share/gnome/evolution/%%VERSION%%/images/working-16.png
+share/gnome/evolution/%%VERSION%%/images/world_map-960.png
+share/gnome/evolution/%%VERSION%%/searchtypes.xml
+share/gnome/evolution/%%VERSION%%/ui/evolution-addressbook.xml
+share/gnome/evolution/%%VERSION%%/ui/evolution-calendar.xml
+share/gnome/evolution/%%VERSION%%/ui/evolution-comp-editor.xml
+share/gnome/evolution/%%VERSION%%/ui/evolution-composer-entries.xml
+share/gnome/evolution/%%VERSION%%/ui/evolution-contact-editor.xml
+share/gnome/evolution/%%VERSION%%/ui/evolution-contact-list-editor.xml
+share/gnome/evolution/%%VERSION%%/ui/evolution-event-editor.xml
+share/gnome/evolution/%%VERSION%%/ui/evolution-executive-summary.xml
+share/gnome/evolution/%%VERSION%%/ui/evolution-mail-global.xml
+share/gnome/evolution/%%VERSION%%/ui/evolution-mail-list.xml
+share/gnome/evolution/%%VERSION%%/ui/evolution-mail-message.xml
+share/gnome/evolution/%%VERSION%%/ui/evolution-mail-messagedisplay.xml
+share/gnome/evolution/%%VERSION%%/ui/evolution-message-composer.xml
+share/gnome/evolution/%%VERSION%%/ui/evolution-signature-editor.xml
+share/gnome/evolution/%%VERSION%%/ui/evolution-subscribe.xml
+share/gnome/evolution/%%VERSION%%/ui/evolution-task-editor.xml
+share/gnome/evolution/%%VERSION%%/ui/evolution-tasks.xml
+share/gnome/evolution/%%VERSION%%/ui/evolution.xml
+share/gnome/evolution/%%VERSION%%/ui/my-evolution.xml
+share/gnome/evolution/%%VERSION%%/vfoldertypes.xml
+share/gnome/evolution/%%VERSION%%/views/addressbook/Address_Cards.galview
+share/gnome/evolution/%%VERSION%%/views/addressbook/By_Company.galview
+share/gnome/evolution/%%VERSION%%/views/addressbook/Phone_List.galview
+share/gnome/evolution/%%VERSION%%/views/addressbook/galview.xml
+share/gnome/evolution/%%VERSION%%/views/calendar/galview.xml
+share/gnome/evolution/%%VERSION%%/views/mail/As_Sent_Folder.galview
+share/gnome/evolution/%%VERSION%%/views/mail/By_Follow_Up_Flag.galview
+share/gnome/evolution/%%VERSION%%/views/mail/By_Sender.galview
+share/gnome/evolution/%%VERSION%%/views/mail/By_Status.galview
+share/gnome/evolution/%%VERSION%%/views/mail/By_Subject.galview
+share/gnome/evolution/%%VERSION%%/views/mail/Messages.galview
+share/gnome/evolution/%%VERSION%%/views/mail/galview.xml
+share/gnome/evolution/%%VERSION%%/views/tasks/Tasks.galview
+share/gnome/evolution/%%VERSION%%/views/tasks/With_Category.galview
+share/gnome/evolution/%%VERSION%%/views/tasks/galview.xml
+%%PILOT:%%share/gnome/gnome-pilot/conduits/e-address.conduit
+%%PILOT:%%share/gnome/gnome-pilot/conduits/e-calendar.conduit
+%%PILOT:%%share/gnome/gnome-pilot/conduits/e-todo.conduit
+share/gnome/help/evolution-%%VERSION%%/C/apx-authors.xml
+share/gnome/help/evolution-%%VERSION%%/C/apx-bugs.xml
+share/gnome/help/evolution-%%VERSION%%/C/apx-fdl.xml
+share/gnome/help/evolution-%%VERSION%%/C/apx-gloss.xml
+share/gnome/help/evolution-%%VERSION%%/C/apx-gpl.xml
+share/gnome/help/evolution-%%VERSION%%/C/config-prefs.xml
+share/gnome/help/evolution-%%VERSION%%/C/config-sync.xml
+share/gnome/help/evolution-%%VERSION%%/C/evolution-%%VERSION%%.xml
+share/gnome/help/evolution-%%VERSION%%/C/figures/calendar.png
+share/gnome/help/evolution-%%VERSION%%/C/figures/config-cal.png
+share/gnome/help/evolution-%%VERSION%%/C/figures/config-mail.png
+share/gnome/help/evolution-%%VERSION%%/C/figures/contact-editor.png
+share/gnome/help/evolution-%%VERSION%%/C/figures/contact.png
+share/gnome/help/evolution-%%VERSION%%/C/figures/exchange-delegation.png
+share/gnome/help/evolution-%%VERSION%%/C/figures/exchange-identity.png
+share/gnome/help/evolution-%%VERSION%%/C/figures/exchange-receive-options.png
+share/gnome/help/evolution-%%VERSION%%/C/figures/exchange-receive.png
+share/gnome/help/evolution-%%VERSION%%/C/figures/filter-new-fig.png
+share/gnome/help/evolution-%%VERSION%%/C/figures/folder-bar.png
+share/gnome/help/evolution-%%VERSION%%/C/figures/full-1.png
+share/gnome/help/evolution-%%VERSION%%/C/figures/full-2.png
+share/gnome/help/evolution-%%VERSION%%/C/figures/full-3.png
+share/gnome/help/evolution-%%VERSION%%/C/figures/full-4.png
+share/gnome/help/evolution-%%VERSION%%/C/figures/full-5.png
+share/gnome/help/evolution-%%VERSION%%/C/figures/full-6.png
+share/gnome/help/evolution-%%VERSION%%/C/figures/full-7.png
+share/gnome/help/evolution-%%VERSION%%/C/figures/mail-druid-pic.png
+share/gnome/help/evolution-%%VERSION%%/C/figures/mail-inbox.png
+share/gnome/help/evolution-%%VERSION%%/C/figures/mail-threaded.png
+share/gnome/help/evolution-%%VERSION%%/C/figures/mainwindow-pic.png
+share/gnome/help/evolution-%%VERSION%%/C/figures/newmsg.png
+share/gnome/help/evolution-%%VERSION%%/C/figures/print-dest.png
+share/gnome/help/evolution-%%VERSION%%/C/figures/print-preview.png
+share/gnome/help/evolution-%%VERSION%%/C/figures/replymsg.png
+share/gnome/help/evolution-%%VERSION%%/C/figures/schedule.png
+share/gnome/help/evolution-%%VERSION%%/C/figures/summary.png
+share/gnome/help/evolution-%%VERSION%%/C/figures/vfolder-createrule-fig.png
+share/gnome/help/evolution-%%VERSION%%/C/legal.xml
+share/gnome/help/evolution-%%VERSION%%/C/menuref.xml
+share/gnome/help/evolution-%%VERSION%%/C/preface.xml
+share/gnome/help/evolution-%%VERSION%%/C/usage-calendar.xml
+share/gnome/help/evolution-%%VERSION%%/C/usage-contact.xml
+share/gnome/help/evolution-%%VERSION%%/C/usage-exchange.xml
+share/gnome/help/evolution-%%VERSION%%/C/usage-exec-summary.xml
+share/gnome/help/evolution-%%VERSION%%/C/usage-mail-org.xml
+share/gnome/help/evolution-%%VERSION%%/C/usage-mail.xml
+share/gnome/help/evolution-%%VERSION%%/C/usage-mainwindow.xml
+share/gnome/help/evolution-%%VERSION%%/C/usage-print.xml
+share/gnome/help/evolution-%%VERSION%%/C/usage-sync.xml
+share/gnome/idl/evolution-%%VERSION%%/Composer.idl
+share/gnome/idl/evolution-%%VERSION%%/Evolution-Addressbook-SelectNames.idl
+share/gnome/idl/evolution-%%VERSION%%/Evolution-Component.idl
+share/gnome/idl/evolution-%%VERSION%%/Evolution-Composer.idl
+share/gnome/idl/evolution-%%VERSION%%/Evolution-ConfigControl.idl
+share/gnome/idl/evolution-%%VERSION%%/Evolution-Offline.idl
+share/gnome/idl/evolution-%%VERSION%%/Evolution-Shell.idl
+share/gnome/idl/evolution-%%VERSION%%/Evolution-Wizard.idl
+share/gnome/idl/evolution-%%VERSION%%/Evolution-common.idl
+share/gnome/idl/evolution-%%VERSION%%/Evolution.idl
+share/gnome/idl/evolution-%%VERSION%%/GNOME_Evolution_Importer.idl
+share/gnome/idl/evolution-%%VERSION%%/evolution-calendar.idl
+share/gnome/mime-info/evolution-%%VERSION%%.keys
+share/gnome/mime-info/evolution-%%VERSION%%.mime
+share/gnome/omf/evolution/evolution-%%VERSION%%-C.omf
+@exec scrollkeeper-install -q %D/share/gnome/omf/evolution/evolution-%%VERSION%%-C.omf 2>/dev/null || /usr/bin/true
+share/gnome/pixmaps/evolution-%%VERSION%%.png
+share/locale/am/LC_MESSAGES/evolution-%%VERSION%%.mo
+share/locale/az/LC_MESSAGES/evolution-%%VERSION%%.mo
+share/locale/be/LC_MESSAGES/evolution-%%VERSION%%.mo
+share/locale/bg/LC_MESSAGES/evolution-%%VERSION%%.mo
+share/locale/ca/LC_MESSAGES/evolution-%%VERSION%%.mo
+share/locale/cs/LC_MESSAGES/evolution-%%VERSION%%.mo
+share/locale/da/LC_MESSAGES/evolution-%%VERSION%%.mo
+share/locale/de/LC_MESSAGES/evolution-%%VERSION%%.mo
+share/locale/el/LC_MESSAGES/evolution-%%VERSION%%.mo
+share/locale/en_AU/LC_MESSAGES/evolution-%%VERSION%%.mo
+share/locale/en_GB/LC_MESSAGES/evolution-%%VERSION%%.mo
+share/locale/es/LC_MESSAGES/evolution-%%VERSION%%.mo
+share/locale/et/LC_MESSAGES/evolution-%%VERSION%%.mo
+share/locale/eu/LC_MESSAGES/evolution-%%VERSION%%.mo
+share/locale/fi/LC_MESSAGES/evolution-%%VERSION%%.mo
+share/locale/fr/LC_MESSAGES/evolution-%%VERSION%%.mo
+share/locale/ga/LC_MESSAGES/evolution-%%VERSION%%.mo
+share/locale/gl/LC_MESSAGES/evolution-%%VERSION%%.mo
+share/locale/hu/LC_MESSAGES/evolution-%%VERSION%%.mo
+share/locale/it/LC_MESSAGES/evolution-%%VERSION%%.mo
+share/locale/ja/LC_MESSAGES/evolution-%%VERSION%%.mo
+share/locale/ko/LC_MESSAGES/evolution-%%VERSION%%.mo
+share/locale/lt/LC_MESSAGES/evolution-%%VERSION%%.mo
+share/locale/lv/LC_MESSAGES/evolution-%%VERSION%%.mo
+share/locale/ms/LC_MESSAGES/evolution-%%VERSION%%.mo
+share/locale/nl/LC_MESSAGES/evolution-%%VERSION%%.mo
+share/locale/nn/LC_MESSAGES/evolution-%%VERSION%%.mo
+share/locale/no/LC_MESSAGES/evolution-%%VERSION%%.mo
+share/locale/pl/LC_MESSAGES/evolution-%%VERSION%%.mo
+share/locale/pt/LC_MESSAGES/evolution-%%VERSION%%.mo
+share/locale/pt_BR/LC_MESSAGES/evolution-%%VERSION%%.mo
+share/locale/ro/LC_MESSAGES/evolution-%%VERSION%%.mo
+share/locale/ru/LC_MESSAGES/evolution-%%VERSION%%.mo
+share/locale/sk/LC_MESSAGES/evolution-%%VERSION%%.mo
+share/locale/sl/LC_MESSAGES/evolution-%%VERSION%%.mo
+share/locale/sr/LC_MESSAGES/evolution-%%VERSION%%.mo
+share/locale/sr@Latn/LC_MESSAGES/evolution-%%VERSION%%.mo
+share/locale/sv/LC_MESSAGES/evolution-%%VERSION%%.mo
+share/locale/tr/LC_MESSAGES/evolution-%%VERSION%%.mo
+share/locale/uk/LC_MESSAGES/evolution-%%VERSION%%.mo
+share/locale/vi/LC_MESSAGES/evolution-%%VERSION%%.mo
+share/locale/zh_CN/LC_MESSAGES/evolution-%%VERSION%%.mo
+share/locale/zh_TW/LC_MESSAGES/evolution-%%VERSION%%.mo
+@dirrm share/gnome/omf/evolution
+@dirrm share/gnome/idl/evolution-%%VERSION%%
+@dirrm share/gnome/help/evolution-%%VERSION%%/C/figures
+@dirrm share/gnome/help/evolution-%%VERSION%%/C
+@dirrm share/gnome/help/evolution-%%VERSION%%
+@dirrm share/gnome/evolution/%%VERSION%%/views/tasks
+@dirrm share/gnome/evolution/%%VERSION%%/views/mail
+@dirrm share/gnome/evolution/%%VERSION%%/views/calendar
+@dirrm share/gnome/evolution/%%VERSION%%/views/addressbook
+@dirrm share/gnome/evolution/%%VERSION%%/views
+@dirrm share/gnome/evolution/%%VERSION%%/ui
+@dirrm share/gnome/evolution/%%VERSION%%/images/conduits
+@dirrm share/gnome/evolution/%%VERSION%%/images/buttons
+@dirrm share/gnome/evolution/%%VERSION%%/images
+@dirrm share/gnome/evolution/%%VERSION%%/glade
+@dirrm share/gnome/evolution/%%VERSION%%/etspec
+@dirrm share/gnome/evolution/%%VERSION%%/ecps
+@dirrm share/gnome/evolution/%%VERSION%%/default_user/views/tasks
+@dirrm share/gnome/evolution/%%VERSION%%/default_user/views/mail
+@dirrm share/gnome/evolution/%%VERSION%%/default_user/views/calendar
+@dirrm share/gnome/evolution/%%VERSION%%/default_user/views/addressbook
+@dirrm share/gnome/evolution/%%VERSION%%/default_user/views
+@dirrm share/gnome/evolution/%%VERSION%%/default_user/local/Trash
+@dirrm share/gnome/evolution/%%VERSION%%/default_user/local/Tasks
+@dirrm share/gnome/evolution/%%VERSION%%/default_user/local/Sent
+@dirrm share/gnome/evolution/%%VERSION%%/default_user/local/Outbox
+@dirrm share/gnome/evolution/%%VERSION%%/default_user/local/Inbox
+@dirrm share/gnome/evolution/%%VERSION%%/default_user/local/Drafts
+@dirrm share/gnome/evolution/%%VERSION%%/default_user/local/Contacts
+@dirrm share/gnome/evolution/%%VERSION%%/default_user/local/Calendar
+@dirrm share/gnome/evolution/%%VERSION%%/default_user/local
+@dirrm share/gnome/evolution/%%VERSION%%/default_user
+@dirrm share/gnome/evolution/%%VERSION%%
+@dirrm share/gnome/evolution
+@dirrm libexec/evolution/%%VERSION%%/camel
+@dirrm libexec/evolution/%%VERSION%%
+@dirrm libexec/evolution
+@dirrm lib/evolution/%%VERSION%%/evolution-calendar-importers
+@dirrm lib/evolution/%%VERSION%%/components
+@dirrm lib/evolution/%%VERSION%%/camel-providers
+@dirrm lib/evolution/%%VERSION%%
+@dirrm include/evolution-%%VERSION%%/widgets
+@dirrm include/evolution-%%VERSION%%/shell
+@dirrm include/evolution-%%VERSION%%/importer
+@dirrm include/evolution-%%VERSION%%/e-util
+@dirrm include/evolution-%%VERSION%%/e-conduit
+@dirrm include/evolution-%%VERSION%%/camel
+@dirrm include/evolution-%%VERSION%%
+@dirrm etc/gconf/gconf.xml.defaults/schemas/apps/evolution/shell/view_defaults/shortcut_bar
+@dirrm etc/gconf/gconf.xml.defaults/schemas/apps/evolution/shell/view_defaults/folder_bar
+@dirrm etc/gconf/gconf.xml.defaults/schemas/apps/evolution/shell/view_defaults
+@dirrm etc/gconf/gconf.xml.defaults/schemas/apps/evolution/shell/offline
+@dirrm etc/gconf/gconf.xml.defaults/schemas/apps/evolution/shell/default_folders
+@dirrm etc/gconf/gconf.xml.defaults/schemas/apps/evolution/shell
+@dirrm etc/gconf/gconf.xml.defaults/schemas/apps/evolution/mail/trash
+@dirrm etc/gconf/gconf.xml.defaults/schemas/apps/evolution/mail/prompts
+@dirrm etc/gconf/gconf.xml.defaults/schemas/apps/evolution/mail/notify
+@dirrm etc/gconf/gconf.xml.defaults/schemas/apps/evolution/mail/junk
+@dirrm etc/gconf/gconf.xml.defaults/schemas/apps/evolution/mail/format
+@dirrm etc/gconf/gconf.xml.defaults/schemas/apps/evolution/mail/filters
+@dirrm etc/gconf/gconf.xml.defaults/schemas/apps/evolution/mail/display/fonts
+@dirrm etc/gconf/gconf.xml.defaults/schemas/apps/evolution/mail/display
+@dirrm etc/gconf/gconf.xml.defaults/schemas/apps/evolution/mail/composer/view
+@dirrm etc/gconf/gconf.xml.defaults/schemas/apps/evolution/mail/composer
+@dirrm etc/gconf/gconf.xml.defaults/schemas/apps/evolution/mail
+@dirrm etc/gconf/gconf.xml.defaults/schemas/apps/evolution/calendar/tasks/colors
+@dirrm etc/gconf/gconf.xml.defaults/schemas/apps/evolution/calendar/tasks
+@dirrm etc/gconf/gconf.xml.defaults/schemas/apps/evolution/calendar/prompts
+@dirrm etc/gconf/gconf.xml.defaults/schemas/apps/evolution/calendar/other
+@dirrm etc/gconf/gconf.xml.defaults/schemas/apps/evolution/calendar/notify
+@dirrm etc/gconf/gconf.xml.defaults/schemas/apps/evolution/calendar/display
+@dirrm etc/gconf/gconf.xml.defaults/schemas/apps/evolution/calendar/date_navigator
+@dirrm etc/gconf/gconf.xml.defaults/schemas/apps/evolution/calendar
+@dirrm etc/gconf/gconf.xml.defaults/schemas/apps/evolution/addressbook/select_names
+@dirrm etc/gconf/gconf.xml.defaults/schemas/apps/evolution/addressbook/completion
+@dirrm etc/gconf/gconf.xml.defaults/schemas/apps/evolution/addressbook
+@dirrm etc/gconf/gconf.xml.defaults/schemas/apps/evolution
+@dirrm etc/gconf/gconf.xml.defaults/apps/evolution/shell/view_defaults/shortcut_bar
+@dirrm etc/gconf/gconf.xml.defaults/apps/evolution/shell/view_defaults/folder_bar
+@dirrm etc/gconf/gconf.xml.defaults/apps/evolution/shell/view_defaults
+@dirrm etc/gconf/gconf.xml.defaults/apps/evolution/shell/offline
+@dirrm etc/gconf/gconf.xml.defaults/apps/evolution/shell/default_folders
+@dirrm etc/gconf/gconf.xml.defaults/apps/evolution/shell
+@dirrm etc/gconf/gconf.xml.defaults/apps/evolution/mail/trash
+@dirrm etc/gconf/gconf.xml.defaults/apps/evolution/mail/prompts
+@dirrm etc/gconf/gconf.xml.defaults/apps/evolution/mail/notify
+@dirrm etc/gconf/gconf.xml.defaults/apps/evolution/mail/junk
+@dirrm etc/gconf/gconf.xml.defaults/apps/evolution/mail/format
+@dirrm etc/gconf/gconf.xml.defaults/apps/evolution/mail/filters
+@dirrm etc/gconf/gconf.xml.defaults/apps/evolution/mail/display/fonts
+@dirrm etc/gconf/gconf.xml.defaults/apps/evolution/mail/display
+@dirrm etc/gconf/gconf.xml.defaults/apps/evolution/mail/composer/view
+@dirrm etc/gconf/gconf.xml.defaults/apps/evolution/mail/composer
+@dirrm etc/gconf/gconf.xml.defaults/apps/evolution/mail
+@dirrm etc/gconf/gconf.xml.defaults/apps/evolution/calendar/tasks/colors
+@dirrm etc/gconf/gconf.xml.defaults/apps/evolution/calendar/tasks
+@dirrm etc/gconf/gconf.xml.defaults/apps/evolution/calendar/prompts
+@dirrm etc/gconf/gconf.xml.defaults/apps/evolution/calendar/other
+@dirrm etc/gconf/gconf.xml.defaults/apps/evolution/calendar/notify
+@dirrm etc/gconf/gconf.xml.defaults/apps/evolution/calendar/display
+@dirrm etc/gconf/gconf.xml.defaults/apps/evolution/calendar/date_navigator
+@dirrm etc/gconf/gconf.xml.defaults/apps/evolution/calendar
+@dirrm etc/gconf/gconf.xml.defaults/apps/evolution/addressbook/select_names
+@dirrm etc/gconf/gconf.xml.defaults/apps/evolution/addressbook/completion
+@dirrm etc/gconf/gconf.xml.defaults/apps/evolution/addressbook
+@dirrm etc/gconf/gconf.xml.defaults/apps/evolution
+@unexec scrollkeeper-uninstall -q %D/share/gnome/omf/evolution/evolution-%%VERSION%%-C.omf 2>/dev/null || /usr/bin/true