Hi,

here an update from 2.2.17a to a current 2.3.2.
Works for me so far on amd64 with postgres db and LDAP authentication.

Besides the usual upgrade procedure, the database shema
has to be updated this time too, see the pkg README.

I'm going to commit it at the end of the week if I don't hear
any complaints back.
Otherwise feedback or OKs welcome ;)


cheers,
Sebastian
Index: Makefile
===================================================================
RCS file: /cvs/ports/www/sogo/Makefile,v
retrieving revision 1.47
diff -u -r1.47 Makefile
--- Makefile    17 Jul 2015 21:23:08 -0000      1.47
+++ Makefile    21 Sep 2015 11:31:45 -0000
@@ -2,14 +2,13 @@
 
 COMMENT =      web based groupware server
 
-VERSION =      2.2.17
-DISTNAME =     SOGo-${VERSION}a
-PKGNAME =      sogo-${VERSION}.0
-REVISION =     0
+VERSION =      2.3.2
+DISTNAME =     SOGo-${VERSION}
+PKGNAME =      sogo-${VERSION}
 
 SHARED_LIBS += GDLContentStore 2.0
 SHARED_LIBS += NGCards         2.0
-SHARED_LIBS += SOGo            2.3
+SHARED_LIBS += SOGo            3.0
 SHARED_LIBS += SOGoUI          2.0
 
 CATEGORIES =   www
@@ -67,6 +66,12 @@
        ${INSTALL_SCRIPT} -c -o ${SHAREOWN} -g ${SHAREGRP} \
                ${WRKSRC}/Scripts/sql-update-1.3.16_to_1.3.17-mysql.sh \
                ${PREFIX}/share/doc/sogo/sql-update-1.3.16_to_1.3.17-mysql.sh
+       ${INSTALL_SCRIPT} -c -o ${SHAREOWN} -g ${SHAREGRP} \
+               ${WRKSRC}/Scripts/sql-update-2.2.17_to_2.3.0.sh \
+               ${PREFIX}/share/doc/sogo/sql-update-2.2.17_to_2.3.0-postgres.sh
+       ${INSTALL_SCRIPT} -c -o ${SHAREOWN} -g ${SHAREGRP} \
+               ${WRKSRC}/Scripts/sql-update-2.2.17_to_2.3.0-mysql.sh \
+               ${PREFIX}/share/doc/sogo/sql-update-2.2.17_to_2.3.0-mysql.sh
        ${INSTALL_SCRIPT} -c -o ${SHAREOWN} -g ${SHAREGRP} \
                ${WRKSRC}/Scripts/updates.php \
                ${PREFIX}/share/doc/sogo/updates.php
