[Midnightbsd-cvs] mports [18171] trunk/databases/evolution-data-server: upgrade evolution data server to 3.12.10

laffer1 at midnightbsd.org laffer1 at midnightbsd.org
Sun Mar 15 16:17:45 EDT 2015


Revision: 18171
          http://svnweb.midnightbsd.org/mports/?rev=18171
Author:   laffer1
Date:     2015-03-15 16:17:44 -0400 (Sun, 15 Mar 2015)
Log Message:
-----------
upgrade evolution data server to 3.12.10

Modified Paths:
--------------
    trunk/databases/evolution-data-server/Makefile
    trunk/databases/evolution-data-server/distinfo
    trunk/databases/evolution-data-server/files/patch-calendar_libedata-cal_e-cal-backend-intervaltree.c
    trunk/databases/evolution-data-server/files/patch-camel_providers_imapx_Makefile.in
    trunk/databases/evolution-data-server/files/patch-configure
    trunk/databases/evolution-data-server/files/patch-docs_reference_camel_Makefile.in
    trunk/databases/evolution-data-server/pkg-plist

Added Paths:
-----------
    trunk/databases/evolution-data-server/files/patch-camel_camel-sasl-gssapi.c

Removed Paths:
-------------
    trunk/databases/evolution-data-server/files/patch-camel_camel-block-file.h
    trunk/databases/evolution-data-server/files/patch-camel_providers_imapx_camel-imapx-tokens.txt

Modified: trunk/databases/evolution-data-server/Makefile
===================================================================
--- trunk/databases/evolution-data-server/Makefile	2015-03-15 20:15:13 UTC (rev 18170)
+++ trunk/databases/evolution-data-server/Makefile	2015-03-15 20:17:44 UTC (rev 18171)
@@ -1,73 +1,79 @@
 # $MidnightBSD$
 
 PORTNAME=	evolution-data-server
-PORTVERSION=	2.32.1
-PORTREVISION=	2
+PORTVERSION=	3.12.10
 CATEGORIES=	databases gnome
 MASTER_SITES=	GNOME
-DIST_SUBDIR=	gnome2
+DIST_SUBDIR=	gnome3
 
 MAINTAINER=	ports at MidnightBSD.org
-COMMENT=	The data backends for the Evolution integrated mail/PIM suite
+COMMENT=	Data backends for the Evolution integrated mail/PIM suite
 
 LICENSE=	lgpl
+LICENSE_FILE=	${WRKSRC}/COPYING
 
-LIB_DEPENDS=	soup-2.4.1:${PORTSDIR}/devel/libsoup \
-		gdata.7:${PORTSDIR}/devel/libgdata \
-		dbus-glib-1.2:${PORTSDIR}/devel/dbus-glib \
-		ical.44:${PORTSDIR}/devel/libical \
-		nss3.1:${PORTSDIR}/security/nss \
-		tasn1:${PORTSDIR}/security/libtasn1 \
-		sqlite3.8:${PORTSDIR}/databases/sqlite3 \
-		gnome-keyring.0:${PORTSDIR}/security/libgnome-keyring
+BUILD_DEPENDS=	gcr>=3.11:${PORTSDIR}/security/gcr \
+		vapigen:${PORTSDIR}/lang/vala
+LIB_DEPENDS=	libsoup-gnome-2.4.so:${PORTSDIR}/devel/libsoup-gnome \
+		liboauth.so:${PORTSDIR}/net/liboauth \
+		libgoa-1.0.so:${PORTSDIR}/net/gnome-online-accounts \
+		libgdata.so:${PORTSDIR}/devel/libgdata \
+		libical.so:${PORTSDIR}/devel/libical \
+		libnss3.so:${PORTSDIR}/security/nss \
+		libtasn1.so:${PORTSDIR}/security/libtasn1 \
+		libgnome-keyring.so:${PORTSDIR}/security/libgnome-keyring
 
-USES=		bison gettext gmake tar:bzip2
-USE_GNOME=	gnomeprefix gnomehack intlhack ltverhack ltasneededhack gconf2 \
+USES=		bison gettext gmake gperf libtool pathfix pkgconfig tar:xz
+USE_GNOME=	gnomeprefix gtk30 intlhack introspection:build \
 		libxml2
 USE_OPENLDAP=	yes
-USES=	libtool
-USE_BDB=	41+
+USE_SQLITE=	yes
+GNU_CONFIGURE=	yes
+USE_BDB=	5
 USE_LDCONFIG=	yes
 CONFIGURE_ARGS=	--enable-static \
-		--enable-gnome-keyring=yes \
 		--with-openldap=yes \
+		--disable-uoa \
+		--enable-vala-bindings \
 		--with-libdb=${LOCALBASE}
-CONFIGURE_ENV=	CPPFLAGS="-I${LOCALBASE}/include -I${BDB_INCLUDE_DIR} ${PTHREAD_CFLAGS}" \
-		LDFLAGS="-L${LOCALBASE}/lib ${PTHREAD_LIBS}"
+CPPFLAGS+=	-I${LOCALBASE}/include -I${BDB_INCLUDE_DIR}
+LDFLAGS+=	-L${LOCALBASE}/lib
+INSTALL_TARGET=	install-strip
 
-PLIST_SUB=	VERSION="2.32" EVO_VERSION="1.2"
+GLIB_SCHEMAS=	org.gnome.Evolution.DefaultSources.gschema.xml \
+		org.gnome.evolution.eds-shell.gschema.xml \
+		org.gnome.evolution-data-server.addressbook.gschema.xml \
+		org.gnome.evolution-data-server.calendar.gschema.xml \
+		org.gnome.evolution.shell.network-config.gschema.xml
 
-#OPTIONS=	IMAP4	"Enable experimental IMAP4 backend" off
-OPTIONS=	WEATHER		"Enable weather calendar backend"	on \
-		KERBEROS	"Adds Kerberos support"			on
+PLIST_SUB=	VERSION="3.12" EVO_VERSION="1.2"
 
-.include <bsd.port.pre.mk>
+OPTIONS_DEFINE=	WEATHER KERBEROS
+OPTIONS_DEFAULT=WEATHER KERBEROS
+WEATHER_DESC=	Weather calendar backend
 
-.if !defined(WITHOUT_KERBEROS)
+.include <bsd.mport.options.mk>
+
+.if ${PORT_OPTIONS:MKERBEROS} && exists(/usr/bin/krb5-config)
 CONFIGURE_ARGS+=	--with-krb5=/usr
 KRB5_LIB=		`/usr/bin/krb5-config gssapi --libs`
+.else
+CONFIGURE_ARGS+=	--without-krb5
 .endif
 
-#.if defined(WITH_IMAP4) || defined(PACKAGE_BUILDING)
-#CONFIGURE_ARGS+=	--enable-imap4=yes
-#PLIST_SUB+=		IMAP4=""
-#.else
-PLIST_SUB+=		IMAP4="@comment "
-#.endif
-
-.if defined(WITH_WEATHER)
-LIB_DEPENDS+=		gweather.1:${PORTSDIR}/net/libgweather
-CONFIGURE_ARGS+=	--with-weather
+.if ${PORT_OPTIONS:MWEATHER}
+LIB_DEPENDS+=		libgweather-3.so:${PORTSDIR}/net/libgweather
+CONFIGURE_ARGS+=	--enable-weather
 PLIST_SUB+=		WEATHER=""
 .else
-CONFIGURE_ARGS+=	--without-weather
+CONFIGURE_ARGS+=	--disable-weather
 PLIST_SUB+=		WEATHER="@comment "
 .endif
 
-EDS_BDB_MSG=	"!!!WARNING!!!: Berkeley Database version is ${BDB_VER}.  If this is an upgrade, you may experience problems if you or any other Evolution-data-server users were previously using BDB_VER 41."
+EDS_BDB_MSG=	"!!!WARNING!!!: Berkeley Database version is ${BDB_VER}.  If this is an upgrade, you may experience problems if you or any other Evolution-data-server users were previously using BDB_VER 5."
 
 pre-everything::
-	@if [ x"${BDB_VER}" != x"41" ]; then \
+	@if [ x"${BDB_VER}" != x"5" ]; then \
 		${ECHO_MSG} ${EDS_BDB_MSG} | ${FMT} 75 79 ; \
 	fi
 
@@ -74,9 +80,9 @@
 post-patch:
 	@${REINPLACE_CMD} -e 's|-ldb|-l${BDB_LIB_NAME}|g ; \
 		s|heimlibs=".*"|heimlibs="${KRB5_LIB}"|g ; \
-		s|-DGTK_DISABLE_DEPRECATED||g ; \
 		s|-Wl,--no-undefined||g ; \
+		s|-Wnoexcept||g ; \
 		s|-Wmissing-include-dirs||g' \
 			${WRKSRC}/configure
 
-.include <bsd.port.post.mk>
+.include <bsd.port.mk>

Modified: trunk/databases/evolution-data-server/distinfo
===================================================================
--- trunk/databases/evolution-data-server/distinfo	2015-03-15 20:15:13 UTC (rev 18170)
+++ trunk/databases/evolution-data-server/distinfo	2015-03-15 20:17:44 UTC (rev 18171)
@@ -1,3 +1,2 @@
-SHA256 (gnome2/evolution-data-server-2.32.1.tar.bz2) = de6a724504a9d72ca550a5a157df1e27dbb951a673f281106171c2345912fc79
-RMD160 (gnome2/evolution-data-server-2.32.1.tar.bz2) = 1555b03669c60e70c01e57b35739f2953e7896d9
-SIZE (gnome2/evolution-data-server-2.32.1.tar.bz2) = 4290087
+SHA256 (gnome3/evolution-data-server-3.12.10.tar.xz) = 52466d16487474787f879b57f0b2de2aad0554e5c5161b366a597fc522ce673d
+SIZE (gnome3/evolution-data-server-3.12.10.tar.xz) = 5286312

Modified: trunk/databases/evolution-data-server/files/patch-calendar_libedata-cal_e-cal-backend-intervaltree.c
===================================================================
--- trunk/databases/evolution-data-server/files/patch-calendar_libedata-cal_e-cal-backend-intervaltree.c	2015-03-15 20:15:13 UTC (rev 18170)
+++ trunk/databases/evolution-data-server/files/patch-calendar_libedata-cal_e-cal-backend-intervaltree.c	2015-03-15 20:17:44 UTC (rev 18171)
@@ -1,10 +1,9 @@
---- calendar/libedata-cal/e-cal-backend-intervaltree.c.orig	2010-09-19 18:17:35.000000000 +0000
-+++ calendar/libedata-cal/e-cal-backend-intervaltree.c	2010-09-19 18:17:44.000000000 +0000
-@@ -26,7 +26,7 @@
+--- calendar/libedata-cal/e-cal-backend-intervaltree.c.orig	2014-03-14 14:06:17.876564707 +0000
++++ calendar/libedata-cal/e-cal-backend-intervaltree.c	2014-03-14 14:05:42.004562353 +0000
+@@ -36,6 +36,7 @@
  
  #include <stdio.h>
  #include <string.h>
--#include <malloc.h>
 +#include <stdlib.h>
  
  #include "e-cal-backend-intervaltree.h"

Deleted: trunk/databases/evolution-data-server/files/patch-camel_camel-block-file.h
===================================================================
--- trunk/databases/evolution-data-server/files/patch-camel_camel-block-file.h	2015-03-15 20:15:13 UTC (rev 18170)
+++ trunk/databases/evolution-data-server/files/patch-camel_camel-block-file.h	2015-03-15 20:17:44 UTC (rev 18171)
@@ -1,10 +0,0 @@
---- camel/camel-block-file.h.orig	Tue May 15 01:48:42 2007
-+++ camel/camel-block-file.h	Tue May 15 01:49:00 2007
-@@ -21,6 +21,7 @@
- #ifndef _CAMEL_BLOCK_FILE_H
- #define _CAMEL_BLOCK_FILE_H
- 
-+#include <sys/types.h>
- #include <camel/camel-object.h>
- #include <glib.h>
- #include <libedataserver/e-msgport.h>

Added: trunk/databases/evolution-data-server/files/patch-camel_camel-sasl-gssapi.c
===================================================================
--- trunk/databases/evolution-data-server/files/patch-camel_camel-sasl-gssapi.c	                        (rev 0)
+++ trunk/databases/evolution-data-server/files/patch-camel_camel-sasl-gssapi.c	2015-03-15 20:17:44 UTC (rev 18171)
@@ -0,0 +1,11 @@
+--- camel/camel-sasl-gssapi.c.orig	2012-05-20 12:44:42.000000000 +0200
++++ camel/camel-sasl-gssapi.c	2012-05-20 12:45:21.000000000 +0200
+@@ -66,7 +66,7 @@
+ #endif /* HAVE_MIT_KRB5 */
+ 
+ #ifdef HAVE_HEIMDAL_KRB5
+-#include <gssapi.h>
++#include <gssapi/gssapi.h>
+ #else
+ #ifdef HAVE_SUN_KRB5
+ #include <gssapi/gssapi.h>


