From 124746757c384247eba0c30fdb65a43bbc06f44c Mon Sep 17 00:00:00 2001 From: Tor Lillqvist Date: Fri, 2 Dec 2005 00:06:42 +0000 Subject: [PATCH] New file, a script used to build a Win32 zipfile distribution of E-D-S. 2005-12-02 Tor Lillqvist * evolution-data-server-zip.in: New file, a script used to build a Win32 zipfile distribution of E-D-S. (End users will not be expected to install from zipfiles, they would be for power users and developers only.) * Makefile.am * configure.in: Distribute and expand it. --- ChangeLog | 10 ++++ Makefile.am | 1 + configure.in | 4 +- evolution-data-server-zip.in | 111 +++++++++++++++++++++++++++++++++++++++++++ 4 files changed, 125 insertions(+), 1 deletion(-) create mode 100755 evolution-data-server-zip.in diff --git a/ChangeLog b/ChangeLog index 173b8a3..4107421 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,13 @@ +2005-12-02 Tor Lillqvist + + * evolution-data-server-zip.in: New file, a script used to build a + Win32 zipfile distribution of E-D-S. (End users will not be + expected to install from zipfiles, they would be for power users + and developers only.) + + * Makefile.am + * configure.in: Distribute and expand it. + 2005-12-01 Chenthill Palanisamy reviewed by Srinivasa Ragavan diff --git a/Makefile.am b/Makefile.am index a6a94cb..ff4e489 100644 --- a/Makefile.am +++ b/Makefile.am @@ -26,6 +26,7 @@ EXTRA_DIST = \ intltool-merge.in \ intltool-update.in \ intltool-extract.in \ + evolution-data-server-zip.in \ $(pkgconfig_DATA:-$(API_VERSION).pc=.pc.in) \ $(LIBDB_FILES) diff --git a/configure.in b/configure.in index 2b76399..553cc1e 100644 --- a/configure.in +++ b/configure.in @@ -1039,7 +1039,8 @@ AC_SUBST(LDAP_CFLAGS) AC_SUBST(LDAP_LIBS) AC_DEFINE(HAVE_LDAP,1,[Define if you have LDAP support]) AM_CONDITIONAL(ENABLE_LDAP, true) -msg_no_ntlm=no +msg_ldap="yes" +msg_no_ntlm="no" msg_exchange="yes" fi # Win32 @@ -1269,6 +1270,7 @@ AC_CONFIG_SUBDIRS(libdb/dist) AC_OUTPUT([ Makefile +evolution-data-server-zip evolution-data-server.pc addressbook/Makefile addressbook/idl/Makefile diff --git a/evolution-data-server-zip.in b/evolution-data-server-zip.in new file mode 100755 index 0000000..c90aac4 --- /dev/null +++ b/evolution-data-server-zip.in @@ -0,0 +1,111 @@ +#!/bin/sh + +# Build Win32 zipfile distribution of evolution-data-server. Separate +# runtime and developer zipfiles. End-users will install Evolution +# using an executable installer combining all necessary pieces, of +# course, not unzipping each module separately. + +ZIP=/tmp/evolution-data-server-@VERSION@.zip +DEVZIP=/tmp/evolution-data-server-dev-@VERSION@.zip + +LIBEDATASERVER_CURRENT_MINUS_AGE=`expr @LIBEDATASERVER_CURRENT@ - @LIBEDATASERVER_AGE@` +LIBEGROUPWISE_CURRENT_MINUS_AGE=`expr @LIBEGROUPWISE_CURRENT@ - @LIBEGROUPWISE_AGE@` +LIBEXCHANGE_STORAGE_CURRENT_MINUS_AGE=`expr @LIBEXCHANGE_STORAGE_CURRENT@ - @LIBEXCHANGE_STORAGE_AGE@` +LIBCAMEL_CURRENT_MINUS_AGE=`expr @LIBCAMEL_CURRENT@ - @LIBCAMEL_AGE@` +LIBEDATASERVERUI_CURRENT_MINUS_AGE=`expr @LIBEDATASERVERUI_CURRENT@ - @LIBEDATASERVERUI_AGE@` +LIBEBOOK_CURRENT_MINUS_AGE=`expr @LIBEBOOK_CURRENT@ - @LIBEBOOK_AGE@` +LIBEDATABOOK_CURRENT_MINUS_AGE=`expr @LIBEDATABOOK_CURRENT@ - @LIBEDATABOOK_AGE@` +LIBECAL_CURRENT_MINUS_AGE=`expr @LIBECAL_CURRENT@ - @LIBECAL_AGE@` +LIBEDATACAL_CURRENT_MINUS_AGE=`expr @LIBEDATACAL_CURRENT@ - @LIBEDATACAL_AGE@` +LIBEDATASERVERUI_CURRENT_MINUS_AGE=`expr @LIBEDATASERVERUI_CURRENT@ - @LIBEDATASERVERUI_AGE@` + +cd @prefix@ +rm $ZIP +zip $ZIP -@ <