Update to evolution-3.24.1.

This commit is contained in:
ajacoutot 2017-04-17 14:37:40 +00:00
parent 9e4f15e609
commit 280482f098
5 changed files with 180 additions and 571 deletions

View File

@ -1,22 +1,22 @@
# $OpenBSD: Makefile,v 1.274 2017/03/13 15:28:18 ajacoutot Exp $
# $OpenBSD: Makefile,v 1.275 2017/04/17 14:37:40 ajacoutot Exp $
COMMENT= integrated email and PIM software for GNOME
GNOME_PROJECT= evolution
GNOME_VERSION= 3.22.6
GNOME_VERSION= 3.24.1
CATEGORIES= mail
MAINTAINER= Jasper Lievisse Adriaanse <jasper@openbsd.org>, \
Antoine Jacoutot <ajacoutot@openbsd.org>
SO_VERSION= 12.0 # 0.0
SO_VERSION= 13.0 # 0.0
.for _lib in \
eabutil econtacteditor econtactlisteditor email-engine essmime \
evolution-addressbook-importers evolution-calendar-importers \
evolution-calendar evolution-mail-composer evolution-mail-formatter \
evolution-mail-importers evolution-mail evolution-shell evolution-smime \
evolution-util gnomecanvas evolutiontestsettings
evolution-util gnomecanvas
SHARED_LIBS += ${_lib} ${SO_VERSION}
.endfor
@ -28,11 +28,12 @@ WANTLIB += cryptui ebook-1.2 ebook-contacts-1.2 ecal-1.2 edataserver-1.2
WANTLIB += edataserverui-1.2 enchant gailutil-3 gcr-base-3 gcr-ui-3
WANTLIB += gdk-3 gdk_pixbuf-2.0 gio-2.0 glib-2.0 gmodule-2.0 gnome-autoar-0
WANTLIB += gnome-autoar-gtk-0 gnome-desktop-3 gobject-2.0 gtk-3
WANTLIB += gtkspell3-3 gweather-3 ical icalvcal intl ldap-2.4
WANTLIB += gtkspell3-3 gweather-3 ical icalvcal intl ldap
WANTLIB += m notify nspr4 nss3 pango-1.0 pangocairo-1.0 pst pthread
WANTLIB += secret-1 smime3 soup-2.4 sqlite3 webkit2gtk-4.0 xml2
MODULES= devel/dconf \
MODULES= devel/cmake \
devel/dconf \
x11/gnome
BUILD_DEPENDS= devel/bison \
@ -55,36 +56,27 @@ RUN_DEPENDS += textproc/highlight
MODGNOME_TOOLS= desktop-file-utils gtk-update-icon-cache yelp
MODGNOME_CPPFLAGS= -I${X11BASE}/include
MODGNOME_CPPFLAGS= -L${LOCALBASE}/include -I${X11BASE}/include
# without --as-needed, evolution takes ages to start
MODGNOME_LDFLAGS= -L${X11BASE}/lib -Wl,--as-needed
MODGNOME_LDFLAGS= -L${LOCALBASE}/lib -L${X11BASE}/lib -Wl,--as-needed
CONFIGURE_ENV= CPPFLAGS="${MODGNOME_CPPFLAGS}" LDFLAGS="${MODGNOME_LDFLAGS}"
YACC= bison
CONFIGURE_ARGS= -DWITH_BOGOFILTER="${LOCALBASE}/bin/bogofilter" \
-DWITH_SA_LEARN="${LOCALBASE}/bin/sa-learn" \
-DWITH_SPAMASSASSIN="${LOCALBASE}/bin/spamassassin" \
-DWITH_OPENLDAP=${LOCALBASE} \
-DVERSION_SUBSTRING=" (OpenBSD Ports)" \
-DENABLE_SCHEMAS_COMPILE=OFF \
-DSYSCONF_INSTALL_DIR=${SYSCONFDIR}
CONFIGURE_STYLE= gnu
CONFIGURE_ARGS= --with-bogofilter=${LOCALBASE}/bin/bogofilter \
--with-openldap="${LOCALBASE}" \
--with-sa-learn=${LOCALBASE}/bin/sa-learn \
--with-spamassassin=${LOCALBASE}/bin/spamassassin \
--with-sub-version=" (OpenBSD Ports)"
FAKE_FLAGS= autostartdir=${PREFIX}/share/examples/evolution/xdg/autostart
# REVERT 160006402248075b95c98e9e34d4538670ba7480 (Debian does the same):
REVERT_AVOID_VERSION= addressbook/importers addressbook/util \
addressbook/gui/contact-editor \
addressbook/gui/contact-list-editor libemail-engine \
smime/lib calendar/gui calendar/importers composer \
em-format mail/importers mail shell smime/gui e-util \
libgnomecanvas
# needs libytnef
CONFIGURE_ARGS += -DENABLE_YTNEF=OFF
pre-configure:
.for i in ${REVERT_AVOID_VERSION}
sed -i 's,-avoid-version,,' ${WRKSRC}/$i/Makefile.in
.endfor
${SUBST_CMD} ${WRKSRC}/CMakeLists.txt
post-install:
rm ${PREFIX}/lib/evolution/{modules,plugins,test-gio-modules,web-extensions/{,webkit-editor}}/*.{a,la}
${INSTALL_DATA_DIR} ${PREFIX}/share/examples/evolution
mv ${WRKINST}/etc/xdg ${PREFIX}/share/examples/evolution/
.include <bsd.port.mk>

View File

@ -1,2 +1,2 @@
SHA256 (evolution-3.22.6.tar.xz) = n0vkodXuTV65sTLPdRujr8gzAlqm3HuqH5SDSJ2KlD4=
SIZE (evolution-3.22.6.tar.xz) = 12288232
SHA256 (evolution-3.24.1.tar.xz) = 0tpJlihaP+LrSO32BHcmd+GayRpE0rd2aYFBATxMYQ8=
SIZE (evolution-3.24.1.tar.xz) = 12127140

View File

@ -0,0 +1,21 @@
$OpenBSD: patch-CMakeLists_txt,v 1.1 2017/04/17 14:37:40 ajacoutot Exp $
--- CMakeLists.txt.orig Mon Apr 17 14:45:43 2017
+++ CMakeLists.txt Mon Apr 17 14:46:20 2017
@@ -328,14 +328,15 @@ endif(WITH_HELP)
# iconv checking
# ******************************
-set(CMAKE_REQUIRED_LIBRARIES "-liconv")
+set(CMAKE_REQUIRED_FLAGS "-I${LOCALBASE}/include")
+set(CMAKE_REQUIRED_LIBRARIES "-L${LOCALBASE}/lib" -liconv)
CHECK_C_SOURCE_COMPILES("#include <iconv.h>
#include <stdlib.h>
int main(void) { iconv_t cd; cd = iconv_open (\"UTF-8\", \"ISO-8859-1\"); return 0; }" HAVE_LIBICONV)
unset(CMAKE_REQUIRED_LIBRARIES)
if(HAVE_LIBICONV)
- set(ICONV_LIBS "-liconv")
+ set(ICONV_LIBS "-L${LOCALBASE}/lib -liconv")
set(HAVE_ICONV ON)
else(HAVE_LIBICONV)
set(ICONV_LIBS "")

View File

@ -0,0 +1,15 @@
$OpenBSD: patch-cmake_modules_SetupBuildFlags_cmake,v 1.1 2017/04/17 14:37:40 ajacoutot Exp $
--- cmake/modules/SetupBuildFlags.cmake.orig Mon Apr 17 15:09:45 2017
+++ cmake/modules/SetupBuildFlags.cmake Mon Apr 17 15:10:13 2017
@@ -78,8 +78,8 @@ macro(setup_build_flags _maintainer_mode)
endif(CMAKE_CXX_COMPILER_ID)
if(("${CMAKE_C_COMPILER_ID}" STREQUAL "Clang") OR ("${CMAKE_C_COMPILER_ID}" STREQUAL "GNU"))
- set(CMAKE_EXE_LINKER_FLAGS "${CMAKE_EXE_LINKER_FLAGS} -Wl,--no-undefined")
- set(CMAKE_MODULE_LINKER_FLAGS "${CMAKE_MODULE_LINKER_FLAGS} -Wl,--no-undefined")
- set(CMAKE_SHARED_LINKER_FLAGS "${CMAKE_SHARED_LINKER_FLAGS} -Wl,--no-undefined")
+ set(CMAKE_EXE_LINKER_FLAGS "${CMAKE_EXE_LINKER_FLAGS}")
+ set(CMAKE_MODULE_LINKER_FLAGS "${CMAKE_MODULE_LINKER_FLAGS}")
+ set(CMAKE_SHARED_LINKER_FLAGS "${CMAKE_SHARED_LINKER_FLAGS}")
endif(("${CMAKE_C_COMPILER_ID}" STREQUAL "Clang") OR ("${CMAKE_C_COMPILER_ID}" STREQUAL "GNU"))
endmacro()

View File

@ -1,4 +1,4 @@
@comment $OpenBSD: PLIST,v 1.43 2016/10/31 14:04:58 ajacoutot Exp $
@comment $OpenBSD: PLIST,v 1.44 2017/04/17 14:37:40 ajacoutot Exp $
@conflict evolution-plugins-*
@pkgpath mail/evolution,-main
@pkgpath mail/evolution,-plugins
@ -15,6 +15,7 @@ include/evolution/calendar/gui/calendar-config.h
include/evolution/calendar/gui/calendar-view.h
include/evolution/calendar/gui/comp-util.h
include/evolution/calendar/gui/e-alarm-list.h
include/evolution/calendar/gui/e-cal-component-preview.h
include/evolution/calendar/gui/e-cal-config.h
include/evolution/calendar/gui/e-cal-data-model-subscriber.h
include/evolution/calendar/gui/e-cal-data-model.h
@ -22,6 +23,8 @@ include/evolution/calendar/gui/e-cal-dialogs.h
include/evolution/calendar/gui/e-cal-event.h
include/evolution/calendar/gui/e-cal-list-view.h
include/evolution/calendar/gui/e-cal-model-calendar.h
include/evolution/calendar/gui/e-cal-model-memos.h
include/evolution/calendar/gui/e-cal-model-tasks.h
include/evolution/calendar/gui/e-cal-model.h
include/evolution/calendar/gui/e-cal-ops.h
include/evolution/calendar/gui/e-calendar-view.h
@ -51,9 +54,12 @@ include/evolution/calendar/gui/e-meeting-time-sel-item.h
include/evolution/calendar/gui/e-meeting-time-sel.h
include/evolution/calendar/gui/e-meeting-types.h
include/evolution/calendar/gui/e-meeting-utils.h
include/evolution/calendar/gui/e-memo-table.h
include/evolution/calendar/gui/e-month-view.h
include/evolution/calendar/gui/e-select-names-editable.h
include/evolution/calendar/gui/e-select-names-renderer.h
include/evolution/calendar/gui/e-send-options-utils.h
include/evolution/calendar/gui/e-task-table.h
include/evolution/calendar/gui/e-timezone-entry.h
include/evolution/calendar/gui/e-week-view-event-item.h
include/evolution/calendar/gui/e-week-view-layout.h
@ -61,8 +67,20 @@ include/evolution/calendar/gui/e-week-view-main-item.h
include/evolution/calendar/gui/e-week-view-titles-item.h
include/evolution/calendar/gui/e-week-view.h
include/evolution/calendar/gui/e-weekday-chooser.h
include/evolution/calendar/gui/ea-cal-view-event.h
include/evolution/calendar/gui/ea-cal-view.h
include/evolution/calendar/gui/ea-calendar-helpers.h
include/evolution/calendar/gui/ea-calendar.h
include/evolution/calendar/gui/ea-day-view-cell.h
include/evolution/calendar/gui/ea-day-view-main-item.h
include/evolution/calendar/gui/ea-day-view.h
include/evolution/calendar/gui/ea-jump-button.h
include/evolution/calendar/gui/ea-week-view-cell.h
include/evolution/calendar/gui/ea-week-view-main-item.h
include/evolution/calendar/gui/ea-week-view.h
include/evolution/calendar/gui/itip-utils.h
include/evolution/calendar/gui/misc.h
include/evolution/calendar/gui/print.h
include/evolution/calendar/gui/tag-calendar.h
include/evolution/composer/
include/evolution/composer/e-composer-actions.h
@ -499,53 +517,24 @@ include/evolution/shell/e-shell-window-actions.h
include/evolution/shell/e-shell-window.h
include/evolution/shell/e-shell.h
lib/evolution/
lib/evolution/libeabutil.a
lib/evolution/libeabutil.la
@lib lib/evolution/libeabutil.so.${LIBeabutil_VERSION}
lib/evolution/libecontacteditor.a
lib/evolution/libecontacteditor.la
lib/evolution/libeabwidgets.so
@lib lib/evolution/libecontacteditor.so.${LIBecontacteditor_VERSION}
lib/evolution/libecontactlisteditor.a
lib/evolution/libecontactlisteditor.la
@lib lib/evolution/libecontactlisteditor.so.${LIBecontactlisteditor_VERSION}
lib/evolution/libemail-engine.a
lib/evolution/libemail-engine.la
lib/evolution/libecontactprint.so
lib/evolution/libedomutils.so
@lib lib/evolution/libemail-engine.so.${LIBemail-engine_VERSION}
lib/evolution/libessmime.a
lib/evolution/libessmime.la
@lib lib/evolution/libessmime.so.${LIBessmime_VERSION}
lib/evolution/libevolution-addressbook-importers.a
lib/evolution/libevolution-addressbook-importers.la
@lib lib/evolution/libevolution-addressbook-importers.so.${LIBevolution-addressbook-importers_VERSION}
lib/evolution/libevolution-calendar-importers.a
lib/evolution/libevolution-calendar-importers.la
@lib lib/evolution/libevolution-calendar-importers.so.${LIBevolution-calendar-importers_VERSION}
lib/evolution/libevolution-calendar.a
lib/evolution/libevolution-calendar.la
@lib lib/evolution/libevolution-calendar.so.${LIBevolution-calendar_VERSION}
lib/evolution/libevolution-mail-composer.a
lib/evolution/libevolution-mail-composer.la
@lib lib/evolution/libevolution-mail-composer.so.${LIBevolution-mail-composer_VERSION}
lib/evolution/libevolution-mail-formatter.a
lib/evolution/libevolution-mail-formatter.la
@lib lib/evolution/libevolution-mail-formatter.so.${LIBevolution-mail-formatter_VERSION}
lib/evolution/libevolution-mail-importers.a
lib/evolution/libevolution-mail-importers.la
@lib lib/evolution/libevolution-mail-importers.so.${LIBevolution-mail-importers_VERSION}
lib/evolution/libevolution-mail.a
lib/evolution/libevolution-mail.la
@lib lib/evolution/libevolution-mail.so.${LIBevolution-mail_VERSION}
lib/evolution/libevolution-shell.a
lib/evolution/libevolution-shell.la
@lib lib/evolution/libevolution-shell.so.${LIBevolution-shell_VERSION}
lib/evolution/libevolution-smime.a
lib/evolution/libevolution-smime.la
@lib lib/evolution/libevolution-smime.so.${LIBevolution-smime_VERSION}
lib/evolution/libevolution-util.a
lib/evolution/libevolution-util.la
@lib lib/evolution/libevolution-util.so.${LIBevolution-util_VERSION}
lib/evolution/libgnomecanvas.a
lib/evolution/libgnomecanvas.la
@lib lib/evolution/libgnomecanvas.so.${LIBgnomecanvas_VERSION}
lib/evolution/modules/
lib/evolution/modules/module-addressbook.so
@ -563,6 +552,7 @@ lib/evolution/modules/module-cal-config-weather.so
lib/evolution/modules/module-cal-config-webcal.so
lib/evolution/modules/module-calendar.so
lib/evolution/modules/module-composer-autosave.so
lib/evolution/modules/module-composer-to-meeting.so
lib/evolution/modules/module-contact-photos.so
lib/evolution/modules/module-gravatar.so
lib/evolution/modules/module-itip-formatter.so
@ -610,14 +600,11 @@ lib/evolution/plugins/org-gnome-pst-import.eplug
lib/evolution/plugins/org-gnome-publish-calendar.eplug
lib/evolution/plugins/org-gnome-save-calendar.eplug
lib/evolution/plugins/org-gnome-templates.eplug
lib/evolution/test-gio-modules/
@lib lib/evolution/test-gio-modules/libevolutiontestsettings.so.${LIBevolutiontestsettings_VERSION}
lib/evolution/web-extensions/
lib/evolution/web-extensions/libedomutils.so
lib/evolution/web-extensions/libewebextension.so
lib/evolution/web-extensions/libmoduleitipformatterwebextension.so
lib/evolution/web-extensions/module-itip-formatter-webextension.so
lib/evolution/web-extensions/webkit-editor/
lib/evolution/web-extensions/webkit-editor/libewebkiteditorwebextension.so
lib/evolution/web-extensions/webkit-editor/module-webkit-editor-webextension.so
lib/pkgconfig/evolution-calendar-3.0.pc
lib/pkgconfig/evolution-mail-3.0.pc
lib/pkgconfig/evolution-shell-3.0.pc
@ -774,6 +761,8 @@ share/evolution/help/quickref/hu/
share/evolution/help/quickref/hu/quickref.pdf
share/evolution/help/quickref/it/
share/evolution/help/quickref/it/quickref.pdf
share/evolution/help/quickref/oc/
share/evolution/help/quickref/oc/quickref.pdf
share/evolution/help/quickref/pl/
share/evolution/help/quickref/pl/quickref.pdf
share/evolution/help/quickref/pt/
@ -1067,414 +1056,6 @@ share/glib-2.0/schemas/org.gnome.evolution.plugin.publish-calendar.gschema.xml
share/glib-2.0/schemas/org.gnome.evolution.plugin.templates.gschema.xml
share/glib-2.0/schemas/org.gnome.evolution.shell.gschema.xml
share/glib-2.0/schemas/org.gnome.evolution.spamassassin.gschema.xml
share/gtk-doc/html/evolution-mail-composer/
share/gtk-doc/html/evolution-mail-composer/EComposerFromHeader.html
share/gtk-doc/html/evolution-mail-composer/EComposerHeader.html
share/gtk-doc/html/evolution-mail-composer/EComposerHeaderTable.html
share/gtk-doc/html/evolution-mail-composer/EComposerNameHeader.html
share/gtk-doc/html/evolution-mail-composer/EComposerPostHeader.html
share/gtk-doc/html/evolution-mail-composer/EComposerSpellHeader.html
share/gtk-doc/html/evolution-mail-composer/EComposerTextHeader.html
share/gtk-doc/html/evolution-mail-composer/EMsgComposer.html
share/gtk-doc/html/evolution-mail-composer/annotation-glossary.html
share/gtk-doc/html/evolution-mail-composer/api-index-3.20.html
share/gtk-doc/html/evolution-mail-composer/api-index-3.22.html
share/gtk-doc/html/evolution-mail-composer/api-index-full.html
share/gtk-doc/html/evolution-mail-composer/ch01.html
share/gtk-doc/html/evolution-mail-composer/evolution-mail-composer.devhelp2
share/gtk-doc/html/evolution-mail-composer/home.png
share/gtk-doc/html/evolution-mail-composer/index.html
share/gtk-doc/html/evolution-mail-composer/left-insensitive.png
share/gtk-doc/html/evolution-mail-composer/left.png
share/gtk-doc/html/evolution-mail-composer/object-tree.html
share/gtk-doc/html/evolution-mail-composer/right-insensitive.png
share/gtk-doc/html/evolution-mail-composer/right.png
share/gtk-doc/html/evolution-mail-composer/style.css
share/gtk-doc/html/evolution-mail-composer/up-insensitive.png
share/gtk-doc/html/evolution-mail-composer/up.png
share/gtk-doc/html/evolution-mail-engine/
share/gtk-doc/html/evolution-mail-engine/CamelNullStore.html
share/gtk-doc/html/evolution-mail-engine/CamelSaslOAuth2Google.html
share/gtk-doc/html/evolution-mail-engine/CamelSaslXOAuth2.html
share/gtk-doc/html/evolution-mail-engine/EMFilterFolderElement.html
share/gtk-doc/html/evolution-mail-engine/EMVFolderContext.html
share/gtk-doc/html/evolution-mail-engine/EMVFolderRule.html
share/gtk-doc/html/evolution-mail-engine/EMailJunkFilter.html
share/gtk-doc/html/evolution-mail-engine/EMailSession.html
share/gtk-doc/html/evolution-mail-engine/MailFolderCache.html
share/gtk-doc/html/evolution-mail-engine/api-index-3.16.html
share/gtk-doc/html/evolution-mail-engine/api-index-3.18.html
share/gtk-doc/html/evolution-mail-engine/api-index-full.html
share/gtk-doc/html/evolution-mail-engine/ch01.html
share/gtk-doc/html/evolution-mail-engine/ch02.html
share/gtk-doc/html/evolution-mail-engine/ch03.html
share/gtk-doc/html/evolution-mail-engine/evolution-mail-engine-e-mail-engine-enums.html
share/gtk-doc/html/evolution-mail-engine/evolution-mail-engine-e-mail-folder-utils.html
share/gtk-doc/html/evolution-mail-engine/evolution-mail-engine-e-mail-session-utils.html
share/gtk-doc/html/evolution-mail-engine/evolution-mail-engine-e-mail-store-utils.html
share/gtk-doc/html/evolution-mail-engine/evolution-mail-engine-e-mail-utils.html
share/gtk-doc/html/evolution-mail-engine/evolution-mail-engine-mail-config.html
share/gtk-doc/html/evolution-mail-engine/evolution-mail-engine-mail-mt.html
share/gtk-doc/html/evolution-mail-engine/evolution-mail-engine-mail-ops.html
share/gtk-doc/html/evolution-mail-engine/evolution-mail-engine-mail-tools.html
share/gtk-doc/html/evolution-mail-engine/evolution-mail-engine-mail-vfolder.html
share/gtk-doc/html/evolution-mail-engine/evolution-mail-engine.devhelp2
share/gtk-doc/html/evolution-mail-engine/home.png
share/gtk-doc/html/evolution-mail-engine/index.html
share/gtk-doc/html/evolution-mail-engine/left-insensitive.png
share/gtk-doc/html/evolution-mail-engine/left.png
share/gtk-doc/html/evolution-mail-engine/object-tree.html
share/gtk-doc/html/evolution-mail-engine/right-insensitive.png
share/gtk-doc/html/evolution-mail-engine/right.png
share/gtk-doc/html/evolution-mail-engine/style.css
share/gtk-doc/html/evolution-mail-engine/up-insensitive.png
share/gtk-doc/html/evolution-mail-engine/up.png
share/gtk-doc/html/evolution-mail-formatter/
share/gtk-doc/html/evolution-mail-formatter/EMailFormatter.html
share/gtk-doc/html/evolution-mail-formatter/EMailFormatterExtension.html
share/gtk-doc/html/evolution-mail-formatter/EMailFormatterExtensionRegistry.html
share/gtk-doc/html/evolution-mail-formatter/EMailFormatterPrintExtension.html
share/gtk-doc/html/evolution-mail-formatter/EMailFormatterQuoteExtension.html
share/gtk-doc/html/evolution-mail-formatter/EMailInlineFilter.html
share/gtk-doc/html/evolution-mail-formatter/EMailParser.html
share/gtk-doc/html/evolution-mail-formatter/EMailParserExtension.html
share/gtk-doc/html/evolution-mail-formatter/EMailPart.html
share/gtk-doc/html/evolution-mail-formatter/EMailPartAttachment.html
share/gtk-doc/html/evolution-mail-formatter/EMailPartAudio.html
share/gtk-doc/html/evolution-mail-formatter/EMailPartHeaders.html
share/gtk-doc/html/evolution-mail-formatter/EMailPartImage.html
share/gtk-doc/html/evolution-mail-formatter/EMailPartList.html
share/gtk-doc/html/evolution-mail-formatter/EMailPartSecureButton.html
share/gtk-doc/html/evolution-mail-formatter/EMailStripSigFilter.html
share/gtk-doc/html/evolution-mail-formatter/api-index-3.8.html
share/gtk-doc/html/evolution-mail-formatter/api-index-full.html
share/gtk-doc/html/evolution-mail-formatter/ch01.html
share/gtk-doc/html/evolution-mail-formatter/ch02.html
share/gtk-doc/html/evolution-mail-formatter/ch03.html
share/gtk-doc/html/evolution-mail-formatter/evolution-mail-formatter-e-mail-formatter-enums.html
share/gtk-doc/html/evolution-mail-formatter/evolution-mail-formatter-e-mail-formatter-utils.html
share/gtk-doc/html/evolution-mail-formatter/evolution-mail-formatter-e-mail-part-utils.html
share/gtk-doc/html/evolution-mail-formatter/evolution-mail-formatter.devhelp2
share/gtk-doc/html/evolution-mail-formatter/home.png
share/gtk-doc/html/evolution-mail-formatter/index.html
share/gtk-doc/html/evolution-mail-formatter/left-insensitive.png
share/gtk-doc/html/evolution-mail-formatter/left.png
share/gtk-doc/html/evolution-mail-formatter/object-tree.html
share/gtk-doc/html/evolution-mail-formatter/right-insensitive.png
share/gtk-doc/html/evolution-mail-formatter/right.png
share/gtk-doc/html/evolution-mail-formatter/style.css
share/gtk-doc/html/evolution-mail-formatter/up-insensitive.png
share/gtk-doc/html/evolution-mail-formatter/up.png
share/gtk-doc/html/evolution-shell/
share/gtk-doc/html/evolution-shell/EShell.html
share/gtk-doc/html/evolution-shell/EShellBackend.html
share/gtk-doc/html/evolution-shell/EShellContent.html
share/gtk-doc/html/evolution-shell/EShellSearchbar.html
share/gtk-doc/html/evolution-shell/EShellSidebar.html
share/gtk-doc/html/evolution-shell/EShellSwitcher.html
share/gtk-doc/html/evolution-shell/EShellTaskbar.html
share/gtk-doc/html/evolution-shell/EShellView.html
share/gtk-doc/html/evolution-shell/EShellWindow.html
share/gtk-doc/html/evolution-shell/annotation-glossary.html
share/gtk-doc/html/evolution-shell/api-index-3.10.html
share/gtk-doc/html/evolution-shell/api-index-3.16.html
share/gtk-doc/html/evolution-shell/api-index-3.4.html
share/gtk-doc/html/evolution-shell/api-index-full.html
share/gtk-doc/html/evolution-shell/ch01.html
share/gtk-doc/html/evolution-shell/ch02.html
share/gtk-doc/html/evolution-shell/ch03.html
share/gtk-doc/html/evolution-shell/evolution-shell-e-shell-migrate.html
share/gtk-doc/html/evolution-shell/evolution-shell-e-shell-utils.html
share/gtk-doc/html/evolution-shell/evolution-shell-e-shell-window-actions.html
share/gtk-doc/html/evolution-shell/evolution-shell.devhelp2
share/gtk-doc/html/evolution-shell/home.png
share/gtk-doc/html/evolution-shell/index.html
share/gtk-doc/html/evolution-shell/left-insensitive.png
share/gtk-doc/html/evolution-shell/left.png
share/gtk-doc/html/evolution-shell/object-tree.html
share/gtk-doc/html/evolution-shell/right-insensitive.png
share/gtk-doc/html/evolution-shell/right.png
share/gtk-doc/html/evolution-shell/style.css
share/gtk-doc/html/evolution-shell/up-insensitive.png
share/gtk-doc/html/evolution-shell/up.png
share/gtk-doc/html/evolution-util/
share/gtk-doc/html/evolution-util/EActionComboBox.html
share/gtk-doc/html/evolution-util/EActivity.html
share/gtk-doc/html/evolution-util/EActivityBar.html
share/gtk-doc/html/evolution-util/EActivityProxy.html
share/gtk-doc/html/evolution-util/EAlarmSelector.html
share/gtk-doc/html/evolution-util/EAlert.html
share/gtk-doc/html/evolution-util/EAlertBar.html
share/gtk-doc/html/evolution-util/EAlertDialog.html
share/gtk-doc/html/evolution-util/EAlertSink.html
share/gtk-doc/html/evolution-util/EAttachment.html
share/gtk-doc/html/evolution-util/EAttachmentBar.html
share/gtk-doc/html/evolution-util/EAttachmentDialog.html
share/gtk-doc/html/evolution-util/EAttachmentHandler.html
share/gtk-doc/html/evolution-util/EAttachmentHandlerImage.html
share/gtk-doc/html/evolution-util/EAttachmentIconView.html
share/gtk-doc/html/evolution-util/EAttachmentPaned.html
share/gtk-doc/html/evolution-util/EAttachmentStore.html
share/gtk-doc/html/evolution-util/EAttachmentTreeView.html
share/gtk-doc/html/evolution-util/EAttachmentView.html
share/gtk-doc/html/evolution-util/EAuthComboBox.html
share/gtk-doc/html/evolution-util/EAutocompleteSelector.html
share/gtk-doc/html/evolution-util/EBitArray.html
share/gtk-doc/html/evolution-util/EBookSourceConfig.html
share/gtk-doc/html/evolution-util/ECalSourceConfig.html
share/gtk-doc/html/evolution-util/ECalendar.html
share/gtk-doc/html/evolution-util/ECalendarItem.html
share/gtk-doc/html/evolution-util/ECanvas.html
share/gtk-doc/html/evolution-util/ECanvasBackground.html
share/gtk-doc/html/evolution-util/ECanvasVbox.html
share/gtk-doc/html/evolution-util/ECategoriesDialog.html
share/gtk-doc/html/evolution-util/ECategoriesEditor.html
share/gtk-doc/html/evolution-util/ECategoriesSelector.html
share/gtk-doc/html/evolution-util/ECategoryCompletion.html
share/gtk-doc/html/evolution-util/ECategoryEditor.html
share/gtk-doc/html/evolution-util/ECell.html
share/gtk-doc/html/evolution-util/ECellCheckbox.html
share/gtk-doc/html/evolution-util/ECellCombo.html
share/gtk-doc/html/evolution-util/ECellDate.html
share/gtk-doc/html/evolution-util/ECellDateEdit.html
share/gtk-doc/html/evolution-util/ECellDateInt.html
share/gtk-doc/html/evolution-util/ECellHbox.html
share/gtk-doc/html/evolution-util/ECellNumber.html
share/gtk-doc/html/evolution-util/ECellPercent.html
share/gtk-doc/html/evolution-util/ECellPixbuf.html
share/gtk-doc/html/evolution-util/ECellPopup.html
share/gtk-doc/html/evolution-util/ECellSize.html
share/gtk-doc/html/evolution-util/ECellText.html
share/gtk-doc/html/evolution-util/ECellToggle.html
share/gtk-doc/html/evolution-util/ECellTree.html
share/gtk-doc/html/evolution-util/ECellVbox.html
share/gtk-doc/html/evolution-util/ECharsetComboBox.html
share/gtk-doc/html/evolution-util/EClientCache.html
share/gtk-doc/html/evolution-util/EClientComboBox.html
share/gtk-doc/html/evolution-util/EClientSelector.html
share/gtk-doc/html/evolution-util/EColorChooserWidget.html
share/gtk-doc/html/evolution-util/EColorCombo.html
share/gtk-doc/html/evolution-util/EConfigHook.html
share/gtk-doc/html/evolution-util/EConflictSearchSelector.html
share/gtk-doc/html/evolution-util/EContactStore.html
share/gtk-doc/html/evolution-util/EContentEditor.html
share/gtk-doc/html/evolution-util/EContentRequest.html
share/gtk-doc/html/evolution-util/EDataCapture.html
share/gtk-doc/html/evolution-util/EDateEdit.html
share/gtk-doc/html/evolution-util/EDestinationStore.html
share/gtk-doc/html/evolution-util/EEmoticonAction.html
share/gtk-doc/html/evolution-util/EEmoticonChooser.html
share/gtk-doc/html/evolution-util/EEmoticonChooserMenu.html
share/gtk-doc/html/evolution-util/EEmoticonToolButton.html
share/gtk-doc/html/evolution-util/EEventHook.html
share/gtk-doc/html/evolution-util/EFileRequest.html
share/gtk-doc/html/evolution-util/EFilterCode.html
share/gtk-doc/html/evolution-util/EFilterColor.html
share/gtk-doc/html/evolution-util/EFilterDatespec.html
share/gtk-doc/html/evolution-util/EFilterElement.html
share/gtk-doc/html/evolution-util/EFilterFile.html
share/gtk-doc/html/evolution-util/EFilterInput.html
share/gtk-doc/html/evolution-util/EFilterInt.html
share/gtk-doc/html/evolution-util/EFilterOption.html
share/gtk-doc/html/evolution-util/EFilterPart.html
share/gtk-doc/html/evolution-util/EFilterRule.html
share/gtk-doc/html/evolution-util/EFocusTracker.html
share/gtk-doc/html/evolution-util/EHTMLEditor.html
share/gtk-doc/html/evolution-util/EHTMLEditorCellDialog.html
share/gtk-doc/html/evolution-util/EHTMLEditorFindDialog.html
share/gtk-doc/html/evolution-util/EHTMLEditorHRuleDialog.html
share/gtk-doc/html/evolution-util/EHTMLEditorImageDialog.html
share/gtk-doc/html/evolution-util/EHTMLEditorLinkDialog.html
share/gtk-doc/html/evolution-util/EHTMLEditorPageDialog.html
share/gtk-doc/html/evolution-util/EHTMLEditorParagraphDialog.html
share/gtk-doc/html/evolution-util/EHTMLEditorReplaceDialog.html
share/gtk-doc/html/evolution-util/EHTMLEditorSpellCheckDialog.html
share/gtk-doc/html/evolution-util/EHTMLEditorTableDialog.html
share/gtk-doc/html/evolution-util/EHTMLEditorTextDialog.html
share/gtk-doc/html/evolution-util/EImageChooser.html
share/gtk-doc/html/evolution-util/EImageChooserDialog.html
share/gtk-doc/html/evolution-util/EImportAssistant.html
share/gtk-doc/html/evolution-util/EImportHook.html
share/gtk-doc/html/evolution-util/EIntervalChooser.html
share/gtk-doc/html/evolution-util/EMailIdentityComboBox.html
share/gtk-doc/html/evolution-util/EMailSignatureComboBox.html
share/gtk-doc/html/evolution-util/EMailSignatureEditor.html
share/gtk-doc/html/evolution-util/EMailSignatureManager.html
share/gtk-doc/html/evolution-util/EMailSignaturePreview.html
share/gtk-doc/html/evolution-util/EMailSignatureScriptDialog.html
share/gtk-doc/html/evolution-util/EMailSignatureTreeView.html
share/gtk-doc/html/evolution-util/EMap.html
share/gtk-doc/html/evolution-util/EMenuToolAction.html
share/gtk-doc/html/evolution-util/EMenuToolButton.html
share/gtk-doc/html/evolution-util/ENameSelector.html
share/gtk-doc/html/evolution-util/ENameSelectorDialog.html
share/gtk-doc/html/evolution-util/ENameSelectorEntry.html
share/gtk-doc/html/evolution-util/ENameSelectorList.html
share/gtk-doc/html/evolution-util/ENameSelectorModel.html
share/gtk-doc/html/evolution-util/EOnlineButton.html
share/gtk-doc/html/evolution-util/EPaned.html
share/gtk-doc/html/evolution-util/EPhotoCache.html
share/gtk-doc/html/evolution-util/EPhotoSource.html
share/gtk-doc/html/evolution-util/EPictureGallery.html
share/gtk-doc/html/evolution-util/EPluginHook.html
share/gtk-doc/html/evolution-util/EPluginUIHook.html
share/gtk-doc/html/evolution-util/EPopupAction.html
share/gtk-doc/html/evolution-util/EPortEntry.html
share/gtk-doc/html/evolution-util/EPreferencesWindow.html
share/gtk-doc/html/evolution-util/EPreviewPane.html
share/gtk-doc/html/evolution-util/EPrintable.html
share/gtk-doc/html/evolution-util/EProxyComboBox.html
share/gtk-doc/html/evolution-util/EProxyEditor.html
share/gtk-doc/html/evolution-util/EProxyLinkSelector.html
share/gtk-doc/html/evolution-util/EProxyPreferences.html
share/gtk-doc/html/evolution-util/EProxySelector.html
share/gtk-doc/html/evolution-util/EReflow.html
share/gtk-doc/html/evolution-util/EReflowModel.html
share/gtk-doc/html/evolution-util/ERuleContext.html
share/gtk-doc/html/evolution-util/ERuleEditor.html
share/gtk-doc/html/evolution-util/ESearchBar.html
share/gtk-doc/html/evolution-util/ESelectable.html
share/gtk-doc/html/evolution-util/ESelectionModel.html
share/gtk-doc/html/evolution-util/ESelectionModelArray.html
share/gtk-doc/html/evolution-util/ESelectionModelSimple.html
share/gtk-doc/html/evolution-util/ESendOptionsDialog.html
share/gtk-doc/html/evolution-util/ESimpleAsyncResult.html
share/gtk-doc/html/evolution-util/ESorter.html
share/gtk-doc/html/evolution-util/ESorterArray.html
share/gtk-doc/html/evolution-util/ESourceComboBox.html
share/gtk-doc/html/evolution-util/ESourceConfig.html
share/gtk-doc/html/evolution-util/ESourceConfigBackend.html
share/gtk-doc/html/evolution-util/ESourceConfigDialog.html
share/gtk-doc/html/evolution-util/ESourceConflictSearch.html
share/gtk-doc/html/evolution-util/ESourceSelector.html
share/gtk-doc/html/evolution-util/ESourceSelectorDialog.html
share/gtk-doc/html/evolution-util/ESpellChecker.html
share/gtk-doc/html/evolution-util/ESpellDictionary.html
share/gtk-doc/html/evolution-util/ESpellEntry.html
share/gtk-doc/html/evolution-util/ESpinner.html
share/gtk-doc/html/evolution-util/EStockRequest.html
share/gtk-doc/html/evolution-util/ETable.html
share/gtk-doc/html/evolution-util/ETableClickToAdd.html
share/gtk-doc/html/evolution-util/ETableCol.html
share/gtk-doc/html/evolution-util/ETableColumnSelector.html
share/gtk-doc/html/evolution-util/ETableColumnSpecification.html
share/gtk-doc/html/evolution-util/ETableConfig.html
share/gtk-doc/html/evolution-util/ETableExtras.html
share/gtk-doc/html/evolution-util/ETableFieldChooser.html
share/gtk-doc/html/evolution-util/ETableFieldChooserDialog.html
share/gtk-doc/html/evolution-util/ETableFieldChooserItem.html
share/gtk-doc/html/evolution-util/ETableGroup.html
share/gtk-doc/html/evolution-util/ETableGroupContainer.html
share/gtk-doc/html/evolution-util/ETableGroupLeaf.html
share/gtk-doc/html/evolution-util/ETableHeader.html
share/gtk-doc/html/evolution-util/ETableHeaderItem.html
share/gtk-doc/html/evolution-util/ETableItem.html
share/gtk-doc/html/evolution-util/ETableModel.html
share/gtk-doc/html/evolution-util/ETableOne.html
share/gtk-doc/html/evolution-util/ETableSearch.html
share/gtk-doc/html/evolution-util/ETableSelectionModel.html
share/gtk-doc/html/evolution-util/ETableSortInfo.html
share/gtk-doc/html/evolution-util/ETableSorted.html
share/gtk-doc/html/evolution-util/ETableSortedVariable.html
share/gtk-doc/html/evolution-util/ETableSorter.html
share/gtk-doc/html/evolution-util/ETableSpecification.html
share/gtk-doc/html/evolution-util/ETableState.html
share/gtk-doc/html/evolution-util/ETableSubset.html
share/gtk-doc/html/evolution-util/ETableSubsetVariable.html
share/gtk-doc/html/evolution-util/EText.html
share/gtk-doc/html/evolution-util/ETextEventProcessor.html
share/gtk-doc/html/evolution-util/ETextEventProcessorEmacsLike.html
share/gtk-doc/html/evolution-util/ETextModel.html
share/gtk-doc/html/evolution-util/ETimezoneDialog.html
share/gtk-doc/html/evolution-util/ETree.html
share/gtk-doc/html/evolution-util/ETreeModel.html
share/gtk-doc/html/evolution-util/ETreeModelGenerator.html
share/gtk-doc/html/evolution-util/ETreeSelectionModel.html
share/gtk-doc/html/evolution-util/ETreeTableAdapter.html
share/gtk-doc/html/evolution-util/ETreeViewFrame.html
share/gtk-doc/html/evolution-util/EUrlEntry.html
share/gtk-doc/html/evolution-util/EWebView.html
share/gtk-doc/html/evolution-util/EWebViewPreview.html
share/gtk-doc/html/evolution-util/GalView.html
share/gtk-doc/html/evolution-util/GalViewCollection.html
share/gtk-doc/html/evolution-util/GalViewEtable.html
share/gtk-doc/html/evolution-util/GalViewInstance.html
share/gtk-doc/html/evolution-util/GalViewInstanceSaveAsDialog.html
share/gtk-doc/html/evolution-util/annotation-glossary.html
share/gtk-doc/html/evolution-util/api-index-2.22.html
share/gtk-doc/html/evolution-util/api-index-2.24.html
share/gtk-doc/html/evolution-util/api-index-2.26.html
share/gtk-doc/html/evolution-util/api-index-2.30.html
share/gtk-doc/html/evolution-util/api-index-2.32.html
share/gtk-doc/html/evolution-util/api-index-3.10.html
share/gtk-doc/html/evolution-util/api-index-3.12.html
share/gtk-doc/html/evolution-util/api-index-3.16.html
share/gtk-doc/html/evolution-util/api-index-3.18.html
share/gtk-doc/html/evolution-util/api-index-3.2.html
share/gtk-doc/html/evolution-util/api-index-3.20.html
share/gtk-doc/html/evolution-util/api-index-3.22.html
share/gtk-doc/html/evolution-util/api-index-3.4.html
share/gtk-doc/html/evolution-util/api-index-3.6.html
share/gtk-doc/html/evolution-util/api-index-3.8.html
share/gtk-doc/html/evolution-util/api-index-full.html
share/gtk-doc/html/evolution-util/ch01.html
share/gtk-doc/html/evolution-util/ch02.html
share/gtk-doc/html/evolution-util/ch03.html
share/gtk-doc/html/evolution-util/ch04.html
share/gtk-doc/html/evolution-util/ch05.html
share/gtk-doc/html/evolution-util/ch06.html
share/gtk-doc/html/evolution-util/ch07.html
share/gtk-doc/html/evolution-util/ch08.html
share/gtk-doc/html/evolution-util/ch09.html
share/gtk-doc/html/evolution-util/ch10.html
share/gtk-doc/html/evolution-util/ch11.html
share/gtk-doc/html/evolution-util/ch12.html
share/gtk-doc/html/evolution-util/ch13.html
share/gtk-doc/html/evolution-util/ch14.html
share/gtk-doc/html/evolution-util/ch15.html
share/gtk-doc/html/evolution-util/ch16.html
share/gtk-doc/html/evolution-util/ch17.html
share/gtk-doc/html/evolution-util/evolution-util-EContentEditorDialog.html
share/gtk-doc/html/evolution-util/evolution-util-e-buffer-tagger.html
share/gtk-doc/html/evolution-util/evolution-util-e-canvas-utils.html
share/gtk-doc/html/evolution-util/evolution-util-e-categories-config.html
share/gtk-doc/html/evolution-util/evolution-util-e-charset.html
share/gtk-doc/html/evolution-util/evolution-util-e-datetime-format.html
share/gtk-doc/html/evolution-util/evolution-util-e-dialog-utils.html
share/gtk-doc/html/evolution-util/evolution-util-e-dialog-widgets.html
share/gtk-doc/html/evolution-util/evolution-util-e-emoticon.html
share/gtk-doc/html/evolution-util/evolution-util-e-file-utils.html
share/gtk-doc/html/evolution-util/evolution-util-e-html-utils.html
share/gtk-doc/html/evolution-util/evolution-util-e-icon-factory.html
share/gtk-doc/html/evolution-util/evolution-util-e-misc-utils.html
share/gtk-doc/html/evolution-util/evolution-util-e-mktemp.html
share/gtk-doc/html/evolution-util/evolution-util-e-passwords.html
share/gtk-doc/html/evolution-util/evolution-util-e-poolv.html
share/gtk-doc/html/evolution-util/evolution-util-e-popup-menu.html
share/gtk-doc/html/evolution-util/evolution-util-e-print.html
share/gtk-doc/html/evolution-util/evolution-util-e-selection.html
share/gtk-doc/html/evolution-util/evolution-util-e-source-util.html
share/gtk-doc/html/evolution-util/evolution-util-e-spell-text-view.html
share/gtk-doc/html/evolution-util/evolution-util-e-table-header-utils.html
share/gtk-doc/html/evolution-util/evolution-util-e-table-sorting-utils.html
share/gtk-doc/html/evolution-util/evolution-util-e-table-utils.html
share/gtk-doc/html/evolution-util/evolution-util-e-text-event-processor-types.html
share/gtk-doc/html/evolution-util/evolution-util-e-text-model-repos.html
share/gtk-doc/html/evolution-util/evolution-util-e-unicode.html
share/gtk-doc/html/evolution-util/evolution-util-e-util-enums.html
share/gtk-doc/html/evolution-util/evolution-util-e-widget-undo.html
share/gtk-doc/html/evolution-util/evolution-util-e-xml-utils.html
share/gtk-doc/html/evolution-util/evolution-util.devhelp2
share/gtk-doc/html/evolution-util/home.png
share/gtk-doc/html/evolution-util/index.html
share/gtk-doc/html/evolution-util/left-insensitive.png
share/gtk-doc/html/evolution-util/left.png
share/gtk-doc/html/evolution-util/object-tree.html
share/gtk-doc/html/evolution-util/right-insensitive.png
share/gtk-doc/html/evolution-util/right.png
share/gtk-doc/html/evolution-util/style.css
share/gtk-doc/html/evolution-util/up-insensitive.png
share/gtk-doc/html/evolution-util/up.png
share/help/C/evolution/
share/help/C/evolution/backup-restore.page
share/help/C/evolution/calendar-alarms-and-reminders.page
@ -5713,99 +5294,99 @@ share/icons/hicolor/48x48/apps/evolution-memos.png
share/icons/hicolor/48x48/apps/evolution-tasks.png
share/icons/hicolor/48x48/apps/evolution.png
share/icons/hicolor/symbolic/apps/evolution-symbolic.svg
share/locale/af/LC_MESSAGES/evolution-3.22.mo
share/locale/am/LC_MESSAGES/evolution-3.22.mo
share/locale/an/LC_MESSAGES/evolution-3.22.mo
share/locale/ar/LC_MESSAGES/evolution-3.22.mo
share/locale/as/LC_MESSAGES/evolution-3.22.mo
share/locale/ast/LC_MESSAGES/evolution-3.22.mo
share/locale/az/LC_MESSAGES/evolution-3.22.mo
share/locale/be/LC_MESSAGES/evolution-3.22.mo
share/locale/be@latin/LC_MESSAGES/evolution-3.22.mo
share/locale/bg/LC_MESSAGES/evolution-3.22.mo
share/locale/bn/LC_MESSAGES/evolution-3.22.mo
share/locale/bn_IN/LC_MESSAGES/evolution-3.22.mo
share/locale/br/LC_MESSAGES/evolution-3.22.mo
share/locale/bs/LC_MESSAGES/evolution-3.22.mo
share/locale/ca/LC_MESSAGES/evolution-3.22.mo
share/locale/ca@valencia/LC_MESSAGES/evolution-3.22.mo
share/locale/cs/LC_MESSAGES/evolution-3.22.mo
share/locale/cy/LC_MESSAGES/evolution-3.22.mo
share/locale/da/LC_MESSAGES/evolution-3.22.mo
share/locale/de/LC_MESSAGES/evolution-3.22.mo
share/locale/dz/LC_MESSAGES/evolution-3.22.mo
share/locale/el/LC_MESSAGES/evolution-3.22.mo
share/locale/en@shaw/LC_MESSAGES/evolution-3.22.mo
share/locale/en_AU/LC_MESSAGES/evolution-3.22.mo
share/locale/en_CA/LC_MESSAGES/evolution-3.22.mo
share/locale/en_GB/LC_MESSAGES/evolution-3.22.mo
share/locale/eo/LC_MESSAGES/evolution-3.22.mo
share/locale/es/LC_MESSAGES/evolution-3.22.mo
share/locale/et/LC_MESSAGES/evolution-3.22.mo
share/locale/eu/LC_MESSAGES/evolution-3.22.mo
share/locale/fa/LC_MESSAGES/evolution-3.22.mo
share/locale/fi/LC_MESSAGES/evolution-3.22.mo
share/locale/fr/LC_MESSAGES/evolution-3.22.mo
share/locale/fur/LC_MESSAGES/evolution-3.22.mo
share/locale/ga/LC_MESSAGES/evolution-3.22.mo
share/locale/gl/LC_MESSAGES/evolution-3.22.mo
share/locale/gu/LC_MESSAGES/evolution-3.22.mo
share/locale/he/LC_MESSAGES/evolution-3.22.mo
share/locale/hi/LC_MESSAGES/evolution-3.22.mo
share/locale/hr/LC_MESSAGES/evolution-3.22.mo
share/locale/hu/LC_MESSAGES/evolution-3.22.mo
share/locale/id/LC_MESSAGES/evolution-3.22.mo
share/locale/is/LC_MESSAGES/evolution-3.22.mo
share/locale/it/LC_MESSAGES/evolution-3.22.mo
share/locale/ja/LC_MESSAGES/evolution-3.22.mo
share/locale/ka/LC_MESSAGES/evolution-3.22.mo
share/locale/kk/LC_MESSAGES/evolution-3.22.mo
share/locale/kn/LC_MESSAGES/evolution-3.22.mo
share/locale/ko/LC_MESSAGES/evolution-3.22.mo
share/locale/ku/LC_MESSAGES/evolution-3.22.mo
share/locale/lt/LC_MESSAGES/evolution-3.22.mo
share/locale/lv/LC_MESSAGES/evolution-3.22.mo
share/locale/mai/LC_MESSAGES/evolution-3.22.mo
share/locale/mk/LC_MESSAGES/evolution-3.22.mo
share/locale/ml/LC_MESSAGES/evolution-3.22.mo
share/locale/mn/LC_MESSAGES/evolution-3.22.mo
share/locale/mr/LC_MESSAGES/evolution-3.22.mo
share/locale/ms/LC_MESSAGES/evolution-3.22.mo
share/locale/nb/LC_MESSAGES/evolution-3.22.mo
share/locale/nds/LC_MESSAGES/evolution-3.22.mo
share/locale/ne/LC_MESSAGES/evolution-3.22.mo
share/locale/nl/LC_MESSAGES/evolution-3.22.mo
share/locale/nn/LC_MESSAGES/evolution-3.22.mo
share/locale/oc/LC_MESSAGES/evolution-3.22.mo
share/locale/or/LC_MESSAGES/evolution-3.22.mo
share/locale/pa/LC_MESSAGES/evolution-3.22.mo
share/locale/pl/LC_MESSAGES/evolution-3.22.mo
share/locale/ps/LC_MESSAGES/evolution-3.22.mo
share/locale/pt/LC_MESSAGES/evolution-3.22.mo
share/locale/pt_BR/LC_MESSAGES/evolution-3.22.mo
share/locale/ro/LC_MESSAGES/evolution-3.22.mo
share/locale/ru/LC_MESSAGES/evolution-3.22.mo
share/locale/rw/LC_MESSAGES/evolution-3.22.mo
share/locale/si/LC_MESSAGES/evolution-3.22.mo
share/locale/sk/LC_MESSAGES/evolution-3.22.mo
share/locale/sl/LC_MESSAGES/evolution-3.22.mo
share/locale/sq/LC_MESSAGES/evolution-3.22.mo
share/locale/sr/LC_MESSAGES/evolution-3.22.mo
share/locale/sr@latin/LC_MESSAGES/evolution-3.22.mo
share/locale/sv/LC_MESSAGES/evolution-3.22.mo
share/locale/ta/LC_MESSAGES/evolution-3.22.mo
share/locale/te/LC_MESSAGES/evolution-3.22.mo
share/locale/tg/LC_MESSAGES/evolution-3.22.mo
share/locale/th/LC_MESSAGES/evolution-3.22.mo
share/locale/tr/LC_MESSAGES/evolution-3.22.mo
share/locale/ug/LC_MESSAGES/evolution-3.22.mo
share/locale/uk/LC_MESSAGES/evolution-3.22.mo
share/locale/vi/LC_MESSAGES/evolution-3.22.mo
share/locale/wa/LC_MESSAGES/evolution-3.22.mo
share/locale/xh/LC_MESSAGES/evolution-3.22.mo
share/locale/zh_CN/LC_MESSAGES/evolution-3.22.mo
share/locale/zh_HK/LC_MESSAGES/evolution-3.22.mo
share/locale/zh_TW/LC_MESSAGES/evolution-3.22.mo
share/locale/af/LC_MESSAGES/evolution-3.24.mo
share/locale/am/LC_MESSAGES/evolution-3.24.mo
share/locale/an/LC_MESSAGES/evolution-3.24.mo
share/locale/ar/LC_MESSAGES/evolution-3.24.mo
share/locale/as/LC_MESSAGES/evolution-3.24.mo
share/locale/ast/LC_MESSAGES/evolution-3.24.mo
share/locale/az/LC_MESSAGES/evolution-3.24.mo
share/locale/be/LC_MESSAGES/evolution-3.24.mo
share/locale/be@latin/LC_MESSAGES/evolution-3.24.mo
share/locale/bg/LC_MESSAGES/evolution-3.24.mo
share/locale/bn/LC_MESSAGES/evolution-3.24.mo
share/locale/bn_IN/LC_MESSAGES/evolution-3.24.mo
share/locale/br/LC_MESSAGES/evolution-3.24.mo
share/locale/bs/LC_MESSAGES/evolution-3.24.mo
share/locale/ca/LC_MESSAGES/evolution-3.24.mo
share/locale/ca@valencia/LC_MESSAGES/evolution-3.24.mo
share/locale/cs/LC_MESSAGES/evolution-3.24.mo
share/locale/cy/LC_MESSAGES/evolution-3.24.mo
share/locale/da/LC_MESSAGES/evolution-3.24.mo
share/locale/de/LC_MESSAGES/evolution-3.24.mo
share/locale/dz/LC_MESSAGES/evolution-3.24.mo
share/locale/el/LC_MESSAGES/evolution-3.24.mo
share/locale/en@shaw/LC_MESSAGES/evolution-3.24.mo
share/locale/en_AU/LC_MESSAGES/evolution-3.24.mo
share/locale/en_CA/LC_MESSAGES/evolution-3.24.mo
share/locale/en_GB/LC_MESSAGES/evolution-3.24.mo
share/locale/eo/LC_MESSAGES/evolution-3.24.mo
share/locale/es/LC_MESSAGES/evolution-3.24.mo
share/locale/et/LC_MESSAGES/evolution-3.24.mo
share/locale/eu/LC_MESSAGES/evolution-3.24.mo
share/locale/fa/LC_MESSAGES/evolution-3.24.mo
share/locale/fi/LC_MESSAGES/evolution-3.24.mo
share/locale/fr/LC_MESSAGES/evolution-3.24.mo
share/locale/fur/LC_MESSAGES/evolution-3.24.mo
share/locale/ga/LC_MESSAGES/evolution-3.24.mo
share/locale/gl/LC_MESSAGES/evolution-3.24.mo
share/locale/gu/LC_MESSAGES/evolution-3.24.mo
share/locale/he/LC_MESSAGES/evolution-3.24.mo
share/locale/hi/LC_MESSAGES/evolution-3.24.mo
share/locale/hr/LC_MESSAGES/evolution-3.24.mo
share/locale/hu/LC_MESSAGES/evolution-3.24.mo
share/locale/id/LC_MESSAGES/evolution-3.24.mo
share/locale/is/LC_MESSAGES/evolution-3.24.mo
share/locale/it/LC_MESSAGES/evolution-3.24.mo
share/locale/ja/LC_MESSAGES/evolution-3.24.mo
share/locale/ka/LC_MESSAGES/evolution-3.24.mo
share/locale/kk/LC_MESSAGES/evolution-3.24.mo
share/locale/kn/LC_MESSAGES/evolution-3.24.mo
share/locale/ko/LC_MESSAGES/evolution-3.24.mo
share/locale/ku/LC_MESSAGES/evolution-3.24.mo
share/locale/lt/LC_MESSAGES/evolution-3.24.mo
share/locale/lv/LC_MESSAGES/evolution-3.24.mo
share/locale/mai/LC_MESSAGES/evolution-3.24.mo
share/locale/mk/LC_MESSAGES/evolution-3.24.mo
share/locale/ml/LC_MESSAGES/evolution-3.24.mo
share/locale/mn/LC_MESSAGES/evolution-3.24.mo
share/locale/mr/LC_MESSAGES/evolution-3.24.mo
share/locale/ms/LC_MESSAGES/evolution-3.24.mo
share/locale/nb/LC_MESSAGES/evolution-3.24.mo
share/locale/nds/LC_MESSAGES/evolution-3.24.mo
share/locale/ne/LC_MESSAGES/evolution-3.24.mo
share/locale/nl/LC_MESSAGES/evolution-3.24.mo
share/locale/nn/LC_MESSAGES/evolution-3.24.mo
share/locale/oc/LC_MESSAGES/evolution-3.24.mo
share/locale/or/LC_MESSAGES/evolution-3.24.mo
share/locale/pa/LC_MESSAGES/evolution-3.24.mo
share/locale/pl/LC_MESSAGES/evolution-3.24.mo
share/locale/ps/LC_MESSAGES/evolution-3.24.mo
share/locale/pt/LC_MESSAGES/evolution-3.24.mo
share/locale/pt_BR/LC_MESSAGES/evolution-3.24.mo
share/locale/ro/LC_MESSAGES/evolution-3.24.mo
share/locale/ru/LC_MESSAGES/evolution-3.24.mo
share/locale/rw/LC_MESSAGES/evolution-3.24.mo
share/locale/si/LC_MESSAGES/evolution-3.24.mo
share/locale/sk/LC_MESSAGES/evolution-3.24.mo
share/locale/sl/LC_MESSAGES/evolution-3.24.mo
share/locale/sq/LC_MESSAGES/evolution-3.24.mo
share/locale/sr/LC_MESSAGES/evolution-3.24.mo
share/locale/sr@latin/LC_MESSAGES/evolution-3.24.mo
share/locale/sv/LC_MESSAGES/evolution-3.24.mo
share/locale/ta/LC_MESSAGES/evolution-3.24.mo
share/locale/te/LC_MESSAGES/evolution-3.24.mo
share/locale/tg/LC_MESSAGES/evolution-3.24.mo
share/locale/th/LC_MESSAGES/evolution-3.24.mo
share/locale/tr/LC_MESSAGES/evolution-3.24.mo
share/locale/ug/LC_MESSAGES/evolution-3.24.mo
share/locale/uk/LC_MESSAGES/evolution-3.24.mo
share/locale/vi/LC_MESSAGES/evolution-3.24.mo
share/locale/wa/LC_MESSAGES/evolution-3.24.mo
share/locale/xh/LC_MESSAGES/evolution-3.24.mo
share/locale/zh_CN/LC_MESSAGES/evolution-3.24.mo
share/locale/zh_HK/LC_MESSAGES/evolution-3.24.mo
share/locale/zh_TW/LC_MESSAGES/evolution-3.24.mo
@exec %D/bin/gtk-update-icon-cache -q -t %D/share/icons/hicolor
@unexec-delete %D/bin/gtk-update-icon-cache -q -t %D/share/icons/hicolor
@exec %D/bin/glib-compile-schemas %D/share/glib-2.0/schemas >/dev/null