diff options
author | bdrewery <bdrewery@FreeBSD.org> | 2012-08-15 08:15:34 +0800 |
---|---|---|
committer | bdrewery <bdrewery@FreeBSD.org> | 2012-08-15 08:15:34 +0800 |
commit | 040f35ae1db9510437480f5a1f7b1e7ab61e74aa (patch) | |
tree | 4d07f6b2bf28cff90a591626c2ed2edc00dda04b /www | |
parent | c9c3e6d13d047e1a4c42efe5810ceb9eb03065d4 (diff) | |
download | freebsd-ports-graphics-040f35ae1db9510437480f5a1f7b1e7ab61e74aa.tar.gz freebsd-ports-graphics-040f35ae1db9510437480f5a1f7b1e7ab61e74aa.tar.zst freebsd-ports-graphics-040f35ae1db9510437480f5a1f7b1e7ab61e74aa.zip |
- Update to 4.5.18 [1]
- Convert to new Options framework
- Changes: http://typo3.org/news/article/typo3-4518-4611-and-473-released/
PR: ports/170484 [1]
Submitted by: Helmut Schneider <jumper99@gmx.de> [1] (maintainer)
Approved by: bapt (mentor)
Diffstat (limited to 'www')
-rw-r--r-- | www/typo345/Makefile | 21 | ||||
-rw-r--r-- | www/typo345/distinfo | 8 | ||||
-rw-r--r-- | www/typo345/pkg-plist | 2 |
3 files changed, 15 insertions, 16 deletions
diff --git a/www/typo345/Makefile b/www/typo345/Makefile index bd9627d15a4..467c52a9b3a 100644 --- a/www/typo345/Makefile +++ b/www/typo345/Makefile @@ -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,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/typo345/distinfo b/www/typo345/distinfo index 6df71d9a8f7..f5091c47848 100644 --- a/www/typo345/distinfo +++ b/www/typo345/distinfo @@ -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 diff --git a/www/typo345/pkg-plist b/www/typo345/pkg-plist index bdfb6f9ae40..fcb79bd7dfa 100644 --- a/www/typo345/pkg-plist +++ b/www/typo345/pkg-plist @@ -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 |