summaryrefslogtreecommitdiffstats
path: root/mail/evolution
diff options
context:
space:
mode:
authormarcus <marcus@df743ca5-7f9a-e211-a948-0013205c9059>2005-03-14 09:21:27 +0800
committermarcus <marcus@df743ca5-7f9a-e211-a948-0013205c9059>2005-03-14 09:21:27 +0800
commit6ea8cdadd34fade98a807bf84429806612c65079 (patch)
treeb7f18e7e629139c395bf0080243a2218963d0301 /mail/evolution
parent857bb773fe0bad1b58fa9c68ece3c326f60613e6 (diff)
downloadmarcuscom-ports-6ea8cdadd34fade98a807bf84429806612c65079.tar
marcuscom-ports-6ea8cdadd34fade98a807bf84429806612c65079.tar.gz
marcuscom-ports-6ea8cdadd34fade98a807bf84429806612c65079.tar.bz2
marcuscom-ports-6ea8cdadd34fade98a807bf84429806612c65079.tar.lz
marcuscom-ports-6ea8cdadd34fade98a807bf84429806612c65079.tar.xz
marcuscom-ports-6ea8cdadd34fade98a807bf84429806612c65079.tar.zst
marcuscom-ports-6ea8cdadd34fade98a807bf84429806612c65079.zip
Remove these ports now that they have been merged into the ports tree.
git-svn-id: svn://creme-brulee.marcuscom.com/ports/trunk@3934 df743ca5-7f9a-e211-a948-0013205c9059
Diffstat (limited to 'mail/evolution')
-rw-r--r--mail/evolution/Makefile102
-rw-r--r--mail/evolution/distinfo2
-rw-r--r--mail/evolution/files/patch-aa41
-rw-r--r--mail/evolution/files/patch-mail_em-migrate.c11
-rw-r--r--mail/evolution/files/patch-mail_em-utils.h10
-rw-r--r--mail/evolution/files/patch-plugins_exchange-account-setup_exchange-account-setup.c14
-rw-r--r--mail/evolution/files/patch-widgets_misc_e-multi-config-dialog.c19
-rw-r--r--mail/evolution/pkg-descr9
-rw-r--r--mail/evolution/pkg-plist508
9 files changed, 0 insertions, 716 deletions
diff --git a/mail/evolution/Makefile b/mail/evolution/Makefile
deleted file mode 100644
index ed66989ed..000000000
--- a/mail/evolution/Makefile
+++ /dev/null
@@ -1,102 +0,0 @@
-# New ports collection makefile for: evolution
-# Date created: 28th June 2000
-# Whom: Ade Lovett <ade@FreeBSD.org>
-#
-# $FreeBSD$
-#
-
-PORTNAME= evolution
-PORTVERSION= 2.2.0
-CATEGORIES= mail gnome
-MASTER_SITES= ${MASTER_SITE_GNOME}
-MASTER_SITE_SUBDIR= sources/${PORTNAME}/2.2
-DIST_SUBDIR= gnome2
-
-MAINTAINER= gnome@FreeBSD.org
-COMMENT= An integrated mail, calendar and address book distributed suite
-
-LIB_DEPENDS= nss3.1:${PORTSDIR}/security/nss
-RUN_DEPENDS= ${X11BASE}/lib/gnome-spell/libgnome-spell-component-0.3.so:${PORTSDIR}/textproc/gnomespell
-
-USE_BZIP2= yes
-USE_GMAKE= yes
-USE_BISON= yes
-USE_X_PREFIX= yes
-USE_GNOME= gnomeprefix gnomehack intlhack evolutiondataserver gal2 \
- gtkhtml3 desktopfileutils
-USE_REINPLACE= yes
-USE_LIBTOOL_VER=15
-INSTALLS_OMF= 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 \
- --with-sub-version=" FreeBSD GNOME Team Port" \
- --with-krb5=/usr
-CONFIGURE_ENV= CPPFLAGS="-I${LOCALBASE}/include" \
- LDFLAGS="-L${LOCALBASE}/lib"
-
-GCONF_SCHEMAS= apps_evolution_addressbook-${EVO_VERSION}.schemas \
- apps_evolution_calendar-${EVO_VERSION}.schemas \
- apps_evolution_shell-${EVO_VERSION}.schemas \
- evolution-mail-${EVO_VERSION}.schemas
-
-EVO_VERSION= 2.2
-PLIST_SUB= VERSION=${EVO_VERSION} \
- PORTVERSION=2.2
-
-OPTIONS= PILOT "Enable Palm Pilot sync support" off \
- LDAP "Enable LDAP support" on \
- SPAMASSASSIN "Enable SpamAssassin spam filtering" off
-
-.include <bsd.port.pre.mk>
-
-.if exists(${X11BASE}/lib/libgstreamer-0.8.so.5) || \
- defined(PACKAGE_BUILDING) || defined(PARALLEL_PACKAGE_BUILD)
-WITH_GSTREAMER= yes
-.endif
-
-.if exists(${LOCALBASE}/lib/libdbus-glib-1.so)
-WITH_DBUS= yes
-.endif
-
-.if defined(WITH_PILOT)
-LIB_DEPENDS+= gpilotdconduit.2:${PORTSDIR}/palm/gnomepilot2
-CONFIGURE_ARGS+= --with-pisock=${LOCALBASE} \
- --enable-pilot-conduits=yes
-PLIST_SUB+= PILOT:=""
-.else
-PLIST_SUB+= PILOT:="@comment "
-.endif
-
-.if !defined(WITHOUT_LDAP)
-USE_OPENLDAP= yes
-CONFIGURE_ARGS+=--with-openldap=${LOCALBASE}
-.else
-CONFIGURE_ARGS+=--with-openldap=no
-.endif
-
-.if defined(WITH_SPAMASSASSIN)
-RUN_DEPENDS+= spamassassin:${PORTSDIR}/mail/p5-Mail-SpamAssassin
-.endif
-
-.if defined(WITH_GSTREAMER)
-LIB_DEPENDS+= gstreamer-0.8.5:${PORTSDIR}/multimedia/gstreamer
-PLIST_SUB+= GSTREAMER=""
-.else
-PLIST_SUB+= GSTREAMER="@comment "
-.endif
-
-.if defined(WITH_DBUS)
-LIB_DEPENDS+= dbus-glib-1.0:${PORTSDIR}/devel/dbus
-PLIST_SUB+= DBUS=""
-.else
-PLIST_SUB+= DBUS="@comment "
-.endif
-
-post-install:
- @${LN} -sf ${PREFIX}/bin/evolution-${EVO_VERSION} \
- ${PREFIX}/bin/evolution
-
-.include <bsd.port.post.mk>
diff --git a/mail/evolution/distinfo b/mail/evolution/distinfo
deleted file mode 100644
index 8455a3c93..000000000
--- a/mail/evolution/distinfo
+++ /dev/null
@@ -1,2 +0,0 @@
-MD5 (gnome2/evolution-2.2.0.tar.bz2) = a93991fb80c7fa88f6758661c8931f6b
-SIZE (gnome2/evolution-2.2.0.tar.bz2) = 13344133
diff --git a/mail/evolution/files/patch-aa b/mail/evolution/files/patch-aa
deleted file mode 100644
index eadafd847..000000000
--- a/mail/evolution/files/patch-aa
+++ /dev/null
@@ -1,41 +0,0 @@
---- configure.orig Wed Sep 29 14:06:43 2004
-+++ configure Wed Sep 29 14:24:28 2004
-@@ -24206,6 +24206,7 @@
- #include <sys/socket.h>
- #include <netinet/in.h>
- #include <netdb.h>
-+ #include <stdio.h>
-
-
- int
-@@ -25772,7 +25773,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
-@@ -26928,10 +26929,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
-@@ -30807,7 +30808,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-mail_em-migrate.c b/mail/evolution/files/patch-mail_em-migrate.c
deleted file mode 100644
index 6aa2e9a13..000000000
--- a/mail/evolution/files/patch-mail_em-migrate.c
+++ /dev/null
@@ -1,11 +0,0 @@
---- mail/em-migrate.c.orig Tue Dec 21 15:09:30 2004
-+++ mail/em-migrate.c Tue Dec 21 15:09:46 2004
-@@ -1447,7 +1447,7 @@
- ut.actime = st.st_atime;
- ut.modtime = st.st_mtime;
- utime (dest, &ut);
-- chmod (dest, st.st_mode);
-+ chmod (dest, st.st_mode | S_IWUSR);
-
- return 0;
-
diff --git a/mail/evolution/files/patch-mail_em-utils.h b/mail/evolution/files/patch-mail_em-utils.h
deleted file mode 100644
index b3e7b9ffb..000000000
--- a/mail/evolution/files/patch-mail_em-utils.h
+++ /dev/null
@@ -1,10 +0,0 @@
---- mail/em-utils.h.orig Tue Aug 3 16:59:46 2004
-+++ mail/em-utils.h Tue Aug 3 17:00:04 2004
-@@ -23,6 +23,7 @@
- #ifndef __EM_UTILS_H__
- #define __EM_UTILS_H__
-
-+#include <sys/types.h>
- #include <glib.h>
-
- #ifdef __cplusplus
diff --git a/mail/evolution/files/patch-plugins_exchange-account-setup_exchange-account-setup.c b/mail/evolution/files/patch-plugins_exchange-account-setup_exchange-account-setup.c
deleted file mode 100644
index 8d880e79f..000000000
--- a/mail/evolution/files/patch-plugins_exchange-account-setup_exchange-account-setup.c
+++ /dev/null
@@ -1,14 +0,0 @@
---- plugins/exchange-account-setup/exchange-account-setup.c.orig Tue Mar 1 15:38:29 2005
-+++ plugins/exchange-account-setup/exchange-account-setup.c Tue Mar 1 15:38:45 2005
-@@ -564,9 +564,10 @@
- org_gnome_exchange_commit (EPlugin *epl, EConfigHookItemFactoryData *data)
- {
- EMConfigTargetAccount *target_account;
-- target_account = (EMConfigTargetAccount *)data->config->target;
- const char *source_url;
- CamelURL *url;
-+
-+ target_account = (EMConfigTargetAccount *)data->config->target;
-
- source_url = e_account_get_string (target_account->account, E_ACCOUNT_SOURCE_URL);
- url = camel_url_new (source_url, NULL);
diff --git a/mail/evolution/files/patch-widgets_misc_e-multi-config-dialog.c b/mail/evolution/files/patch-widgets_misc_e-multi-config-dialog.c
deleted file mode 100644
index f2389bd04..000000000
--- a/mail/evolution/files/patch-widgets_misc_e-multi-config-dialog.c
+++ /dev/null
@@ -1,19 +0,0 @@
---- widgets/misc/e-multi-config-dialog.c.orig Tue Nov 23 15:53:34 2004
-+++ widgets/misc/e-multi-config-dialog.c Tue Nov 23 15:54:02 2004
-@@ -396,6 +396,7 @@
- {
- EMultiConfigDialogPrivate *priv;
- AtkObject *a11y;
-+ AtkObject *a11yPage;
- gint page_no;
-
- g_return_if_fail (E_IS_MULTI_CONFIG_DIALOG (dialog));
-@@ -418,7 +419,7 @@
- NULL);
-
- a11y = gtk_widget_get_accessible (GTK_WIDGET(priv->notebook));
-- AtkObject *a11yPage = atk_object_ref_accessible_child (a11y, page_no);
-+ a11yPage = atk_object_ref_accessible_child (a11y, page_no);
- if (a11yPage != NULL) {
- if (atk_object_get_role (a11yPage) == ATK_ROLE_PAGE_TAB)
- atk_object_set_name (a11yPage, title);
diff --git a/mail/evolution/pkg-descr b/mail/evolution/pkg-descr
deleted file mode 100644
index b553f0069..000000000
--- a/mail/evolution/pkg-descr
+++ /dev/null
@@ -1,9 +0,0 @@
-Ximian Evolution[tm] is the premier personal and workgroup information
-management solution for UNIX. Evolution seamlessly integrates email,
-calendaring, meeting scheduling, contact management and online task lists
-in one powerful, fast, and easy to use application. It also delivers a
-comprehensive set of features that help keep work organized and projects
-on track. The unique Ximian vFolders[tm] are virtual folders used to
-create and save powerful contextual views of email messages.
-
-WWW: http://www.novell.com/products/evolution/
diff --git a/mail/evolution/pkg-plist b/mail/evolution/pkg-plist
deleted file mode 100644
index 62803eb55..000000000
--- a/mail/evolution/pkg-plist
+++ /dev/null
@@ -1,508 +0,0 @@
-bin/evolution
-bin/evolution-%%VERSION%%
-include/evolution-%%VERSION%%/calendar/gui/e-cal-config.h
-include/evolution-%%VERSION%%/e-conduit/e-pilot-map.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-bconf-map.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-config.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-event.h
-include/evolution-%%VERSION%%/e-util/e-folder-map.h
-include/evolution-%%VERSION%%/e-util/e-fsutils.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-html-utils.h
-include/evolution-%%VERSION%%/e-util/e-icon-factory.h
-include/evolution-%%VERSION%%/e-util/e-iterator.h
-include/evolution-%%VERSION%%/e-util/e-list-iterator.h
-include/evolution-%%VERSION%%/e-util/e-list.h
-include/evolution-%%VERSION%%/e-util/e-menu.h
-include/evolution-%%VERSION%%/e-util/e-mktemp.h
-include/evolution-%%VERSION%%/e-util/e-plugin.h
-include/evolution-%%VERSION%%/e-util/e-popup.h
-include/evolution-%%VERSION%%/e-util/e-print.h
-include/evolution-%%VERSION%%/e-util/e-request.h
-include/evolution-%%VERSION%%/e-util/e-signature-list.h
-include/evolution-%%VERSION%%/e-util/e-signature.h
-include/evolution-%%VERSION%%/e-util/e-time-utils.h
-include/evolution-%%VERSION%%/e-util/e-uid.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-shell-corba-icon-utils.h
-include/evolution-%%VERSION%%/shell/e-shell-utils.h
-include/evolution-%%VERSION%%/shell/e-user-creatable-items-handler.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-activity-handler.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-error.h
-include/evolution-%%VERSION%%/widgets/e-expander.h
-include/evolution-%%VERSION%%/widgets/e-image-chooser.h
-include/evolution-%%VERSION%%/widgets/e-info-label.h
-include/evolution-%%VERSION%%/widgets/e-map.h
-include/evolution-%%VERSION%%/widgets/e-multi-config-dialog.h
-%%PILOT:%%include/evolution-%%VERSION%%/widgets/e-pilot-settings.h
-include/evolution-%%VERSION%%/widgets/e-search-bar.h
-include/evolution-%%VERSION%%/widgets/e-send-options.h
-include/evolution-%%VERSION%%/widgets/e-task-bar.h
-include/evolution-%%VERSION%%/widgets/e-task-widget.h
-include/evolution-%%VERSION%%/widgets/e-url-entry.h
-lib/evolution/%%VERSION%%/components/libevolution-addressbook.so
-lib/evolution/%%VERSION%%/components/libevolution-calendar.so
-lib/evolution/%%VERSION%%/components/libevolution-mail.so
-%%PILOT:%%lib/evolution/%%VERSION%%/conduits/libeaddress_conduit.so
-%%PILOT:%%lib/evolution/%%VERSION%%/conduits/libecalendar_conduit.so
-%%PILOT:%%lib/evolution/%%VERSION%%/conduits/libetodo_conduit.so
-lib/evolution/%%VERSION%%/evolution-addressbook-importers/libevolution-addressbook-ldif-importer.so
-lib/evolution/%%VERSION%%/evolution-addressbook-importers/libevolution-addressbook-vcard-importer.so
-lib/evolution/%%VERSION%%/evolution-calendar-importers/libevolution-calendar-importers.so
-lib/evolution/%%VERSION%%/libeabutil.a
-lib/evolution/%%VERSION%%/libeabutil.so
-lib/evolution/%%VERSION%%/libeabutil.so.0
-lib/evolution/%%VERSION%%/libeconduit.a
-lib/evolution/%%VERSION%%/libeconduit.so
-lib/evolution/%%VERSION%%/libeconduit.so.0
-lib/evolution/%%VERSION%%/libecontacteditor.a
-lib/evolution/%%VERSION%%/libecontacteditor.so
-lib/evolution/%%VERSION%%/libecontacteditor.so.0
-lib/evolution/%%VERSION%%/libecontactlisteditor.a
-lib/evolution/%%VERSION%%/libecontactlisteditor.so
-lib/evolution/%%VERSION%%/libecontactlisteditor.so.0
-lib/evolution/%%VERSION%%/libefilterbar.a
-lib/evolution/%%VERSION%%/libefilterbar.so
-lib/evolution/%%VERSION%%/libefilterbar.so.0
-lib/evolution/%%VERSION%%/libemiscwidgets.a
-lib/evolution/%%VERSION%%/libemiscwidgets.so
-lib/evolution/%%VERSION%%/libemiscwidgets.so.0
-lib/evolution/%%VERSION%%/libeshell.a
-lib/evolution/%%VERSION%%/libeshell.so
-lib/evolution/%%VERSION%%/libeshell.so.0
-lib/evolution/%%VERSION%%/libessmime.a
-lib/evolution/%%VERSION%%/libessmime.so
-lib/evolution/%%VERSION%%/libessmime.so.0
-lib/evolution/%%VERSION%%/libetimezonedialog.a
-lib/evolution/%%VERSION%%/libetimezonedialog.so
-lib/evolution/%%VERSION%%/libetimezonedialog.so.0
-lib/evolution/%%VERSION%%/libeutil.a
-lib/evolution/%%VERSION%%/libeutil.so
-lib/evolution/%%VERSION%%/libeutil.so.0
-lib/evolution/%%VERSION%%/libevolution-a11y.a
-lib/evolution/%%VERSION%%/libevolution-a11y.so
-lib/evolution/%%VERSION%%/libevolution-a11y.so.0
-lib/evolution/%%VERSION%%/libevolution-addressbook-a11y.a
-lib/evolution/%%VERSION%%/libevolution-addressbook-a11y.so
-lib/evolution/%%VERSION%%/libevolution-addressbook-a11y.so.0
-lib/evolution/%%VERSION%%/libevolution-calendar-a11y.a
-lib/evolution/%%VERSION%%/libevolution-calendar-a11y.so
-lib/evolution/%%VERSION%%/libevolution-calendar-a11y.so.0
-lib/evolution/%%VERSION%%/libevolution-importer.a
-lib/evolution/%%VERSION%%/libevolution-importer.so
-lib/evolution/%%VERSION%%/libevolution-importer.so.0
-lib/evolution/%%VERSION%%/libevolution-mail-importers.a
-lib/evolution/%%VERSION%%/libevolution-mail-importers.so
-lib/evolution/%%VERSION%%/libevolution-mail-importers.so.0
-lib/evolution/%%VERSION%%/libevolution-smime.a
-lib/evolution/%%VERSION%%/libevolution-smime.so
-lib/evolution/%%VERSION%%/libevolution-smime.so.0
-lib/evolution/%%VERSION%%/libevolution-widgets-a11y.a
-lib/evolution/%%VERSION%%/libevolution-widgets-a11y.so
-lib/evolution/%%VERSION%%/libevolution-widgets-a11y.so.0
-lib/evolution/%%VERSION%%/libfilter.a
-lib/evolution/%%VERSION%%/libfilter.so
-lib/evolution/%%VERSION%%/libfilter.so.0
-lib/evolution/%%VERSION%%/libmenus.a
-lib/evolution/%%VERSION%%/libmenus.so
-lib/evolution/%%VERSION%%/libmenus.so.0
-lib/evolution/%%VERSION%%/plugins/liborg-gnome-addressbook-file.so
-lib/evolution/%%VERSION%%/plugins/liborg-gnome-addressbook-groupwise.so
-%%GSTREAMER%%lib/evolution/%%VERSION%%/plugins/liborg-gnome-audio-inline.so
-lib/evolution/%%VERSION%%/plugins/liborg-gnome-calendar-file.so
-lib/evolution/%%VERSION%%/plugins/liborg-gnome-calendar-http.so
-lib/evolution/%%VERSION%%/plugins/liborg-gnome-calendar-weather.so
-lib/evolution/%%VERSION%%/plugins/liborg-gnome-compose-send-options.so
-lib/evolution/%%VERSION%%/plugins/liborg-gnome-copy-tool.so
-lib/evolution/%%VERSION%%/plugins/liborg-gnome-default-source.so
-lib/evolution/%%VERSION%%/plugins/liborg-gnome-evolution-bbdb.so
-lib/evolution/%%VERSION%%/plugins/liborg-gnome-evolution-startup-wizard.so
-lib/evolution/%%VERSION%%/plugins/liborg-gnome-exchange-account-settings.so
-lib/evolution/%%VERSION%%/plugins/liborg-gnome-gw-account-setup.so
-lib/evolution/%%VERSION%%/plugins/liborg-gnome-itip-formatter.so
-lib/evolution/%%VERSION%%/plugins/liborg-gnome-mail-folder-unsubscribe.so
-lib/evolution/%%VERSION%%/plugins/liborg-gnome-mail-to-task.so
-lib/evolution/%%VERSION%%/plugins/liborg-gnome-mailing-list-actions.so
-lib/evolution/%%VERSION%%/plugins/liborg-gnome-mark-calendar-offline.so
-%%DBUS%%lib/evolution/%%VERSION%%/plugins/liborg-gnome-new-mail-notify.so
-lib/evolution/%%VERSION%%/plugins/liborg-gnome-prefer-plain.so
-lib/evolution/%%VERSION%%/plugins/liborg-gnome-plugin-manager.so
-lib/evolution/%%VERSION%%/plugins/liborg-gnome-save-attachments.so
-lib/evolution/%%VERSION%%/plugins/liborg-gnome-save-calendar.so
-lib/evolution/%%VERSION%%/plugins/liborg-gnome-select-one-source.so
-lib/evolution/%%VERSION%%/plugins/liborg-gnome-send-options.so
-lib/evolution/%%VERSION%%/plugins/liborg-gnome-shared-folder.so
-lib/evolution/%%VERSION%%/plugins/liborg-gnome-status-track.so
-lib/evolution/%%VERSION%%/plugins/liborg-gnome-subject-thread.so
-lib/evolution/%%VERSION%%/plugins/org-gnome-addressbook-file.eplug
-lib/evolution/%%VERSION%%/plugins/org-gnome-addressbook-groupwise.eplug
-%%GSTREAMER%%lib/evolution/%%VERSION%%/plugins/org-gnome-audio-inline.eplug
-lib/evolution/%%VERSION%%/plugins/org-gnome-calendar-file.eplug
-lib/evolution/%%VERSION%%/plugins/org-gnome-calendar-http.eplug
-lib/evolution/%%VERSION%%/plugins/org-gnome-calendar-weather.eplug
-lib/evolution/%%VERSION%%/plugins/org-gnome-compose-send-options.eplug
-lib/evolution/%%VERSION%%/plugins/org-gnome-compose-send-options.xml
-lib/evolution/%%VERSION%%/plugins/org-gnome-copy-tool.eplug
-lib/evolution/%%VERSION%%/plugins/org-gnome-default-source.eplug
-lib/evolution/%%VERSION%%/plugins/org-gnome-evolution-bbdb.eplug
-lib/evolution/%%VERSION%%/plugins/org-gnome-evolution-startup-wizard.eplug
-lib/evolution/%%VERSION%%/plugins/org-gnome-exchange-account-setup.eplug
-lib/evolution/%%VERSION%%/plugins/org-gnome-gw-account-setup.eplug
-lib/evolution/%%VERSION%%/plugins/org-gnome-itip-formatter.eplug
-lib/evolution/%%VERSION%%/plugins/org-gnome-mail-folder-unsubscribe.eplug
-lib/evolution/%%VERSION%%/plugins/org-gnome-mail-to-task.eplug
-lib/evolution/%%VERSION%%/plugins/org-gnome-mailing-list-actions.eplug
-lib/evolution/%%VERSION%%/plugins/org-gnome-mailing-list-actions.xml
-lib/evolution/%%VERSION%%/plugins/org-gnome-mark-calendar-offline.eplug
-%%DBUS%%lib/evolution/%%VERSION%%/plugins/org-gnome-new-mail-notify.eplug
-lib/evolution/%%VERSION%%/plugins/org-gnome-plugin-manager.eplug
-lib/evolution/%%VERSION%%/plugins/org-gnome-plugin-manager.xml
-lib/evolution/%%VERSION%%/plugins/org-gnome-prefer-plain.eplug
-lib/evolution/%%VERSION%%/plugins/org-gnome-save-attachments.eplug
-lib/evolution/%%VERSION%%/plugins/org-gnome-save-attachments.xml
-lib/evolution/%%VERSION%%/plugins/org-gnome-save-calendar.eplug
-lib/evolution/%%VERSION%%/plugins/org-gnome-select-one-source.eplug
-lib/evolution/%%VERSION%%/plugins/org-gnome-send-options.eplug
-lib/evolution/%%VERSION%%/plugins/org-gnome-shared-folder.eplug
-lib/evolution/%%VERSION%%/plugins/org-gnome-status-track.eplug
-lib/evolution/%%VERSION%%/plugins/org-gnome-subject-thread.eplug
-libdata/bonobo/servers/GNOME_Evolution_Addressbook_%%VERSION%%.server
-libdata/bonobo/servers/GNOME_Evolution_Addressbook_LDIF_Importer_%%VERSION%%.server
-libdata/bonobo/servers/GNOME_Evolution_Addressbook_VCard_Importer_%%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_Mail_Importers_%%VERSION%%.server
-libdata/bonobo/servers/GNOME_Evolution_Shell_%%VERSION%%.server
-libdata/pkgconfig/evolution-plugin-%%VERSION%%.pc
-libdata/pkgconfig/evolution-shell-%%VERSION%%.pc
-libexec/evolution/%%VERSION%%/csv2vcard
-libexec/evolution/%%VERSION%%/evolution-addressbook-clean
-libexec/evolution/%%VERSION%%/evolution-addressbook-export
-libexec/evolution/%%VERSION%%/evolution-alarm-notify
-libexec/evolution/%%VERSION%%/killev
-share/gnome/applications/evolution-%%VERSION%%.desktop
-@exec update-desktop-database > /dev/null || /usr/bin/true
-share/gnome/evolution/%%VERSION%%/addresstypes.xml
-share/gnome/evolution/%%VERSION%%/default/C/mail/local/Inbox
-share/gnome/evolution/%%VERSION%%/default/de/mail/local/Inbox
-share/gnome/evolution/%%VERSION%%/default/ja/mail/local/Inbox
-share/gnome/evolution/%%VERSION%%/default/nl/mail/local/Inbox
-share/gnome/evolution/%%VERSION%%/default/pt/mail/local/Inbox
-share/gnome/evolution/%%VERSION%%/default/zh_CN/mail/local/Inbox
-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%%/errors/addressbook-errors.xml
-share/gnome/evolution/%%VERSION%%/errors/calendar-errors.xml
-share/gnome/evolution/%%VERSION%%/errors/e-system-errors.xml
-share/gnome/evolution/%%VERSION%%/errors/filter-errors.xml
-share/gnome/evolution/%%VERSION%%/errors/org-gnome-itip-formatter-errors.xml
-share/gnome/evolution/%%VERSION%%/errors/org-gnome-mailing-list-actions-errors.xml
-share/gnome/evolution/%%VERSION%%/errors/org-gnome-shared-folder-errors.xml
-share/gnome/evolution/%%VERSION%%/errors/mail-composer-errors.xml
-share/gnome/evolution/%%VERSION%%/errors/mail-errors.xml
-share/gnome/evolution/%%VERSION%%/errors/shell-errors.xml
-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/message-list.etspec
-share/gnome/evolution/%%VERSION%%/filtertypes.xml
-share/gnome/evolution/%%VERSION%%/glade/alarm-dialog.glade
-share/gnome/evolution/%%VERSION%%/glade/alarm-list-dialog.glade
-share/gnome/evolution/%%VERSION%%/glade/alarm-notify.glade
-share/gnome/evolution/%%VERSION%%/glade/cal-attachment.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-itip-control.glade
-share/gnome/evolution/%%VERSION%%/glade/e-msg-composer-attachment.glade
-share/gnome/evolution/%%VERSION%%/glade/e-send-options.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/filter.glade
-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/im.glade
-share/gnome/evolution/%%VERSION%%/glade/import.glade
-share/gnome/evolution/%%VERSION%%/glade/ldap-config.glade
-share/gnome/evolution/%%VERSION%%/glade/mail-config.glade
-share/gnome/evolution/%%VERSION%%/glade/mail-dialogs.glade
-share/gnome/evolution/%%VERSION%%/glade/meeting-page.glade
-share/gnome/evolution/%%VERSION%%/glade/properties.glade
-share/gnome/evolution/%%VERSION%%/glade/recurrence-page.glade
-share/gnome/evolution/%%VERSION%%/glade/schedule-page.glade
-share/gnome/evolution/%%VERSION%%/glade/smime-ui.glade
-share/gnome/evolution/%%VERSION%%/glade/task-details-page.glade
-share/gnome/evolution/%%VERSION%%/glade/task-page.glade
-share/gnome/evolution/%%VERSION%%/glade/url-editor-dialog.glade
-share/gnome/evolution/%%VERSION%%/help/quickref/C/quickref.pdf
-share/gnome/evolution/%%VERSION%%/images/about-box.png
-share/gnome/evolution/%%VERSION%%/images/bcg.png
-share/gnome/evolution/%%VERSION%%/images/evolution-contacts-mini.png
-share/gnome/evolution/%%VERSION%%/images/monkey-16.png
-share/gnome/evolution/%%VERSION%%/images/offline.png
-share/gnome/evolution/%%VERSION%%/images/online.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-composer-entries.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-tasks.xml
-share/gnome/evolution/%%VERSION%%/ui/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/List_View.galview
-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_DueDate.galview
-share/gnome/evolution/%%VERSION%%/views/tasks/With_Status.galview
-share/gnome/evolution/%%VERSION%%/views/tasks/galview.xml
-share/gnome/evolution/%%VERSION%%/weather/category_weather_cloudy_16.png
-share/gnome/evolution/%%VERSION%%/weather/category_weather_fog_16.png
-share/gnome/evolution/%%VERSION%%/weather/category_weather_partly_cloudy_16.png
-share/gnome/evolution/%%VERSION%%/weather/category_weather_rain_16.png
-share/gnome/evolution/%%VERSION%%/weather/category_weather_snow_16.png
-share/gnome/evolution/%%VERSION%%/weather/category_weather_sun_16.png
-share/gnome/evolution/%%VERSION%%/weather/category_weather_tstorm_16.png
-%%PILOT:%%share/gnome/gnome-pilot/conduits/e-address-%%VERSION%%.conduit
-%%PILOT:%%share/gnome/gnome-pilot/conduits/e-calendar-%%VERSION%%.conduit
-%%PILOT:%%share/gnome/gnome-pilot/conduits/e-todo-%%VERSION%%.conduit
-share/gnome/help/evolution-%%PORTVERSION%%/C/evolution-%%PORTVERSION%%.xml
-share/gnome/help/evolution-%%PORTVERSION%%/C/figures/calendar.png
-share/gnome/help/evolution-%%PORTVERSION%%/C/figures/config-cal.png
-share/gnome/help/evolution-%%PORTVERSION%%/C/figures/config-mail.png
-share/gnome/help/evolution-%%PORTVERSION%%/C/figures/contact-editor.png
-share/gnome/help/evolution-%%PORTVERSION%%/C/figures/contact.png
-share/gnome/help/evolution-%%PORTVERSION%%/C/figures/contacts_mainwindow_a.png
-share/gnome/help/evolution-%%PORTVERSION%%/C/figures/evo_account_info_a.png
-share/gnome/help/evolution-%%PORTVERSION%%/C/figures/evo_contacteditor_a.png
-share/gnome/help/evolution-%%PORTVERSION%%/C/figures/evo_email_a.png
-share/gnome/help/evolution-%%PORTVERSION%%/C/figures/evo_gwreceive_a.png
-share/gnome/help/evolution-%%PORTVERSION%%/C/figures/evo_identity_a.png
-share/gnome/help/evolution-%%PORTVERSION%%/C/figures/evo_imapreceive_a.png
-share/gnome/help/evolution-%%PORTVERSION%%/C/figures/evo_mail_callout_a.png
-share/gnome/help/evolution-%%PORTVERSION%%/C/figures/evo_maildirreceive_a.png
-share/gnome/help/evolution-%%PORTVERSION%%/C/figures/evo_mboxreceive_a.png
-share/gnome/help/evolution-%%PORTVERSION%%/C/figures/evo_mereceive_a.png
-share/gnome/help/evolution-%%PORTVERSION%%/C/figures/evo_mhreceive_a.png
-share/gnome/help/evolution-%%PORTVERSION%%/C/figures/evo_newmess_a.png
-share/gnome/help/evolution-%%PORTVERSION%%/C/figures/evo_popreceive_a.png
-share/gnome/help/evolution-%%PORTVERSION%%/C/figures/evo_receive_setup2_a.png
-share/gnome/help/evolution-%%PORTVERSION%%/C/figures/evo_receive_setup_a.png
-share/gnome/help/evolution-%%PORTVERSION%%/C/figures/evo_rule_a.png
-share/gnome/help/evolution-%%PORTVERSION%%/C/figures/evo_send_setup_a.png
-share/gnome/help/evolution-%%PORTVERSION%%/C/figures/evo_timezone_a.png
-share/gnome/help/evolution-%%PORTVERSION%%/C/figures/evo_usereceive_a.png
-share/gnome/help/evolution-%%PORTVERSION%%/C/figures/exchange-delegation.png
-share/gnome/help/evolution-%%PORTVERSION%%/C/figures/exchange-identity.png
-share/gnome/help/evolution-%%PORTVERSION%%/C/figures/exchange-receive-options.png
-share/gnome/help/evolution-%%PORTVERSION%%/C/figures/exchange-receive.png
-share/gnome/help/evolution-%%PORTVERSION%%/C/figures/filter-new-fig.png
-share/gnome/help/evolution-%%PORTVERSION%%/C/figures/full-1.png
-share/gnome/help/evolution-%%PORTVERSION%%/C/figures/full-2.png
-share/gnome/help/evolution-%%PORTVERSION%%/C/figures/full-3.png
-share/gnome/help/evolution-%%PORTVERSION%%/C/figures/full-4.png
-share/gnome/help/evolution-%%PORTVERSION%%/C/figures/full-5.png
-share/gnome/help/evolution-%%PORTVERSION%%/C/figures/full-6.png
-share/gnome/help/evolution-%%PORTVERSION%%/C/figures/full-7.png
-share/gnome/help/evolution-%%PORTVERSION%%/C/figures/mail-druid-pic.png
-share/gnome/help/evolution-%%PORTVERSION%%/C/figures/mail-inbox.png
-share/gnome/help/evolution-%%PORTVERSION%%/C/figures/mail-threaded.png
-share/gnome/help/evolution-%%PORTVERSION%%/C/figures/mainwindow-pic.png
-share/gnome/help/evolution-%%PORTVERSION%%/C/figures/mail_mainwindow_a.png
-share/gnome/help/evolution-%%PORTVERSION%%/C/figures/newmsg.png
-share/gnome/help/evolution-%%PORTVERSION%%/C/figures/replymsg.png
-share/gnome/help/evolution-%%PORTVERSION%%/C/figures/schedule.png
-share/gnome/help/evolution-%%PORTVERSION%%/C/figures/vfolder-createrule-fig.png
-share/gnome/idl/evolution-%%VERSION%%/Composer.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-%%PORTVERSION%%-C.omf
-share/gnome/pixmaps/evolution-%%VERSION%%.png
-share/locale/am/LC_MESSAGES/evolution-%%VERSION%%.mo
-share/locale/ar/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/bs/LC_MESSAGES/evolution-%%VERSION%%.mo
-share/locale/ca/LC_MESSAGES/evolution-%%VERSION%%.mo
-share/locale/cs/LC_MESSAGES/evolution-%%VERSION%%.mo
-share/locale/cy/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_CA/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/fa/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/gu/LC_MESSAGES/evolution-%%VERSION%%.mo
-share/locale/he/LC_MESSAGES/evolution-%%VERSION%%.mo
-share/locale/hr/LC_MESSAGES/evolution-%%VERSION%%.mo
-share/locale/hu/LC_MESSAGES/evolution-%%VERSION%%.mo
-share/locale/is/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/mn/LC_MESSAGES/evolution-%%VERSION%%.mo
-share/locale/ms/LC_MESSAGES/evolution-%%VERSION%%.mo
-share/locale/nb/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/pa/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/sq/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/wa/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-%%PORTVERSION%%/C/figures
-@dirrm share/gnome/help/evolution-%%PORTVERSION%%/C
-@dirrm share/gnome/help/evolution-%%PORTVERSION%%
-@dirrm share/gnome/evolution/%%VERSION%%/weather
-@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
-@dirrm share/gnome/evolution/%%VERSION%%/help/quickref/C
-@dirrm share/gnome/evolution/%%VERSION%%/help/quickref
-@dirrm share/gnome/evolution/%%VERSION%%/help
-@dirrm share/gnome/evolution/%%VERSION%%/glade
-@dirrm share/gnome/evolution/%%VERSION%%/etspec
-@dirrm share/gnome/evolution/%%VERSION%%/errors
-@dirrm share/gnome/evolution/%%VERSION%%/ecps
-@dirrm share/gnome/evolution/%%VERSION%%/default/zh_CN/mail/local
-@dirrm share/gnome/evolution/%%VERSION%%/default/zh_CN/mail
-@dirrm share/gnome/evolution/%%VERSION%%/default/zh_CN
-@dirrm share/gnome/evolution/%%VERSION%%/default/pt/mail/local
-@dirrm share/gnome/evolution/%%VERSION%%/default/pt/mail
-@dirrm share/gnome/evolution/%%VERSION%%/default/pt
-@dirrm share/gnome/evolution/%%VERSION%%/default/nl/mail/local
-@dirrm share/gnome/evolution/%%VERSION%%/default/nl/mail
-@dirrm share/gnome/evolution/%%VERSION%%/default/nl
-@dirrm share/gnome/evolution/%%VERSION%%/default/ja/mail/local
-@dirrm share/gnome/evolution/%%VERSION%%/default/ja/mail
-@dirrm share/gnome/evolution/%%VERSION%%/default/ja
-@dirrm share/gnome/evolution/%%VERSION%%/default/de/mail/local
-@dirrm share/gnome/evolution/%%VERSION%%/default/de/mail
-@dirrm share/gnome/evolution/%%VERSION%%/default/de
-@dirrm share/gnome/evolution/%%VERSION%%/default/C/mail/local
-@dirrm share/gnome/evolution/%%VERSION%%/default/C/mail
-@dirrm share/gnome/evolution/%%VERSION%%/default/C
-@dirrm share/gnome/evolution/%%VERSION%%/default
-@dirrm share/gnome/evolution/%%VERSION%%
-@dirrm share/gnome/evolution
-@dirrm libexec/evolution/%%VERSION%%
-@dirrm libexec/evolution
-@dirrm lib/evolution/%%VERSION%%/plugins
-@dirrm lib/evolution/%%VERSION%%/evolution-calendar-importers
-@dirrm lib/evolution/%%VERSION%%/evolution-addressbook-importers
-%%PILOT:%%@dirrm lib/evolution/%%VERSION%%/conduits
-@dirrm lib/evolution/%%VERSION%%/components
-@dirrm lib/evolution/%%VERSION%%
-@dirrm lib/evolution
-@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%%/calendar/gui
-@dirrm include/evolution-%%VERSION%%/calendar
-@dirrm include/evolution-%%VERSION%%
-@unexec update-desktop-database > /dev/null || /usr/bin/true