diff options
author | ijliao <ijliao@FreeBSD.org> | 2002-04-01 13:50:19 +0000 |
---|---|---|
committer | ijliao <ijliao@FreeBSD.org> | 2002-04-01 13:50:19 +0000 |
commit | a54e16d0a7a6d9538e388b29b46b970f7e38b7eb (patch) | |
tree | 6573ad73572434d5ebb506eaf4cb48e933da8f7a /www/horde-base | |
parent | aa8827572b2b41424aa5ca8f613f186c24a2ea5d (diff) | |
download | FreeBSD-ports-a54e16d0a7a6d9538e388b29b46b970f7e38b7eb.zip FreeBSD-ports-a54e16d0a7a6d9538e388b29b46b970f7e38b7eb.tar.gz |
update php.ini to permit attachments
PR: 35046
Submitted by: maintainer
Diffstat (limited to 'www/horde-base')
-rw-r--r-- | www/horde-base/Makefile | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/www/horde-base/Makefile b/www/horde-base/Makefile index c56982d..10aca4f 100644 --- a/www/horde-base/Makefile +++ b/www/horde-base/Makefile @@ -46,9 +46,16 @@ PHPLIBDIR= ${PREFIX}/${LPHPLIBDIR} HORDESBIN= ${PREFIX}/${LHORDESBIN} APACHE_CNFDIR?= ${LOCALBASE}/etc/apache +PHP_DIR?= ${LOCALBASE}/etc APACHE_CONF= ${APACHE_CNFDIR}/httpd.conf MIMETYPES= ${APACHE_CNFDIR}/mime.types +.if defined(WITH_PHP3) +PHP_INI= ${PHP_DIR}/php3.ini +.else +PHP_INI= ${PHP_DIR}/php.ini +.endif + pre-everything:: .if !defined(WITHOUT_SSL) @${ECHO_MSG} "" @@ -124,6 +131,15 @@ do-install: ${GREP} -qw 'phplib' ${APACHE_CONF} || ${CAT} ${WRKDIR}/httpd.conf.phplib >> ${APACHE_CONF} ; \ fi) ; \ fi) + @if [ ! -f ${PHP_INI} ]; then \ + ${ECHO_MSG} "===> Creating ${PHP_INI} for PHP" ; \ + ${CP} ${PHP_INI}-dist ${PHP_INI} ; \ + fi + @if ! ${GREP} -q -e '^upload_tmp_dir' ${PHP_INI} ; then \ + ${ECHO_MSG} "===> Configuring ${PHP_INI} for imp" ; \ + ${CP} -p ${PHP_INI} ${PHP_INI}.beforeHorde1 ; \ + ${PERL} -pi -e 's!;upload_tmp_dir =!upload_tmp_dir = /tmp!' ${PHP_INI} ; \ + fi ${CHOWN} -R www:www ${HORDEDIR} .if !defined(NOPORTDOCS) ${MKDIR} ${DOCSDIR} |