Property changes on: trunk/databases/evolution-data-server/files/patch-camel_camel-sasl-gssapi.c
___________________________________________________________________
Added: svn:eol-style
## -0,0 +1 ##
+native
\ No newline at end of property
Added: svn:mime-type
## -0,0 +1 ##
+text/plain
\ No newline at end of property
Modified: trunk/databases/evolution-data-server/files/patch-camel_providers_imapx_Makefile.in
===================================================================
--- trunk/databases/evolution-data-server/files/patch-camel_providers_imapx_Makefile.in	2015-03-15 20:15:13 UTC (rev 18170)
+++ trunk/databases/evolution-data-server/files/patch-camel_providers_imapx_Makefile.in	2015-03-15 20:17:44 UTC (rev 18171)
@@ -1,8 +1,6 @@
-Our gperf (2.7.2) doesn't understand --output-file.
-
---- camel/providers/imapx/Makefile.in.orig	2010-04-26 14:33:56.000000000 +0200
-+++ camel/providers/imapx/Makefile.in	2010-04-26 14:35:10.000000000 +0200
-@@ -914,7 +914,7 @@ uninstall-am: uninstall-camel_providerDA
+--- camel/providers/imapx/Makefile.in.orig	2014-03-14 14:10:01.171545474 +0000
++++ camel/providers/imapx/Makefile.in	2014-03-14 14:10:08.618544114 +0000
+@@ -1117,7 +1117,7 @@
  
  
  camel-imapx-tokenise.h: camel-imapx-tokens.txt

Deleted: trunk/databases/evolution-data-server/files/patch-camel_providers_imapx_camel-imapx-tokens.txt
===================================================================
--- trunk/databases/evolution-data-server/files/patch-camel_providers_imapx_camel-imapx-tokens.txt	2015-03-15 20:15:13 UTC (rev 18170)
+++ trunk/databases/evolution-data-server/files/patch-camel_providers_imapx_camel-imapx-tokens.txt	2015-03-15 20:17:44 UTC (rev 18171)
@@ -1,8 +0,0 @@
---- camel/providers/imapx/camel-imapx-tokens.txt.orig	2010-04-26 14:25:22.000000000 +0200
-+++ camel/providers/imapx/camel-imapx-tokens.txt	2010-04-26 14:25:32.000000000 +0200
-@@ -1,5 +1,3 @@
--/* This contains all of the keywords we care about.  These
--   can be converted to an id very efficiently */
- struct _imapx_keyword {const gchar *name; camel_imapx_id_t id; };
- struct _imapx_keyword *imapx_tokenise_struct (register const char *str, register unsigned int len);
- %%

Modified: trunk/databases/evolution-data-server/files/patch-configure
===================================================================
--- trunk/databases/evolution-data-server/files/patch-configure	2015-03-15 20:15:13 UTC (rev 18170)
+++ trunk/databases/evolution-data-server/files/patch-configure	2015-03-15 20:17:44 UTC (rev 18171)
@@ -1,8 +1,8 @@
---- configure.orig	2009-12-25 20:21:00.000000000 +0100
-+++ configure	2009-12-25 20:21:01.000000000 +0100
-@@ -15968,6 +15968,14 @@
- _ACEOF
- 
+--- configure.orig	2012-05-14 06:21:51.000000000 +0200
++++ configure	2012-05-20 12:56:44.000000000 +0200
+@@ -16716,6 +16716,14 @@
+ 	DL_LIB=''
+ 	LIBEXECDIR_IN_SERVER_FILE="$libexecdir"
  	;;
 +*freebsd*)
 +	os_win32=no
@@ -13,5 +13,13 @@
 +	LIBEXECDIR_IN_SERVER_FILE="$libexecdir"
 +	;;
  *)
- 	os_win32=no
+ 	os_win32='no'
  	NO_UNDEFINED=''
+@@ -19295,6 +19303,7 @@
+ 			#include <com_err.h>
+ 			#endif
+ 
++#include <sys/types.h>
+ "
+ if test "x$ac_cv_header_com_err_h" = xyes; then :
+ 

Modified: trunk/databases/evolution-data-server/files/patch-docs_reference_camel_Makefile.in
===================================================================
--- trunk/databases/evolution-data-server/files/patch-docs_reference_camel_Makefile.in	2015-03-15 20:15:13 UTC (rev 18170)
+++ trunk/databases/evolution-data-server/files/patch-docs_reference_camel_Makefile.in	2015-03-15 20:17:44 UTC (rev 18171)
@@ -1,11 +1,11 @@
---- docs/reference/camel/Makefile.in.orig	2009-07-27 22:42:25.000000000 +0200
-+++ docs/reference/camel/Makefile.in	2009-07-27 22:42:50.000000000 +0200
-@@ -137,7 +137,7 @@ GNOME_PLATFORM_LIBS = @GNOME_PLATFORM_LI
- GOBJECT_QUERY = @GOBJECT_QUERY@
- GREP = @GREP@
+--- docs/reference/camel/Makefile.in.orig	2011-09-15 22:17:02.000000000 +0200
++++ docs/reference/camel/Makefile.in	2011-09-15 22:18:09.000000000 +0200
+@@ -159,7 +159,7 @@ GTKDOC_MKPDF = @GTKDOC_MKPDF@
+ GTKDOC_REBASE = @GTKDOC_REBASE@
  HAVE_JW = @HAVE_JW@
+ HAVE_VALA = @HAVE_VALA@
 -HTML_DIR = $(datadir)/gtk-doc/html
 +HTML_DIR = $(datadir)/doc
  ICONV_LIBS = @ICONV_LIBS@
- IDL_INCLUDES = @IDL_INCLUDES@
  INSTALL = @INSTALL@
+ INSTALL_DATA = @INSTALL_DATA@

