diff options
author | sunpoet <sunpoet@FreeBSD.org> | 2015-11-14 03:13:50 +0800 |
---|---|---|
committer | sunpoet <sunpoet@FreeBSD.org> | 2015-11-14 03:13:50 +0800 |
commit | fd88e07b9bcd4b226c4575188f33e0339903c951 (patch) | |
tree | 3cbd33ff733ff13ed6cb3ea00ccee34b4dcd76f0 /www/groupoffice/Makefile | |
parent | 950114ac4674c9cd2cfc67061a85d6a5d43743dc (diff) | |
download | freebsd-ports-gnome-fd88e07b9bcd4b226c4575188f33e0339903c951.tar.gz freebsd-ports-gnome-fd88e07b9bcd4b226c4575188f33e0339903c951.tar.zst freebsd-ports-gnome-fd88e07b9bcd4b226c4575188f33e0339903c951.zip |
- Update to 6.1.61
- Convert to new options helper
Diffstat (limited to 'www/groupoffice/Makefile')
-rw-r--r-- | www/groupoffice/Makefile | 29 |
1 files changed, 8 insertions, 21 deletions
diff --git a/www/groupoffice/Makefile b/www/groupoffice/Makefile index 94d4dc28b9d7..4ea8c0c61469 100644 --- a/www/groupoffice/Makefile +++ b/www/groupoffice/Makefile @@ -3,7 +3,7 @@ PORTNAME= groupoffice DISTVERSIONPREFIX= com- -DISTVERSION= 6.1.57 +DISTVERSION= 6.1.61 CATEGORIES= www MASTER_SITES= SF/group-office/${DISTVERSION:R} @@ -12,6 +12,7 @@ COMMENT= Modular web application framework vor office RESTRICTED= Free for personal use only +NO_ARCH= yes NO_BUILD= yes USE_PHP= mysqli session mbstring pcre xml WANT_PHP_WEB= yes @@ -24,19 +25,23 @@ SHEBANG_FILES= go/vendor/tcpdf/tools/tcpdf_addfont.php \ modules/postfixadmin/scripts/vacation.pl \ modules/sync/z-push/install.sh \ vendor/fkooman/php-oauth-client/bin/php-oauth-client-create-tables -NO_ARCH= yes WWWDIR?= ${PREFIX}/www/${PORTNAME}${DISTVERSION:R:R} SUB_FILES= pkg-message OPTIONS_DEFINE= IMAP GD CALENDAR WBXML -OPTIONS_DEFAULT= IMAP GD CALENDAR +OPTIONS_DEFAULT=IMAP GD CALENDAR CALENDAR_DESC= Calendar holiday support IMAP_DESC= IMAP support GD_DESC= Gallery support (GD) WBXML_DESC= Synchronization Support +CALENDAR_USE= PHP=calendar +GD_USE= PHP=gd +IMAP_USE= PHP=iconv imap +WBXML_LIB_DEPENDS= libwbxml2.so:${PORTSDIR}/textproc/wbxml2 + post-patch: ${REINPLACE_CMD} 's|%%LOCALBASE%%|${LOCALBASE}|g' \ ${WRKSRC}/go/base/Config.php @@ -47,24 +52,6 @@ post-patch: ${WRKSRC}/modules/serverclient/ServerclientModule.php \ ${WRKSRC}/modules/site/index.php -.include <bsd.port.options.mk> - -.if ${PORT_OPTIONS:MIMAP} -USE_PHP+= imap iconv -.endif - -.if ${PORT_OPTIONS:MGD} -USE_PHP+= gd -.endif - -.if ${PORT_OPTIONS:MCALENDAR} -USE_PHP+= calendar -.endif - -.if ${PORT_OPTIONS:MWBXML} -LIB_DEPENDS= libwbxml2.so:${PORTSDIR}/textproc/wbxml2 -.endif - do-install: @${MKDIR} ${STAGEDIR}${WWWDIR} ${CP} -R ${WRKSRC}/ ${STAGEDIR}${WWWDIR} |