2d99d160e3
2017-04-18 ac75a78 [RELEASE] Release of TYPO3 6.2.31 (TYPO3 Release Team) 2017-04-18 3de0853 #80857 [TASK] Mark 6.2 as e-o-l in install tool core updater (Christian Kuhn) 2017-04-07 f2ce731 #77855 [BUGFIX] Allow file replace for editors (Helmut Hummel) 2017-04-04 7c45dc5 #48544 [FOLLOWUP][BUGFIX] Do not devlog bad code smells of core classes (Markus Klein) 2017-04-03 5d266a7 #48544 [BUGFIX] Do not devlog bad code smells of core classes (Markus Klein) 2017-03-31 a4c6edc #80589 [BUGFIX] FAL: Correctly iterate folder content with offset (Markus Klein) 2017-03-25 11506d7 #72299 [BUGFIX] Send correct HTTP message in getUrl (Markus Klein) 2017-03-09 21a8ee2 #64742 [BUGFIX] Extension update: Prevent multiple update trigger (Nicole Cordes) 2017-01-13 b236079 #78986 [BUGFIX] Remove range from sorting field (Georg Ringer) 2017-01-11 a3cc3f9 #79275 [BUGFIX] CacheHashCalculator does not exclude ADMCMD arguments (Benni Mack) 2017-01-07 8bc9de1 #79165 [TASK] Update copyright year to 2017 (Wouter Wolters) 2017-01-03 5631d83 #78822 [BUGFIX] Documentation of sessionTimeout (Anja Leichsenring)
65 lines
2.1 KiB
Makefile
65 lines
2.1 KiB
Makefile
# $NetBSD: Makefile,v 1.22 2017/04/23 14:52:31 taca Exp $
|
|
#
|
|
|
|
DISTNAME= ${TYPO3NAME}
|
|
PKGNAME= ${PHP_PKG_PREFIX}-typo3-${VER}
|
|
CATEGORIES= www
|
|
MASTER_SITES= ${MASTER_SITE_SOURCEFORGE:=typo3/}
|
|
|
|
MAINTAINER= taca@NetBSD.org
|
|
HOMEPAGE= http://typo3.com/
|
|
COMMENT= The TYPO3 content management system, 6.2 LTS release
|
|
LICENSE= gnu-gpl-v2
|
|
|
|
DEPENDS+= ${PHP_PKG_PREFIX}-{mysqli,pgsql}>=5.1.0:../../databases/php-mysqli
|
|
DEPENDS+= ${PHP_PKG_PREFIX}-gd>=5.3.7:../../graphics/php-gd
|
|
DEPENDS+= ${PHP_PKG_PREFIX}-soap>=5.3.7:../../net/php-soap
|
|
DEPENDS+= ${PHP_PKG_PREFIX}-json>=5.3.7:../../textproc/php-json
|
|
DEPENDS+= ${PHP_PKG_PREFIX}-zip>=5.3.7:../../archivers/php-zip
|
|
DEPENDS+= ${PHP_PKG_PREFIX}-zlib>=5.3.7:../../archivers/php-zlib
|
|
|
|
VER= 6.2.31
|
|
NO_BUILD= yes
|
|
USE_TOOLS+= bash:run pax
|
|
|
|
TYPO3NAME= typo3_src-${VER}
|
|
WRKSRC= ${WRKDIR}/${DISTNAME}
|
|
|
|
# maybe resides in lang/php/phpversion.mk
|
|
REPLACE_INTERPRETER+= php
|
|
REPLACE.php.old= .*php[^ ]*
|
|
REPLACE.php.new= ${PREFIX}/bin/php
|
|
REPLACE_FILES.php= typo3/cli_dispatch.phpsh
|
|
|
|
REPLACE_BASH= typo3/sysext/core/Build/Scripts/xlfcheck.sh \
|
|
typo3/sysext/core/Build/Scripts/splitFunctionalTests.sh \
|
|
typo3/sysext/core/Build/Scripts/update-static-composer.sh
|
|
|
|
OWN_DIRS_PERMS+= ${TYPO3DIR}/${SITEDIR} ${REAL_ROOT_USER} ${APACHE_GROUP} 0770
|
|
|
|
BUILD_DEFS+= APACHE_GROUP
|
|
|
|
FILES_SUBST+= SITEDIR=${SITEDIR} TYPO3DIR=${TYPO3DIR} TYPO3NAME=${TYPO3NAME}
|
|
MESSAGE_SUBST+= SITEDIR=${SITEDIR} TYPO3DIR=${TYPO3DIR}
|
|
PLIST_SUBST+= SITEDIR=${SITEDIR} TYPO3DIR=${TYPO3DIR} TYPO3NAME=${TYPO3NAME}
|
|
|
|
INSTALLATION_DIRS+= ${TYPO3DIR}/${TYPO3NAME}
|
|
|
|
PRINT_PLIST_AWK+= /^${TYPO3DIR:S|/|\\/|g}\/${TYPO3NAME}/ \
|
|
{ gsub(/${TYPO3DIR:S|/|\\/|g}\/${TYPO3NAME}/, \
|
|
"$${TYPO3DIR}/$${TYPO3NAME}") }
|
|
PRINT_PLIST_AWK+= /^${TYPO3DIR:S|/|\\/|g}\/${SITEDIR}/ \
|
|
{ gsub(/${TYPO3DIR:S|/|\\/|g}\/${SITEDIR}/, \
|
|
"$${TYPO3DIR}/$${SITEDIR}") }
|
|
|
|
.include "../../mk/bsd.prefs.mk"
|
|
|
|
SITEDIR?= www
|
|
TYPO3DIR?= share/typo3
|
|
|
|
do-install:
|
|
cd ${WRKSRC} && ${FIND} . ! -type d -a \! -name '*.orig' -print | \
|
|
pax -rw ${DESTDIR}${PREFIX}/${TYPO3DIR}/${TYPO3NAME}
|
|
|
|
.include "../../lang/php/phpversion.mk"
|
|
.include "../../mk/bsd.pkg.mk"
|