From a54e16d0a7a6d9538e388b29b46b970f7e38b7eb Mon Sep 17 00:00:00 2001 From: ijliao Date: Mon, 1 Apr 2002 13:50:19 +0000 Subject: update php.ini to permit attachments PR: 35046 Submitted by: maintainer --- www/horde4-base/Makefile | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) (limited to 'www/horde4-base/Makefile') diff --git a/www/horde4-base/Makefile b/www/horde4-base/Makefile index c56982de084c..10aca4f46e2b 100644 --- a/www/horde4-base/Makefile +++ b/www/horde4-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} -- cgit