diff options
author | Bryan Drewery <bdrewery@FreeBSD.org> | 2012-08-15 00:13:20 +0000 |
---|---|---|
committer | Bryan Drewery <bdrewery@FreeBSD.org> | 2012-08-15 00:13:20 +0000 |
commit | 0d3f3934b15ea836a4244b6b7dd6de33c6c69e3c (patch) | |
tree | 005f573f2040f8a78761aa9721a23fa0460feb17 | |
parent | - Add some common options (diff) |
- Update to 4.6.11 [1]
- Convert to new Options framework
- Changes: http://typo3.org/news/article/typo3-4518-4611-and-473-released/
PR: ports/170485 [1]
Submitted by: Helmut Schneider <jumper99@gmx.de> [1] (maintainer)
Approved by: bapt (mentor)
-rw-r--r-- | www/typo346/Makefile | 21 | ||||
-rw-r--r-- | www/typo346/distinfo | 8 | ||||
-rw-r--r-- | www/typo346/pkg-plist | 1 |
3 files changed, 14 insertions, 16 deletions
diff --git a/www/typo346/Makefile b/www/typo346/Makefile index 33d90d264865..afd0e337ec36 100644 --- a/www/typo346/Makefile +++ b/www/typo346/Makefile @@ -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,30 @@ PLIST_SUB+= PORTVERSION="${PORTVERSION}" 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 +IMAGICK_DESC= ${IMAGEMAGICK_DESC} +MBSTRING_DESC= ${MULTIBYTE_DESC} +GD_DESC= GDlib/freetype support .include <bsd.port.pre.mk> -.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 diff --git a/www/typo346/distinfo b/www/typo346/distinfo index 47c46bcb4854..5f28e4ab65e5 100644 --- a/www/typo346/distinfo +++ b/www/typo346/distinfo @@ -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 diff --git a/www/typo346/pkg-plist b/www/typo346/pkg-plist index fa183b060c13..fb8ca2840e3e 100644 --- a/www/typo346/pkg-plist +++ b/www/typo346/pkg-plist @@ -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 |