| 1 | # Copyright 2004 Gentoo Foundation |
1 | # Copyright 2004-2005 Gentoo Foundation |
| 2 | # Distributed under the terms of the GNU General Public License, v2 or later |
2 | # Distributed under the terms of the GNU General Public License, v2 or later |
| 3 | # Author Michael Tindal <urilith@gentoo.org> |
|
|
| 4 | # $Header: /var/cvsroot/gentoo-x86/eclass/depend.apache.eclass,v 1.7 2005/01/13 04:36:58 vericgar Exp $ |
3 | # $Header: /var/cvsroot/gentoo-x86/eclass/depend.apache.eclass,v 1.16 2005/07/06 20:20:03 agriffis Exp $ |
| 5 | ECLASS=depend.apache |
|
|
| 6 | INHERITED="$INHERITED $ECLASS" |
4 | INHERITED="$INHERITED $ECLASS" |
| 7 | |
5 | |
| 8 | ###### |
6 | ###### |
| 9 | ## Apache Common Variables |
7 | ## Apache Common Variables |
| 10 | ## |
8 | ## |
| … | |
… | |
| 16 | #### |
14 | #### |
| 17 | ## APACHE_VERSION |
15 | ## APACHE_VERSION |
| 18 | ## |
16 | ## |
| 19 | ## Stores the version of apache we are going to be ebuilding. This variable is |
17 | ## Stores the version of apache we are going to be ebuilding. This variable is |
| 20 | ## set by the need_apache{|1|2} functions. |
18 | ## set by the need_apache{|1|2} functions. |
|
|
19 | ## |
|
|
20 | ## This needs to stay as '1' until apache2 is on by default -- although it |
|
|
21 | ## doesn't matter much as it's set by the need_apache functions. |
| 21 | #### |
22 | #### |
| 22 | APACHE_VERSION='1' |
23 | APACHE_VERSION='1' |
| 23 | |
24 | |
| 24 | #### |
25 | #### |
| 25 | ## APXS1, APXS2 |
26 | ## APXS1, APXS2 |
| … | |
… | |
| 80 | |
81 | |
| 81 | #### |
82 | #### |
| 82 | ## APACHE1_DEPEND, APACHE2_DEPEND |
83 | ## APACHE1_DEPEND, APACHE2_DEPEND |
| 83 | ## |
84 | ## |
| 84 | ## Dependencies for apache 1.x and apache 2.x |
85 | ## Dependencies for apache 1.x and apache 2.x |
|
|
86 | ## - apache2 must be at least version 2.0.52-r3, this is lowest version |
|
|
87 | ## containing our new overall changes -- trapni (Jan 21 2005) |
|
|
88 | ## - apache1 must be at least version 1.3.33-r1, but how to |
|
|
89 | ## define the DEPEND here? (FIXME) -- trapni (Jan 21 2005) |
|
|
90 | ## - currently not possible - bug #4315 -- vericgar (Jan 21 2005) |
| 85 | #### |
91 | #### |
| 86 | APACHE1_DEPEND="=net-www/apache-1*" |
92 | APACHE1_DEPEND="=net-www/apache-1*" |
| 87 | APACHE2_DEPEND="=net-www/apache-2*" |
93 | APACHE2_DEPEND=">=net-www/apache-2.0.54-r10" |
| 88 | |
94 | |
| 89 | |
95 | |
| 90 | #### |
96 | #### |
| 91 | ## APACHE_DEPEND |
97 | ## APACHE_DEPEND |
| 92 | ## |
98 | ## |
| … | |
… | |
| 106 | #### |
112 | #### |
| 107 | need_apache1() { |
113 | need_apache1() { |
| 108 | debug-print-function need_apache1 |
114 | debug-print-function need_apache1 |
| 109 | |
115 | |
| 110 | DEPEND="${DEPEND} ${APACHE1_DEPEND}" |
116 | DEPEND="${DEPEND} ${APACHE1_DEPEND}" |
|
|
117 | RDEPEND="${RDEPEND} ${APACHE1_DEPEND}" |
| 111 | APACHE_VERSION='1' |
118 | APACHE_VERSION='1' |
| 112 | } |
119 | } |
| 113 | |
120 | |
| 114 | #### |
121 | #### |
| 115 | ## need_apache2 |
122 | ## need_apache2 |
| … | |
… | |
| 122 | #### |
129 | #### |
| 123 | need_apache2() { |
130 | need_apache2() { |
| 124 | debug-print-function need_apache2 |
131 | debug-print-function need_apache2 |
| 125 | |
132 | |
| 126 | DEPEND="${DEPEND} ${APACHE2_DEPEND}" |
133 | DEPEND="${DEPEND} ${APACHE2_DEPEND}" |
|
|
134 | RDEPEND="${RDEPEND} ${APACHE2_DEPEND}" |
| 127 | APACHE_VERSION='2' |
135 | APACHE_VERSION='2' |
| 128 | } |
136 | } |
| 129 | |
137 | |
|
|
138 | #### |
|
|
139 | ## DO NOT CHANGE THIS FUNCTION UNLESS YOU UNDERSTAND THE CONSEQUENCES IT |
|
|
140 | ## WILL HAVE ON THE CACHE! There MUST be a apache2? () block in DEPEND for |
|
|
141 | ## things to work correct in the dependency calculation stage. |
|
|
142 | #### |
| 130 | need_apache() { |
143 | need_apache() { |
| 131 | debug-print-function need_apache |
144 | debug-print-function need_apache |
| 132 | |
145 | |
| 133 | IUSE="${IUSE} apache2" |
146 | IUSE="${IUSE} apache2" |
| 134 | DEPEND="${DEPEND} ${APACHE_DEPEND}" |
147 | DEPEND="${DEPEND} ${APACHE_DEPEND}" |
|
|
148 | RDEPEND="${RDEPEND} ${APACHE_DEPEND}" |
| 135 | if useq apache2; then |
149 | if useq apache2; then |
| 136 | APACHE_VERSION='2' |
150 | APACHE_VERSION='2' |
|
|
151 | USE_APACHE2=2 |
|
|
152 | APXS="$APXS2" |
|
|
153 | APACHECTL="${APACHECTL2}" |
|
|
154 | APACHE_BASEDIR="${APACHE2_BASEDIR}" |
|
|
155 | APACHE_CONFDIR="${APACHE2_CONFDIR}" |
|
|
156 | APACHE_MODULES_CONFDIR="${APACHE2_MODULES_CONFDIR}" |
|
|
157 | APACHE_VHOSTSDIR="${APACHE2_VHOSTSDIR}" |
|
|
158 | APACHE_MODULESDIR="${APACHE2_MODULESDIR}" |
| 137 | else |
159 | else |
| 138 | APACHE_VERSION='1' |
160 | APACHE_VERSION='1' |
|
|
161 | APXS="$APXS1" |
|
|
162 | USE_APACHE2= |
|
|
163 | APACHECTL="${APACHECTL1}" |
|
|
164 | APACHE_BASEDIR="${APACHE1_BASEDIR}" |
|
|
165 | APACHE_CONFDIR="${APACHE1_CONFDIR}" |
|
|
166 | APACHE_MODULES_CONFDIR="${APACHE1_MODULES_CONFDIR}" |
|
|
167 | APACHE_VHOSTSDIR="${APACHE1_VHOSTSDIR}" |
|
|
168 | APACHE_MODULESDIR="${APACHE1_MODULESDIR}" |
| 139 | fi |
169 | fi |
| 140 | } |
170 | } |