openbsd-ports/www/sogo/Makefile
sebastia 74976ca943 update to sogo 1.3.9
=== Changes from the previous release ===

New Features

* possibility to specify which calendar is used when creating an event or a task (selected, personal, first enabled)
* possibility to specify if off-hours should be automatically added to the free-busy information
* new indicator in the link banner when a vacation message (auto-reply) is active
* new snooze function for events alarms in Web interface
* new "Remember login" checkbox on the login page
* authentication with SQL sources can now be performed on any database column

Enhancements

* added support for the CalDAV move operation
* phone numbers in the contacts web module are now links (tel:)
* revamp of the modules link banner (15-pixel taller)
* updated CKEditor to version 3.6.2
* updated unread and flagged icons in Webmail module
* new dependency on GNUstep 1.23

Bug Fixes

* fixed support for Apple iOS 5
* fixed handling of untagged IMAP responses
* fixed handling of commas in email addresses when composing a message
* fixed creation of clickable links for URLs surrounded by square brackets
* fixed behaviour of combo box for contacts categories
* fixed Swedish translation classes
* fixed bug when setting no ACL on a calendar

OK jasper@
2011-11-18 11:15:13 +00:00

61 lines
1.9 KiB
Makefile

# $OpenBSD: Makefile,v 1.17 2011/11/18 11:15:13 sebastia Exp $
COMMENT = web based groupware server
VERSION = 1.3.9
DISTNAME = SOGo-${VERSION}
PKGNAME = sogo-${VERSION}
SHLIB_VERSION = 1.1
.for _lib in GDLContentStore NGCards OGoContentStore \
SOGo SOGoUI
SHARED_LIBS += ${_lib} ${SHLIB_VERSION}
.endfor
CATEGORIES = www
HOMEPAGE = http://www.sogo.nu/
MASTER_SITES = ${HOMEPAGE}/files/downloads/SOGo/Sources/
MAINTAINER = Sebastian Reitenbach <sebastia@openbsd.org>
# LGPLv2/GPLv2
PERMIT_PACKAGE_CDROM = Yes
PERMIT_PACKAGE_FTP = Yes
PERMIT_DISTFILES_CDROM = Yes
PERMIT_DISTFILES_FTP = Yes
MODULES = x11/gnustep
MODGNUSTEP_NEEDS_GUI = No
WANTLIB += c m pthread crypto memcached WOExtensions SBJson
WANTLIB += DOM EOControl GDLAccess NGExtensions NGLdap XmlRpc
WANTLIB += NGMime NGObjWeb NGStreams SaxObjC WEExtensions
WANTLIB += objc gnustep-base
LIB_DEPENDS += devel/libmemcached \
www/sope
RUN_DEPENDS += sope-postgres-*|sope-mysql-*:www/sope,-postgres \
archivers/zip
CONFIGURE_STYLE = simple dest
CONFIGURE_ARGS += --gsmake=`gnustep-config --variable=GNUSTEP_MAKEFILES`
MAKE_FLAGS += libGDLContentStore_INTERFACE_VERSION=${SHLIB_VERSION} \
libNGCards_INTERFACE_VERSION=${SHLIB_VERSION} \
libOGoContentStore_INTERFACE_VERSION=${SHLIB_VERSION} \
libSOGoUI_INTERFACE_VERSION=${SHLIB_VERSION} \
SOGo_INTERFACE_VERSION=${SHLIB_VERSION}
pre-configure:
.for f in SOGo_Installation_Guide SOGo_Mobile_Devices_Configuration \
SOGo_Mozilla_Thunderbird_Configuration SOGo_Native_Microsoft_Outlook_Configuration
cd ${WRKSRC}/Documentation; mv "${f:S/_/ /g}.odt" "$f.odt"
.endfor
post-install:
${INSTALL_DATA_DIR} ${PREFIX}/share/doc/sogo
${INSTALL_DATA} ${WRKSRC}/Documentation/* ${PREFIX}/share/doc/sogo
${INSTALL_SCRIPT} -c -o ${SHAREOWN} -g ${SHAREGRP} \
${WRKSRC}/Scripts/cas-proxy-validate.py \
${PREFIX}/share/doc/sogo/cas-proxy-validate.py
.include <bsd.port.mk>