mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-18 03:46:03 +00:00
8bdbf2344e
Changelog: https://get.typo3.org/release-notes/7.6.29 PR: 229174 Submitted by: Helmut Ritter <FreeBSD-Bugzilla@charlieroot.de> (maintainer)
78 lines
2.1 KiB
Makefile
78 lines
2.1 KiB
Makefile
# Created by: Helmut Ritter <freebsd-ports@charlieroot.de>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= typo3
|
|
PORTVERSION= ${PORT_V_MAJOR}.${PORT_V_MINOR}.${PORT_V_PATCH}
|
|
CATEGORIES= www
|
|
MASTER_SITES= https://typo3.azureedge.net/typo3/${PORTVERSION}/
|
|
PKGNAMESUFFIX= -${PORT_V_MAJOR}
|
|
|
|
MAINTAINER= freebsd-ports@charlieroot.de
|
|
COMMENT= Typo3 content management system
|
|
|
|
LICENSE= GPLv2
|
|
LICENSE_FILE= ${WRKSRC}/LICENSE.txt
|
|
|
|
PORTSCOUT= limit:^${PORT_V_MAJOR}\.${PORT_V_MINOR}\.
|
|
|
|
USES= cpe shebangfix php:web
|
|
SHEBANG_GLOB= *.sh *.php
|
|
NO_BUILD= yes
|
|
NO_ARCH= yes
|
|
USE_PHP= ctype fileinfo filter hash json mysqli openssl pcre session simplexml soap xml zip
|
|
WRKSRC= ${WRKDIR}/${TYPO3SRC}
|
|
|
|
PORT_V_MAJOR= 7
|
|
PORT_V_MINOR= 6
|
|
PORT_V_PATCH= 29
|
|
|
|
TYPO3WWW= www
|
|
TYPO3SRC= ${PORTNAME}_src-${PORTVERSION}
|
|
TYPO3DIR= ${PORTNAME}-${PORT_V_MAJOR}
|
|
|
|
USERS= ${WWWOWN}
|
|
GROUPS= ${WWWGRP}
|
|
|
|
DISTFILES+= ${TYPO3SRC}${EXTRACT_SUFX}
|
|
|
|
OPTIONS_DEFINE= CURL GD GMP IMAGICK MBSTRING MYSQL ZLIB
|
|
GD_DESC= GDlib/freetype support
|
|
IMAGICK_DESC= ${IMAGEMAGICK_DESC}
|
|
MBSTRING_DESC= ${MULTIBYTE_DESC}
|
|
MYSQL_DESC= Install MySQL Server
|
|
|
|
CURL_USE= PHP=curl
|
|
GD_USE= PHP=gd
|
|
GMP_USE= PHP=gmp
|
|
MBSTRING_USE= PHP=mbstring
|
|
MYSQL_USE= MYSQL=server
|
|
ZLIB_USE= PHP=zlib
|
|
|
|
.include <bsd.port.options.mk>
|
|
|
|
.if ${PORT_OPTIONS:MIMAGICK}
|
|
.if ${PORT_OPTIONS:MX11}
|
|
RUN_DEPENDS+= convert:graphics/ImageMagick
|
|
.else
|
|
RUN_DEPENDS+= convert:graphics/ImageMagick-nox11
|
|
.endif
|
|
.endif
|
|
|
|
do-install:
|
|
${MKDIR} ${STAGEDIR}${PREFIX}/${TYPO3WWW}/${TYPO3DIR}
|
|
${CP} -R ${WRKDIR}/${TYPO3SRC} ${STAGEDIR}${PREFIX}/${TYPO3WWW}/
|
|
${LN} -fs ../${TYPO3SRC} ${STAGEDIR}${PREFIX}/${TYPO3WWW}/${TYPO3DIR}/typo3_src
|
|
${LN} -fs typo3_src/index.php ${STAGEDIR}${PREFIX}/${TYPO3WWW}/${TYPO3DIR}/index.php
|
|
${LN} -fs typo3_src/typo3 ${STAGEDIR}${PREFIX}/${TYPO3WWW}/${TYPO3DIR}/typo3
|
|
${CP} ${WRKDIR}/${TYPO3SRC}/_.htaccess ${STAGEDIR}${PREFIX}/${TYPO3WWW}/${TYPO3DIR}/.htaccess
|
|
|
|
post-install:
|
|
@cd ${STAGEDIR}${PREFIX}; \
|
|
${FIND} * \( -type f -or -type l \) -path "${TYPO3WWW}/${TYPO3DIR}/*" | \
|
|
${SORT} >> ${TMPPLIST}
|
|
@cd ${STAGEDIR}${PREFIX}; \
|
|
${FIND} * \( -type f -or -type l \) -path "${TYPO3WWW}/${TYPO3SRC}/*" | \
|
|
${SORT} >> ${TMPPLIST}
|
|
|
|
.include <bsd.port.mk>
|