Index: distinfo =================================================================== --- distinfo (revision 302301) +++ distinfo (working copy) @@ -1,4 +1,4 @@ -SHA256 (typo3_src-4.5.17.tar.gz) = 16c530dd8b33c8fb2962475c147be0b9676d2092d1a9653a8e3eed89dafdedfc -SIZE (typo3_src-4.5.17.tar.gz) = 20552255 -SHA256 (dummy-4.5.17.tar.gz) = d42120ee9d9b097210ac0da9bfd1b01037ebcd147778e2a1e289acbab9da74e3 -SIZE (dummy-4.5.17.tar.gz) = 9857 +SHA256 (typo3_src-4.5.18.tar.gz) = 68da30e14124c697c070046b14886ec64ecd38b8b17895a122e1a5f45e516fa2 +SIZE (typo3_src-4.5.18.tar.gz) = 20559614 +SHA256 (dummy-4.5.18.tar.gz) = 9a88878e802ff1b743152cc0f79ed038e769c2436784266725e02d848a07f18d +SIZE (dummy-4.5.18.tar.gz) = 9858 Index: pkg-plist =================================================================== --- pkg-plist (revision 302301) +++ pkg-plist (working copy) @@ -20,7 +20,6 @@ %%WWWDIR%%-45/uploads/media/index.html %%WWWDIR%%-45/uploads/pics/index.html %%WWWDIR%%-45/uploads/tf/index.html -%%WWWDIR%%_src-%%PORTVERSION%%/.travis.yml %%WWWDIR%%_src-%%PORTVERSION%%/ChangeLog %%WWWDIR%%_src-%%PORTVERSION%%/GPL.txt %%WWWDIR%%_src-%%PORTVERSION%%/INSTALL.txt @@ -241,6 +240,7 @@ %%WWWDIR%%_src-%%PORTVERSION%%/t3lib/js/extjs/util.js %%WWWDIR%%_src-%%PORTVERSION%%/t3lib/js/extjs/ux/Ext.app.SearchField.js %%WWWDIR%%_src-%%PORTVERSION%%/t3lib/js/extjs/ux/Ext.grid.RowExpander.js +%%WWWDIR%%_src-%%PORTVERSION%%/t3lib/js/extjs/ux/Ext.ux.DateTimePicker.js %%WWWDIR%%_src-%%PORTVERSION%%/t3lib/js/extjs/ux/Ext.ux.FitToParent.js %%WWWDIR%%_src-%%PORTVERSION%%/t3lib/js/extjs/ux/ext.resizable.js %%WWWDIR%%_src-%%PORTVERSION%%/t3lib/js/extjs/ux/ext.ux.tabclosemenu.js Index: Makefile =================================================================== --- Makefile (revision 302301) +++ Makefile (working copy) @@ -6,7 +6,7 @@ # PORTNAME= typo3 -PORTVERSION= 4.5.17 +PORTVERSION= 4.5.18 CATEGORIES= www MASTER_SITES= SF/${PORTNAME}/TYPO3%20Source%20and%20Dummy/TYPO3%20${PORTVERSION} @@ -32,31 +32,32 @@ DISTFILES+= ${TYPO3SRC}${EXTRACT_SUFX} ${TYPO3DUMMY}${EXTRACT_SUFX} -OPTIONS= CURL "Configure with cURL support" off \ - GD "Configure with GDlib/freetype support" off \ - IMAGICK "Configure with ImageMagick support" off \ - MBSTRING "Configure with mbstring support" off \ - ZLIB "Configure with zlib support" off +OPTIONS_DEFINE= CURL GD IMAGICK MBSTRING ZLIB +CURL_DESC= Configure with cURL support +GD_DESC= Configure with GDlib/freetype support +IMAGICK_DESC= Configure with ImageMagick support +MBSTRING_DESC= Configure with mbstring support +ZLIB_DESC= Configure with zlib support .include -.if defined(WITH_CURL) +.if ${PORT_OPTIONS:MCURL} USE_PHP+= curl .endif -.if defined(WITH_GD) +.if ${PORT_OPTIONS:MGD} USE_PHP+= gd .endif -.if defined(WITH_IMAGICK) +.if ${PORT_OPTIONS:MIMAGICK} RUN_DEPENDS+= ${LOCALBASE}/bin/convert:${PORTSDIR}/graphics/ImageMagick .endif -.if defined(WITH_MBSTRING) +.if ${PORT_OPTIONS:MMBSTRING} USE_PHP+= mbstring .endif -.if defined(WITH_ZLIB) +.if ${PORT_OPTIONS:MZLIB} USE_PHP+= zlib .endif