Modified: trunk/databases/evolution-data-server/pkg-plist
===================================================================
--- trunk/databases/evolution-data-server/pkg-plist	2015-03-15 20:15:13 UTC (rev 18170)
+++ trunk/databases/evolution-data-server/pkg-plist	2015-03-15 20:17:44 UTC (rev 18171)
@@ -1,340 +1,371 @@
-include/evolution-data-server-%%VERSION%%/camel/camel-address.h
-include/evolution-data-server-%%VERSION%%/camel/camel-block-file.h
-include/evolution-data-server-%%VERSION%%/camel/camel-certdb.h
-include/evolution-data-server-%%VERSION%%/camel/camel-charset-map.h
-include/evolution-data-server-%%VERSION%%/camel/camel-cipher-context.h
-include/evolution-data-server-%%VERSION%%/camel/camel-data-cache.h
-include/evolution-data-server-%%VERSION%%/camel/camel-data-wrapper.h
-include/evolution-data-server-%%VERSION%%/camel/camel-db.h
-include/evolution-data-server-%%VERSION%%/camel/camel-debug.h
-include/evolution-data-server-%%VERSION%%/camel/camel-disco-diary.h
-include/evolution-data-server-%%VERSION%%/camel/camel-disco-folder.h
-include/evolution-data-server-%%VERSION%%/camel/camel-disco-store.h
-include/evolution-data-server-%%VERSION%%/camel/camel-file-utils.h
-include/evolution-data-server-%%VERSION%%/camel/camel-filter-driver.h
-include/evolution-data-server-%%VERSION%%/camel/camel-filter-search.h
-include/evolution-data-server-%%VERSION%%/camel/camel-folder-search.h
-include/evolution-data-server-%%VERSION%%/camel/camel-folder-summary.h
-include/evolution-data-server-%%VERSION%%/camel/camel-folder-thread.h
-include/evolution-data-server-%%VERSION%%/camel/camel-folder.h
-include/evolution-data-server-%%VERSION%%/camel/camel-gpg-context.h
-include/evolution-data-server-%%VERSION%%/camel/camel-html-parser.h
-include/evolution-data-server-%%VERSION%%/camel/camel-http-stream.h
-include/evolution-data-server-%%VERSION%%/camel/camel-iconv.h
-include/evolution-data-server-%%VERSION%%/camel/camel-index.h
-include/evolution-data-server-%%VERSION%%/camel/camel-internet-address.h
-include/evolution-data-server-%%VERSION%%/camel/camel-junk-plugin.h
-include/evolution-data-server-%%VERSION%%/camel/camel-list-utils.h
-include/evolution-data-server-%%VERSION%%/camel/camel-lock-client.h
-include/evolution-data-server-%%VERSION%%/camel/camel-lock-helper.h
-include/evolution-data-server-%%VERSION%%/camel/camel-lock.h
-include/evolution-data-server-%%VERSION%%/camel/camel-medium.h
-include/evolution-data-server-%%VERSION%%/camel/camel-mempool.h
-include/evolution-data-server-%%VERSION%%/camel/camel-mime-filter-basic.h
-include/evolution-data-server-%%VERSION%%/camel/camel-mime-filter-bestenc.h
-include/evolution-data-server-%%VERSION%%/camel/camel-mime-filter-canon.h
-include/evolution-data-server-%%VERSION%%/camel/camel-mime-filter-charset.h
-include/evolution-data-server-%%VERSION%%/camel/camel-mime-filter-crlf.h
-include/evolution-data-server-%%VERSION%%/camel/camel-mime-filter-enriched.h
-include/evolution-data-server-%%VERSION%%/camel/camel-mime-filter-from.h
-include/evolution-data-server-%%VERSION%%/camel/camel-mime-filter-gzip.h
-include/evolution-data-server-%%VERSION%%/camel/camel-mime-filter-html.h
-include/evolution-data-server-%%VERSION%%/camel/camel-mime-filter-index.h
-include/evolution-data-server-%%VERSION%%/camel/camel-mime-filter-linewrap.h
-include/evolution-data-server-%%VERSION%%/camel/camel-mime-filter-pgp.h
-include/evolution-data-server-%%VERSION%%/camel/camel-mime-filter-progress.h
-include/evolution-data-server-%%VERSION%%/camel/camel-mime-filter-save.h
-include/evolution-data-server-%%VERSION%%/camel/camel-mime-filter-tohtml.h
-include/evolution-data-server-%%VERSION%%/camel/camel-mime-filter-windows.h
-include/evolution-data-server-%%VERSION%%/camel/camel-mime-filter-yenc.h
-include/evolution-data-server-%%VERSION%%/camel/camel-mime-filter.h
-include/evolution-data-server-%%VERSION%%/camel/camel-mime-message.h
-include/evolution-data-server-%%VERSION%%/camel/camel-mime-parser.h
-include/evolution-data-server-%%VERSION%%/camel/camel-mime-part-utils.h
-include/evolution-data-server-%%VERSION%%/camel/camel-mime-part.h
-include/evolution-data-server-%%VERSION%%/camel/camel-mime-utils.h
-include/evolution-data-server-%%VERSION%%/camel/camel-movemail.h
-include/evolution-data-server-%%VERSION%%/camel/camel-msgport.h
-include/evolution-data-server-%%VERSION%%/camel/camel-multipart-encrypted.h
-include/evolution-data-server-%%VERSION%%/camel/camel-multipart-signed.h
-include/evolution-data-server-%%VERSION%%/camel/camel-multipart.h
-include/evolution-data-server-%%VERSION%%/camel/camel-net-utils.h
-include/evolution-data-server-%%VERSION%%/camel/camel-nntp-address.h
-include/evolution-data-server-%%VERSION%%/camel/camel-object.h
-include/evolution-data-server-%%VERSION%%/camel/camel-object-bag.h
-include/evolution-data-server-%%VERSION%%/camel/camel-offline-folder.h
-include/evolution-data-server-%%VERSION%%/camel/camel-offline-journal.h
-include/evolution-data-server-%%VERSION%%/camel/camel-offline-store.h
-include/evolution-data-server-%%VERSION%%/camel/camel-operation.h
-include/evolution-data-server-%%VERSION%%/camel/camel-partition-table.h
-include/evolution-data-server-%%VERSION%%/camel/camel-provider.h
-include/evolution-data-server-%%VERSION%%/camel/camel-sasl-anonymous.h
-include/evolution-data-server-%%VERSION%%/camel/camel-sasl-cram-md5.h
-include/evolution-data-server-%%VERSION%%/camel/camel-sasl-digest-md5.h
-include/evolution-data-server-%%VERSION%%/camel/camel-sasl-gssapi.h
-include/evolution-data-server-%%VERSION%%/camel/camel-sasl-login.h
-include/evolution-data-server-%%VERSION%%/camel/camel-sasl-ntlm.h
-include/evolution-data-server-%%VERSION%%/camel/camel-sasl-plain.h
-include/evolution-data-server-%%VERSION%%/camel/camel-sasl-popb4smtp.h
-include/evolution-data-server-%%VERSION%%/camel/camel-sasl.h
-include/evolution-data-server-%%VERSION%%/camel/camel-search-private.h
-include/evolution-data-server-%%VERSION%%/camel/camel-search-sql-sexp.h
-include/evolution-data-server-%%VERSION%%/camel/camel-search-sql.h
-include/evolution-data-server-%%VERSION%%/camel/camel-seekable-stream.h
-include/evolution-data-server-%%VERSION%%/camel/camel-seekable-substream.h
-include/evolution-data-server-%%VERSION%%/camel/camel-service.h
-include/evolution-data-server-%%VERSION%%/camel/camel-session.h
-include/evolution-data-server-%%VERSION%%/camel/camel-smime-context.h
-include/evolution-data-server-%%VERSION%%/camel/camel-store-summary.h
-include/evolution-data-server-%%VERSION%%/camel/camel-store.h
-include/evolution-data-server-%%VERSION%%/camel/camel-stream-buffer.h
-include/evolution-data-server-%%VERSION%%/camel/camel-stream-filter.h
-include/evolution-data-server-%%VERSION%%/camel/camel-stream-fs.h
-include/evolution-data-server-%%VERSION%%/camel/camel-stream-mem.h
-include/evolution-data-server-%%VERSION%%/camel/camel-stream-null.h
-include/evolution-data-server-%%VERSION%%/camel/camel-stream-process.h
-include/evolution-data-server-%%VERSION%%/camel/camel-stream-vfs.h
-include/evolution-data-server-%%VERSION%%/camel/camel-stream.h
-include/evolution-data-server-%%VERSION%%/camel/camel-string-utils.h
-include/evolution-data-server-%%VERSION%%/camel/camel-tcp-stream-raw.h
-include/evolution-data-server-%%VERSION%%/camel/camel-tcp-stream-ssl.h
-include/evolution-data-server-%%VERSION%%/camel/camel-tcp-stream.h
-include/evolution-data-server-%%VERSION%%/camel/camel-text-index.h
-include/evolution-data-server-%%VERSION%%/camel/camel-transport.h
-include/evolution-data-server-%%VERSION%%/camel/camel-trie.h
-include/evolution-data-server-%%VERSION%%/camel/camel-uid-cache.h
-include/evolution-data-server-%%VERSION%%/camel/camel-url-scanner.h
-include/evolution-data-server-%%VERSION%%/camel/camel-url.h
-include/evolution-data-server-%%VERSION%%/camel/camel-utf8.h
-include/evolution-data-server-%%VERSION%%/camel/camel-vee-folder.h
-include/evolution-data-server-%%VERSION%%/camel/camel-vee-store.h
-include/evolution-data-server-%%VERSION%%/camel/camel-vee-summary.h
-include/evolution-data-server-%%VERSION%%/camel/camel-vtrash-folder.h
-include/evolution-data-server-%%VERSION%%/camel/camel.h
-include/evolution-data-server-%%VERSION%%/groupwise/e-gw-connection.h
-include/evolution-data-server-%%VERSION%%/groupwise/e-gw-container.h
-include/evolution-data-server-%%VERSION%%/groupwise/e-gw-filter.h
-include/evolution-data-server-%%VERSION%%/groupwise/e-gw-item.h
-include/evolution-data-server-%%VERSION%%/groupwise/e-gw-message.h
-include/evolution-data-server-%%VERSION%%/groupwise/e-gw-proxy.h
-include/evolution-data-server-%%VERSION%%/groupwise/e-gw-recur-utils.h
-include/evolution-data-server-%%VERSION%%/groupwise/e-gw-sendoptions.h
-include/evolution-data-server-%%VERSION%%/groupwise/soup-soap-message.h
-include/evolution-data-server-%%VERSION%%/groupwise/soup-soap-response.h
-include/evolution-data-server-%%VERSION%%/libebackend/e-data-server-module.h
-include/evolution-data-server-%%VERSION%%/libebackend/e-db3-utils.h
-include/evolution-data-server-%%VERSION%%/libebackend/e-dbhash.h
-include/evolution-data-server-%%VERSION%%/libebackend/e-file-cache.h
-include/evolution-data-server-%%VERSION%%/libebackend/e-offline-listener.h
-include/evolution-data-server-%%VERSION%%/libebook/e-address-western.h
-include/evolution-data-server-%%VERSION%%/libebook/e-book-query.h
-include/evolution-data-server-%%VERSION%%/libebook/e-book-types.h
-include/evolution-data-server-%%VERSION%%/libebook/e-book-view.h
-include/evolution-data-server-%%VERSION%%/libebook/e-book.h
-include/evolution-data-server-%%VERSION%%/libebook/e-contact.h
-include/evolution-data-server-%%VERSION%%/libebook/e-destination.h
-include/evolution-data-server-%%VERSION%%/libebook/e-name-western.h
-include/evolution-data-server-%%VERSION%%/libebook/e-vcard.h
-include/evolution-data-server-%%VERSION%%/libecal/e-cal-check-timezones.h
-include/evolution-data-server-%%VERSION%%/libecal/e-cal-component.h
-include/evolution-data-server-%%VERSION%%/libecal/e-cal-recur.h
-include/evolution-data-server-%%VERSION%%/libecal/e-cal-system-timezone.h
-include/evolution-data-server-%%VERSION%%/libecal/e-cal-time-util.h
-include/evolution-data-server-%%VERSION%%/libecal/e-cal-types.h
-include/evolution-data-server-%%VERSION%%/libecal/e-cal-util.h
-include/evolution-data-server-%%VERSION%%/libecal/e-cal-view.h
-include/evolution-data-server-%%VERSION%%/libecal/e-cal.h
-include/evolution-data-server-%%VERSION%%/libedata-book/e-book-backend-cache.h
-include/evolution-data-server-%%VERSION%%/libedata-book/e-book-backend-db-cache.h
-include/evolution-data-server-%%VERSION%%/libedata-book/e-book-backend-factory.h
-include/evolution-data-server-%%VERSION%%/libedata-book/e-book-backend-sexp.h
-include/evolution-data-server-%%VERSION%%/libedata-book/e-book-backend-summary.h
-include/evolution-data-server-%%VERSION%%/libedata-book/e-book-backend-sync.h
-include/evolution-data-server-%%VERSION%%/libedata-book/e-book-backend.h
-include/evolution-data-server-%%VERSION%%/libedata-book/e-data-book-factory.h
-include/evolution-data-server-%%VERSION%%/libedata-book/e-data-book-types.h
-include/evolution-data-server-%%VERSION%%/libedata-book/e-data-book-view.h
-include/evolution-data-server-%%VERSION%%/libedata-book/e-data-book.h
-include/evolution-data-server-%%VERSION%%/libedata-cal/e-cal-backend-cache.h
-include/evolution-data-server-%%VERSION%%/libedata-cal/e-cal-backend-factory.h
-include/evolution-data-server-%%VERSION%%/libedata-cal/e-cal-backend-file-store.h
-include/evolution-data-server-%%VERSION%%/libedata-cal/e-cal-backend-intervaltree.h
-include/evolution-data-server-%%VERSION%%/libedata-cal/e-cal-backend-sexp.h
-include/evolution-data-server-%%VERSION%%/libedata-cal/e-cal-backend-store.h
-include/evolution-data-server-%%VERSION%%/libedata-cal/e-cal-backend-sync.h
-include/evolution-data-server-%%VERSION%%/libedata-cal/e-cal-backend-util.h
-include/evolution-data-server-%%VERSION%%/libedata-cal/e-cal-backend.h
-include/evolution-data-server-%%VERSION%%/libedata-cal/e-data-cal-common.h
-include/evolution-data-server-%%VERSION%%/libedata-cal/e-data-cal-factory.h
-include/evolution-data-server-%%VERSION%%/libedata-cal/e-data-cal-types.h
-include/evolution-data-server-%%VERSION%%/libedata-cal/e-data-cal-view.h
-include/evolution-data-server-%%VERSION%%/libedata-cal/e-data-cal.h
-include/evolution-data-server-%%VERSION%%/libedataserver/e-account-list.h
-include/evolution-data-server-%%VERSION%%/libedataserver/e-account.h
-include/evolution-data-server-%%VERSION%%/libedataserver/e-categories.h
-include/evolution-data-server-%%VERSION%%/libedataserver/e-data-server-util.h
-include/evolution-data-server-%%VERSION%%/libedataserver/e-debug-log.h
-include/evolution-data-server-%%VERSION%%/libedataserver/e-flag.h
-include/evolution-data-server-%%VERSION%%/libedataserver/e-iterator.h
-include/evolution-data-server-%%VERSION%%/libedataserver/e-list-iterator.h
-include/evolution-data-server-%%VERSION%%/libedataserver/e-list.h
-include/evolution-data-server-%%VERSION%%/libedataserver/e-memory.h
-include/evolution-data-server-%%VERSION%%/libedataserver/e-proxy.h
-include/evolution-data-server-%%VERSION%%/libedataserver/e-sexp.h
-include/evolution-data-server-%%VERSION%%/libedataserver/e-source-group.h
-include/evolution-data-server-%%VERSION%%/libedataserver/e-source-list.h
-include/evolution-data-server-%%VERSION%%/libedataserver/e-source.h
-include/evolution-data-server-%%VERSION%%/libedataserver/e-time-utils.h
-include/evolution-data-server-%%VERSION%%/libedataserver/e-uid.h
-include/evolution-data-server-%%VERSION%%/libedataserver/e-url.h
-include/evolution-data-server-%%VERSION%%/libedataserver/e-xml-hash-utils.h
-include/evolution-data-server-%%VERSION%%/libedataserver/e-xml-utils.h
-include/evolution-data-server-%%VERSION%%/libedataserver/eds-version.h
-include/evolution-data-server-%%VERSION%%/libedataserverui/e-book-auth-util.h
-include/evolution-data-server-%%VERSION%%/libedataserverui/e-category-completion.h
-include/evolution-data-server-%%VERSION%%/libedataserverui/e-categories-dialog.h
-include/evolution-data-server-%%VERSION%%/libedataserverui/e-cell-renderer-color.h
-include/evolution-data-server-%%VERSION%%/libedataserverui/e-contact-store.h
-include/evolution-data-server-%%VERSION%%/libedataserverui/e-destination-store.h
-include/evolution-data-server-%%VERSION%%/libedataserverui/e-name-selector-dialog.h
-include/evolution-data-server-%%VERSION%%/libedataserverui/e-name-selector-entry.h
-include/evolution-data-server-%%VERSION%%/libedataserverui/e-name-selector-list.h
-include/evolution-data-server-%%VERSION%%/libedataserverui/e-name-selector-model.h
-include/evolution-data-server-%%VERSION%%/libedataserverui/e-name-selector.h
-include/evolution-data-server-%%VERSION%%/libedataserverui/e-passwords.h
-include/evolution-data-server-%%VERSION%%/libedataserverui/e-source-combo-box.h
-include/evolution-data-server-%%VERSION%%/libedataserverui/e-source-selector-dialog.h
-include/evolution-data-server-%%VERSION%%/libedataserverui/e-source-selector.h
-include/evolution-data-server-%%VERSION%%/libedataserverui/e-tree-model-generator.h
-lib/evolution-data-server-%%EVO_VERSION%%/camel-providers/libcamelgroupwise.a
-lib/evolution-data-server-%%EVO_VERSION%%/camel-providers/libcamelgroupwise.la
-lib/evolution-data-server-%%EVO_VERSION%%/camel-providers/libcamelgroupwise.so
-lib/evolution-data-server-%%EVO_VERSION%%/camel-providers/libcamelgroupwise.urls
-lib/evolution-data-server-%%EVO_VERSION%%/camel-providers/libcamelimap.a
-lib/evolution-data-server-%%EVO_VERSION%%/camel-providers/libcamelimap.la
-lib/evolution-data-server-%%EVO_VERSION%%/camel-providers/libcamelimap.so
-lib/evolution-data-server-%%EVO_VERSION%%/camel-providers/libcamelimap.urls
-lib/evolution-data-server-%%EVO_VERSION%%/camel-providers/libcamelimapx.a
-lib/evolution-data-server-%%EVO_VERSION%%/camel-providers/libcamelimapx.la
-lib/evolution-data-server-%%EVO_VERSION%%/camel-providers/libcamelimapx.so
-lib/evolution-data-server-%%EVO_VERSION%%/camel-providers/libcamelimapx.urls
-%%IMAP4%%lib/evolution-data-server-%%EVO_VERSION%%/camel-providers/libcamelimap4.a
-%%IMAP4%%lib/evolution-data-server-%%EVO_VERSION%%/camel-providers/libcamelimap4.la
-%%IMAP4%%lib/evolution-data-server-%%EVO_VERSION%%/camel-providers/libcamelimap4.so
-%%IMAP4%%lib/evolution-data-server-%%EVO_VERSION%%/camel-providers/libcamelimap4.urls
-lib/evolution-data-server-%%EVO_VERSION%%/camel-providers/libcamellocal.a
-lib/evolution-data-server-%%EVO_VERSION%%/camel-providers/libcamellocal.la
-lib/evolution-data-server-%%EVO_VERSION%%/camel-providers/libcamellocal.so
-lib/evolution-data-server-%%EVO_VERSION%%/camel-providers/libcamellocal.urls
-lib/evolution-data-server-%%EVO_VERSION%%/camel-providers/libcamelnntp.a
-lib/evolution-data-server-%%EVO_VERSION%%/camel-providers/libcamelnntp.la
-lib/evolution-data-server-%%EVO_VERSION%%/camel-providers/libcamelnntp.so
-lib/evolution-data-server-%%EVO_VERSION%%/camel-providers/libcamelnntp.urls
-lib/evolution-data-server-%%EVO_VERSION%%/camel-providers/libcamelpop3.a
-lib/evolution-data-server-%%EVO_VERSION%%/camel-providers/libcamelpop3.la
-lib/evolution-data-server-%%EVO_VERSION%%/camel-providers/libcamelpop3.so
-lib/evolution-data-server-%%EVO_VERSION%%/camel-providers/libcamelpop3.urls
-lib/evolution-data-server-%%EVO_VERSION%%/camel-providers/libcamelsendmail.a
-lib/evolution-data-server-%%EVO_VERSION%%/camel-providers/libcamelsendmail.la
-lib/evolution-data-server-%%EVO_VERSION%%/camel-providers/libcamelsendmail.so
-lib/evolution-data-server-%%EVO_VERSION%%/camel-providers/libcamelsendmail.urls
-lib/evolution-data-server-%%EVO_VERSION%%/camel-providers/libcamelsmtp.a
-lib/evolution-data-server-%%EVO_VERSION%%/camel-providers/libcamelsmtp.la
-lib/evolution-data-server-%%EVO_VERSION%%/camel-providers/libcamelsmtp.so
-lib/evolution-data-server-%%EVO_VERSION%%/camel-providers/libcamelsmtp.urls
-lib/evolution-data-server-%%EVO_VERSION%%/extensions/libebookbackendfile.a
-lib/evolution-data-server-%%EVO_VERSION%%/extensions/libebookbackendfile.la
-lib/evolution-data-server-%%EVO_VERSION%%/extensions/libebookbackendfile.so
-lib/evolution-data-server-%%EVO_VERSION%%/extensions/libebookbackendgoogle.a
-lib/evolution-data-server-%%EVO_VERSION%%/extensions/libebookbackendgoogle.la
-lib/evolution-data-server-%%EVO_VERSION%%/extensions/libebookbackendgoogle.so
-lib/evolution-data-server-%%EVO_VERSION%%/extensions/libebookbackendgroupwise.a
-lib/evolution-data-server-%%EVO_VERSION%%/extensions/libebookbackendgroupwise.la
-lib/evolution-data-server-%%EVO_VERSION%%/extensions/libebookbackendgroupwise.so
-lib/evolution-data-server-%%EVO_VERSION%%/extensions/libebookbackendldap.a
-lib/evolution-data-server-%%EVO_VERSION%%/extensions/libebookbackendldap.la
-lib/evolution-data-server-%%EVO_VERSION%%/extensions/libebookbackendldap.so
-lib/evolution-data-server-%%EVO_VERSION%%/extensions/libebookbackendvcf.a
-lib/evolution-data-server-%%EVO_VERSION%%/extensions/libebookbackendvcf.la
-lib/evolution-data-server-%%EVO_VERSION%%/extensions/libebookbackendvcf.so
-lib/evolution-data-server-%%EVO_VERSION%%/extensions/libebookbackendwebdav.a
-lib/evolution-data-server-%%EVO_VERSION%%/extensions/libebookbackendwebdav.la
-lib/evolution-data-server-%%EVO_VERSION%%/extensions/libebookbackendwebdav.so
-lib/evolution-data-server-%%EVO_VERSION%%/extensions/libecalbackendcaldav.a
-lib/evolution-data-server-%%EVO_VERSION%%/extensions/libecalbackendcaldav.la
-lib/evolution-data-server-%%EVO_VERSION%%/extensions/libecalbackendcaldav.so
-lib/evolution-data-server-%%EVO_VERSION%%/extensions/libecalbackendcontacts.a
-lib/evolution-data-server-%%EVO_VERSION%%/extensions/libecalbackendcontacts.la
-lib/evolution-data-server-%%EVO_VERSION%%/extensions/libecalbackendcontacts.so
-lib/evolution-data-server-%%EVO_VERSION%%/extensions/libecalbackendfile.a
-lib/evolution-data-server-%%EVO_VERSION%%/extensions/libecalbackendfile.la
-lib/evolution-data-server-%%EVO_VERSION%%/extensions/libecalbackendfile.so
-lib/evolution-data-server-%%EVO_VERSION%%/extensions/libecalbackendgroupwise.a
-lib/evolution-data-server-%%EVO_VERSION%%/extensions/libecalbackendgroupwise.la
-lib/evolution-data-server-%%EVO_VERSION%%/extensions/libecalbackendgroupwise.so
-lib/evolution-data-server-%%EVO_VERSION%%/extensions/libecalbackendhttp.a
-lib/evolution-data-server-%%EVO_VERSION%%/extensions/libecalbackendhttp.la
-lib/evolution-data-server-%%EVO_VERSION%%/extensions/libecalbackendhttp.so
-%%WEATHER%%lib/evolution-data-server-%%EVO_VERSION%%/extensions/libecalbackendweather.a
-%%WEATHER%%lib/evolution-data-server-%%EVO_VERSION%%/extensions/libecalbackendweather.la
-%%WEATHER%%lib/evolution-data-server-%%EVO_VERSION%%/extensions/libecalbackendweather.so
+include/evolution-data-server/camel/camel-address.h
+include/evolution-data-server/camel/camel-async-closure.h
+include/evolution-data-server/camel/camel-block-file.h
+include/evolution-data-server/camel/camel-certdb.h
+include/evolution-data-server/camel/camel-charset-map.h
+include/evolution-data-server/camel/camel-cipher-context.h
+include/evolution-data-server/camel/camel-data-cache.h
+include/evolution-data-server/camel/camel-data-wrapper.h
+include/evolution-data-server/camel/camel-db.h
+include/evolution-data-server/camel/camel-debug.h
+include/evolution-data-server/camel/camel-enums.h
+include/evolution-data-server/camel/camel-enumtypes.h
+include/evolution-data-server/camel/camel-file-utils.h
+include/evolution-data-server/camel/camel-filter-driver.h
+include/evolution-data-server/camel/camel-filter-input-stream.h
+include/evolution-data-server/camel/camel-filter-output-stream.h
+include/evolution-data-server/camel/camel-filter-search.h
+include/evolution-data-server/camel/camel-folder-search.h
+include/evolution-data-server/camel/camel-folder-summary.h
+include/evolution-data-server/camel/camel-folder-thread.h
+include/evolution-data-server/camel/camel-folder.h
+include/evolution-data-server/camel/camel-gpg-context.h
+include/evolution-data-server/camel/camel-html-parser.h
+include/evolution-data-server/camel/camel-iconv.h
+include/evolution-data-server/camel/camel-index.h
+include/evolution-data-server/camel/camel-internet-address.h
+include/evolution-data-server/camel/camel-junk-filter.h
+include/evolution-data-server/camel/camel-local-settings.h
+include/evolution-data-server/camel/camel-lock-client.h
+include/evolution-data-server/camel/camel-lock-helper.h
+include/evolution-data-server/camel/camel-lock.h
+include/evolution-data-server/camel/camel-medium.h
+include/evolution-data-server/camel/camel-memchunk.h
+include/evolution-data-server/camel/camel-mempool.h
+include/evolution-data-server/camel/camel-mime-filter-basic.h
+include/evolution-data-server/camel/camel-mime-filter-bestenc.h
+include/evolution-data-server/camel/camel-mime-filter-canon.h
+include/evolution-data-server/camel/camel-mime-filter-charset.h
+include/evolution-data-server/camel/camel-mime-filter-crlf.h
+include/evolution-data-server/camel/camel-mime-filter-enriched.h
+include/evolution-data-server/camel/camel-mime-filter-from.h
+include/evolution-data-server/camel/camel-mime-filter-gzip.h
+include/evolution-data-server/camel/camel-mime-filter-html.h
+include/evolution-data-server/camel/camel-mime-filter-index.h
+include/evolution-data-server/camel/camel-mime-filter-linewrap.h
+include/evolution-data-server/camel/camel-mime-filter-pgp.h
+include/evolution-data-server/camel/camel-mime-filter-progress.h
+include/evolution-data-server/camel/camel-mime-filter-tohtml.h
+include/evolution-data-server/camel/camel-mime-filter-windows.h
+include/evolution-data-server/camel/camel-mime-filter-yenc.h
+include/evolution-data-server/camel/camel-mime-filter.h
+include/evolution-data-server/camel/camel-mime-message.h
+include/evolution-data-server/camel/camel-mime-parser.h
+include/evolution-data-server/camel/camel-mime-part-utils.h
+include/evolution-data-server/camel/camel-mime-part.h
+include/evolution-data-server/camel/camel-mime-utils.h
+include/evolution-data-server/camel/camel-movemail.h
+include/evolution-data-server/camel/camel-msgport.h
+include/evolution-data-server/camel/camel-multipart-encrypted.h
+include/evolution-data-server/camel/camel-multipart-signed.h
+include/evolution-data-server/camel/camel-multipart.h
+include/evolution-data-server/camel/camel-net-utils.h
+include/evolution-data-server/camel/camel-network-service.h
+include/evolution-data-server/camel/camel-network-settings.h
+include/evolution-data-server/camel/camel-nntp-address.h
+include/evolution-data-server/camel/camel-null-output-stream.h
+include/evolution-data-server/camel/camel-object-bag.h
+include/evolution-data-server/camel/camel-object.h
+include/evolution-data-server/camel/camel-offline-folder.h
+include/evolution-data-server/camel/camel-offline-settings.h
+include/evolution-data-server/camel/camel-offline-store.h
+include/evolution-data-server/camel/camel-operation.h
+include/evolution-data-server/camel/camel-partition-table.h
+include/evolution-data-server/camel/camel-provider.h
+include/evolution-data-server/camel/camel-sasl-anonymous.h
+include/evolution-data-server/camel/camel-sasl-cram-md5.h
+include/evolution-data-server/camel/camel-sasl-digest-md5.h
+include/evolution-data-server/camel/camel-sasl-gssapi.h
+include/evolution-data-server/camel/camel-sasl-login.h
+include/evolution-data-server/camel/camel-sasl-ntlm.h
+include/evolution-data-server/camel/camel-sasl-plain.h
+include/evolution-data-server/camel/camel-sasl-popb4smtp.h
+include/evolution-data-server/camel/camel-sasl.h
+include/evolution-data-server/camel/camel-search-private.h
+include/evolution-data-server/camel/camel-search-sql-sexp.h
+include/evolution-data-server/camel/camel-service.h
+include/evolution-data-server/camel/camel-session.h
+include/evolution-data-server/camel/camel-settings.h
+include/evolution-data-server/camel/camel-sexp.h
+include/evolution-data-server/camel/camel-smime-context.h
+include/evolution-data-server/camel/camel-store-settings.h
+include/evolution-data-server/camel/camel-store-summary.h
+include/evolution-data-server/camel/camel-store.h
+include/evolution-data-server/camel/camel-stream-buffer.h
+include/evolution-data-server/camel/camel-stream-filter.h
+include/evolution-data-server/camel/camel-stream-fs.h
+include/evolution-data-server/camel/camel-stream-mem.h
+include/evolution-data-server/camel/camel-stream-null.h
+include/evolution-data-server/camel/camel-stream-process.h
+include/evolution-data-server/camel/camel-stream.h
+include/evolution-data-server/camel/camel-string-utils.h
+include/evolution-data-server/camel/camel-subscribable.h
+include/evolution-data-server/camel/camel-text-index.h
+include/evolution-data-server/camel/camel-transport.h
+include/evolution-data-server/camel/camel-trie.h
+include/evolution-data-server/camel/camel-uid-cache.h
+include/evolution-data-server/camel/camel-url-scanner.h
+include/evolution-data-server/camel/camel-url.h
+include/evolution-data-server/camel/camel-utf8.h
+include/evolution-data-server/camel/camel-vee-data-cache.h
+include/evolution-data-server/camel/camel-vee-folder.h
+include/evolution-data-server/camel/camel-vee-store.h
+include/evolution-data-server/camel/camel-vee-summary.h
+include/evolution-data-server/camel/camel-vtrash-folder.h
+include/evolution-data-server/camel/camel.h
+include/evolution-data-server/libebackend/e-authentication-mediator.h
+include/evolution-data-server/libebackend/e-authentication-session.h
+include/evolution-data-server/libebackend/e-backend-enums.h
+include/evolution-data-server/libebackend/e-backend-enumtypes.h
+include/evolution-data-server/libebackend/e-backend-factory.h
+include/evolution-data-server/libebackend/e-backend.h
+include/evolution-data-server/libebackend/e-collection-backend-factory.h
+include/evolution-data-server/libebackend/e-collection-backend.h
+include/evolution-data-server/libebackend/e-data-factory.h
+include/evolution-data-server/libebackend/e-db3-utils.h
+include/evolution-data-server/libebackend/e-dbhash.h
+include/evolution-data-server/libebackend/e-dbus-server.h
+include/evolution-data-server/libebackend/e-extensible.h
+include/evolution-data-server/libebackend/e-extension.h
+include/evolution-data-server/libebackend/e-file-cache.h
+include/evolution-data-server/libebackend/e-module.h
+include/evolution-data-server/libebackend/e-oauth2-support.h
+include/evolution-data-server/libebackend/e-offline-listener.h
+include/evolution-data-server/libebackend/e-server-side-source.h
+include/evolution-data-server/libebackend/e-soup-auth-bearer.h
+include/evolution-data-server/libebackend/e-source-registry-server.h
+include/evolution-data-server/libebackend/e-sqlite3-vfs.h
+include/evolution-data-server/libebackend/e-user-prompter-server-extension.h
+include/evolution-data-server/libebackend/e-user-prompter-server.h
+include/evolution-data-server/libebackend/e-user-prompter.h
+include/evolution-data-server/libebackend/libebackend.h
+include/evolution-data-server/libebook/e-book-client-cursor.h
+include/evolution-data-server/libebook/e-book-client-view.h
+include/evolution-data-server/libebook/e-book-client.h
+include/evolution-data-server/libebook/e-book-enumtypes.h
+include/evolution-data-server/libebook/e-book-types.h
+include/evolution-data-server/libebook/e-book-view.h
+include/evolution-data-server/libebook/e-book.h
+include/evolution-data-server/libebook/e-destination.h
+include/evolution-data-server/libebook/libebook.h
+include/evolution-data-server/libebook-contacts/e-address-western.h
+include/evolution-data-server/libebook-contacts/e-book-contacts-enumtypes.h
+include/evolution-data-server/libebook-contacts/e-book-contacts-types.h
+include/evolution-data-server/libebook-contacts/e-book-query.h
+include/evolution-data-server/libebook-contacts/e-contact.h
+include/evolution-data-server/libebook-contacts/e-name-western.h
+include/evolution-data-server/libebook-contacts/e-phone-number.h
+include/evolution-data-server/libebook-contacts/e-source-backend-summary-setup.h
+include/evolution-data-server/libebook-contacts/e-vcard.h
+include/evolution-data-server/libebook-contacts/libebook-contacts.h
+include/evolution-data-server/libecal/e-cal-check-timezones.h
+include/evolution-data-server/libecal/e-cal-client-view.h
+include/evolution-data-server/libecal/e-cal-client.h
+include/evolution-data-server/libecal/e-cal-component.h
+include/evolution-data-server/libecal/e-cal-enumtypes.h
+include/evolution-data-server/libecal/e-cal-recur.h
+include/evolution-data-server/libecal/e-cal-system-timezone.h
+include/evolution-data-server/libecal/e-cal-time-util.h
+include/evolution-data-server/libecal/e-cal-types.h
+include/evolution-data-server/libecal/e-cal-util.h
+include/evolution-data-server/libecal/e-cal-view.h
+include/evolution-data-server/libecal/e-cal.h
+include/evolution-data-server/libecal/e-timezone-cache.h
+include/evolution-data-server/libecal/libecal.h
+include/evolution-data-server/libedata-book/e-book-backend-cache.h
+include/evolution-data-server/libedata-book/e-book-backend-db-cache.h
+include/evolution-data-server/libedata-book/e-book-backend-factory.h
+include/evolution-data-server/libedata-book/e-book-backend-sexp.h
+include/evolution-data-server/libedata-book/e-book-backend-sqlitedb.h
+include/evolution-data-server/libedata-book/e-book-backend-summary.h
+include/evolution-data-server/libedata-book/e-book-backend.h
+include/evolution-data-server/libedata-book/e-book-sqlite.h
+include/evolution-data-server/libedata-book/e-data-book-cursor-sqlite.h
+include/evolution-data-server/libedata-book/e-data-book-cursor.h
+include/evolution-data-server/libedata-book/e-data-book-direct.h
+include/evolution-data-server/libedata-book/e-data-book-factory.h
+include/evolution-data-server/libedata-book/e-data-book-view.h
+include/evolution-data-server/libedata-book/e-data-book.h
+include/evolution-data-server/libedata-book/libedata-book.h
+include/evolution-data-server/libedata-cal/e-cal-backend-cache.h
+include/evolution-data-server/libedata-cal/e-cal-backend-factory.h
+include/evolution-data-server/libedata-cal/e-cal-backend-intervaltree.h
+include/evolution-data-server/libedata-cal/e-cal-backend-sexp.h
+include/evolution-data-server/libedata-cal/e-cal-backend-store.h
+include/evolution-data-server/libedata-cal/e-cal-backend-sync.h
+include/evolution-data-server/libedata-cal/e-cal-backend-util.h
+include/evolution-data-server/libedata-cal/e-cal-backend.h
+include/evolution-data-server/libedata-cal/e-data-cal-factory.h
+include/evolution-data-server/libedata-cal/e-data-cal-view.h
+include/evolution-data-server/libedata-cal/e-data-cal.h
+include/evolution-data-server/libedata-cal/libedata-cal.h
+include/evolution-data-server/libedataserver/e-cancellable-locks.h
+include/evolution-data-server/libedataserver/e-categories.h
+include/evolution-data-server/libedataserver/e-client.h
+include/evolution-data-server/libedataserver/e-collator.h
+include/evolution-data-server/libedataserver/e-credentials.h
+include/evolution-data-server/libedataserver/e-data-server-util.h
+include/evolution-data-server/libedataserver/e-debug-log.h
+include/evolution-data-server/libedataserver/e-flag.h
+include/evolution-data-server/libedataserver/e-gdbus-templates.h
+include/evolution-data-server/libedataserver/e-iterator.h
+include/evolution-data-server/libedataserver/e-list-iterator.h
+include/evolution-data-server/libedataserver/e-list.h
+include/evolution-data-server/libedataserver/e-memory.h
+include/evolution-data-server/libedataserver/e-operation-pool.h
+include/evolution-data-server/libedataserver/e-proxy.h
+include/evolution-data-server/libedataserver/e-sexp.h
+include/evolution-data-server/libedataserver/e-source-address-book.h
+include/evolution-data-server/libedataserver/e-source-alarms.h
+include/evolution-data-server/libedataserver/e-source-authentication.h
+include/evolution-data-server/libedataserver/e-source-authenticator.h
+include/evolution-data-server/libedataserver/e-source-autocomplete.h
+include/evolution-data-server/libedataserver/e-source-backend.h
+include/evolution-data-server/libedataserver/e-source-calendar.h
+include/evolution-data-server/libedataserver/e-source-camel.h
+include/evolution-data-server/libedataserver/e-source-collection.h
+include/evolution-data-server/libedataserver/e-source-enums.h
+include/evolution-data-server/libedataserver/e-source-enumtypes.h
+include/evolution-data-server/libedataserver/e-source-extension.h
+include/evolution-data-server/libedataserver/e-source-goa.h
+include/evolution-data-server/libedataserver/e-source-mail-account.h
+include/evolution-data-server/libedataserver/e-source-mail-composition.h
+include/evolution-data-server/libedataserver/e-source-mail-identity.h
+include/evolution-data-server/libedataserver/e-source-mail-signature.h
+include/evolution-data-server/libedataserver/e-source-mail-submission.h
+include/evolution-data-server/libedataserver/e-source-mail-transport.h
+include/evolution-data-server/libedataserver/e-source-mdn.h
+include/evolution-data-server/libedataserver/e-source-offline.h
+include/evolution-data-server/libedataserver/e-source-openpgp.h
+include/evolution-data-server/libedataserver/e-source-proxy.h
+include/evolution-data-server/libedataserver/e-source-refresh.h
+include/evolution-data-server/libedataserver/e-source-registry.h
+include/evolution-data-server/libedataserver/e-source-resource.h
+include/evolution-data-server/libedataserver/e-source-revision-guards.h
+include/evolution-data-server/libedataserver/e-source-security.h
+include/evolution-data-server/libedataserver/e-source-selectable.h
+include/evolution-data-server/libedataserver/e-source-smime.h
+include/evolution-data-server/libedataserver/e-source-uoa.h
+include/evolution-data-server/libedataserver/e-source-webdav.h
+include/evolution-data-server/libedataserver/e-source.h
+include/evolution-data-server/libedataserver/e-time-utils.h
+include/evolution-data-server/libedataserver/e-uid.h
+include/evolution-data-server/libedataserver/e-url.h
+include/evolution-data-server/libedataserver/e-xml-hash-utils.h
+include/evolution-data-server/libedataserver/e-xml-utils.h
+include/evolution-data-server/libedataserver/eds-version.h
+include/evolution-data-server/libedataserver/libedataserver.h
+lib/evolution-data-server/addressbook-backends/libebookbackendfile.a
+lib/evolution-data-server/addressbook-backends/libebookbackendfile.so
+lib/evolution-data-server/addressbook-backends/libebookbackendgoogle.a
+lib/evolution-data-server/addressbook-backends/libebookbackendgoogle.so
+lib/evolution-data-server/addressbook-backends/libebookbackendldap.a
+lib/evolution-data-server/addressbook-backends/libebookbackendldap.so
+lib/evolution-data-server/addressbook-backends/libebookbackendwebdav.a
+lib/evolution-data-server/addressbook-backends/libebookbackendwebdav.so
+lib/evolution-data-server/calendar-backends/libecalbackendcaldav.a
+lib/evolution-data-server/calendar-backends/libecalbackendcaldav.so
+lib/evolution-data-server/calendar-backends/libecalbackendcontacts.a
+lib/evolution-data-server/calendar-backends/libecalbackendcontacts.so
+lib/evolution-data-server/calendar-backends/libecalbackendfile.a
+lib/evolution-data-server/calendar-backends/libecalbackendfile.so
+lib/evolution-data-server/calendar-backends/libecalbackendgtasks.a
+lib/evolution-data-server/calendar-backends/libecalbackendgtasks.so
+lib/evolution-data-server/calendar-backends/libecalbackendhttp.a
+lib/evolution-data-server/calendar-backends/libecalbackendhttp.so
+%%WEATHER%%lib/evolution-data-server/calendar-backends/libecalbackendweather.a
+%%WEATHER%%lib/evolution-data-server/calendar-backends/libecalbackendweather.so
+lib/evolution-data-server/camel-providers/libcamelimapx.a
+lib/evolution-data-server/camel-providers/libcamelimapx.so
+lib/evolution-data-server/camel-providers/libcamelimapx.urls
+lib/evolution-data-server/camel-providers/libcamellocal.a
+lib/evolution-data-server/camel-providers/libcamellocal.so
+lib/evolution-data-server/camel-providers/libcamellocal.urls
+lib/evolution-data-server/camel-providers/libcamelnntp.a
+lib/evolution-data-server/camel-providers/libcamelnntp.so
+lib/evolution-data-server/camel-providers/libcamelnntp.urls
+lib/evolution-data-server/camel-providers/libcamelpop3.a
+lib/evolution-data-server/camel-providers/libcamelpop3.so
+lib/evolution-data-server/camel-providers/libcamelpop3.urls
+lib/evolution-data-server/camel-providers/libcamelsendmail.a
+lib/evolution-data-server/camel-providers/libcamelsendmail.so
+lib/evolution-data-server/camel-providers/libcamelsendmail.urls
+lib/evolution-data-server/camel-providers/libcamelsmtp.a
+lib/evolution-data-server/camel-providers/libcamelsmtp.so
+lib/evolution-data-server/camel-providers/libcamelsmtp.urls
+lib/evolution-data-server/registry-modules/module-cache-reaper.a
+lib/evolution-data-server/registry-modules/module-cache-reaper.so
+lib/evolution-data-server/registry-modules/module-gnome-online-accounts.a
+lib/evolution-data-server/registry-modules/module-gnome-online-accounts.so
+lib/evolution-data-server/registry-modules/module-google-backend.a
+lib/evolution-data-server/registry-modules/module-google-backend.so
+lib/evolution-data-server/registry-modules/module-outlook-backend.a
+lib/evolution-data-server/registry-modules/module-outlook-backend.so
+lib/evolution-data-server/registry-modules/module-owncloud-backend.a
+lib/evolution-data-server/registry-modules/module-owncloud-backend.so
+lib/evolution-data-server/registry-modules/module-secret-monitor.a
+lib/evolution-data-server/registry-modules/module-secret-monitor.so
+lib/evolution-data-server/registry-modules/module-trust-prompt.a
+lib/evolution-data-server/registry-modules/module-trust-prompt.so
+lib/evolution-data-server/registry-modules/module-yahoo-backend.a
+lib/evolution-data-server/registry-modules/module-yahoo-backend.so
 lib/libcamel-%%EVO_VERSION%%.a
