| 1 | # Copyright 2004 Gentoo Foundation |
1 | # Copyright 1999-2007 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 |
| 3 | # Author Michael Tindal <urilith@gentoo.org> |
|
|
| 4 | # $Header: /var/cvsroot/gentoo-x86/eclass/depend.apache.eclass,v 1.6 2004/11/21 01:51:58 urilith Exp $ |
3 | # $Header: /var/cvsroot/gentoo-x86/eclass/depend.apache.eclass,v 1.34 2007/09/08 14:06:12 hollow Exp $ |
| 5 | ECLASS=depend.apache |
4 | |
| 6 | INHERITED="$INHERITED $ECLASS" |
5 | inherit multilib |
|
|
6 | |
|
|
7 | # This eclass handles depending on apache in a sane way and providing |
|
|
8 | # information about where certain interfaces are located. |
|
|
9 | |
|
|
10 | # NOTE: If you use this, be sure you use the need_* call after you have |
|
|
11 | # defined DEPEND and RDEPEND. Also note that you can not rely on the |
|
|
12 | # automatic RDEPEND=DEPEND that portage does if you use this eclass. |
|
|
13 | # See bug 107127 for more information. |
| 7 | |
14 | |
| 8 | ###### |
15 | ###### |
| 9 | ## Apache Common Variables |
16 | ## Apache Common Variables |
| 10 | ## |
17 | ## |
| 11 | ## These are internal variables used by this, and other apache-related eclasses, |
18 | ## These are internal variables used by this, and other apache-related eclasses, |
| … | |
… | |
| 14 | ###### |
21 | ###### |
| 15 | |
22 | |
| 16 | #### |
23 | #### |
| 17 | ## APACHE_VERSION |
24 | ## APACHE_VERSION |
| 18 | ## |
25 | ## |
| 19 | ## Stores the version of apache we are going to be ebuilding. This variable is |
26 | ## Stores the version of apache we are going to be ebuilding. This variable is |
| 20 | ## set by the need_apache{|1|2} functions. |
27 | ## set by the need_apache{|1|2} functions. |
|
|
28 | ## |
| 21 | #### |
29 | #### |
| 22 | APACHE_VERSION='2' |
30 | #APACHE_VERSION="2" |
| 23 | |
31 | |
| 24 | #### |
32 | #### |
| 25 | ## APXS1, APXS2 |
33 | ## APXS1, APXS2 |
| 26 | ## |
34 | ## |
| 27 | ## Paths to the apxs tools |
35 | ## Paths to the apxs tools |
| … | |
… | |
| 40 | #### |
48 | #### |
| 41 | ## APACHE1_BASEDIR, APACHE2_BASEDIR |
49 | ## APACHE1_BASEDIR, APACHE2_BASEDIR |
| 42 | ## |
50 | ## |
| 43 | ## Paths to the server root directories |
51 | ## Paths to the server root directories |
| 44 | #### |
52 | #### |
| 45 | APACHE1_BASEDIR="/usr/lib/apache" |
53 | APACHE1_BASEDIR="/usr/$(get_libdir)/apache" |
| 46 | APACHE2_BASEDIR="/usr/lib/apache2" |
54 | APACHE2_BASEDIR="/usr/$(get_libdir)/apache2" |
| 47 | |
55 | |
| 48 | #### |
56 | #### |
| 49 | ## APACHE1_CONFDIR, APACHE2_CONFDIR |
57 | ## APACHE1_CONFDIR, APACHE2_CONFDIR |
| 50 | ## |
58 | ## |
| 51 | ## Paths to the configuration file directories (usually under |
59 | ## Paths to the configuration file directories |
| 52 | ## $APACHE?_BASEDIR/conf) |
|
|
| 53 | #### |
60 | #### |
| 54 | APACHE1_CONFDIR="/etc/apache" |
61 | APACHE1_CONFDIR="/etc/apache" |
| 55 | APACHE2_CONFDIR="/etc/apache2" |
62 | APACHE2_CONFDIR="/etc/apache2" |
| 56 | |
63 | |
| 57 | #### |
64 | #### |
| … | |
… | |
| 61 | #### |
68 | #### |
| 62 | APACHE1_MODULES_CONFDIR="${APACHE1_CONFDIR}/modules.d" |
69 | APACHE1_MODULES_CONFDIR="${APACHE1_CONFDIR}/modules.d" |
| 63 | APACHE2_MODULES_CONFDIR="${APACHE2_CONFDIR}/modules.d" |
70 | APACHE2_MODULES_CONFDIR="${APACHE2_CONFDIR}/modules.d" |
| 64 | |
71 | |
| 65 | #### |
72 | #### |
| 66 | ## APACHE1_MODULES_VHOSTDIR, APACHE2_MODULES_VHOSTDIR |
73 | ## APACHE1_VHOSTDIR, APACHE2_VHOSTDIR |
| 67 | ## |
74 | ## |
| 68 | ## Paths where virtual host configuration files are kept |
75 | ## Paths where virtual host configuration files are kept |
| 69 | #### |
76 | #### |
| 70 | APACHE1_VHOSTDIR="${APACHE1_CONFDIR}/vhosts.d" |
77 | APACHE1_VHOSTDIR="${APACHE1_CONFDIR}/vhosts.d" |
| 71 | APACHE2_VHOSTDIR="${APACHE2_CONFDIR}/vhosts.d" |
78 | APACHE2_VHOSTDIR="${APACHE2_CONFDIR}/vhosts.d" |
| … | |
… | |
| 78 | APACHE1_MODULESDIR="${APACHE1_BASEDIR}/modules" |
85 | APACHE1_MODULESDIR="${APACHE1_BASEDIR}/modules" |
| 79 | APACHE2_MODULESDIR="${APACHE2_BASEDIR}/modules" |
86 | APACHE2_MODULESDIR="${APACHE2_BASEDIR}/modules" |
| 80 | |
87 | |
| 81 | #### |
88 | #### |
| 82 | ## APACHE1_DEPEND, APACHE2_DEPEND |
89 | ## APACHE1_DEPEND, APACHE2_DEPEND |
|
|
90 | ## APACHE2_0_DEPEND, APACHE2_2_DEPEND |
| 83 | ## |
91 | ## |
| 84 | ## Dependencies for apache 1.x and apache 2.x |
92 | ## Dependencies for Apache 1.x and Apache 2.x |
| 85 | #### |
93 | #### |
| 86 | APACHE1_DEPEND="=net-www/apache-1*" |
94 | APACHE1_DEPEND="=www-servers/apache-1*" |
| 87 | APACHE2_DEPEND="=net-www/apache-2*" |
95 | APACHE2_DEPEND="=www-servers/apache-2*" |
|
|
96 | APACHE2_0_DEPEND="=www-servers/apache-2.0*" |
|
|
97 | APACHE2_2_DEPEND="=www-servers/apache-2.2*" |
| 88 | |
98 | |
| 89 | #### |
99 | #### |
|
|
100 | ## NEED_APACHE_DEPEND |
|
|
101 | ## |
|
|
102 | ## Dependency magic based on useflags to use the right DEPEND |
|
|
103 | ## If you change this, please check the DEPENDS in need_apache() |
|
|
104 | #### |
|
|
105 | |
|
|
106 | NEED_APACHE_DEPEND="${APACHE2_DEPEND}" |
|
|
107 | WANT_APACHE_DEPEND="apache2? ( ${APACHE2_DEPEND} )" |
|
|
108 | |
|
|
109 | #### |
|
|
110 | ## apr_config/apu_config |
|
|
111 | ## |
|
|
112 | ## Version magic to get the correct apr-config/apu-config |
|
|
113 | ## based on the (probably) installed version of apache. |
|
|
114 | ## This is needed to get modules to link to the same apr/apu |
|
|
115 | ## as apache (i.e. link 0.9 for 2.0, 1.x for 2.2) |
|
|
116 | #### |
|
|
117 | apr_config() { |
|
|
118 | local default="${1:-1}" |
|
|
119 | if [[ "${USE_APACHE}" == "2" ]]; then |
|
|
120 | if has_version ${APACHE2_0_DEPEND}; then |
|
|
121 | echo apr-config |
|
|
122 | else |
|
|
123 | echo apr-1-config |
|
|
124 | fi |
|
|
125 | else |
|
|
126 | if [[ "${default}" == "0" ]]; then |
|
|
127 | echo apr-config |
|
|
128 | elif [[ "${default}" == "1" ]]; then |
|
|
129 | echo apr-1-config |
|
|
130 | else |
|
|
131 | die "Unknown version specifier: ${default}" |
|
|
132 | fi |
|
|
133 | fi |
|
|
134 | } |
|
|
135 | |
|
|
136 | apu_config() { |
|
|
137 | local default="${1:-1}" |
|
|
138 | if [[ "${USE_APACHE}" == "2" ]]; then |
|
|
139 | if has_version ${APACHE2_0_DEPEND}; then |
|
|
140 | echo apu-config |
|
|
141 | else |
|
|
142 | echo apu-1-config |
|
|
143 | fi |
|
|
144 | else |
|
|
145 | if [[ "${default}" == "0" ]]; then |
|
|
146 | echo apu-config |
|
|
147 | elif [[ "${default}" == "1" ]]; then |
|
|
148 | echo apu-1-config |
|
|
149 | else |
|
|
150 | die "Unknown version specifier: ${default}" |
|
|
151 | fi |
|
|
152 | fi |
|
|
153 | } |
|
|
154 | |
|
|
155 | #### |
|
|
156 | # uses_apache1() - !!! DEPRECATED !!! |
|
|
157 | #### |
|
|
158 | |
|
|
159 | uses_apache1() { |
|
|
160 | debug-print-function $FUNCNAME $* |
|
|
161 | # WARNING: Do not use these variables with anything that is put |
|
|
162 | # into the dependency cache (DEPEND/RDEPEND/etc) |
|
|
163 | APACHE_VERSION="1" |
|
|
164 | APXS="${APXS1}" |
|
|
165 | USE_APACHE="1" |
|
|
166 | APACHECTL="${APACHECTL1}" |
|
|
167 | APACHE_BASEDIR="${APACHE1_BASEDIR}" |
|
|
168 | APACHE_CONFDIR="${APACHE1_CONFDIR}" |
|
|
169 | APACHE_MODULES_CONFDIR="${APACHE1_MODULES_CONFDIR}" |
|
|
170 | APACHE_VHOSTSDIR="${APACHE1_VHOSTSDIR}" |
|
|
171 | APACHE_MODULESDIR="${APACHE1_MODULESDIR}" |
|
|
172 | } |
|
|
173 | |
|
|
174 | #### |
|
|
175 | # uses_apache2() |
|
|
176 | # |
|
|
177 | # sets up all of the environment variables required by an apache2 module |
|
|
178 | #### |
|
|
179 | |
|
|
180 | uses_apache2() { |
|
|
181 | debug-print-function $FUNCNAME $* |
|
|
182 | # WARNING: Do not use these variables with anything that is put |
|
|
183 | # into the dependency cache (DEPEND/RDEPEND/etc) |
|
|
184 | APACHE_VERSION="2" |
|
|
185 | USE_APACHE="2" |
|
|
186 | APXS="${APXS2}" |
|
|
187 | APACHECTL="${APACHECTL2}" |
|
|
188 | APACHE_BASEDIR="${APACHE2_BASEDIR}" |
|
|
189 | APACHE_CONFDIR="${APACHE2_CONFDIR}" |
|
|
190 | APACHE_MODULES_CONFDIR="${APACHE2_MODULES_CONFDIR}" |
|
|
191 | APACHE_VHOSTSDIR="${APACHE2_VHOSTSDIR}" |
|
|
192 | APACHE_MODULESDIR="${APACHE2_MODULESDIR}" |
|
|
193 | } |
|
|
194 | |
|
|
195 | doesnt_use_apache() { |
|
|
196 | debug-print-function $FUNCNAME $* |
|
|
197 | APACHE_VERSION="0" |
|
|
198 | USE_APACHE="0" |
|
|
199 | } |
|
|
200 | |
|
|
201 | #### |
|
|
202 | ## need_apache1 - !!! DEPRECATED !!! |
|
|
203 | #### |
|
|
204 | need_apache1() { |
|
|
205 | debug-print-function $FUNCNAME $* |
|
|
206 | |
|
|
207 | DEPEND="${DEPEND} ${APACHE1_DEPEND}" |
|
|
208 | RDEPEND="${RDEPEND} ${APACHE1_DEPEND}" |
|
|
209 | APACHE_VERSION="1" |
|
|
210 | } |
|
|
211 | |
|
|
212 | #### |
| 90 | ## need_apache1 |
213 | ## need_apache2 |
| 91 | ## |
214 | ## |
| 92 | ## An ebuild calls this to get the dependency information |
215 | ## An ebuild calls this to get the dependency information |
| 93 | ## for apache-1.x. An ebuild should use this in order for |
216 | ## for apache-2.x. An ebuild should use this in order for |
| 94 | ## future changes to the build infrastructure to happen |
217 | ## future changes to the build infrastructure to happen |
| 95 | ## seamlessly. All an ebuild needs to do is include the |
218 | ## seamlessly. All an ebuild needs to do is include the |
| 96 | ## line need_apache1 somewhere. |
219 | ## line need_apache2 somewhere. |
| 97 | #### |
|
|
| 98 | need_apache1() { |
|
|
| 99 | debug-print-function need_apache1 |
|
|
| 100 | |
|
|
| 101 | DEPEND="${DEPEND} ${APACHE1_DEPEND}" |
|
|
| 102 | APACHE_VERSION='1' |
|
|
| 103 | } |
|
|
| 104 | |
|
|
| 105 | #### |
|
|
| 106 | ## need_apache2 |
|
|
| 107 | ## |
|
|
| 108 | ## An ebuild calls this to get the dependency information |
|
|
| 109 | ## for apache-2.x. An ebuild should use this in order for |
|
|
| 110 | ## future changes to the build infrastructure to happen |
|
|
| 111 | ## seamlessly. All an ebuild needs to do is include the |
|
|
| 112 | ## line need_apache1 somewhere. |
|
|
| 113 | #### |
220 | #### |
| 114 | need_apache2() { |
221 | need_apache2() { |
| 115 | debug-print-function need_apache2 |
222 | debug-print-function $FUNCNAME $* |
| 116 | |
223 | |
| 117 | DEPEND="${DEPEND} ${APACHE2_DEPEND}" |
224 | DEPEND="${DEPEND} ${APACHE2_DEPEND}" |
|
|
225 | RDEPEND="${RDEPEND} ${APACHE2_DEPEND}" |
| 118 | APACHE_VERSION='2' |
226 | APACHE_VERSION="2" |
| 119 | } |
227 | } |
| 120 | |
228 | |
|
|
229 | #### |
|
|
230 | ## need_apache2_0 |
|
|
231 | ## |
|
|
232 | ## Works like need_apache2 above, but its used by modules |
|
|
233 | ## that only support apache 2.0 and do not work with |
|
|
234 | ## higher versions. |
|
|
235 | ## |
|
|
236 | #### |
|
|
237 | need_apache2_0() { |
|
|
238 | debug-print-function $FUNCNAME $* |
|
|
239 | |
|
|
240 | DEPEND="${DEPEND} ${APACHE2_0_DEPEND}" |
|
|
241 | RDEPEND="${RDEPEND} ${APACHE2_0_DEPEND}" |
|
|
242 | APACHE_VERSION="2" |
|
|
243 | } |
|
|
244 | |
|
|
245 | #### |
|
|
246 | ## need_apache2_2 |
|
|
247 | ## |
|
|
248 | ## Works like need_apache2 above, but its used by modules |
|
|
249 | ## that only support apache 2.2 and do not work with |
|
|
250 | ## lower versions. |
|
|
251 | ## |
|
|
252 | #### |
|
|
253 | need_apache2_2() { |
|
|
254 | debug-print-function $FUNCNAME $* |
|
|
255 | |
|
|
256 | DEPEND="${DEPEND} ${APACHE2_2_DEPEND}" |
|
|
257 | RDEPEND="${RDEPEND} ${APACHE2_2_DEPEND}" |
|
|
258 | APACHE_VERSION="2" |
|
|
259 | } |
|
|
260 | |
|
|
261 | #### |
|
|
262 | ## DO NOT CHANGE THIS FUNCTION UNLESS YOU UNDERSTAND THE CONSEQUENCES IT |
|
|
263 | ## WILL HAVE ON THE CACHE! |
|
|
264 | ## |
|
|
265 | ## This function can take a variable amount of arguments specifying the |
|
|
266 | ## versions of apache the ebuild supports |
|
|
267 | ## |
|
|
268 | ## If no arguments are specified, then all versions are assumed to be supported |
|
|
269 | ## |
|
|
270 | ## Currently supported versions: 2.0 2.2 2.x |
|
|
271 | #### |
| 121 | need_apache() { |
272 | need_apache() { |
| 122 | debug-print-function need_apache |
273 | debug-print-function $FUNCNAME $* |
|
|
274 | |
|
|
275 | local supports2x supports20 supports22 |
|
|
276 | |
|
|
277 | if [[ $# -eq 0 ]] ; then |
|
|
278 | supports2x="yes" |
|
|
279 | else |
|
|
280 | while [[ $# -gt 0 ]] ; do |
|
|
281 | case "$1" in |
|
|
282 | 2.0) supports20="yes"; shift;; |
|
|
283 | 2.2) supports22="yes"; shift;; |
|
|
284 | 2.x) supports2x="yes"; shift;; |
|
|
285 | *) die "Unknown version specifier: $1";; |
|
|
286 | esac |
|
|
287 | done |
|
|
288 | fi |
|
|
289 | |
|
|
290 | if [[ "${supports20}" == "yes" ]] && [[ "${supports22}" == "yes" ]] ; then |
|
|
291 | supports2x="yes" |
|
|
292 | fi |
|
|
293 | |
|
|
294 | debug-print "supports20: ${supports20}" |
|
|
295 | debug-print "supports22: ${supports22}" |
|
|
296 | debug-print "supports2x: ${supports2x}" |
|
|
297 | |
|
|
298 | if [[ "${supports2x}" == "yes" ]] ; then |
|
|
299 | need_apache2 |
|
|
300 | elif [[ "${supports20}" == "yes" ]] ; then |
|
|
301 | need_apache2_0 |
|
|
302 | elif [[ "${supports22}" == "yes" ]] ; then |
|
|
303 | need_apache2_2 |
|
|
304 | fi |
|
|
305 | |
|
|
306 | uses_apache2 |
|
|
307 | } |
|
|
308 | |
|
|
309 | want_apache() { |
|
|
310 | debug-print-function $FUNCNAME $* |
| 123 | |
311 | |
| 124 | IUSE="${IUSE} apache2" |
312 | IUSE="${IUSE} apache2" |
|
|
313 | DEPEND="${DEPEND} ${WANT_APACHE_DEPEND}" |
|
|
314 | RDEPEND="${RDEPEND} ${WANT_APACHE_DEPEND}" |
| 125 | if useq apache2; then |
315 | if use apache2 ; then |
| 126 | need_apache2 |
316 | uses_apache2 |
| 127 | else |
317 | else |
| 128 | need_apache1 |
318 | doesnt_use_apache |
| 129 | fi |
319 | fi |
| 130 | } |
320 | } |
| 131 | |
|
|