64ad10e5fe
- While I'm here, complete PLIST Changes: https://typo3.org/news/article/typo3-cms-4534-4719-6014-619-and-623-released/ PR: ports/190177 Submitted by: Helmut Ritter <freebsd-ports@charlieroot.de> (maintainer)
66 lines
1.8 KiB
Makefile
66 lines
1.8 KiB
Makefile
# Created by: Helmut Ritter <freebsd-ports@charlieroot.de>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= typo3
|
|
PORTVERSION= 6.2.3
|
|
CATEGORIES= www
|
|
MASTER_SITES= SF/${PORTNAME}/TYPO3%20Source%20and%20Dummy/TYPO3%20${PORTVERSION}
|
|
PKGNAMESUFFIX= -lts
|
|
|
|
MAINTAINER= freebsd-ports@charlieroot.de
|
|
COMMENT= The typo3 content management system
|
|
|
|
LICENSE= GPLv2
|
|
|
|
PORTSCOUT= limit:^6\.2\.
|
|
|
|
NO_BUILD= yes
|
|
USE_PHP= ctype fileinfo filter hash json mysqli openssl pcre session soap xml
|
|
WANT_PHP_WEB= yes
|
|
|
|
TYPO3WWW= www
|
|
TYPO3RELEASE= LTS
|
|
TYPO3SRC= ${PORTNAME}_src-${PORTVERSION}
|
|
|
|
USERS= ${WWWOWN}
|
|
GROUPS= ${WWWGRP}
|
|
|
|
PLIST_SUB+= PORTVERSION="${PORTVERSION}" \
|
|
WWWOWN=${WWWOWN} WWWGRP=${WWWGRP}
|
|
|
|
DISTFILES+= ${TYPO3SRC}${EXTRACT_SUFX}
|
|
|
|
OPTIONS_DEFINE= APC CURL GD GMP IMAGICK MBSTRING MYSQL ZLIB
|
|
APC_DESC= Alternative PHP Cache
|
|
GD_DESC= GDlib/freetype support
|
|
IMAGICK_DESC= ${IMAGEMAGICK_DESC}
|
|
MBSTRING_DESC= ${MULTIBYTE_DESC}
|
|
MYSQL_DESC= Install MySQL Server
|
|
|
|
APC_USE= PHP=apc
|
|
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:${PORTSDIR}/graphics/ImageMagick
|
|
.else
|
|
RUN_DEPENDS+= convert:${PORTSDIR}/graphics/ImageMagick-nox11
|
|
.endif
|
|
.endif
|
|
|
|
do-install:
|
|
${MKDIR} ${STAGEDIR}${PREFIX}/${TYPO3WWW}/${PORTNAME}-${TYPO3RELEASE}
|
|
${CP} -R ${WRKDIR}/${TYPO3SRC} ${STAGEDIR}${PREFIX}/${TYPO3WWW}/
|
|
${LN} -fs ../${TYPO3SRC} ${STAGEDIR}${PREFIX}/${TYPO3WWW}/${PORTNAME}-${TYPO3RELEASE}/typo3_src
|
|
${LN} -fs typo3_src/index.php ${STAGEDIR}${PREFIX}/${TYPO3WWW}/${PORTNAME}-${TYPO3RELEASE}/index.php
|
|
${LN} -fs typo3_src/typo3 ${STAGEDIR}${PREFIX}/${TYPO3WWW}/${PORTNAME}-${TYPO3RELEASE}/typo3
|
|
${CP} ${WRKDIR}/${TYPO3SRC}/_.htaccess ${STAGEDIR}${PREFIX}/${TYPO3WWW}/${PORTNAME}-${TYPO3RELEASE}/.htaccess
|
|
|
|
.include <bsd.port.mk>
|