diff options
author | Martin Wilke <miwi@FreeBSD.org> | 2011-01-28 23:19:35 +0000 |
---|---|---|
committer | Martin Wilke <miwi@FreeBSD.org> | 2011-01-28 23:19:35 +0000 |
commit | 8cbd49115e39c1ab2bfe5951705b8925c858b42c (patch) | |
tree | 8a4394da7e2ee92e0294ce30bcc80269ebb8c3ef /www/typo346/Makefile | |
parent | ea7867da1e550f2125938763a9d20c5a185110c2 (diff) |
- Update to 4.5.0
- New knobs WITH_CUR and WITH_MBSTRING
- Change defaults: WITH_IMAGICK and WITH_GD are enabled by default now
- Add LICENSE
PR: 154356
Submitted by: Helmut Schneider <jumper99@gmx.de> (maintainer)
Feature safe: yes
Notes
Notes:
svn path=/head/; revision=268348
Diffstat (limited to 'www/typo346/Makefile')
-rw-r--r-- | www/typo346/Makefile | 33 |
1 files changed, 23 insertions, 10 deletions
diff --git a/www/typo346/Makefile b/www/typo346/Makefile index 3cb1c790e7a4..cdf239dcc6d2 100644 --- a/www/typo346/Makefile +++ b/www/typo346/Makefile @@ -6,16 +6,19 @@ # PORTNAME= typo3 -PORTVERSION= 4.4.6 +PORTVERSION= 4.5.0 CATEGORIES= www -MASTER_SITES= SF/${PORTNAME}/TYPO3%20Source%20and%20Dummy/TYPO3%20${PORTVERSION} +MASTER_SITES= SF/${PORTNAME}/TYPO3%20Source%20and%20Dummy/TYPO3%20${PORTVERSION} \ + http://dl1.typo3.org/TYPO3_${PORTVERSION}/ DISTNAME= ${PORTNAME}_src-${PORTVERSION} MAINTAINER= jumper99@gmx.de COMMENT= The typo3 content management system +LICENSE= GPLv2 + NO_BUILD= yes -USE_PHP= mysql pcre xml session ctype filter json +USE_PHP= ctype filter json mysql pcre session xml WANT_PHP_WEB= yes IGNORE_WITH_PHP= 4 @@ -27,24 +30,34 @@ EDITION= dummy DISTFILES+= ${DISTNAME}${EXTRACT_SUFX} ${EDITION}-${PORTVERSION}${EXTRACT_SUFX} -OPTIONS= GD "Configure with GDlib/freetype support" off \ - ZLIB "Configure with zlib support" off \ - IMAGICK "Configure with ImageMagick support" off +OPTIONS= CURL "Configure with cURL support" off \ + GD "Configure with GDlib/freetype support" on \ + IMAGICK "Configure with ImageMagick support" on \ + MBSTRING "Configure with mbstring support" off \ + ZLIB "Configure with zlib support" off .include <bsd.port.pre.mk> -.if defined(WITH_GD) -USE_PHP+= gd +.if defined(WITH_CURL) +USE_PHP+= curl .endif -.if defined(WITH_ZLIB) -USE_PHP+= zlib +.if defined(WITH_GD) +USE_PHP+= gd .endif .if defined(WITH_IMAGICK) LIB_DEPENDS+= MagickWand.4:${PORTSDIR}/graphics/ImageMagick .endif +.if defined(WITH_MBSTRING) +USE_PHP+= mbstring +.endif + +.if defined(WITH_ZLIB) +USE_PHP+= zlib +.endif + pre-install: ${MV} ${SITESRC}/typo3conf/localconf.php ${SITESRC}/typo3conf/localconf.php.dist |