summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authormarcus <marcus@df743ca5-7f9a-e211-a948-0013205c9059>2005-08-24 01:50:27 +0800
committermarcus <marcus@df743ca5-7f9a-e211-a948-0013205c9059>2005-08-24 01:50:27 +0800
commit590565a1d7ebff3daea2fa539d3b2db0d171825e (patch)
treefd6375615fb244e29925bbc16dc38216b949dca0
parent33129a8bd2fe443227c00e250468a09abcea8fa4 (diff)
downloadmarcuscom-ports-590565a1d7ebff3daea2fa539d3b2db0d171825e.tar.gz
marcuscom-ports-590565a1d7ebff3daea2fa539d3b2db0d171825e.tar.zst
marcuscom-ports-590565a1d7ebff3daea2fa539d3b2db0d171825e.zip
Update to 1.3.8.
git-svn-id: svn://creme-brulee.marcuscom.com/ports/trunk@4596 df743ca5-7f9a-e211-a948-0013205c9059
-rw-r--r--databases/evolution-data-server/Makefile7
-rw-r--r--databases/evolution-data-server/distinfo4
-rw-r--r--databases/evolution-data-server/files/patch-camel_providers_groupwise_camel-groupwise-utils.c25
-rw-r--r--databases/evolution-data-server/files/patch-docs_reference_camel_Makefile.in11
-rw-r--r--databases/evolution-data-server/pkg-plist115
5 files changed, 143 insertions, 19 deletions
diff --git a/databases/evolution-data-server/Makefile b/databases/evolution-data-server/Makefile
index 64fa3f4d7..1cb67b197 100644
--- a/databases/evolution-data-server/Makefile
+++ b/databases/evolution-data-server/Makefile
@@ -3,12 +3,11 @@
# Whom: Joe Marcus Clarke <marcus@FreeBSD.org>
#
# $FreeBSD$
-# $MCom: ports/databases/evolution-data-server/Makefile,v 1.55 2005/08/19 07:39:58 mezz Exp $
+# $MCom: ports/databases/evolution-data-server/Makefile,v 1.56 2005/08/22 18:35:11 kwm Exp $
#
PORTNAME= evolution-data-server
-PORTVERSION= 1.3.7
-PORTREVISION= 1
+PORTVERSION= 1.3.8
CATEGORIES= databases gnome
MASTER_SITES= ${MASTER_SITE_GNOME}
MASTER_SITE_SUBDIR= sources/${PORTNAME}/1.3
@@ -17,7 +16,7 @@ DIST_SUBDIR= gnome2
MAINTAINER= gnome@FreeBSD.org
COMMENT= The data backends for the Evolution integrated mail/PIM suite
-LIB_DEPENDS= soup-2.2.9:${PORTSDIR}/devel/libsoup \
+LIB_DEPENDS= soup-2.2.8:${PORTSDIR}/devel/libsoup \
nss3.1:${PORTSDIR}/security/nss \
tasn1.2:${PORTSDIR}/security/libtasn1
diff --git a/databases/evolution-data-server/distinfo b/databases/evolution-data-server/distinfo
index 1a8a8536a..8dd4c221c 100644
--- a/databases/evolution-data-server/distinfo
+++ b/databases/evolution-data-server/distinfo
@@ -1,2 +1,2 @@
-MD5 (gnome2/evolution-data-server-1.3.7.tar.bz2) = e05fe0e8607ed4403b19a9d3f407e8f9
-SIZE (gnome2/evolution-data-server-1.3.7.tar.bz2) = 14453689
+MD5 (gnome2/evolution-data-server-1.3.8.tar.bz2) = c6b2992c9a8f758a4a77511a4c2d5cfd
+SIZE (gnome2/evolution-data-server-1.3.8.tar.bz2) = 15019129
diff --git a/databases/evolution-data-server/files/patch-camel_providers_groupwise_camel-groupwise-utils.c b/databases/evolution-data-server/files/patch-camel_providers_groupwise_camel-groupwise-utils.c
index 2db460f05..fc435dcb5 100644
--- a/databases/evolution-data-server/files/patch-camel_providers_groupwise_camel-groupwise-utils.c
+++ b/databases/evolution-data-server/files/patch-camel_providers_groupwise_camel-groupwise-utils.c
@@ -1,14 +1,13 @@
---- camel/providers/groupwise/camel-groupwise-utils.c.orig Wed Jul 13 02:16:06 2005
-+++ camel/providers/groupwise/camel-groupwise-utils.c Wed Jul 13 02:16:19 2005
-@@ -383,9 +383,10 @@ camel_groupwise_util_item_from_message (
- attachment->contentType = g_strdup_printf ("%s/%s", type->type, type->subtype) ;
- if (!g_ascii_strncasecmp (attachment->contentType, RFC_822, strlen (RFC_822))) {
- char *temp_id = NULL, *id = NULL;
-+ int len;
- //id = (char *)camel_mime_message_get_message_id ((CamelMimeMessage *)dw);
- temp_id = (char *)camel_medium_get_header (CAMEL_MEDIUM ((CamelMimeMessage *)dw), "Message-Id");
-- int len = strlen (temp_id);
-+ len = strlen (temp_id);
+--- camel/providers/groupwise/camel-groupwise-utils.c.orig Fri Aug 19 08:56:58 2005
++++ camel/providers/groupwise/camel-groupwise-utils.c Tue Aug 23 13:14:06 2005
+@@ -333,8 +333,9 @@ send_as_attachment (EGwConnection *cnc,
+ attachment->name = g_strdup (filename ? filename : "");
+ if (!g_ascii_strncasecmp (attachment->contentType, RFC_822, strlen (RFC_822))) {
+ char *temp_id = NULL, *id = NULL;
++ int len;
+ temp_id = (char *)camel_medium_get_header (CAMEL_MEDIUM ((CamelMimeMessage *)dw), "Message-Id");
+- int len = strlen (temp_id);
++ len = strlen (temp_id);
- id = (char *)g_malloc0 (len-1);
- id = memcpy(id, temp_id+2, len-3);
+ id = (char *)g_malloc0 (len-1);
+ id = memcpy(id, temp_id+2, len-3);
diff --git a/databases/evolution-data-server/files/patch-docs_reference_camel_Makefile.in b/databases/evolution-data-server/files/patch-docs_reference_camel_Makefile.in
new file mode 100644
index 000000000..d57d9e583
--- /dev/null
+++ b/databases/evolution-data-server/files/patch-docs_reference_camel_Makefile.in
@@ -0,0 +1,11 @@
+--- docs/reference/camel/Makefile.in.orig Tue Aug 23 13:34:13 2005
++++ docs/reference/camel/Makefile.in Tue Aug 23 13:34:34 2005
+@@ -132,7 +132,7 @@
+ HAVE_JW_FALSE = @HAVE_JW_FALSE@
+ HAVE_JW_TRUE = @HAVE_JW_TRUE@
+
+-HTML_DIR = $(datadir)/gtk-doc/html
++HTML_DIR = $(prefix)/share/doc
+ ICONV_CFLAGS = @ICONV_CFLAGS@
+ ICONV_LIBS = @ICONV_LIBS@
+ IDL_INCLUDES = @IDL_INCLUDES@
diff --git a/databases/evolution-data-server/pkg-plist b/databases/evolution-data-server/pkg-plist
index b0b9edd02..285aabf0f 100644
--- a/databases/evolution-data-server/pkg-plist
+++ b/databases/evolution-data-server/pkg-plist
@@ -346,6 +346,87 @@ libdata/pkgconfig/libexchange-storage-%%EVO_VERSION%%.pc
libexec/camel-index-control-%%EVO_VERSION%%
libexec/camel-lock-helper-%%EVO_VERSION%%
libexec/evolution-data-server-%%VERSION%%
+share/doc/camel/Addresses.html
+share/doc/camel/CamelAddress.html
+share/doc/camel/CamelCipherContext.html
+share/doc/camel/CamelDataWrapper.html
+share/doc/camel/CamelFolder.html
+share/doc/camel/CamelFolderSummary.html
+share/doc/camel/CamelGpgContext.html
+share/doc/camel/CamelInternetAddress.html
+share/doc/camel/CamelMedium.html
+share/doc/camel/CamelMimeFilter.html
+share/doc/camel/CamelMimeFilterBasic.html
+share/doc/camel/CamelMimeFilterBestenc.html
+share/doc/camel/CamelMimeFilterCRLF.html
+share/doc/camel/CamelMimeFilterCanon.html
+share/doc/camel/CamelMimeFilterCharset.html
+share/doc/camel/CamelMimeFilterEnriched.html
+share/doc/camel/CamelMimeFilterFrom.html
+share/doc/camel/CamelMimeFilterHTML.html
+share/doc/camel/CamelMimeFilterIndex.html
+share/doc/camel/CamelMimeFilterSave.html
+share/doc/camel/CamelMimeFilterToHTML.html
+share/doc/camel/CamelMimeFilterWindows.html
+share/doc/camel/CamelMimeFilterYenc.html
+share/doc/camel/CamelMimeMessage.html
+share/doc/camel/CamelMimeParser.html
+share/doc/camel/CamelMimePart.html
+share/doc/camel/CamelMultipart.html
+share/doc/camel/CamelMultipartEncrypted.html
+share/doc/camel/CamelMultipartSigned.html
+share/doc/camel/CamelObject.html
+share/doc/camel/CamelOfflineFolder.html
+share/doc/camel/CamelOfflineJournal.html
+share/doc/camel/CamelOfflineStore.html
+share/doc/camel/CamelSasl.html
+share/doc/camel/CamelSaslAnonymous.html
+share/doc/camel/CamelSaslCramMd5.html
+share/doc/camel/CamelSaslDigestMd5.html
+share/doc/camel/CamelSaslGssapi.html
+share/doc/camel/CamelSaslKerberos4.html
+share/doc/camel/CamelSaslLogin.html
+share/doc/camel/CamelSaslNTLM.html
+share/doc/camel/CamelSaslPlain.html
+share/doc/camel/CamelSeekableStream.html
+share/doc/camel/CamelSeekableSubstream.html
+share/doc/camel/CamelService.html
+share/doc/camel/CamelSession.html
+share/doc/camel/CamelStore.html
+share/doc/camel/CamelStoreSummary.html
+share/doc/camel/CamelStream.html
+share/doc/camel/CamelStreamBuffer.html
+share/doc/camel/CamelStreamFilter.html
+share/doc/camel/CamelStreamFs.html
+share/doc/camel/CamelStreamMem.html
+share/doc/camel/CamelStreamNull.html
+share/doc/camel/CamelTcpStream.html
+share/doc/camel/CamelTcpStreamRaw.html
+share/doc/camel/CamelTcpStreamSSL.html
+share/doc/camel/CamelTransport.html
+share/doc/camel/CamelVTrashFolder.html
+share/doc/camel/CamelVeeFolder.html
+share/doc/camel/ClassTree.html
+share/doc/camel/Crypto.html
+share/doc/camel/Filters.html
+share/doc/camel/Folders.html
+share/doc/camel/Fundamentals.html
+share/doc/camel/MIME.html
+share/doc/camel/Services.html
+share/doc/camel/Streams.html
+share/doc/camel/camel-camel-exception.html
+share/doc/camel/camel-camel-operation.html
+share/doc/camel/camel-camel-provider.html
+share/doc/camel/camel-camel-url.html
+share/doc/camel/camel.devhelp
+share/doc/camel/classes.html
+share/doc/camel/home.png
+share/doc/camel/index.html
+share/doc/camel/index.sgml
+share/doc/camel/left.png
+share/doc/camel/right.png
+share/doc/camel/style.css
+share/doc/camel/up.png
share/doc/libebook/EBook.html
share/doc/libebook/EBookListener.html
share/doc/libebook/EBookView.html
@@ -397,6 +478,38 @@ share/doc/libedata-cal/libedata-cal.devhelp
share/doc/libedata-cal/right.png
share/doc/libedata-cal/style.css
share/doc/libedata-cal/up.png
+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-EAccount.html
+share/doc/libedataserver/libedataserver-EAccountList.html
+share/doc/libedataserver/libedataserver-EFileCache.html
+share/doc/libedataserver/libedataserver-EIterator.html
+share/doc/libedataserver/libedataserver-EList.html
+share/doc/libedataserver/libedataserver-EListIterator.html
+share/doc/libedataserver/libedataserver-ESExp.html
+share/doc/libedataserver/libedataserver-ESource.html
+share/doc/libedataserver/libedataserver-ESourceGroup.html
+share/doc/libedataserver/libedataserver-ESourceList.html
+share/doc/libedataserver/libedataserver-e-categories.html
+share/doc/libedataserver/libedataserver-e-db3-utils.html
+share/doc/libedataserver/libedataserver-e-dbhash.html
+share/doc/libedataserver/libedataserver-e-iconv.html
+share/doc/libedataserver/libedataserver-e-memory.html
+share/doc/libedataserver/libedataserver-e-msgport.html
+share/doc/libedataserver/libedataserver-e-time-utils.html
+share/doc/libedataserver/libedataserver-e-trie.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-md5-utils.html
+share/doc/libedataserver/libedataserver.devhelp
+share/doc/libedataserver/right.png
+share/doc/libedataserver/style.css
+share/doc/libedataserver/up.png
share/gnome/evolution-data-server-%%VERSION%%/evolutionperson.schema
share/gnome/evolution-data-server-%%VERSION%%/glade/e-categories-dialog.glade
share/gnome/evolution-data-server-%%VERSION%%/glade/e-name-selector-dialog.glade
@@ -885,9 +998,11 @@ share/locale/zh_TW/LC_MESSAGES/evolution-data-server-%%VERSION%%.mo
@dirrm share/gnome/evolution-data-server-%%VERSION%%/weather
@dirrm share/gnome/evolution-data-server-%%VERSION%%/glade
@dirrm share/gnome/evolution-data-server-%%VERSION%%
+@dirrm share/doc/libedataserver
@dirrm share/doc/libedata-cal
@dirrm share/doc/libecal
@dirrm share/doc/libebook
+@dirrm share/doc/camel
@dirrm lib/evolution-data-server-%%EVO_VERSION%%/extensions
@dirrm lib/evolution-data-server-%%EVO_VERSION%%/camel-providers
@dirrm lib/evolution-data-server-%%EVO_VERSION%%