-lib/libcamel-%%EVO_VERSION%%.la
 lib/libcamel-%%EVO_VERSION%%.so
-lib/libcamel-%%EVO_VERSION%%.so.19
-lib/libcamel-provider-%%EVO_VERSION%%.a
-lib/libcamel-provider-%%EVO_VERSION%%.la
-lib/libcamel-provider-%%EVO_VERSION%%.so
-lib/libcamel-provider-%%EVO_VERSION%%.so.19
+lib/libcamel-%%EVO_VERSION%%.so.49
+lib/libcamel-%%EVO_VERSION%%.so.49.0.0
 lib/libebackend-%%EVO_VERSION%%.a
-lib/libebackend-%%EVO_VERSION%%.la
 lib/libebackend-%%EVO_VERSION%%.so
-lib/libebackend-%%EVO_VERSION%%.so.0
+lib/libebackend-%%EVO_VERSION%%.so.7
+lib/libebackend-%%EVO_VERSION%%.so.7.0.0
 lib/libebook-%%EVO_VERSION%%.a
-lib/libebook-%%EVO_VERSION%%.la
 lib/libebook-%%EVO_VERSION%%.so
-lib/libebook-%%EVO_VERSION%%.so.10
+lib/libebook-%%EVO_VERSION%%.so.14
+lib/libebook-%%EVO_VERSION%%.so.14.3.1
+lib/libebook-contacts-%%EVO_VERSION%%.a
+lib/libebook-contacts-%%EVO_VERSION%%.so
+lib/libebook-contacts-%%EVO_VERSION%%.so.0
+lib/libebook-contacts-%%EVO_VERSION%%.so.0.0.0
 lib/libecal-%%EVO_VERSION%%.a
