summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBenedikt Boehm <hollow@gentoo.org>2008-03-04 18:41:43 +0000
committerBenedikt Boehm <hollow@gentoo.org>2008-03-04 18:41:43 +0000
commit3732801435088f427bf2c24d246b4e1456da3093 (patch)
tree1a41bb4550e7ff537788b80326246f82b330c59a /eclass/webapp.eclass
parentversion bump with some fixes for translations, provided by Timo Gurr <tgurr A... (diff)
downloadhistorical-3732801435088f427bf2c24d246b4e1456da3093.tar.gz
historical-3732801435088f427bf2c24d246b4e1456da3093.tar.bz2
historical-3732801435088f427bf2c24d246b4e1456da3093.zip
make optional use webapp.eclass possible
Diffstat (limited to 'eclass/webapp.eclass')
-rw-r--r--eclass/webapp.eclass14
1 files changed, 10 insertions, 4 deletions
diff --git a/eclass/webapp.eclass b/eclass/webapp.eclass
index 0db635da3ff2..6cf98cbf45c7 100644
--- a/eclass/webapp.eclass
+++ b/eclass/webapp.eclass
@@ -1,6 +1,6 @@
# Copyright 1999-2006 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/eclass/webapp.eclass,v 1.59 2008/02/23 23:54:40 hollow Exp $
+# $Header: /var/cvsroot/gentoo-x86/eclass/webapp.eclass,v 1.60 2008/03/04 18:41:43 hollow Exp $
#
# @ECLASS: webapp.eclass
# @MAINTAINER:
@@ -17,9 +17,15 @@
# reason for this BEFORE calling webapp_pkg_postinst().
[[ "${WEBAPP_NO_AUTO_INSTALL}" == "yes" ]] || IUSE="vhosts"
-SLOT="${PVR}"
-DEPEND=">=app-admin/webapp-config-1.50.15"
-RDEPEND="${DEPEND}"
+# @ECLASS-VARIABLE: WEBAPP_OPTIONAL
+# @DESCRIPTION:
+# An ebuild sets this to `yes' to make webapp support optional, in which case
+# you also need to take care of USE-flags and dependencies.
+if [[ "${WEBAPP_OPTIONAL}" != "yes" ]]; then
+ SLOT="${PVR}"
+ DEPEND=">=app-admin/webapp-config-1.50.15"
+ RDEPEND="${DEPEND}"
+fi
EXPORT_FUNCTIONS pkg_postinst pkg_setup src_install pkg_prerm