summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLuca Longinotti <chtekk@gentoo.org>2006-06-23 17:20:34 +0000
committerLuca Longinotti <chtekk@gentoo.org>2006-06-23 17:20:34 +0000
commit2d26d917657fa6777dfe4777473c79e3e224bdee (patch)
tree82db2d14230edb128de2d023e079db50be830816 /eclass/webapp-apache.eclass
parentNow build if x11-libs/libmatchbox was compiled w/o jpeg support, and then, do... (diff)
downloadgentoo-2-2d26d917657fa6777dfe4777473c79e3e224bdee.tar.gz
gentoo-2-2d26d917657fa6777dfe4777473c79e3e224bdee.tar.bz2
gentoo-2-2d26d917657fa6777dfe4777473c79e3e224bdee.zip
Remove webapp-check-php function: it's not used anywhere in the tree and outdated&broken, please use require_php_with[_any]_use of the depend.php
eclass.
Diffstat (limited to 'eclass/webapp-apache.eclass')
-rw-r--r--eclass/webapp-apache.eclass31
1 files changed, 1 insertions, 30 deletions
diff --git a/eclass/webapp-apache.eclass b/eclass/webapp-apache.eclass
index 031094cd6eee..5c606a120d24 100644
--- a/eclass/webapp-apache.eclass
+++ b/eclass/webapp-apache.eclass
@@ -1,6 +1,6 @@
# Copyright 1999-2004 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/eclass/webapp-apache.eclass,v 1.25 2005/07/11 15:08:06 swegener Exp $
+# $Header: /var/cvsroot/gentoo-x86/eclass/webapp-apache.eclass,v 1.26 2006/06/23 17:20:34 chtekk Exp $
#
# Author: Stuart Herbert <stuart@gentoo.org>
#
@@ -109,32 +109,3 @@ function webapp-pkg_setup ()
ewarn "Please file a bug on http://bugs.gentoo.org/, stating that this"
ewarn "ebuild needs converting to use the new approach."
}
-
-# shamelessly stolen from Max Kalika <max@gentoo.org>'s horde stuff ;-)
-#
-# call this from your ebuild's pkg_setup() function!!
-
-function webapp-check-php ()
-{
- local missing=""
- local php_use="$(</var/db/pkg/`best_version dev-php/mod_php`/USE)"
- local i
-
- for i in $* ; do
- if [ ! "`has ${i} ${php_use}`" ] ; then
- missing="${missing} ${i}"
- fi
- done
-
- # let's tell the user how to fix these problems
-
- if [ -n "${missing}" ]; then
- eerror "PHP is missing support for one or more options:"
- eerror " ${missing}"
- eerror
- eerror "Please add '${missing}' to your USE flags, and re-install mod_php"
- die "mod_php needs re-compiling with missing options"
- fi
-
- return 0
-}