-lib/libecal-%%EVO_VERSION%%.la
 lib/libecal-%%EVO_VERSION%%.so
-lib/libecal-%%EVO_VERSION%%.so.8
+lib/libecal-%%EVO_VERSION%%.so.16
+lib/libecal-%%EVO_VERSION%%.so.16.0.0
 lib/libedata-book-%%EVO_VERSION%%.a
-lib/libedata-book-%%EVO_VERSION%%.la
 lib/libedata-book-%%EVO_VERSION%%.so
-lib/libedata-book-%%EVO_VERSION%%.so.8
+lib/libedata-book-%%EVO_VERSION%%.so.20
+lib/libedata-book-%%EVO_VERSION%%.so.20.0.0
 lib/libedata-cal-%%EVO_VERSION%%.a
-lib/libedata-cal-%%EVO_VERSION%%.la
 lib/libedata-cal-%%EVO_VERSION%%.so
-lib/libedata-cal-%%EVO_VERSION%%.so.10
+lib/libedata-cal-%%EVO_VERSION%%.so.23
+lib/libedata-cal-%%EVO_VERSION%%.so.23.0.0
 lib/libedataserver-%%EVO_VERSION%%.a
-lib/libedataserver-%%EVO_VERSION%%.la
 lib/libedataserver-%%EVO_VERSION%%.so
-lib/libedataserver-%%EVO_VERSION%%.so.14
-lib/libedataserverui-%%EVO_VERSION%%.a
-lib/libedataserverui-%%EVO_VERSION%%.la
-lib/libedataserverui-%%EVO_VERSION%%.so
-lib/libedataserverui-%%EVO_VERSION%%.so.11
-lib/libegroupwise-%%EVO_VERSION%%.a
-lib/libegroupwise-%%EVO_VERSION%%.la
-lib/libegroupwise-%%EVO_VERSION%%.so
-lib/libegroupwise-%%EVO_VERSION%%.so.13
+lib/libedataserver-%%EVO_VERSION%%.so.18
+lib/libedataserver-%%EVO_VERSION%%.so.18.0.0
+lib/girepository-1.0/EBook-%%EVO_VERSION%%.typelib
+lib/girepository-1.0/EBookContacts-%%EVO_VERSION%%.typelib
+lib/girepository-1.0/EDataServer-%%EVO_VERSION%%.typelib
 libdata/pkgconfig/camel-%%EVO_VERSION%%.pc