Index: distinfo
===================================================================
RCS file: /cvs/ports/www/sogo/distinfo,v
retrieving revision 1.23
diff -u -r1.23 distinfo
--- distinfo    10 May 2015 11:41:12 -0000      1.23
+++ distinfo    21 Sep 2015 11:31:45 -0000
@@ -1,2 +1,2 @@
-SHA256 (SOGo-2.2.17a.tar.gz) = roCv0w1/4mmGfioMFTTOgRrmfOZAU64vx3hCzHspg0M=
-SIZE (SOGo-2.2.17a.tar.gz) = 11605280
+SHA256 (SOGo-2.3.2.tar.gz) = eDDirWhLVMiaRyDt9+cyUKB2iFo+JQUsCT54lCJ5Oaw=
+SIZE (SOGo-2.3.2.tar.gz) = 11781695
Index: patches/patch-Scripts_sql-update-2_2_17_to_2_3_0-mysql_sh
===================================================================
RCS file: patches/patch-Scripts_sql-update-2_2_17_to_2_3_0-mysql_sh
diff -N patches/patch-Scripts_sql-update-2_2_17_to_2_3_0-mysql_sh
--- /dev/null   1 Jan 1970 00:00:00 -0000
+++ patches/patch-Scripts_sql-update-2_2_17_to_2_3_0-mysql_sh   21 Sep 2015 
11:31:45 -0000
@@ -0,0 +1,33 @@
+$OpenBSD$
+--- Scripts/sql-update-2.2.17_to_2.3.0-mysql.sh.orig   Wed Sep 16 20:41:29 2015
++++ Scripts/sql-update-2.2.17_to_2.3.0-mysql.sh        Mon Sep 21 13:17:32 2015
+@@ -1,4 +1,4 @@
+-#!/bin/bash
++#!/bin/sh
+ 
+ set -e
+ 
+@@ -11,15 +11,19 @@ set -e
+ defaultusername=$USER
+ defaulthostname=127.0.0.1
+ defaultdatabase=$USER
+-indextable=$(sogo-tool dump-defaults -f /etc/sogo/sogo.conf | awk -F\" '/ 
OCSFolderInfoURL =/  {print $2}' |  awk -F/ '{print $NF}')
++if [ -f /etc/sogo/sogo.conf ];then
++  indextable=$(sogo-tool dump-defaults -f /etc/sogo/sogo.conf | awk -F\" '/ 
OCSFolderInfoURL =/  {print $2}' |  awk -F/ '{print $NF}')
++else
++  indextable=$(sogo-tool dump-defaults | awk -F\" '/ OCSFolderInfoURL =/  
{print $2}' |  awk -F/ '{print $NF}')
++fi
+ if [ -z "$indextable" ]; then
+   echo "Couldn't fetch OCSFolderInfoURL value, aborting" >&2
+   exit 1
+ fi
+ 
+-read -p "Username ($defaultusername): " username
+-read -p "Hostname ($defaulthostname): " hostname
+-read -p "Database ($defaultdatabase): " database
++read username?"Username ($defaultusername): "
++read hostname?"Hostname ($defaulthostname): "
++read database?"Database ($defaultdatabase): "
+ 
+ if [ -z "$username" ]
+ then
Index: patches/patch-Scripts_sql-update-2_2_17_to_2_3_0_sh
===================================================================
RCS file: patches/patch-Scripts_sql-update-2_2_17_to_2_3_0_sh
diff -N patches/patch-Scripts_sql-update-2_2_17_to_2_3_0_sh
--- /dev/null   1 Jan 1970 00:00:00 -0000
+++ patches/patch-Scripts_sql-update-2_2_17_to_2_3_0_sh 21 Sep 2015 11:31:45 
-0000
@@ -0,0 +1,33 @@
+$OpenBSD$
+--- Scripts/sql-update-2.2.17_to_2.3.0.sh.orig Wed Sep 16 20:41:29 2015
++++ Scripts/sql-update-2.2.17_to_2.3.0.sh      Mon Sep 21 13:17:17 2015
+@@ -1,4 +1,4 @@
+-#!/bin/bash
++#!/bin/sh
+ 
+ set -e 
+ # This script only works with PostgreSQL
+@@ -11,15 +11,19 @@ defaultusername=$USER
+ defaulthostname=localhost
+ defaultdatabase=$USER
+ #indextable=sogo_folder_info
+-indextable=$(sogo-tool dump-defaults -f /etc/sogo/sogo.conf | awk -F\" '/ 
OCSFolderInfoURL =/  {print $2}' |  awk -F/ '{print $NF}')
++if [ -f /etc/sogo/sogo.conf ];then
++  indextable=$(sogo-tool dump-defaults -f /etc/sogo/sogo.conf | awk -F\" '/ 
OCSFolderInfoURL =/  {print $2}' |  awk -F/ '{print $NF}')
++else
++  indextable=$(sogo-tool dump-defaults | awk -F\" '/ OCSFolderInfoURL =/  
{print $2}' |  awk -F/ '{print $NF}')
++fi
+ if [ -z "$indextable" ]; then
+   echo "Couldn't fetch OCSFolderInfoURL value, aborting" >&2
+   exit 1
+ fi
+ 
+-read -p "Username ($defaultusername): " username
+-read -p "Hostname ($defaulthostname): " hostname
+-read -p "Database ($defaultdatabase): " database
++read username?"Username ($defaultusername): "
++read hostname?"Hostname ($defaulthostname): "
++read database?"Database ($defaultdatabase): "
+ 
+ if [ -z "$username" ]
+ then
Index: pkg/PLIST
===================================================================
RCS file: /cvs/ports/www/sogo/pkg/PLIST,v
retrieving revision 1.22
diff -u -r1.22 PLIST
--- pkg/PLIST   16 Jan 2015 09:51:18 -0000      1.22
+++ pkg/PLIST   21 Sep 2015 11:31:45 -0000
@@ -588,10 +588,14 @@
 lib/GNUstep/SOGo/AdministrationUI.SOGo/Resources/
 lib/GNUstep/SOGo/AdministrationUI.SOGo/Resources/Arabic.lproj/
 
lib/GNUstep/SOGo/AdministrationUI.SOGo/Resources/Arabic.lproj/Localizable.strings
+lib/GNUstep/SOGo/AdministrationUI.SOGo/Resources/Basque.lproj/
+lib/GNUstep/SOGo/AdministrationUI.SOGo/Resources/Basque.lproj/Localizable.strings
 lib/GNUstep/SOGo/AdministrationUI.SOGo/Resources/BrazilianPortuguese.lproj/
 
lib/GNUstep/SOGo/AdministrationUI.SOGo/Resources/BrazilianPortuguese.lproj/Localizable.strings
 lib/GNUstep/SOGo/AdministrationUI.SOGo/Resources/Catalan.lproj/
 
lib/GNUstep/SOGo/AdministrationUI.SOGo/Resources/Catalan.lproj/Localizable.strings
+lib/GNUstep/SOGo/AdministrationUI.SOGo/Resources/ChineseTaiwan.lproj/
+lib/GNUstep/SOGo/AdministrationUI.SOGo/Resources/ChineseTaiwan.lproj/Localizable.strings
 lib/GNUstep/SOGo/AdministrationUI.SOGo/Resources/Czech.lproj/
 
lib/GNUstep/SOGo/AdministrationUI.SOGo/Resources/Czech.lproj/Localizable.strings
 lib/GNUstep/SOGo/AdministrationUI.SOGo/Resources/Danish.lproj/
@@ -621,6 +625,8 @@
 
lib/GNUstep/SOGo/AdministrationUI.SOGo/Resources/Russian.lproj/Localizable.strings
 lib/GNUstep/SOGo/AdministrationUI.SOGo/Resources/Slovak.lproj/
 
lib/GNUstep/SOGo/AdministrationUI.SOGo/Resources/Slovak.lproj/Localizable.strings
+lib/GNUstep/SOGo/AdministrationUI.SOGo/Resources/Slovenian.lproj/
+lib/GNUstep/SOGo/AdministrationUI.SOGo/Resources/Slovenian.lproj/Localizable.strings
 lib/GNUstep/SOGo/AdministrationUI.SOGo/Resources/SpanishArgentina.lproj/
 
lib/GNUstep/SOGo/AdministrationUI.SOGo/Resources/SpanishArgentina.lproj/Localizable.strings
 lib/GNUstep/SOGo/AdministrationUI.SOGo/Resources/SpanishSpain.lproj/
@@ -639,10 +645,14 @@
 lib/GNUstep/SOGo/Appointments.SOGo/Resources/
 lib/GNUstep/SOGo/Appointments.SOGo/Resources/Arabic.lproj/
 lib/GNUstep/SOGo/Appointments.SOGo/Resources/Arabic.lproj/Localizable.strings
+lib/GNUstep/SOGo/Appointments.SOGo/Resources/Basque.lproj/
+lib/GNUstep/SOGo/Appointments.SOGo/Resources/Basque.lproj/Localizable.strings
 lib/GNUstep/SOGo/Appointments.SOGo/Resources/BrazilianPortuguese.lproj/
 
lib/GNUstep/SOGo/Appointments.SOGo/Resources/BrazilianPortuguese.lproj/Localizable.strings
 lib/GNUstep/SOGo/Appointments.SOGo/Resources/Catalan.lproj/
 lib/GNUstep/SOGo/Appointments.SOGo/Resources/Catalan.lproj/Localizable.strings
+lib/GNUstep/SOGo/Appointments.SOGo/Resources/ChineseTaiwan.lproj/
+lib/GNUstep/SOGo/Appointments.SOGo/Resources/ChineseTaiwan.lproj/Localizable.strings
 lib/GNUstep/SOGo/Appointments.SOGo/Resources/Czech.lproj/
 lib/GNUstep/SOGo/Appointments.SOGo/Resources/Czech.lproj/Localizable.strings
 lib/GNUstep/SOGo/Appointments.SOGo/Resources/Danish.lproj/
@@ -678,6 +688,8 @@
 lib/GNUstep/SOGo/Appointments.SOGo/Resources/Russian.lproj/Localizable.strings
 lib/GNUstep/SOGo/Appointments.SOGo/Resources/Slovak.lproj/
 lib/GNUstep/SOGo/Appointments.SOGo/Resources/Slovak.lproj/Localizable.strings
+lib/GNUstep/SOGo/Appointments.SOGo/Resources/Slovenian.lproj/
+lib/GNUstep/SOGo/Appointments.SOGo/Resources/Slovenian.lproj/Localizable.strings
 lib/GNUstep/SOGo/Appointments.SOGo/Resources/SpanishArgentina.lproj/
 
lib/GNUstep/SOGo/Appointments.SOGo/Resources/SpanishArgentina.lproj/Localizable.strings
 lib/GNUstep/SOGo/Appointments.SOGo/Resources/SpanishSpain.lproj/
@@ -696,10 +708,14 @@
 lib/GNUstep/SOGo/CommonUI.SOGo/Resources/
 lib/GNUstep/SOGo/CommonUI.SOGo/Resources/Arabic.lproj/
 lib/GNUstep/SOGo/CommonUI.SOGo/Resources/Arabic.lproj/Localizable.strings
+lib/GNUstep/SOGo/CommonUI.SOGo/Resources/Basque.lproj/
+lib/GNUstep/SOGo/CommonUI.SOGo/Resources/Basque.lproj/Localizable.strings
 lib/GNUstep/SOGo/CommonUI.SOGo/Resources/BrazilianPortuguese.lproj/
 
lib/GNUstep/SOGo/CommonUI.SOGo/Resources/BrazilianPortuguese.lproj/Localizable.strings
 lib/GNUstep/SOGo/CommonUI.SOGo/Resources/Catalan.lproj/
 lib/GNUstep/SOGo/CommonUI.SOGo/Resources/Catalan.lproj/Localizable.strings
+lib/GNUstep/SOGo/CommonUI.SOGo/Resources/ChineseTaiwan.lproj/
+lib/GNUstep/SOGo/CommonUI.SOGo/Resources/ChineseTaiwan.lproj/Localizable.strings
 lib/GNUstep/SOGo/CommonUI.SOGo/Resources/Czech.lproj/
 lib/GNUstep/SOGo/CommonUI.SOGo/Resources/Czech.lproj/Localizable.strings
 lib/GNUstep/SOGo/CommonUI.SOGo/Resources/Danish.lproj/
@@ -731,6 +747,8 @@
 lib/GNUstep/SOGo/CommonUI.SOGo/Resources/Russian.lproj/Localizable.strings
 lib/GNUstep/SOGo/CommonUI.SOGo/Resources/Slovak.lproj/
 lib/GNUstep/SOGo/CommonUI.SOGo/Resources/Slovak.lproj/Localizable.strings
+lib/GNUstep/SOGo/CommonUI.SOGo/Resources/Slovenian.lproj/
+lib/GNUstep/SOGo/CommonUI.SOGo/Resources/Slovenian.lproj/Localizable.strings
 lib/GNUstep/SOGo/CommonUI.SOGo/Resources/SpanishArgentina.lproj/
 
lib/GNUstep/SOGo/CommonUI.SOGo/Resources/SpanishArgentina.lproj/Localizable.strings
 lib/GNUstep/SOGo/CommonUI.SOGo/Resources/SpanishSpain.lproj/
@@ -749,10 +767,14 @@
 lib/GNUstep/SOGo/Contacts.SOGo/Resources/
 lib/GNUstep/SOGo/Contacts.SOGo/Resources/Arabic.lproj/
 lib/GNUstep/SOGo/Contacts.SOGo/Resources/Arabic.lproj/Localizable.strings
+lib/GNUstep/SOGo/Contacts.SOGo/Resources/Basque.lproj/
+lib/GNUstep/SOGo/Contacts.SOGo/Resources/Basque.lproj/Localizable.strings
 lib/GNUstep/SOGo/Contacts.SOGo/Resources/BrazilianPortuguese.lproj/
 
lib/GNUstep/SOGo/Contacts.SOGo/Resources/BrazilianPortuguese.lproj/Localizable.strings
 lib/GNUstep/SOGo/Contacts.SOGo/Resources/Catalan.lproj/
 lib/GNUstep/SOGo/Contacts.SOGo/Resources/Catalan.lproj/Localizable.strings
+lib/GNUstep/SOGo/Contacts.SOGo/Resources/ChineseTaiwan.lproj/
+lib/GNUstep/SOGo/Contacts.SOGo/Resources/ChineseTaiwan.lproj/Localizable.strings
 lib/GNUstep/SOGo/Contacts.SOGo/Resources/Czech.lproj/
 lib/GNUstep/SOGo/Contacts.SOGo/Resources/Czech.lproj/Localizable.strings
 lib/GNUstep/SOGo/Contacts.SOGo/Resources/Danish.lproj/
@@ -784,6 +806,8 @@
 lib/GNUstep/SOGo/Contacts.SOGo/Resources/Russian.lproj/Localizable.strings
 lib/GNUstep/SOGo/Contacts.SOGo/Resources/Slovak.lproj/
 lib/GNUstep/SOGo/Contacts.SOGo/Resources/Slovak.lproj/Localizable.strings
+lib/GNUstep/SOGo/Contacts.SOGo/Resources/Slovenian.lproj/
+lib/GNUstep/SOGo/Contacts.SOGo/Resources/Slovenian.lproj/Localizable.strings
 lib/GNUstep/SOGo/Contacts.SOGo/Resources/SpanishArgentina.lproj/
 
lib/GNUstep/SOGo/Contacts.SOGo/Resources/SpanishArgentina.lproj/Localizable.strings
 lib/GNUstep/SOGo/Contacts.SOGo/Resources/SpanishSpain.lproj/
@@ -801,10 +825,14 @@
 lib/GNUstep/SOGo/ContactsUI.SOGo/Resources/
 lib/GNUstep/SOGo/ContactsUI.SOGo/Resources/Arabic.lproj/
 lib/GNUstep/SOGo/ContactsUI.SOGo/Resources/Arabic.lproj/Localizable.strings
+lib/GNUstep/SOGo/ContactsUI.SOGo/Resources/Basque.lproj/
+lib/GNUstep/SOGo/ContactsUI.SOGo/Resources/Basque.lproj/Localizable.strings
 lib/GNUstep/SOGo/ContactsUI.SOGo/Resources/BrazilianPortuguese.lproj/
 
lib/GNUstep/SOGo/ContactsUI.SOGo/Resources/BrazilianPortuguese.lproj/Localizable.strings
 lib/GNUstep/SOGo/ContactsUI.SOGo/Resources/Catalan.lproj/
 lib/GNUstep/SOGo/ContactsUI.SOGo/Resources/Catalan.lproj/Localizable.strings
+lib/GNUstep/SOGo/ContactsUI.SOGo/Resources/ChineseTaiwan.lproj/
+lib/GNUstep/SOGo/ContactsUI.SOGo/Resources/ChineseTaiwan.lproj/Localizable.strings
 lib/GNUstep/SOGo/ContactsUI.SOGo/Resources/Czech.lproj/
 lib/GNUstep/SOGo/ContactsUI.SOGo/Resources/Czech.lproj/Localizable.strings
 lib/GNUstep/SOGo/ContactsUI.SOGo/Resources/Danish.lproj/
@@ -837,6 +865,8 @@
 lib/GNUstep/SOGo/ContactsUI.SOGo/Resources/SOGoContactFolder.toolbar
 lib/GNUstep/SOGo/ContactsUI.SOGo/Resources/Slovak.lproj/
 lib/GNUstep/SOGo/ContactsUI.SOGo/Resources/Slovak.lproj/Localizable.strings
+lib/GNUstep/SOGo/ContactsUI.SOGo/Resources/Slovenian.lproj/
+lib/GNUstep/SOGo/ContactsUI.SOGo/Resources/Slovenian.lproj/Localizable.strings
 lib/GNUstep/SOGo/ContactsUI.SOGo/Resources/SpanishArgentina.lproj/
 
lib/GNUstep/SOGo/ContactsUI.SOGo/Resources/SpanishArgentina.lproj/Localizable.strings
 lib/GNUstep/SOGo/ContactsUI.SOGo/Resources/SpanishSpain.lproj/
@@ -855,10 +885,14 @@
 lib/GNUstep/SOGo/MailPartViewers.SOGo/Resources/
 lib/GNUstep/SOGo/MailPartViewers.SOGo/Resources/Arabic.lproj/
 
lib/GNUstep/SOGo/MailPartViewers.SOGo/Resources/Arabic.lproj/Localizable.strings
+lib/GNUstep/SOGo/MailPartViewers.SOGo/Resources/Basque.lproj/
+lib/GNUstep/SOGo/MailPartViewers.SOGo/Resources/Basque.lproj/Localizable.strings
 lib/GNUstep/SOGo/MailPartViewers.SOGo/Resources/BrazilianPortuguese.lproj/
 
lib/GNUstep/SOGo/MailPartViewers.SOGo/Resources/BrazilianPortuguese.lproj/Localizable.strings
 lib/GNUstep/SOGo/MailPartViewers.SOGo/Resources/Catalan.lproj/
 
lib/GNUstep/SOGo/MailPartViewers.SOGo/Resources/Catalan.lproj/Localizable.strings
+lib/GNUstep/SOGo/MailPartViewers.SOGo/Resources/ChineseTaiwan.lproj/
+lib/GNUstep/SOGo/MailPartViewers.SOGo/Resources/ChineseTaiwan.lproj/Localizable.strings
 lib/GNUstep/SOGo/MailPartViewers.SOGo/Resources/Czech.lproj/
 lib/GNUstep/SOGo/MailPartViewers.SOGo/Resources/Czech.lproj/Localizable.strings
 lib/GNUstep/SOGo/MailPartViewers.SOGo/Resources/Danish.lproj/
@@ -890,6 +924,8 @@
 
lib/GNUstep/SOGo/MailPartViewers.SOGo/Resources/Russian.lproj/Localizable.strings
 lib/GNUstep/SOGo/MailPartViewers.SOGo/Resources/Slovak.lproj/
 
lib/GNUstep/SOGo/MailPartViewers.SOGo/Resources/Slovak.lproj/Localizable.strings
+lib/GNUstep/SOGo/MailPartViewers.SOGo/Resources/Slovenian.lproj/
+lib/GNUstep/SOGo/MailPartViewers.SOGo/Resources/Slovenian.lproj/Localizable.strings
 lib/GNUstep/SOGo/MailPartViewers.SOGo/Resources/SpanishArgentina.lproj/
 
lib/GNUstep/SOGo/MailPartViewers.SOGo/Resources/SpanishArgentina.lproj/Localizable.strings
 lib/GNUstep/SOGo/MailPartViewers.SOGo/Resources/SpanishSpain.lproj/
@@ -907,10 +943,12 @@
 lib/GNUstep/SOGo/Mailer.SOGo/Resources/
 lib/GNUstep/SOGo/Mailer.SOGo/Resources/Arabic.lproj/
 lib/GNUstep/SOGo/Mailer.SOGo/Resources/Arabic.lproj/Localizable.strings
+lib/GNUstep/SOGo/Mailer.SOGo/Resources/Basque.lproj/
+lib/GNUstep/SOGo/Mailer.SOGo/Resources/Basque.lproj/Localizable.strings
 lib/GNUstep/SOGo/Mailer.SOGo/Resources/BrazilianPortuguese.lproj/
 
lib/GNUstep/SOGo/Mailer.SOGo/Resources/BrazilianPortuguese.lproj/Localizable.strings
-lib/GNUstep/SOGo/Mailer.SOGo/Resources/Catalan.lproj/
-lib/GNUstep/SOGo/Mailer.SOGo/Resources/Catalan.lproj/Localizable.strings
+lib/GNUstep/SOGo/Mailer.SOGo/Resources/ChineseTaiwan.lproj/
+lib/GNUstep/SOGo/Mailer.SOGo/Resources/ChineseTaiwan.lproj/Localizable.strings
 lib/GNUstep/SOGo/Mailer.SOGo/Resources/Czech.lproj/
 lib/GNUstep/SOGo/Mailer.SOGo/Resources/Czech.lproj/Localizable.strings
 lib/GNUstep/SOGo/Mailer.SOGo/Resources/Danish.lproj/
@@ -958,6 +996,12 @@
 lib/GNUstep/SOGo/Mailer.SOGo/Resources/SOGoMailCatalanReply.wo/
 
lib/GNUstep/SOGo/Mailer.SOGo/Resources/SOGoMailCatalanReply.wo/SOGoMailCatalanReply.html
 
lib/GNUstep/SOGo/Mailer.SOGo/Resources/SOGoMailCatalanReply.wo/SOGoMailCatalanReply.wod
+lib/GNUstep/SOGo/Mailer.SOGo/Resources/SOGoMailChineseTaiwanForward.wo/
+lib/GNUstep/SOGo/Mailer.SOGo/Resources/SOGoMailChineseTaiwanForward.wo/SOGoMailChineseTaiwanForward.html
+lib/GNUstep/SOGo/Mailer.SOGo/Resources/SOGoMailChineseTaiwanForward.wo/SOGoMailChineseTaiwanForward.wod
+lib/GNUstep/SOGo/Mailer.SOGo/Resources/SOGoMailChineseTaiwanReply.wo/
+lib/GNUstep/SOGo/Mailer.SOGo/Resources/SOGoMailChineseTaiwanReply.wo/SOGoMailChineseTaiwanReply.html
+lib/GNUstep/SOGo/Mailer.SOGo/Resources/SOGoMailChineseTaiwanReply.wo/SOGoMailChineseTaiwanReply.wod
 lib/GNUstep/SOGo/Mailer.SOGo/Resources/SOGoMailCzechForward.wo/
 
lib/GNUstep/SOGo/Mailer.SOGo/Resources/SOGoMailCzechForward.wo/SOGoMailCzechForward.html
 
lib/GNUstep/SOGo/Mailer.SOGo/Resources/SOGoMailCzechForward.wo/SOGoMailCzechForward.wod
@@ -1048,6 +1092,12 @@
 lib/GNUstep/SOGo/Mailer.SOGo/Resources/SOGoMailSlovakReply.wo/
 
lib/GNUstep/SOGo/Mailer.SOGo/Resources/SOGoMailSlovakReply.wo/SOGoMailSlovakReply.html
 
lib/GNUstep/SOGo/Mailer.SOGo/Resources/SOGoMailSlovakReply.wo/SOGoMailSlovakReply.wod
+lib/GNUstep/SOGo/Mailer.SOGo/Resources/SOGoMailSlovenianForward.wo/
+lib/GNUstep/SOGo/Mailer.SOGo/Resources/SOGoMailSlovenianForward.wo/SOGoMailSlovenianForward.html
+lib/GNUstep/SOGo/Mailer.SOGo/Resources/SOGoMailSlovenianForward.wo/SOGoMailSlovenianForward.wod
+lib/GNUstep/SOGo/Mailer.SOGo/Resources/SOGoMailSlovenianReply.wo/
+lib/GNUstep/SOGo/Mailer.SOGo/Resources/SOGoMailSlovenianReply.wo/SOGoMailSlovenianReply.html
+lib/GNUstep/SOGo/Mailer.SOGo/Resources/SOGoMailSlovenianReply.wo/SOGoMailSlovenianReply.wod
 lib/GNUstep/SOGo/Mailer.SOGo/Resources/SOGoMailSpanishArgentinaForward.wo/
 
lib/GNUstep/SOGo/Mailer.SOGo/Resources/SOGoMailSpanishArgentinaForward.wo/SOGoMailSpanishArgentinaForward.html
 
lib/GNUstep/SOGo/Mailer.SOGo/Resources/SOGoMailSpanishArgentinaForward.wo/SOGoMailSpanishArgentinaForward.wod
@@ -1078,8 +1128,8 @@
 lib/GNUstep/SOGo/Mailer.SOGo/Resources/SOGoMailWelshReply.wo/
 
lib/GNUstep/SOGo/Mailer.SOGo/Resources/SOGoMailWelshReply.wo/SOGoMailWelshReply.html
 
lib/GNUstep/SOGo/Mailer.SOGo/Resources/SOGoMailWelshReply.wo/SOGoMailWelshReply.wod
-lib/GNUstep/SOGo/Mailer.SOGo/Resources/Slovak.lproj/
-lib/GNUstep/SOGo/Mailer.SOGo/Resources/Slovak.lproj/Localizable.strings
+lib/GNUstep/SOGo/Mailer.SOGo/Resources/Slovenian.lproj/
+lib/GNUstep/SOGo/Mailer.SOGo/Resources/Slovenian.lproj/Localizable.strings
 lib/GNUstep/SOGo/Mailer.SOGo/Resources/SpanishArgentina.lproj/
 
lib/GNUstep/SOGo/Mailer.SOGo/Resources/SpanishArgentina.lproj/Localizable.strings
 lib/GNUstep/SOGo/Mailer.SOGo/Resources/SpanishSpain.lproj/
@@ -1098,10 +1148,14 @@
 lib/GNUstep/SOGo/MailerUI.SOGo/Resources/
 lib/GNUstep/SOGo/MailerUI.SOGo/Resources/Arabic.lproj/
 lib/GNUstep/SOGo/MailerUI.SOGo/Resources/Arabic.lproj/Localizable.strings
+lib/GNUstep/SOGo/MailerUI.SOGo/Resources/Basque.lproj/
+lib/GNUstep/SOGo/MailerUI.SOGo/Resources/Basque.lproj/Localizable.strings
 lib/GNUstep/SOGo/MailerUI.SOGo/Resources/BrazilianPortuguese.lproj/
 
lib/GNUstep/SOGo/MailerUI.SOGo/Resources/BrazilianPortuguese.lproj/Localizable.strings
 lib/GNUstep/SOGo/MailerUI.SOGo/Resources/Catalan.lproj/
 lib/GNUstep/SOGo/MailerUI.SOGo/Resources/Catalan.lproj/Localizable.strings
+lib/GNUstep/SOGo/MailerUI.SOGo/Resources/ChineseTaiwan.lproj/
+lib/GNUstep/SOGo/MailerUI.SOGo/Resources/ChineseTaiwan.lproj/Localizable.strings
 lib/GNUstep/SOGo/MailerUI.SOGo/Resources/Czech.lproj/
 lib/GNUstep/SOGo/MailerUI.SOGo/Resources/Czech.lproj/Localizable.strings
 lib/GNUstep/SOGo/MailerUI.SOGo/Resources/Danish.lproj/
@@ -1136,6 +1190,8 @@
 lib/GNUstep/SOGo/MailerUI.SOGo/Resources/SOGoMailObject.toolbar
 lib/GNUstep/SOGo/MailerUI.SOGo/Resources/Slovak.lproj/
 lib/GNUstep/SOGo/MailerUI.SOGo/Resources/Slovak.lproj/Localizable.strings
+lib/GNUstep/SOGo/MailerUI.SOGo/Resources/Slovenian.lproj/
+lib/GNUstep/SOGo/MailerUI.SOGo/Resources/Slovenian.lproj/Localizable.strings
 lib/GNUstep/SOGo/MailerUI.SOGo/Resources/SpanishArgentina.lproj/
 
lib/GNUstep/SOGo/MailerUI.SOGo/Resources/SpanishArgentina.lproj/Localizable.strings
 lib/GNUstep/SOGo/MailerUI.SOGo/Resources/SpanishSpain.lproj/
@@ -1155,12 +1211,18 @@
 lib/GNUstep/SOGo/MainUI.SOGo/Resources/Arabic.lproj/
 lib/GNUstep/SOGo/MainUI.SOGo/Resources/Arabic.lproj/Locale
 lib/GNUstep/SOGo/MainUI.SOGo/Resources/Arabic.lproj/Localizable.strings
+lib/GNUstep/SOGo/MainUI.SOGo/Resources/Basque.lproj/
+lib/GNUstep/SOGo/MainUI.SOGo/Resources/Basque.lproj/Locale
+lib/GNUstep/SOGo/MainUI.SOGo/Resources/Basque.lproj/Localizable.strings
 lib/GNUstep/SOGo/MainUI.SOGo/Resources/BrazilianPortuguese.lproj/
 lib/GNUstep/SOGo/MainUI.SOGo/Resources/BrazilianPortuguese.lproj/Locale
 
lib/GNUstep/SOGo/MainUI.SOGo/Resources/BrazilianPortuguese.lproj/Localizable.strings
 lib/GNUstep/SOGo/MainUI.SOGo/Resources/Catalan.lproj/
 lib/GNUstep/SOGo/MainUI.SOGo/Resources/Catalan.lproj/Locale
 lib/GNUstep/SOGo/MainUI.SOGo/Resources/Catalan.lproj/Localizable.strings
+lib/GNUstep/SOGo/MainUI.SOGo/Resources/ChineseTaiwan.lproj/
+lib/GNUstep/SOGo/MainUI.SOGo/Resources/ChineseTaiwan.lproj/Locale
+lib/GNUstep/SOGo/MainUI.SOGo/Resources/ChineseTaiwan.lproj/Localizable.strings
 lib/GNUstep/SOGo/MainUI.SOGo/Resources/Czech.lproj/
 lib/GNUstep/SOGo/MainUI.SOGo/Resources/Czech.lproj/Locale
 lib/GNUstep/SOGo/MainUI.SOGo/Resources/Czech.lproj/Localizable.strings
@@ -1211,6 +1273,9 @@
 lib/GNUstep/SOGo/MainUI.SOGo/Resources/Slovak.lproj/
 lib/GNUstep/SOGo/MainUI.SOGo/Resources/Slovak.lproj/Locale
 lib/GNUstep/SOGo/MainUI.SOGo/Resources/Slovak.lproj/Localizable.strings
+lib/GNUstep/SOGo/MainUI.SOGo/Resources/Slovenian.lproj/
+lib/GNUstep/SOGo/MainUI.SOGo/Resources/Slovenian.lproj/Locale
+lib/GNUstep/SOGo/MainUI.SOGo/Resources/Slovenian.lproj/Localizable.strings
 lib/GNUstep/SOGo/MainUI.SOGo/Resources/SpanishArgentina.lproj/
 lib/GNUstep/SOGo/MainUI.SOGo/Resources/SpanishArgentina.lproj/Locale
 
lib/GNUstep/SOGo/MainUI.SOGo/Resources/SpanishArgentina.lproj/Localizable.strings
@@ -1233,10 +1298,14 @@
 lib/GNUstep/SOGo/PreferencesUI.SOGo/Resources/
 lib/GNUstep/SOGo/PreferencesUI.SOGo/Resources/Arabic.lproj/
 lib/GNUstep/SOGo/PreferencesUI.SOGo/Resources/Arabic.lproj/Localizable.strings
+lib/GNUstep/SOGo/PreferencesUI.SOGo/Resources/Basque.lproj/
+lib/GNUstep/SOGo/PreferencesUI.SOGo/Resources/Basque.lproj/Localizable.strings
 lib/GNUstep/SOGo/PreferencesUI.SOGo/Resources/BrazilianPortuguese.lproj/
 
lib/GNUstep/SOGo/PreferencesUI.SOGo/Resources/BrazilianPortuguese.lproj/Localizable.strings
 lib/GNUstep/SOGo/PreferencesUI.SOGo/Resources/Catalan.lproj/
 lib/GNUstep/SOGo/PreferencesUI.SOGo/Resources/Catalan.lproj/Localizable.strings
+lib/GNUstep/SOGo/PreferencesUI.SOGo/Resources/ChineseTaiwan.lproj/
+lib/GNUstep/SOGo/PreferencesUI.SOGo/Resources/ChineseTaiwan.lproj/Localizable.strings
 lib/GNUstep/SOGo/PreferencesUI.SOGo/Resources/Czech.lproj/
 lib/GNUstep/SOGo/PreferencesUI.SOGo/Resources/Czech.lproj/Localizable.strings
 lib/GNUstep/SOGo/PreferencesUI.SOGo/Resources/Danish.lproj/
@@ -1268,6 +1337,8 @@
 lib/GNUstep/SOGo/PreferencesUI.SOGo/Resources/Russian.lproj/Localizable.strings
 lib/GNUstep/SOGo/PreferencesUI.SOGo/Resources/Slovak.lproj/
 lib/GNUstep/SOGo/PreferencesUI.SOGo/Resources/Slovak.lproj/Localizable.strings
+lib/GNUstep/SOGo/PreferencesUI.SOGo/Resources/Slovenian.lproj/
+lib/GNUstep/SOGo/PreferencesUI.SOGo/Resources/Slovenian.lproj/Localizable.strings
 lib/GNUstep/SOGo/PreferencesUI.SOGo/Resources/SpanishArgentina.lproj/
 
lib/GNUstep/SOGo/PreferencesUI.SOGo/Resources/SpanishArgentina.lproj/Localizable.strings
 lib/GNUstep/SOGo/PreferencesUI.SOGo/Resources/SpanishSpain.lproj/
@@ -1285,10 +1356,14 @@
 lib/GNUstep/SOGo/SchedulerUI.SOGo/Resources/
 lib/GNUstep/SOGo/SchedulerUI.SOGo/Resources/Arabic.lproj/
 lib/GNUstep/SOGo/SchedulerUI.SOGo/Resources/Arabic.lproj/Localizable.strings
+lib/GNUstep/SOGo/SchedulerUI.SOGo/Resources/Basque.lproj/
+lib/GNUstep/SOGo/SchedulerUI.SOGo/Resources/Basque.lproj/Localizable.strings
 lib/GNUstep/SOGo/SchedulerUI.SOGo/Resources/BrazilianPortuguese.lproj/
 
lib/GNUstep/SOGo/SchedulerUI.SOGo/Resources/BrazilianPortuguese.lproj/Localizable.strings
 lib/GNUstep/SOGo/SchedulerUI.SOGo/Resources/Catalan.lproj/
 lib/GNUstep/SOGo/SchedulerUI.SOGo/Resources/Catalan.lproj/Localizable.strings
+lib/GNUstep/SOGo/SchedulerUI.SOGo/Resources/ChineseTaiwan.lproj/
+lib/GNUstep/SOGo/SchedulerUI.SOGo/Resources/ChineseTaiwan.lproj/Localizable.strings
 lib/GNUstep/SOGo/SchedulerUI.SOGo/Resources/Czech.lproj/
 lib/GNUstep/SOGo/SchedulerUI.SOGo/Resources/Czech.lproj/Localizable.strings
 lib/GNUstep/SOGo/SchedulerUI.SOGo/Resources/Danish.lproj/
@@ -1325,6 +1400,8 @@
 lib/GNUstep/SOGo/SchedulerUI.SOGo/Resources/SOGoTaskObject.toolbar
 lib/GNUstep/SOGo/SchedulerUI.SOGo/Resources/Slovak.lproj/
 lib/GNUstep/SOGo/SchedulerUI.SOGo/Resources/Slovak.lproj/Localizable.strings
+lib/GNUstep/SOGo/SchedulerUI.SOGo/Resources/Slovenian.lproj/
+lib/GNUstep/SOGo/SchedulerUI.SOGo/Resources/Slovenian.lproj/Localizable.strings
 lib/GNUstep/SOGo/SchedulerUI.SOGo/Resources/SpanishArgentina.lproj/
 
lib/GNUstep/SOGo/SchedulerUI.SOGo/Resources/SpanishArgentina.lproj/Localizable.strings
 lib/GNUstep/SOGo/SchedulerUI.SOGo/Resources/SpanishSpain.lproj/
@@ -1398,12 +1475,18 @@
 lib/GNUstep/SOGo/Templates/SOGoACLArabicAdditionAdvisory.wox
 lib/GNUstep/SOGo/Templates/SOGoACLArabicModificationAdvisory.wox
 lib/GNUstep/SOGo/Templates/SOGoACLArabicRemovalAdvisory.wox
+lib/GNUstep/SOGo/Templates/SOGoACLBasqueAdditionAdvisory.wox
+lib/GNUstep/SOGo/Templates/SOGoACLBasqueModificationAdvisory.wox
+lib/GNUstep/SOGo/Templates/SOGoACLBasqueRemovalAdvisory.wox
 lib/GNUstep/SOGo/Templates/SOGoACLBrazilianPortugueseAdditionAdvisory.wox
 lib/GNUstep/SOGo/Templates/SOGoACLBrazilianPortugueseModificationAdvisory.wox
 lib/GNUstep/SOGo/Templates/SOGoACLBrazilianPortugueseRemovalAdvisory.wox
 lib/GNUstep/SOGo/Templates/SOGoACLCatalanAdditionAdvisory.wox
 lib/GNUstep/SOGo/Templates/SOGoACLCatalanModificationAdvisory.wox
 lib/GNUstep/SOGo/Templates/SOGoACLCatalanRemovalAdvisory.wox
+lib/GNUstep/SOGo/Templates/SOGoACLChineseTaiwanAdditionAdvisory.wox
+lib/GNUstep/SOGo/Templates/SOGoACLChineseTaiwanModificationAdvisory.wox
+lib/GNUstep/SOGo/Templates/SOGoACLChineseTaiwanRemovalAdvisory.wox
 lib/GNUstep/SOGo/Templates/SOGoACLCzechAdditionAdvisory.wox
 lib/GNUstep/SOGo/Templates/SOGoACLCzechModificationAdvisory.wox
 lib/GNUstep/SOGo/Templates/SOGoACLCzechRemovalAdvisory.wox
@@ -1449,6 +1532,9 @@
 lib/GNUstep/SOGo/Templates/SOGoACLSlovakAdditionAdvisory.wox
 lib/GNUstep/SOGo/Templates/SOGoACLSlovakModificationAdvisory.wox
 lib/GNUstep/SOGo/Templates/SOGoACLSlovakRemovalAdvisory.wox
+lib/GNUstep/SOGo/Templates/SOGoACLSlovenianAdditionAdvisory.wox
+lib/GNUstep/SOGo/Templates/SOGoACLSlovenianRemovalAdvisory.wox
+lib/GNUstep/SOGo/Templates/SOGoACLSolvenianModificationAdvisory.wox
 lib/GNUstep/SOGo/Templates/SOGoACLSpanishArgentinaAdditionAdvisory.wox
 lib/GNUstep/SOGo/Templates/SOGoACLSpanishArgentinaModificationAdvisory.wox
 lib/GNUstep/SOGo/Templates/SOGoACLSpanishArgentinaRemovalAdvisory.wox
@@ -1463,10 +1549,14 @@
 lib/GNUstep/SOGo/Templates/SOGoACLUkrainianRemovalAdvisory.wox
 lib/GNUstep/SOGo/Templates/SOGoFolderArabicAdditionAdvisory.wox
 lib/GNUstep/SOGo/Templates/SOGoFolderArabicRemovalAdvisory.wox
+lib/GNUstep/SOGo/Templates/SOGoFolderBasqueAdditionAdvisory.wox
+lib/GNUstep/SOGo/Templates/SOGoFolderBasqueRemovalAdvisory.wox
 lib/GNUstep/SOGo/Templates/SOGoFolderBrazilianPortugueseAdditionAdvisory.wox
 lib/GNUstep/SOGo/Templates/SOGoFolderBrazilianPortugueseRemovalAdvisory.wox
 lib/GNUstep/SOGo/Templates/SOGoFolderCatalanAdditionAdvisory.wox
 lib/GNUstep/SOGo/Templates/SOGoFolderCatalanRemovalAdvisory.wox
+lib/GNUstep/SOGo/Templates/SOGoFolderChineseTaiwanAdditionAdvisory.wox
+lib/GNUstep/SOGo/Templates/SOGoFolderChineseTaiwanRemovalAdvisory.wox
 lib/GNUstep/SOGo/Templates/SOGoFolderCzechAdditionAdvisory.wox
 lib/GNUstep/SOGo/Templates/SOGoFolderCzechRemovalAdvisory.wox
 lib/GNUstep/SOGo/Templates/SOGoFolderDanishAdditionAdvisory.wox
@@ -1497,6 +1587,8 @@
 lib/GNUstep/SOGo/Templates/SOGoFolderRussianRemovalAdvisory.wox
 lib/GNUstep/SOGo/Templates/SOGoFolderSlovakAdditionAdvisory.wox
 lib/GNUstep/SOGo/Templates/SOGoFolderSlovakRemovalAdvisory.wox
+lib/GNUstep/SOGo/Templates/SOGoFolderSlovenianAdditionAdvisory.wox
+lib/GNUstep/SOGo/Templates/SOGoFolderSlovenianRemovalAdvisory.wox
 lib/GNUstep/SOGo/Templates/SOGoFolderSpanishArgentinaAdditionAdvisory.wox
 lib/GNUstep/SOGo/Templates/SOGoFolderSpanishArgentinaRemovalAdvisory.wox
 lib/GNUstep/SOGo/Templates/SOGoFolderSpanishSpainAdditionAdvisory.wox
@@ -1668,6 +1760,7 @@
 lib/GNUstep/SOGo/WebServerResources/ckeditor/lang/de.js
 lib/GNUstep/SOGo/WebServerResources/ckeditor/lang/en.js
 lib/GNUstep/SOGo/WebServerResources/ckeditor/lang/es.js
+lib/GNUstep/SOGo/WebServerResources/ckeditor/lang/eu.js
 lib/GNUstep/SOGo/WebServerResources/ckeditor/lang/fi.js
 lib/GNUstep/SOGo/WebServerResources/ckeditor/lang/fr.js
 lib/GNUstep/SOGo/WebServerResources/ckeditor/lang/hu.js
@@ -1680,8 +1773,11 @@
 lib/GNUstep/SOGo/WebServerResources/ckeditor/lang/pt-br.js
 lib/GNUstep/SOGo/WebServerResources/ckeditor/lang/ru.js
 lib/GNUstep/SOGo/WebServerResources/ckeditor/lang/sk.js
+lib/GNUstep/SOGo/WebServerResources/ckeditor/lang/sl.js
 lib/GNUstep/SOGo/WebServerResources/ckeditor/lang/sv.js
 lib/GNUstep/SOGo/WebServerResources/ckeditor/lang/uk.js
+lib/GNUstep/SOGo/WebServerResources/ckeditor/lang/zh-cn.js
+lib/GNUstep/SOGo/WebServerResources/ckeditor/lang/zh.js
 lib/GNUstep/SOGo/WebServerResources/ckeditor/plugins/
 lib/GNUstep/SOGo/WebServerResources/ckeditor/plugins/about/
 lib/GNUstep/SOGo/WebServerResources/ckeditor/plugins/about/dialogs/
@@ -1760,6 +1856,7 @@
 lib/GNUstep/SOGo/WebServerResources/ckeditor/skins/moono/images/lock-open.png
 lib/GNUstep/SOGo/WebServerResources/ckeditor/skins/moono/images/lock.png
 lib/GNUstep/SOGo/WebServerResources/ckeditor/skins/moono/images/refresh.png
+lib/GNUstep/SOGo/WebServerResources/ckeditor/skins/moono/images/spinner.gif
 lib/GNUstep/SOGo/WebServerResources/ckeditor/skins/moono/readme.md
 lib/GNUstep/SOGo/WebServerResources/ckeditor/styles.js
 lib/GNUstep/SOGo/WebServerResources/collapse.png
@@ -2096,6 +2193,8 @@
 share/doc/sogo/sql-update-1.3.11_to_1.3.12-postgres.sh
 share/doc/sogo/sql-update-1.3.16_to_1.3.17-mysql.sh
 share/doc/sogo/sql-update-1.3.16_to_1.3.17-postgres.sh
+share/doc/sogo/sql-update-2.2.17_to_2.3.0-mysql.sh
+share/doc/sogo/sql-update-2.2.17_to_2.3.0-postgres.sh
 share/doc/sogo/updates.php
 @mode 750
 @owner _sogo
Index: pkg/README
===================================================================
RCS file: /cvs/ports/www/sogo/pkg/README,v
retrieving revision 1.18
diff -u -r1.18 README
--- pkg/README  17 Jul 2015 21:23:08 -0000      1.18
+++ pkg/README  21 Sep 2015 11:31:45 -0000
@@ -333,3 +333,14 @@
 command:
 
 # su _sogo "defaults write sogod WOPort *:20000"
+
+Upgrade SOGo from < 2.3.0
+==========================
+With version 2.3.0, the database schema needs to be extended.
+
+Run one of the following scripts as the SOGo system user _sogo. Depending on
+the database you use, choose the postgres or mysql variant. The scripts
+will ask you for the database credentials.
+
+# su _sogo 
"${TRUEPREFIX}/share/doc/sogo/sql-update-2.2.17_to_2.3.0-postgres.sh"
+# su _sogo "${TRUEPREFIX}/share/doc/sogo/sql-update-2.2.17_to_2.3.0-mysql.sh"
Index: Makefile
===================================================================
RCS file: /cvs/ports/www/sope/Makefile,v
retrieving revision 1.48
diff -u -r1.48 Makefile
--- Makefile    10 May 2015 11:39:49 -0000      1.48
+++ Makefile    21 Sep 2015 08:40:41 -0000
@@ -4,11 +4,11 @@
 COMMENT-mysql=         SOPE MySQL adaptor
 COMMENT-postgres=      SOPE PostgreSQL adaptor
 
-VERSION =              2.2.17
-DISTNAME =             SOPE-${VERSION}a
-PKGNAME-main =         sope-${VERSION}.0
-PKGNAME-mysql =                sope-mysql-${VERSION}.0
-PKGNAME-postgres =     sope-postgres-${VERSION}.0
+VERSION =              2.3.2
+DISTNAME =             SOPE-${VERSION}
+PKGNAME-main =         sope-${VERSION}
+PKGNAME-mysql =                sope-mysql-${VERSION}
+PKGNAME-postgres =     sope-postgres-${VERSION}
 
 SO_MAJOR=      3
 SO_MINOR=      0
@@ -42,9 +42,9 @@
                        databases/openldap \
                        x11/gnustep/libobjc2 \
                        ${MODLIBICONV_LIB_DEPENDS}
-LIB_DEPENDS-mysql =    ${BASE_PKGPATH}=${VERSION}.0 \
+LIB_DEPENDS-mysql =    ${BASE_PKGPATH}=${VERSION} \
                        databases/mariadb,-main
-LIB_DEPENDS-postgres = ${BASE_PKGPATH}=${VERSION}.0 \
+LIB_DEPENDS-postgres = ${BASE_PKGPATH}=${VERSION} \
                        databases/postgresql,-main
 
 CONFIGURE_STYLE=simple dest
Index: distinfo
===================================================================
RCS file: /cvs/ports/www/sope/distinfo,v
retrieving revision 1.25
diff -u -r1.25 distinfo
--- distinfo    10 May 2015 11:39:49 -0000      1.25
+++ distinfo    21 Sep 2015 08:40:41 -0000
@@ -1,2 +1,2 @@
-SHA256 (SOPE-2.2.17a.tar.gz) = hv9WK/TQfVQASe/1NRCxqIGcmMZN+Gdwx/r7/KaGntk=
-SIZE (SOPE-2.2.17a.tar.gz) = 2266168
+SHA256 (SOPE-2.3.2.tar.gz) = nSByxu4rhk1X0w9DB5/3wJIfipTeBm8ydTM3rvdOhdg=
+SIZE (SOPE-2.3.2.tar.gz) = 2269903

Reply via email to