diff options
author | Stuart Herbert <stuart@gentoo.org> | 2004-05-18 23:04:45 +0000 |
---|---|---|
committer | Stuart Herbert <stuart@gentoo.org> | 2004-05-18 23:04:45 +0000 |
commit | 214cb41cd8ca48165e0e5617598adcf619068c89 (patch) | |
tree | 21e3ad139a0f881a01d1772fe52fd228353c5004 /eclass | |
parent | Looks at the right tarball now (diff) | |
download | historical-214cb41cd8ca48165e0e5617598adcf619068c89.tar.gz historical-214cb41cd8ca48165e0e5617598adcf619068c89.tar.bz2 historical-214cb41cd8ca48165e0e5617598adcf619068c89.zip |
Improved support for hardened-php patch
Diffstat (limited to 'eclass')
-rw-r--r-- | eclass/php-sapi.eclass | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/eclass/php-sapi.eclass b/eclass/php-sapi.eclass index 57b86b14ff09..7d3aa18e6545 100644 --- a/eclass/php-sapi.eclass +++ b/eclass/php-sapi.eclass @@ -1,6 +1,6 @@ # Copyright 1999-2003 Gentoo Technologies, Inc. # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/eclass/php-sapi.eclass,v 1.24 2004/05/17 23:30:11 stuart Exp $ +# $Header: /var/cvsroot/gentoo-x86/eclass/php-sapi.eclass,v 1.25 2004/05/18 23:04:45 stuart Exp $ # Author: Robin H. Johnson <robbat2@gentoo.org> inherit eutils flag-o-matic @@ -46,7 +46,7 @@ IUSE="${IUSE} X crypt curl firebird flash freetds gd gd-external gdbm imap infor # Hardened-PHP support HARDENEDPHP_PATCH="hardened-php-4.3.6-0.1.1.patch.gz" -use hardenedphp && SRC_URI="$SRC_URI http://www.hardened-php.net/$HARDENEDPHP_PATCH" +[ `use hardenedphp` ] && SRC_URI="${SRC_URI} http://www.hardened-php.net/$HARDENEDPHP_PATCH" # berkdb stuff is complicated # we need db-1.* for ndbm @@ -253,7 +253,7 @@ php-sapi_src_unpack() { # bug 47498 [ "${PV//4.3.6}" != "${PV}" ] && EPATCH_OPTS="-d ${S} -p1" epatch ${DISTDIR}/php-4.3.6-pcrealloc.patch - use hardenedphp && epatch ${DISTDIR}/${HARDENEDPHP_PATCH} + [ `use hardenedphp` ] && epatch ${DISTDIR}/${HARDENEDPHP_PATCH} } |