-libdata/pkgconfig/camel-provider-%%EVO_VERSION%%.pc
 libdata/pkgconfig/evolution-data-server-%%EVO_VERSION%%.pc
 libdata/pkgconfig/libebackend-%%EVO_VERSION%%.pc
 libdata/pkgconfig/libebook-%%EVO_VERSION%%.pc
+libdata/pkgconfig/libebook-contacts-%%EVO_VERSION%%.pc
 libdata/pkgconfig/libecal-%%EVO_VERSION%%.pc
 libdata/pkgconfig/libedata-book-%%EVO_VERSION%%.pc
 libdata/pkgconfig/libedata-cal-%%EVO_VERSION%%.pc
 libdata/pkgconfig/libedataserver-%%EVO_VERSION%%.pc
-libdata/pkgconfig/libedataserverui-%%EVO_VERSION%%.pc
-libdata/pkgconfig/libegroupwise-%%EVO_VERSION%%.pc
 libexec/camel-index-control-%%EVO_VERSION%%
 libexec/camel-lock-helper-%%EVO_VERSION%%
-libexec/e-addressbook-factory
-libexec/e-calendar-factory
+libexec/evolution-addressbook-factory
+libexec/evolution-calendar-factory
+libexec/evolution-scan-gconf-tree-xml
+libexec/evolution-source-registry
+libexec/evolution-user-prompter
+share/GConf/gsettings/evolution-data-server.convert
+%%DATADIR%%/evolutionperson.schema
 share/dbus-1/services/org.gnome.evolution.dataserver.AddressBook.service
 share/dbus-1/services/org.gnome.evolution.dataserver.Calendar.service
+share/dbus-1/services/org.gnome.evolution.dataserver.Sources.service
+share/dbus-1/services/org.gnome.evolution.dataserver.UserPrompter.service
 share/doc/camel/Addresses.html
 share/doc/camel/CamelAddress.html
 share/doc/camel/CamelCertDB.html
@@ -341,20 +372,46 @@
 share/doc/camel/CamelCipherContext.html
 share/doc/camel/CamelDataCache.html
 share/doc/camel/CamelDataWrapper.html
-share/doc/camel/CamelDiscoDiary.html
-share/doc/camel/CamelDiscoFolder.html
-share/doc/camel/CamelDiscoStore.html
 share/doc/camel/CamelFilterDriver.html
+share/doc/camel/CamelFilterInputStream.html
+share/doc/camel/CamelFilterOutputStream.html
 share/doc/camel/CamelFolder.html
 share/doc/camel/CamelFolderSearch.html
 share/doc/camel/CamelFolderSummary.html
 share/doc/camel/CamelGpgContext.html
-share/doc/camel/CamelHttpStream.html
+share/doc/camel/CamelIMAPXFolder.html
+share/doc/camel/CamelIMAPXListResponse.html
+share/doc/camel/CamelIMAPXLogger.html
+share/doc/camel/CamelIMAPXMailbox.html
+share/doc/camel/CamelIMAPXNamespace.html
+share/doc/camel/CamelIMAPXNamespaceResponse.html
+share/doc/camel/CamelIMAPXSearch.html
+share/doc/camel/CamelIMAPXServer.html
+share/doc/camel/CamelIMAPXSettings.html
+share/doc/camel/CamelIMAPXStatusResponse.html
+share/doc/camel/CamelIMAPXStore.html
+share/doc/camel/CamelIMAPXStoreSummary.html
+share/doc/camel/CamelIMAPXSummary.html
 share/doc/camel/CamelIndex.html
 share/doc/camel/CamelInternetAddress.html
+share/doc/camel/CamelJunkFilter.html
 share/doc/camel/CamelKeyFile.html
 share/doc/camel/CamelKeyTable.html
+share/doc/camel/CamelLocalFolder.html
+share/doc/camel/CamelLocalSettings.html
+share/doc/camel/CamelLocalStore.html
+share/doc/camel/CamelLocalSummary.html
+share/doc/camel/CamelMaildirFolder.html
+share/doc/camel/CamelMaildirStore.html
+share/doc/camel/CamelMaildirSummary.html
+share/doc/camel/CamelMboxFolder.html
+share/doc/camel/CamelMboxStore.html
+share/doc/camel/CamelMboxSummary.html
 share/doc/camel/CamelMedium.html
+share/doc/camel/CamelMhFolder.html
+share/doc/camel/CamelMhSettings.html
+share/doc/camel/CamelMhStore.html
+share/doc/camel/CamelMhSummary.html
 share/doc/camel/CamelMimeFilter.html
 share/doc/camel/CamelMimeFilterBasic.html
 share/doc/camel/CamelMimeFilterBestenc.html
@@ -369,7 +426,6 @@
 share/doc/camel/CamelMimeFilterLinewrap.html
 share/doc/camel/CamelMimeFilterPgp.html
 share/doc/camel/CamelMimeFilterProgress.html
-share/doc/camel/CamelMimeFilterSave.html
 share/doc/camel/CamelMimeFilterToHTML.html
 share/doc/camel/CamelMimeFilterWindows.html
 share/doc/camel/CamelMimeFilterYenc.html
@@ -380,10 +436,25 @@
 share/doc/camel/CamelMultipartEncrypted.html
 share/doc/camel/CamelMultipartSigned.html
 share/doc/camel/CamelNNTPAddress.html
+share/doc/camel/CamelNNTPFolder.html
+share/doc/camel/CamelNNTPSettings.html
+share/doc/camel/CamelNNTPStore.html
+share/doc/camel/CamelNNTPStoreSummary.html
+share/doc/camel/CamelNNTPStream.html
+share/doc/camel/CamelNNTPSummary.html
+share/doc/camel/CamelNetworkService.html
+share/doc/camel/CamelNetworkSettings.html
+share/doc/camel/CamelNullOutputStream.html
 share/doc/camel/CamelObject.html
 share/doc/camel/CamelOfflineFolder.html
-share/doc/camel/CamelOfflineJournal.html
+share/doc/camel/CamelOfflineSettings.html
 share/doc/camel/CamelOfflineStore.html
+share/doc/camel/CamelPOP3Engine.html
+share/doc/camel/CamelPOP3Folder.html
+share/doc/camel/CamelPOP3Settings.html
+share/doc/camel/CamelPOP3Store.html
+share/doc/camel/CamelPOP3Stream.html
+share/doc/camel/CamelSExp.html
 share/doc/camel/CamelSMIMEContext.html
 share/doc/camel/CamelSasl.html
 share/doc/camel/CamelSaslAnonymous.html
@@ -394,11 +465,19 @@
 share/doc/camel/CamelSaslNTLM.html
 share/doc/camel/CamelSaslPOPB4SMTP.html
 share/doc/camel/CamelSaslPlain.html
-share/doc/camel/CamelSeekableStream.html
-share/doc/camel/CamelSeekableSubstream.html
+share/doc/camel/CamelSendmailSettings.html
+share/doc/camel/CamelSendmailTransport.html
 share/doc/camel/CamelService.html
 share/doc/camel/CamelSession.html
+share/doc/camel/CamelSettings.html
+share/doc/camel/CamelSmtpSettings.html
+share/doc/camel/CamelSmtpTransport.html
+share/doc/camel/CamelSpoolFolder.html
+share/doc/camel/CamelSpoolSettings.html
+share/doc/camel/CamelSpoolStore.html
+share/doc/camel/CamelSpoolSummary.html
 share/doc/camel/CamelStore.html
+share/doc/camel/CamelStoreSettings.html
 share/doc/camel/CamelStoreSummary.html
 share/doc/camel/CamelStream.html
 share/doc/camel/CamelStreamBuffer.html
@@ -407,28 +486,35 @@
 share/doc/camel/CamelStreamMem.html
 share/doc/camel/CamelStreamNull.html
 share/doc/camel/CamelStreamProcess.html
-share/doc/camel/CamelStreamVFS.html
-share/doc/camel/CamelTcpStream.html
-share/doc/camel/CamelTcpStreamRaw.html
+share/doc/camel/CamelSubscribable.html
 share/doc/camel/CamelTextIndexName.html
 share/doc/camel/CamelTransport.html
 share/doc/camel/CamelVTrashFolder.html
+share/doc/camel/CamelVeeDataCache.html
 share/doc/camel/CamelVeeFolder.html
+share/doc/camel/CamelVeeMessageInfoData.html
 share/doc/camel/CamelVeeStore.html
+share/doc/camel/CamelVeeSubfolderData.html
 share/doc/camel/CamelVeeSummary.html
 share/doc/camel/ClassTree.html
 share/doc/camel/Crypto.html
-share/doc/camel/Deprecated.html
 share/doc/camel/Filters.html
 share/doc/camel/Folders.html
 share/doc/camel/Fundamentals.html
+share/doc/camel/IMAP.html
+share/doc/camel/Local.html
 share/doc/camel/MIME.html
-share/doc/camel/Search-Folders.html
+share/doc/camel/NNTP.html
+share/doc/camel/POP.html
+share/doc/camel/SMTP.html
+share/doc/camel/Sendmail.html
 share/doc/camel/Services.html
 share/doc/camel/Storage.html
 share/doc/camel/Stream-Filters.html
 share/doc/camel/Streams.html
 share/doc/camel/Utilities.html
+share/doc/camel/Virtual-Folders.html
+share/doc/camel/annotation-glossary.html
 share/doc/camel/api-index-2.22.html
 share/doc/camel/api-index-2.24.html
 share/doc/camel/api-index-2.26.html
@@ -435,11 +521,21 @@
 share/doc/camel/api-index-2.28.html
 share/doc/camel/api-index-2.30.html
 share/doc/camel/api-index-2.32.html
+share/doc/camel/api-index-3.0.html
+share/doc/camel/api-index-3.10.html
+share/doc/camel/api-index-3.12.html
+share/doc/camel/api-index-3.2.html
+share/doc/camel/api-index-3.4.html
+share/doc/camel/api-index-3.6.html
+share/doc/camel/api-index-3.8.html
 share/doc/camel/api-index-deprecated.html
 share/doc/camel/api-index-full.html
+share/doc/camel/api.html
+share/doc/camel/camel-CamelAsyncClosure.html
 share/doc/camel/camel-CamelDB.html
+share/doc/camel/camel-CamelIMAPXCommand.html
+share/doc/camel/camel-CamelIMAPXJob.html
 share/doc/camel/camel-CamelMsgPort.html
-share/doc/camel/camel-CamelTcpStreamSSL.html
 share/doc/camel/camel-camel-charset-map.html
 share/doc/camel/camel-camel-debug.html
 share/doc/camel/camel-camel-file-utils.html
@@ -446,10 +542,9 @@
 share/doc/camel/camel-camel-filter-search.html
 share/doc/camel/camel-camel-folder-thread.html
 share/doc/camel/camel-camel-iconv.html
-share/doc/camel/camel-camel-junk-plugin.html
-share/doc/camel/camel-camel-list-utils.html
 share/doc/camel/camel-camel-lock-client.html
 share/doc/camel/camel-camel-lock.html
+share/doc/camel/camel-camel-memchunk.html
 share/doc/camel/camel-camel-mempool.html
 share/doc/camel/camel-camel-mime-utils.html
 share/doc/camel/camel-camel-movemail.html
@@ -457,7 +552,6 @@
 share/doc/camel/camel-camel-operation.html
 share/doc/camel/camel-camel-provider.html
 share/doc/camel/camel-camel-search-sql-sexp.html
-share/doc/camel/camel-camel-search-sql.html
 share/doc/camel/camel-camel-string-utils.html
 share/doc/camel/camel-camel-trie.html
 share/doc/camel/camel-camel-uid-cache.html
@@ -465,233 +559,204 @@
 share/doc/camel/camel-camel-url.html
 share/doc/camel/camel-camel-utf8.html
 share/doc/camel/camel-camel.html
-share/doc/camel/camel.devhelp
 share/doc/camel/camel.devhelp2
-share/doc/camel/classes.html
 share/doc/camel/home.png
 share/doc/camel/index.html
 share/doc/camel/index.sgml
+share/doc/camel/left-insensitive.png
 share/doc/camel/left.png
+share/doc/camel/right-insensitive.png
 share/doc/camel/right.png
+share/doc/camel/services.html
 share/doc/camel/style.css
+share/doc/camel/up-insensitive.png
 share/doc/camel/up.png
