summaryrefslogtreecommitdiff
path: root/www
diff options
context:
space:
mode:
authortaca <taca@pkgsrc.org>2016-09-12 14:53:12 +0000
committertaca <taca@pkgsrc.org>2016-09-12 14:53:12 +0000
commite6dc5e8afd04ed27a42797731c78c8ba07d86044 (patch)
tree030bf3542e9617ec71f3ac00185b3990b272f3d9 /www
parente1e6546a0cff517b53b9eb6b49fdf0f690e4c3e1 (diff)
downloadpkgsrc-e6dc5e8afd04ed27a42797731c78c8ba07d86044.tar.gz
Update SOGo to 2.3.14.
2.3.14 (2016-08-17) ------------------- New features - [eas] added folder merging capabilities Enhancements - [web] expunge drafts mailbox when a draft is sent and deleted - [web] style cancelled events in Calendar module (#2800) - [web] updated CKEditor to version 4.5.10 Bug fixes - [eas] fixed long GUID issue preventing sometimes synchronisation (#3460) - [web] improved extraction of HTML signature in Preferences module - [web] really delete mailboxes being deleted from the Trash folder (#595, #1189, #641) - [core] fixing sogo-tool backup with multi-domain configuration but domain-less logins - [core] during event scheduling, use 409 instead of 403 so Lightning doesn't fail silently - [core] correctly calculate recurrence exceptions when not overlapping the recurrence id - [core] prevent invalid SENT-BY handling during event invitations (#3759) 2.3.13 (2016-07-06) ------------------- New features - [core] now possible to set default Sieve script (#2949) - [core] new sogo-tool truncate-calendar feature (#1513, #3141) - [eas] initial Out-of-Office support in EAS Enhancements - [core] avoid showing bundle loading info when not needed (#3726) - [core] when restoring data using sogo-tool, regenerate Sieve script (#3029) - [eas] use the preferred email identity in EAS if valid (#3698) - [eas] handle inline attachments during EAS content generation - [web] update jQuery File Upload library to 9.12.5 Bug fixes - [web] fixed crash when an attachment filename has no extension - [web] dragging a toolbar button was blocking the mail editor in Firefox - [eas] handle base64 EAS protocol version
Diffstat (limited to 'www')
-rw-r--r--www/SOGo/Makefile26
-rw-r--r--www/SOGo/PLIST3
-rw-r--r--www/SOGo/distinfo10
3 files changed, 28 insertions, 11 deletions
diff --git a/www/SOGo/Makefile b/www/SOGo/Makefile
index b18e44989e3..4390eb2ba87 100644
--- a/www/SOGo/Makefile
+++ b/www/SOGo/Makefile
@@ -1,7 +1,7 @@
-# $NetBSD: Makefile,v 1.29 2016/06/15 13:29:10 taca Exp $
+# $NetBSD: Makefile,v 1.30 2016/09/12 14:53:12 taca Exp $
#
-DISTNAME= SOGo-2.3.12
+DISTNAME= SOGo-2.3.14
CATEGORIES= www
MASTER_SITES= http://www.sogo.nu/files/downloads/SOGo/Sources/
@@ -11,8 +11,9 @@ COMMENT= Groupware server supporting CalDAV, CardDAV and GroupDAV
LICENSE= gnu-gpl-v2
HAS_CONFIGURE= yes
-USE_TOOLS+= gmake zip:run
+USE_TOOLS+= bash gmake zip:run
+CONFIG_SHELL= bash
CONFIGURE_ARGS= --enable-debug --disable-strip
MAKE_JOBS_SAFE= no
@@ -46,8 +47,23 @@ FILES_SUBST+= SOGOETCDIR=${SOGOETCDIR}
FILES_SUBST+= SOGOUSER=${SOGOUSER}
RCD_SCRIPTS= sogod
-pre-install:
- ${CHMOD} -x ${WRKSRC}/UI/WebServerResources/*.png
+FIX_PERMS= \
+ SoObjects/Mailer/SOGoMailLithuanianForward.wo/SOGoMailLithuanianForward.html \
+ SoObjects/Mailer/SOGoMailLithuanianForward.wo/SOGoMailLithuanianForward.wod \
+ SoObjects/Mailer/SOGoMailLithuanianReply.wo/SOGoMailLithuanianReply.html \
+ SoObjects/Mailer/SOGoMailLithuanianReply.wo/SOGoMailLithuanianReply.wod \
+ UI/Templates/SOGoACLLithuanianAdditionAdvisory.wox \
+ UI/Templates/SOGoACLLithuanianModificationAdvisory.wox \
+ UI/Templates/SOGoACLLithuanianRemovalAdvisory.wox \
+ UI/Templates/SOGoFolderLithuanianAdditionAdvisory.wox \
+ UI/Templates/SOGoFolderLithuanianRemovalAdvisory.wox
+
+pre-configure:
+.for f in ${FIX_PERMS}
+ ${CHMOD} ${NONBINMODE} ${WRKSRC}/${f}
+.endfor
+
+post-install:
${SED} -e "s|@SOGOUSER@|${SOGOUSER}|" ${FILESDIR}/sogo-conf.sh > \
${DESTDIR}${PREFIX}/share/examples/SOGo/sogo-conf.sh
${SED} -e "s|/usr/GNUstep/System/Library|${PREFIX}/lib/GNUstep|" \
diff --git a/www/SOGo/PLIST b/www/SOGo/PLIST
index 393b01b454d..c333e29b067 100644
--- a/www/SOGo/PLIST
+++ b/www/SOGo/PLIST
@@ -1,4 +1,4 @@
-@comment $NetBSD: PLIST,v 1.13 2016/06/15 13:29:10 taca Exp $
+@comment $NetBSD: PLIST,v 1.14 2016/09/12 14:53:12 taca Exp $
include/GDLContentStore/EOAdaptorChannel+GCS.h
include/GDLContentStore/GCSAlarmsFolder.h
include/GDLContentStore/GCSChannelManager.h
@@ -52,6 +52,7 @@ include/SOGoUI/UIxComponent.h
include/SOGoUI/UIxJSClose.h
lib/GNUstep/Frameworks/SOGo.framework/Headers
lib/GNUstep/Frameworks/SOGo.framework/Resources
+lib/GNUstep/Frameworks/SOGo.framework/SOGo.framework
lib/GNUstep/Frameworks/SOGo.framework/Versions/2/Headers/BSONCodec.h
lib/GNUstep/Frameworks/SOGo.framework/Versions/2/Headers/DOMNode+SOGo.h
lib/GNUstep/Frameworks/SOGo.framework/Versions/2/Headers/EOBitmaskQualifier.h
diff --git a/www/SOGo/distinfo b/www/SOGo/distinfo
index f0884e84d8d..7530159e4f0 100644
--- a/www/SOGo/distinfo
+++ b/www/SOGo/distinfo
@@ -1,7 +1,7 @@
-$NetBSD: distinfo,v 1.16 2016/06/15 13:29:10 taca Exp $
+$NetBSD: distinfo,v 1.17 2016/09/12 14:53:12 taca Exp $
-SHA1 (SOGo-2.3.12.tar.gz) = 9d50742af1a34d4bca2ca2611e5483c865f036bd
-RMD160 (SOGo-2.3.12.tar.gz) = 48a5419b35090e7e161f826ffae2af7b3c2b987f
-SHA512 (SOGo-2.3.12.tar.gz) = 2871c9fdea6847354b626f14cb8e82261acf59b162c9a4cd6edd8128369e4a163d09d80005fcea1c292d91edb9d3535c1ce8e23aa82bec5134c74aed721e7762
-Size (SOGo-2.3.12.tar.gz) = 12358952 bytes
+SHA1 (SOGo-2.3.14.tar.gz) = 244769c047a8acc8345eeb0f08092b04bee27423
+RMD160 (SOGo-2.3.14.tar.gz) = 391b4bd27e8bcec0a1eb7069012716612eacaca1
+SHA512 (SOGo-2.3.14.tar.gz) = 2ff36b7a5dbe4a0397a96e3a7ff9840fd512b7d0598083a0e5a27438a9fd553eeb7b8c32fc0cd9ae72147343af009947ad02a4c170955a111b2de8c92ce68be9
+Size (SOGo-2.3.14.tar.gz) = 12374899 bytes
SHA1 (patch-SoObjects_SOGo_NSData+Crypto.m) = 2b121f06f409f9d8ddfb717e5b3d13547c7d18a0