Index: distinfo =================================================================== --- distinfo (revision 302301) +++ distinfo (working copy) @@ -1,4 +1,4 @@ -SHA256 (typo3_src-4.6.10.tar.gz) = 4f269b21d50b61574c2f7af51093e4d3449248761d0d7f90f42fb52bf9dc3d91 -SIZE (typo3_src-4.6.10.tar.gz) = 21288028 -SHA256 (dummy-4.6.10.tar.gz) = 727c031d80b0e34c917f222bba0766153d1d85020813c3caf4cf6340437fb322 -SIZE (dummy-4.6.10.tar.gz) = 10148 +SHA256 (typo3_src-4.6.11.tar.gz) = 62acbc0876c2cbf452c435a5a09e11b60b3ea8d724a455f92d2caea07bb2ff89 +SIZE (typo3_src-4.6.11.tar.gz) = 21289682 +SHA256 (dummy-4.6.11.tar.gz) = 87e711ba875c3f9c90d730ff6a5c14b5c05bf2da06de46b0fe98090d04e9bdc2 +SIZE (dummy-4.6.11.tar.gz) = 10138 Index: pkg-plist =================================================================== --- pkg-plist (revision 302301) +++ pkg-plist (working copy) @@ -20,7 +20,6 @@ %%WWWDIR%%-46/uploads/media/index.html %%WWWDIR%%-46/uploads/pics/index.html %%WWWDIR%%-46/uploads/tf/index.html -%%WWWDIR%%_src-%%PORTVERSION%%/.travis.yml %%WWWDIR%%_src-%%PORTVERSION%%/ChangeLog %%WWWDIR%%_src-%%PORTVERSION%%/GPL.txt %%WWWDIR%%_src-%%PORTVERSION%%/INSTALL.txt Index: Makefile =================================================================== --- Makefile (revision 302301) +++ Makefile (working copy) @@ -6,7 +6,7 @@ # PORTNAME= typo3 -PORTVERSION= 4.6.10 +PORTVERSION= 4.6.11 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