-share/doc/libebackend/api-index-2.24.html
-share/doc/libebackend/api-index-2.26.html
-share/doc/libebackend/api-index-2.28.html
-share/doc/libebackend/api-index-2.30.html
-share/doc/libebackend/api-index-deprecated.html
-share/doc/libebackend/ch01.html
-share/doc/libebackend/home.png
-share/doc/libebackend/index.html
-share/doc/libebackend/index.sgml
-share/doc/libebackend/ix01.html
-share/doc/libebackend/left.png
-share/doc/libebackend/libebackend-EOfflineListener.html
-share/doc/libebackend/libebackend-e-data-server-module.html
-share/doc/libebackend/libebackend-e-db3-utils.html
-share/doc/libebackend/libebackend-e-dbhash.html
-share/doc/libebackend/libebackend-e-file-cache.html
-share/doc/libebackend/libebackend.devhelp
-share/doc/libebackend/libebackend.devhelp2
-share/doc/libebackend/right.png
-share/doc/libebackend/style.css
-share/doc/libebackend/up.png
-share/doc/libebook/EBook.html
-share/doc/libebook/EBookView.html
-share/doc/libebook/EContact.html
-share/doc/libebook/EDestination.html
-share/doc/libebook/EVCard.html
-share/doc/libebook/api-index-1.12.html
-share/doc/libebook/api-index-2.22.html
-share/doc/libebook/api-index-2.24.html
-share/doc/libebook/api-index-2.26.html
-share/doc/libebook/api-index-2.28.html
-share/doc/libebook/api-index-2.30.html
-share/doc/libebook/api-index-2.32.html
-share/doc/libebook/api-index-deprecated.html
-share/doc/libebook/api-index-full.html
-share/doc/libebook/ch01.html
-share/doc/libebook/home.png
-share/doc/libebook/index.html
-share/doc/libebook/index.sgml
-share/doc/libebook/left.png
-share/doc/libebook/libebook-EAddressWestern.html
-share/doc/libebook/libebook-ENameWestern.html
-share/doc/libebook/libebook-e-book-query.html
-share/doc/libebook/libebook-e-book-types.html
-share/doc/libebook/libebook.devhelp
-share/doc/libebook/libebook.devhelp2
-share/doc/libebook/right.png
-share/doc/libebook/style.css
-share/doc/libebook/up.png
-share/doc/libecal/ECal.html
-share/doc/libecal/ECalComponent.html
-share/doc/libecal/ECalView.html
-share/doc/libecal/api-index-1.12.html
-share/doc/libecal/api-index-2.22.html
-share/doc/libecal/api-index-2.24.html
-share/doc/libecal/api-index-2.26.html
-share/doc/libecal/api-index-2.28.html
-share/doc/libecal/api-index-2.30.html
-share/doc/libecal/api-index-2.32.html
-share/doc/libecal/api-index-deprecated.html
-share/doc/libecal/api-index-full.html
-share/doc/libecal/ch01.html
-share/doc/libecal/home.png
-share/doc/libecal/index.html
-share/doc/libecal/index.sgml
-share/doc/libecal/left.png
-share/doc/libecal/libecal-e-cal-check-timezones.html
-share/doc/libecal/libecal-e-cal-recur.html
-share/doc/libecal/libecal-e-cal-system-timezone.html
-share/doc/libecal/libecal-e-cal-time-util.html
-share/doc/libecal/libecal-e-cal-types.html
-share/doc/libecal/libecal-e-cal-util.html
-share/doc/libecal/libecal.devhelp
-share/doc/libecal/libecal.devhelp2
-share/doc/libecal/right.png
-share/doc/libecal/style.css
-share/doc/libecal/up.png
-share/doc/libedata-book/EBookBackend.html
-share/doc/libedata-book/EBookBackendCache.html
-share/doc/libedata-book/EBookBackendFactory.html
-share/doc/libedata-book/EBookBackendSExp.html
-share/doc/libedata-book/EBookBackendSummary.html
-share/doc/libedata-book/EBookBackendSync.html
-share/doc/libedata-book/EDataBook.html
-share/doc/libedata-book/EDataBookView.html
-share/doc/libedata-book/api-index-1.12.html
-share/doc/libedata-book/api-index-2.22.html
-share/doc/libedata-book/api-index-2.24.html
-share/doc/libedata-book/api-index-2.26.html
-share/doc/libedata-book/api-index-2.28.html
-share/doc/libedata-book/api-index-2.30.html
-share/doc/libedata-book/api-index-2.32.html
-share/doc/libedata-book/api-index-deprecated.html
-share/doc/libedata-book/api-index-full.html
-share/doc/libedata-book/ch01.html
-share/doc/libedata-book/home.png
-share/doc/libedata-book/index.html
-share/doc/libedata-book/index.sgml
-share/doc/libedata-book/left.png
-share/doc/libedata-book/libedata-book-EDataBookFactory.html
-share/doc/libedata-book/libedata-book-e-book-backend-db-cache.html
-share/doc/libedata-book/libedata-book-ximian-vcard.html
-share/doc/libedata-book/libedata-book.devhelp
-share/doc/libedata-book/libedata-book.devhelp2
-share/doc/libedata-book/right.png
-share/doc/libedata-book/style.css
-share/doc/libedata-book/up.png
-share/doc/libedata-cal/ECalBackend.html
-share/doc/libedata-cal/ECalBackendCache.html
-share/doc/libedata-cal/ECalBackendFactory.html
-share/doc/libedata-cal/ECalBackendSExp.html
-share/doc/libedata-cal/ECalBackendSync.html
-share/doc/libedata-cal/EDataCal.html
-share/doc/libedata-cal/api-index-1.12.html
-share/doc/libedata-cal/api-index-2.22.html
-share/doc/libedata-cal/api-index-2.24.html
-share/doc/libedata-cal/api-index-2.26.html
-share/doc/libedata-cal/api-index-2.28.html
-share/doc/libedata-cal/api-index-2.30.html
-share/doc/libedata-cal/api-index-2.32.html
-share/doc/libedata-cal/api-index-deprecated.html
-share/doc/libedata-cal/api-index-full.html
-share/doc/libedata-cal/ch01.html
-share/doc/libedata-cal/home.png
-share/doc/libedata-cal/index.html
-share/doc/libedata-cal/index.sgml
-share/doc/libedata-cal/left.png
-share/doc/libedata-cal/libedata-cal-ECalBackendFileStore.html
-share/doc/libedata-cal/libedata-cal-ECalBackendLoaderFactory.html
-share/doc/libedata-cal/libedata-cal-ECalBackendStore.html
-share/doc/libedata-cal/libedata-cal-EDataCalFactory.html
-share/doc/libedata-cal/libedata-cal-EDataCalView.html
-share/doc/libedata-cal/libedata-cal-EIntervalTree.html
-share/doc/libedata-cal/libedata-cal-e-cal-backend-util.html
-share/doc/libedata-cal/libedata-cal.devhelp
-share/doc/libedata-cal/libedata-cal.devhelp2
-share/doc/libedata-cal/right.png
-share/doc/libedata-cal/style.css
-share/doc/libedata-cal/up.png
-share/doc/libedataserver/EAccount.html
-share/doc/libedataserver/EAccountList.html
-share/doc/libedataserver/EIterator.html
-share/doc/libedataserver/EList.html
-share/doc/libedataserver/EListIterator.html
-share/doc/libedataserver/ESource.html
-share/doc/libedataserver/ESourceGroup.html
-share/doc/libedataserver/ESourceList.html
-share/doc/libedataserver/api-index-1.12.html
-share/doc/libedataserver/api-index-2.22.html
-share/doc/libedataserver/api-index-2.24.html
-share/doc/libedataserver/api-index-2.26.html
-share/doc/libedataserver/api-index-2.28.html
-share/doc/libedataserver/api-index-2.30.html
-share/doc/libedataserver/api-index-2.32.html
-share/doc/libedataserver/api-index-deprecated.html
-share/doc/libedataserver/api-index-full.html
-share/doc/libedataserver/ch01.html
-share/doc/libedataserver/home.png
-share/doc/libedataserver/index.html
-share/doc/libedataserver/index.sgml
-share/doc/libedataserver/left.png
-share/doc/libedataserver/libedataserver-EFlag.html
-share/doc/libedataserver/libedataserver-EProxy.html
-share/doc/libedataserver/libedataserver-ESExp.html
-share/doc/libedataserver/libedataserver-Version-Information.html
-share/doc/libedataserver/libedataserver-e-categories.html
-share/doc/libedataserver/libedataserver-e-debug-log.html
-share/doc/libedataserver/libedataserver-e-memory.html
-share/doc/libedataserver/libedataserver-e-time-utils.html
-share/doc/libedataserver/libedataserver-e-uid.html
-share/doc/libedataserver/libedataserver-e-url.html
-share/doc/libedataserver/libedataserver-e-util.html
-share/doc/libedataserver/libedataserver-e-xml-hash-utils.html
-share/doc/libedataserver/libedataserver.devhelp
-share/doc/libedataserver/libedataserver.devhelp2
-share/doc/libedataserver/right.png
-share/doc/libedataserver/style.css
-share/doc/libedataserver/up.png
-share/doc/libedataserverui/ECategoriesDialog.html
-share/doc/libedataserverui/EContactStore.html
-share/doc/libedataserverui/EDestinationStore.html
-share/doc/libedataserverui/ENameSelector.html
-share/doc/libedataserverui/ENameSelectorDialog.html
-share/doc/libedataserverui/ENameSelectorEntry.html
-share/doc/libedataserverui/ENameSelectorList.html
-share/doc/libedataserverui/ENameSelectorModel.html
-share/doc/libedataserverui/ESourceComboBox.html
-share/doc/libedataserverui/ESourceSelector.html
-share/doc/libedataserverui/ESourceSelectorDialog.html
-share/doc/libedataserverui/ETreeModelGenerator.html
-share/doc/libedataserverui/api-index-1.12.html
-share/doc/libedataserverui/api-index-2.22.html
-share/doc/libedataserverui/api-index-2.24.html
-share/doc/libedataserverui/api-index-2.26.html
-share/doc/libedataserverui/api-index-2.28.html
-share/doc/libedataserverui/api-index-2.30.html
-share/doc/libedataserverui/api-index-2.32.html
-share/doc/libedataserverui/api-index-deprecated.html
-share/doc/libedataserverui/api-index-full.html
-share/doc/libedataserverui/ch01.html
-share/doc/libedataserverui/home.png
-share/doc/libedataserverui/index.html
-share/doc/libedataserverui/index.sgml
-share/doc/libedataserverui/left.png
-share/doc/libedataserverui/libedataserverui-ECategoryCompletion.html
-share/doc/libedataserverui/libedataserverui-ECellRendererColor.html
-share/doc/libedataserverui/libedataserverui-e-book-auth-util.html
-share/doc/libedataserverui/libedataserverui-e-passwords.html
-share/doc/libedataserverui/libedataserverui.devhelp
-share/doc/libedataserverui/libedataserverui.devhelp2
-share/doc/libedataserverui/right.png
-share/doc/libedataserverui/style.css
-share/doc/libedataserverui/up.png
-share/evolution-data-server-%%VERSION%%/evolutionperson.schema
-share/evolution-data-server-%%VERSION%%/ui/e-categories-dialog.ui
-share/evolution-data-server-%%VERSION%%/ui/e-name-selector-dialog.ui
-%%WEATHER%%share/evolution-data-server-%%VERSION%%/weather/Locations.xml
+share/doc/eds/annotation-glossary.html
+share/doc/eds/api-index-1.12.html
+share/doc/eds/api-index-2.22.html
+share/doc/eds/api-index-2.24.html
+share/doc/eds/api-index-2.26.html
+share/doc/eds/api-index-2.28.html
+share/doc/eds/api-index-2.30.html
+share/doc/eds/api-index-2.32.html
+share/doc/eds/api-index-3.0.html
+share/doc/eds/api-index-3.10.html
+share/doc/eds/api-index-3.12.html
+share/doc/eds/api-index-3.2.html
+share/doc/eds/api-index-3.4.html
+share/doc/eds/api-index-3.6.html
+share/doc/eds/api-index-3.8.html
+share/doc/eds/api-index-deprecated.html
+share/doc/eds/api-index-full.html
+share/doc/eds/backend.html
+share/doc/eds/ch01.html
+share/doc/eds/ch02.html
+share/doc/eds/ch03.html
+share/doc/eds/ch04.html
+share/doc/eds/ch05.html
+share/doc/eds/ch06.html
+share/doc/eds/ch07.html
+share/doc/eds/ch08.html
+share/doc/eds/ch09.html
+share/doc/eds/ch10.html
+share/doc/eds/ch11.html
+share/doc/eds/ch12.html
+share/doc/eds/ch13.html
+share/doc/eds/ch14.html
+share/doc/eds/ch15.html
+share/doc/eds/ch16.html
+share/doc/eds/client.html
+share/doc/eds/cursor-alphabetic-indexes.png
+share/doc/eds/cursor-positions-filtered.png
+share/doc/eds/cursor-positions-step.png
+share/doc/eds/cursor-positions.png
+share/doc/eds/data-sources.html
+share/doc/eds/deprecated.html
+share/doc/eds/eds-Addressbook-related-types.html
+share/doc/eds/eds-Berkeley-DB-caching-API.html
+share/doc/eds/eds-Berkeley-DB-utilities.html
+share/doc/eds/eds-Calendar-Backend-Utilities.html
+share/doc/eds/eds-Calendar-recurrences.html
+share/doc/eds/eds-Calendar-system-timezone.html
+share/doc/eds/eds-Calendar-time-utilities.html
+share/doc/eds/eds-Calendar-timezones.html
+share/doc/eds/eds-Calendar-utilities.html
+share/doc/eds/eds-Debug-logging.html
+share/doc/eds/eds-Deprecated-addressbook-types.html
+share/doc/eds/eds-EAddressWestern.html
+share/doc/eds/eds-EAuthenticationMediator.html
+share/doc/eds/eds-EAuthenticationSession.html
+share/doc/eds/eds-EBackend.html
+share/doc/eds/eds-EBackendFactory.html
+share/doc/eds/eds-EBook.html
+share/doc/eds/eds-EBookBackend.html
+share/doc/eds/eds-EBookBackendCache.html
+share/doc/eds/eds-EBookBackendFactory.html
+share/doc/eds/eds-EBookBackendSExp.html
+share/doc/eds/eds-EBookBackendSqliteDB.html
+share/doc/eds/eds-EBookBackendSummary.html
+share/doc/eds/eds-EBookClient.html
+share/doc/eds/eds-EBookClientCursor.html
+share/doc/eds/eds-EBookClientView.html
+share/doc/eds/eds-EBookQuery.html
+share/doc/eds/eds-EBookSqlite.html
+share/doc/eds/eds-EBookView.html
+share/doc/eds/eds-ECal.html
+share/doc/eds/eds-ECalBackend.html
+share/doc/eds/eds-ECalBackendCache.html
+share/doc/eds/eds-ECalBackendFactory.html
+share/doc/eds/eds-ECalBackendSExp.html
+share/doc/eds/eds-ECalBackendStore.html
+share/doc/eds/eds-ECalBackendSync.html
+share/doc/eds/eds-ECalClient.html
+share/doc/eds/eds-ECalClientView.html
+share/doc/eds/eds-ECalComponent.html
+share/doc/eds/eds-ECalView.html
+share/doc/eds/eds-ECategories.html
+share/doc/eds/eds-EClient.html
+share/doc/eds/eds-ECollator.html
+share/doc/eds/eds-ECollectionBackend.html
+share/doc/eds/eds-ECollectionBackendFactory.html
+share/doc/eds/eds-EContact.html
+share/doc/eds/eds-ECredentials.html
+share/doc/eds/eds-EDBusServer.html
+share/doc/eds/eds-EDataBook.html
+share/doc/eds/eds-EDataBookCursor.html
+share/doc/eds/eds-EDataBookCursorSqlite.html
+share/doc/eds/eds-EDataBookDirect.html
+share/doc/eds/eds-EDataBookFactory.html
+share/doc/eds/eds-EDataBookView.html
+share/doc/eds/eds-EDataCal.html
+share/doc/eds/eds-EDataCalFactory.html
+share/doc/eds/eds-EDataCalView.html
+share/doc/eds/eds-EDataFactory.html
+share/doc/eds/eds-EDbHash.html
+share/doc/eds/eds-EDestination.html
+share/doc/eds/eds-EExtensible.html
+share/doc/eds/eds-EExtension.html
+share/doc/eds/eds-EFileCache.html
+share/doc/eds/eds-EFlag.html
+share/doc/eds/eds-EIntervalTree.html
+share/doc/eds/eds-EIterator.html
+share/doc/eds/eds-EList.html
+share/doc/eds/eds-EListIterator.html
+share/doc/eds/eds-EMemChunk.html
+share/doc/eds/eds-EModule.html
+share/doc/eds/eds-ENameWestern.html
+share/doc/eds/eds-EOAuth2Support.html
+share/doc/eds/eds-EOfflineListener.html
+share/doc/eds/eds-EOperationPool.html
+share/doc/eds/eds-EPhoneNumber.html
+share/doc/eds/eds-EProxy.html
+share/doc/eds/eds-ESExp.html
+share/doc/eds/eds-EServerSideSource.html
+share/doc/eds/eds-ESoupAuthBearer.html
+share/doc/eds/eds-ESource.html
+share/doc/eds/eds-ESourceAddressBook.html
+share/doc/eds/eds-ESourceAlarms.html
+share/doc/eds/eds-ESourceAuthentication.html
+share/doc/eds/eds-ESourceAuthenticator.html
+share/doc/eds/eds-ESourceAutocomplete.html
+share/doc/eds/eds-ESourceBackend.html
+share/doc/eds/eds-ESourceBackendSummarySetup.html
+share/doc/eds/eds-ESourceCalendar.html
+share/doc/eds/eds-ESourceCamel.html
+share/doc/eds/eds-ESourceCollection.html
+share/doc/eds/eds-ESourceExtension.html
+share/doc/eds/eds-ESourceGoa.html
+share/doc/eds/eds-ESourceMDN.html
+share/doc/eds/eds-ESourceMailAccount.html
+share/doc/eds/eds-ESourceMailComposition.html
+share/doc/eds/eds-ESourceMailIdentity.html
+share/doc/eds/eds-ESourceMailSignature.html
+share/doc/eds/eds-ESourceMailSubmission.html
+share/doc/eds/eds-ESourceMailTransport.html
+share/doc/eds/eds-ESourceMemoList.html
+share/doc/eds/eds-ESourceOffline.html
+share/doc/eds/eds-ESourceOpenPGP.html
+share/doc/eds/eds-ESourceProxy.html
+share/doc/eds/eds-ESourceRefresh.html
+share/doc/eds/eds-ESourceRegistry.html
+share/doc/eds/eds-ESourceRegistryServer.html
+share/doc/eds/eds-ESourceResource.html
+share/doc/eds/eds-ESourceRevisionGuards.html
+share/doc/eds/eds-ESourceSMIME.html
+share/doc/eds/eds-ESourceSecurity.html
+share/doc/eds/eds-ESourceSelectable.html
+share/doc/eds/eds-ESourceTaskList.html
+share/doc/eds/eds-ESourceUoa.html
+share/doc/eds/eds-ESourceWebdav.html
+share/doc/eds/eds-ETestServerFixture.html
+share/doc/eds/eds-ETimezoneCache.html
+share/doc/eds/eds-EUri.html
+share/doc/eds/eds-EUserPrompter.html
+share/doc/eds/eds-EUserPrompterServer.html
+share/doc/eds/eds-EUserPrompterServerExtension.html
+share/doc/eds/eds-EVCard.html
+share/doc/eds/eds-EXmlHash.html
+share/doc/eds/eds-Main-Utility-Toolbox.html
+share/doc/eds/eds-SQLite-vfs.html
+share/doc/eds/eds-Time-parsing-and-formatting.html
+share/doc/eds/eds-Unique-identifiers.html
+share/doc/eds/eds-Version-Checking.html
+share/doc/eds/eds-cursor-example.html
+share/doc/eds/eds.devhelp2
+share/doc/eds/examples.html
+share/doc/eds/home.png
+share/doc/eds/index.html
+share/doc/eds/index.sgml
+share/doc/eds/left-insensitive.png
+share/doc/eds/left.png
+share/doc/eds/misc.html
+share/doc/eds/right-insensitive.png
+share/doc/eds/right.png
+share/doc/eds/style.css
+share/doc/eds/unit-testing.html
+share/doc/eds/up-insensitive.png
+share/doc/eds/up.png
+share/gir-1.0/EBook-%%EVO_VERSION%%.gir
+share/gir-1.0/EBookContacts-%%EVO_VERSION%%.gir
+share/gir-1.0/EDataServer-%%EVO_VERSION%%.gir
 share/locale/am/LC_MESSAGES/evolution-data-server-%%VERSION%%.mo
 share/locale/ar/LC_MESSAGES/evolution-data-server-%%VERSION%%.mo
 share/locale/as/LC_MESSAGES/evolution-data-server-%%VERSION%%.mo
