diff options
author | Michael Stewart <vericgar@gentoo.org> | 2005-02-12 21:29:08 +0000 |
---|---|---|
committer | Michael Stewart <vericgar@gentoo.org> | 2005-02-12 21:29:08 +0000 |
commit | 3cc72fafc8956672d2bfb725cce7d068f795911f (patch) | |
tree | 750aa2b9c3eb8c6159611127db1fd53f8867d75a /eclass/depend.apache.eclass | |
parent | Bug #73708 fix. (diff) | |
download | historical-3cc72fafc8956672d2bfb725cce7d068f795911f.tar.gz historical-3cc72fafc8956672d2bfb725cce7d068f795911f.tar.bz2 historical-3cc72fafc8956672d2bfb725cce7d068f795911f.zip |
Adding apache dependencies to RDEPEND as well. See bug #81738
Diffstat (limited to 'eclass/depend.apache.eclass')
-rw-r--r-- | eclass/depend.apache.eclass | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/eclass/depend.apache.eclass b/eclass/depend.apache.eclass index 74e03e595323..bc02dc6109dc 100644 --- a/eclass/depend.apache.eclass +++ b/eclass/depend.apache.eclass @@ -1,6 +1,6 @@ # Copyright 2004-2005 Gentoo Foundation # Distributed under the terms of the GNU General Public License, v2 or later -# $Header: /var/cvsroot/gentoo-x86/eclass/depend.apache.eclass,v 1.9 2005/01/21 07:52:12 vericgar Exp $ +# $Header: /var/cvsroot/gentoo-x86/eclass/depend.apache.eclass,v 1.10 2005/02/12 21:29:08 vericgar Exp $ ECLASS=depend.apache INHERITED="$INHERITED $ECLASS" @@ -115,6 +115,7 @@ need_apache1() { debug-print-function need_apache1 DEPEND="${DEPEND} ${APACHE1_DEPEND}" + RDEPEND="${RDEPEND} ${APACHE1_DEPEND}" APACHE_VERSION='1' } @@ -131,6 +132,7 @@ need_apache2() { debug-print-function need_apache2 DEPEND="${DEPEND} ${APACHE2_DEPEND}" + RDEPEND="${RDEPEND} ${APACHE2_DEPEND}" APACHE_VERSION='2' } @@ -145,6 +147,7 @@ need_apache() { IUSE="${IUSE} apache2" DEPEND="${DEPEND} ${APACHE_DEPEND}" + RDEPEND="${RDEPEND} ${APACHE_DEPEND}" if useq apache2; then APACHE_VERSION='2' else |