@@ -710,10 +775,11 @@
 share/locale/de/LC_MESSAGES/evolution-data-server-%%VERSION%%.mo
 share/locale/dz/LC_MESSAGES/evolution-data-server-%%VERSION%%.mo
 share/locale/el/LC_MESSAGES/evolution-data-server-%%VERSION%%.mo
+share/locale/en at shaw/LC_MESSAGES/evolution-data-server-%%VERSION%%.mo
 share/locale/en_AU/LC_MESSAGES/evolution-data-server-%%VERSION%%.mo
 share/locale/en_CA/LC_MESSAGES/evolution-data-server-%%VERSION%%.mo
 share/locale/en_GB/LC_MESSAGES/evolution-data-server-%%VERSION%%.mo
-share/locale/en at shaw/LC_MESSAGES/evolution-data-server-%%VERSION%%.mo
+share/locale/eo/LC_MESSAGES/evolution-data-server-%%VERSION%%.mo
 share/locale/es/LC_MESSAGES/evolution-data-server-%%VERSION%%.mo
 share/locale/et/LC_MESSAGES/evolution-data-server-%%VERSION%%.mo
 share/locale/eu/LC_MESSAGES/evolution-data-server-%%VERSION%%.mo
@@ -732,6 +798,7 @@
 share/locale/it/LC_MESSAGES/evolution-data-server-%%VERSION%%.mo
 share/locale/ja/LC_MESSAGES/evolution-data-server-%%VERSION%%.mo
 share/locale/ka/LC_MESSAGES/evolution-data-server-%%VERSION%%.mo
+share/locale/km/LC_MESSAGES/evolution-data-server-%%VERSION%%.mo
 share/locale/kn/LC_MESSAGES/evolution-data-server-%%VERSION%%.mo
 share/locale/ko/LC_MESSAGES/evolution-data-server-%%VERSION%%.mo
 share/locale/ku/LC_MESSAGES/evolution-data-server-%%VERSION%%.mo
@@ -765,8 +832,10 @@
 share/locale/sv/LC_MESSAGES/evolution-data-server-%%VERSION%%.mo
 share/locale/ta/LC_MESSAGES/evolution-data-server-%%VERSION%%.mo
 share/locale/te/LC_MESSAGES/evolution-data-server-%%VERSION%%.mo
+share/locale/tg/LC_MESSAGES/evolution-data-server-%%VERSION%%.mo
 share/locale/th/LC_MESSAGES/evolution-data-server-%%VERSION%%.mo
 share/locale/tr/LC_MESSAGES/evolution-data-server-%%VERSION%%.mo
+share/locale/ug/LC_MESSAGES/evolution-data-server-%%VERSION%%.mo
 share/locale/uk/LC_MESSAGES/evolution-data-server-%%VERSION%%.mo
 share/locale/vi/LC_MESSAGES/evolution-data-server-%%VERSION%%.mo
 share/locale/wa/LC_MESSAGES/evolution-data-server-%%VERSION%%.mo
@@ -792,58 +861,9 @@
 share/pixmaps/evolution-data-server/category_strategies_16.png
 share/pixmaps/evolution-data-server/category_suppliers_16.png
 share/pixmaps/evolution-data-server/category_time-and-expenses_16.png
- at dirrm share/pixmaps/evolution-data-server
-%%WEATHER%%@dirrm share/evolution-data-server-%%VERSION%%/weather
- at dirrm share/evolution-data-server-%%VERSION%%/ui
- at dirrm share/evolution-data-server-%%VERSION%%
- at dirrm share/doc/libedataserverui
- at dirrm share/doc/libedataserver
- at dirrm share/doc/libedata-cal
- at dirrm share/doc/libedata-book
- at dirrm share/doc/libecal
- at dirrm share/doc/libebook
- at dirrm share/doc/libebackend
- at dirrm share/doc/camel
- at dirrm lib/evolution-data-server-%%EVO_VERSION%%/extensions
- at dirrm lib/evolution-data-server-%%EVO_VERSION%%/camel-providers
- at dirrm lib/evolution-data-server-%%EVO_VERSION%%
- at dirrm include/evolution-data-server-%%VERSION%%/libedataserverui
- at dirrm include/evolution-data-server-%%VERSION%%/libedataserver
- at dirrm include/evolution-data-server-%%VERSION%%/libedata-cal
- at dirrm include/evolution-data-server-%%VERSION%%/libedata-book
- at dirrm include/evolution-data-server-%%VERSION%%/libecal
- at dirrm include/evolution-data-server-%%VERSION%%/libebook
- at dirrm include/evolution-data-server-%%VERSION%%/libebackend
- at dirrm include/evolution-data-server-%%VERSION%%/groupwise
- at dirrm include/evolution-data-server-%%VERSION%%/camel
- at dirrm include/evolution-data-server-%%VERSION%%
- at dirrmtry share/locale/zh_HK/LC_MESSAGES
- at dirrmtry share/locale/zh_HK
- at dirrmtry share/locale/xh/LC_MESSAGES
- at dirrmtry share/locale/xh
- at dirrmtry share/locale/te/LC_MESSAGES
- at dirrmtry share/locale/te
- at dirrmtry share/locale/sr at latin/LC_MESSAGES
- at dirrmtry share/locale/sr at latin
- at dirrmtry share/locale/si/LC_MESSAGES
- at dirrmtry share/locale/si
- at dirrmtry share/locale/rw/LC_MESSAGES
- at dirrmtry share/locale/rw
- at dirrmtry share/locale/oc/LC_MESSAGES
- at dirrmtry share/locale/oc
- at dirrmtry share/locale/mr/LC_MESSAGES
- at dirrmtry share/locale/mr
- at dirrmtry share/locale/mai/LC_MESSAGES
- at dirrmtry share/locale/mai
- at dirrmtry share/locale/ku/LC_MESSAGES
- at dirrmtry share/locale/ku
- at dirrmtry share/locale/en at shaw/LC_MESSAGES
- at dirrmtry share/locale/en at shaw
- at dirrmtry share/locale/dz/LC_MESSAGES
- at dirrmtry share/locale/dz
- at dirrmtry share/locale/bn_IN/LC_MESSAGES
- at dirrmtry share/locale/bn_IN
- at dirrmtry share/locale/ast/LC_MESSAGES
- at dirrmtry share/locale/ast
- at dirrmtry share/locale/as/LC_MESSAGES
- at dirrmtry share/locale/as
+share/vala/vapi/libebook-%%EVO_VERSION%%.deps
+share/vala/vapi/libebook-%%EVO_VERSION%%.vapi
+share/vala/vapi/libebook-contacts-%%EVO_VERSION%%.deps
+share/vala/vapi/libebook-contacts-%%EVO_VERSION%%.vapi
+share/vala/vapi/libedataserver-%%EVO_VERSION%%.deps
+share/vala/vapi/libedataserver-%%EVO_VERSION%%.vapi



More information about the Midnightbsd-cvs mailing list