| 1 | # Copyright 2004-2005 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 | # $Header: /var/cvsroot/gentoo-x86/eclass/depend.apache.eclass,v 1.18 2005/07/11 15:08:06 swegener Exp $ |
3 | # $Header: /var/cvsroot/gentoo-x86/eclass/depend.apache.eclass,v 1.44 2008/03/04 10:59:27 hollow Exp $ |
| 4 | |
4 | |
| 5 | ###### |
5 | # @ECLASS: depend.apache.eclass |
| 6 | ## Apache Common Variables |
6 | # @MAINTAINER: |
| 7 | ## |
7 | # apache-devs@gentoo.org |
| 8 | ## These are internal variables used by this, and other apache-related eclasses, |
8 | # @BLURB: Functions to allow ebuilds to depend on apache |
| 9 | ## and thus should not need to be used by the ebuilds themselves (the ebuilds |
9 | # @DESCRIPTION: |
| 10 | ## should know what version of Apache they are building against). |
10 | # This eclass handles depending on apache in a sane way and provides information |
| 11 | ###### |
11 | # about where certain binaries and configuration files are located. |
|
|
12 | # |
|
|
13 | # To make use of this eclass simply call one of the need/want_apache functions |
|
|
14 | # described below. Make sure you use the need/want_apache call after you have |
|
|
15 | # defined DEPEND and RDEPEND. Also note that you can not rely on the automatic |
|
|
16 | # RDEPEND=DEPEND that portage does if you use this eclass. |
|
|
17 | # |
|
|
18 | # See Bug 107127 for more information. |
|
|
19 | # |
|
|
20 | # @EXAMPLE: |
|
|
21 | # |
|
|
22 | # Here is an example of an ebuild depending on apache: |
|
|
23 | # |
|
|
24 | # @CODE |
|
|
25 | # DEPEND="virtual/Perl-CGI" |
|
|
26 | # RDEPEND="${DEPEND}" |
|
|
27 | # need_apache2 |
|
|
28 | # @CODE |
|
|
29 | # |
|
|
30 | # Another example which demonstrates non-standard IUSE options for optional |
|
|
31 | # apache support: |
|
|
32 | # |
|
|
33 | # @CODE |
|
|
34 | # DEPEND="server? ( virtual/Perl-CGI )" |
|
|
35 | # RDEPEND="${DEPEND}" |
|
|
36 | # want_apache2 server |
|
|
37 | # @CODE |
| 12 | |
38 | |
| 13 | #### |
39 | inherit multilib |
| 14 | ## APACHE_VERSION |
40 | |
| 15 | ## |
41 | # ============================================================================== |
|
|
42 | # INTERNAL VARIABLES |
|
|
43 | # ============================================================================== |
|
|
44 | |
|
|
45 | # @ECLASS-VARIABLE: APACHE_VERSION |
|
|
46 | # @DESCRIPTION: |
| 16 | ## Stores the version of apache we are going to be ebuilding. This variable is |
47 | # Stores the version of apache we are going to be ebuilding. |
| 17 | ## set by the need_apache{|1|2} functions. |
48 | # This variable is set by the want/need_apache functions. |
| 18 | ## |
|
|
| 19 | ## This needs to stay as '1' until apache2 is on by default -- although it |
|
|
| 20 | ## doesn't matter much as it's set by the need_apache functions. |
|
|
| 21 | #### |
|
|
| 22 | APACHE_VERSION='1' |
|
|
| 23 | |
49 | |
| 24 | #### |
50 | # @ECLASS-VARIABLE: APXS |
| 25 | ## APXS1, APXS2 |
51 | # @DESCRIPTION: |
| 26 | ## |
|
|
| 27 | ## Paths to the apxs tools |
52 | # Path to the apxs tool. |
| 28 | #### |
53 | # This variable is set by the want/need_apache functions. |
| 29 | APXS1="/usr/sbin/apxs" |
|
|
| 30 | APXS2="/usr/sbin/apxs2" |
|
|
| 31 | |
54 | |
| 32 | #### |
55 | # @ECLASS-VARIABLE: APACHE_BIN |
| 33 | ## APACHECTL1, APACHECTL2 |
56 | # @DESCRIPTION: |
| 34 | ## |
57 | # Path to the apache binary. |
|
|
58 | # This variable is set by the want/need_apache functions. |
|
|
59 | |
|
|
60 | # @ECLASS-VARIABLE: APACHE_CTL |
|
|
61 | # @DESCRIPTION: |
| 35 | ## Paths to the apachectl tools |
62 | # Path to the apachectl tool. |
| 36 | #### |
63 | # This variable is set by the want/need_apache functions. |
| 37 | APACHECTL1="/usr/sbin/apachectl" |
|
|
| 38 | APACHECTL2="/usr/sbin/apache2ctl" |
|
|
| 39 | |
64 | |
| 40 | #### |
65 | # @ECLASS-VARIABLE: APACHE_BASEDIR |
| 41 | ## APACHE1_BASEDIR, APACHE2_BASEDIR |
66 | # @DESCRIPTION: |
| 42 | ## |
|
|
| 43 | ## Paths to the server root directories |
67 | # Path to the server root directory. |
| 44 | #### |
68 | # This variable is set by the want/need_apache functions. |
| 45 | APACHE1_BASEDIR="/usr/lib/apache" |
|
|
| 46 | APACHE2_BASEDIR="/usr/lib/apache2" |
|
|
| 47 | |
69 | |
| 48 | #### |
70 | # @ECLASS-VARIABLE: APACHE_CONFDIR |
| 49 | ## APACHE1_CONFDIR, APACHE2_CONFDIR |
71 | # @DESCRIPTION: |
| 50 | ## |
|
|
| 51 | ## Paths to the configuration file directories (usually under |
72 | # Path to the configuration file directory. |
| 52 | ## $APACHE?_BASEDIR/conf) |
73 | # This variable is set by the want/need_apache functions. |
| 53 | #### |
|
|
| 54 | APACHE1_CONFDIR="/etc/apache" |
|
|
| 55 | APACHE2_CONFDIR="/etc/apache2" |
|
|
| 56 | |
74 | |
| 57 | #### |
75 | # @ECLASS-VARIABLE: APACHE_MODULES_CONFDIR |
| 58 | ## APACHE1_MODULES_CONFDIR, APACHE2_MODULES_CONFDIR |
76 | # @DESCRIPTION: |
| 59 | ## |
|
|
| 60 | ## Paths where module configuration files are kept |
77 | # Path where module configuration files are kept. |
| 61 | #### |
78 | # This variable is set by the want/need_apache functions. |
| 62 | APACHE1_MODULES_CONFDIR="${APACHE1_CONFDIR}/modules.d" |
|
|
| 63 | APACHE2_MODULES_CONFDIR="${APACHE2_CONFDIR}/modules.d" |
|
|
| 64 | |
79 | |
| 65 | #### |
80 | # @ECLASS-VARIABLE: APACHE_VHOSTS_CONFDIR |
| 66 | ## APACHE1_MODULES_VHOSTDIR, APACHE2_MODULES_VHOSTDIR |
81 | # @DESCRIPTION: |
| 67 | ## |
|
|
| 68 | ## Paths where virtual host configuration files are kept |
82 | # Path where virtual host configuration files are kept. |
| 69 | #### |
83 | # This variable is set by the want/need_apache functions. |
| 70 | APACHE1_VHOSTDIR="${APACHE1_CONFDIR}/vhosts.d" |
|
|
| 71 | APACHE2_VHOSTDIR="${APACHE2_CONFDIR}/vhosts.d" |
|
|
| 72 | |
84 | |
| 73 | #### |
85 | # @ECLASS-VARIABLE: APACHE_MODULESDIR |
| 74 | ## APACHE1_MODULESDIR, APACHE2_MODULESDIR |
86 | # @DESCRIPTION: |
| 75 | ## |
|
|
| 76 | ## Paths where we install modules |
87 | # Path where we install modules. |
| 77 | #### |
88 | # This variable is set by the want/need_apache functions. |
|
|
89 | |
|
|
90 | # @ECLASS-VARIABLE: APACHE_DEPEND |
|
|
91 | # @DESCRIPTION: |
|
|
92 | # Dependencies for Apache |
|
|
93 | APACHE_DEPEND="www-servers/apache" |
|
|
94 | |
|
|
95 | # @ECLASS-VARIABLE: APACHE2_DEPEND |
|
|
96 | # @DESCRIPTION: |
|
|
97 | # Dependencies for Apache 2.x |
|
|
98 | APACHE2_DEPEND="=www-servers/apache-2*" |
|
|
99 | |
|
|
100 | # @ECLASS-VARIABLE: APACHE2_2_DEPEND |
|
|
101 | # @DESCRIPTION: |
|
|
102 | # Dependencies for Apache 2.2.x |
|
|
103 | APACHE2_2_DEPEND="=www-servers/apache-2.2*" |
|
|
104 | |
|
|
105 | # ============================================================================== |
|
|
106 | # INTERNAL FUNCTIONS |
|
|
107 | # ============================================================================== |
|
|
108 | |
|
|
109 | _init_apache2() { |
|
|
110 | debug-print-function $FUNCNAME $* |
|
|
111 | |
|
|
112 | # WARNING: Do not use these variables with anything that is put |
|
|
113 | # into the dependency cache (DEPEND/RDEPEND/etc) |
|
|
114 | APACHE_VERSION="2" |
|
|
115 | APXS="/usr/sbin/apxs2" |
|
|
116 | APACHE_BIN="/usr/sbin/apache2" |
|
|
117 | APACHE_CTL="/usr/sbin/apache2ctl" |
|
|
118 | APACHE_INCLUDEDIR="/usr/include/apache2" |
|
|
119 | APACHE_BASEDIR="/usr/$(get_libdir)/apache2" |
|
|
120 | APACHE_CONFDIR="/etc/apache2" |
|
|
121 | APACHE_MODULES_CONFDIR="${APACHE_CONFDIR}/modules.d" |
|
|
122 | APACHE_VHOSTS_CONFDIR="${APACHE_CONFDIR}/vhosts.d" |
| 78 | APACHE1_MODULESDIR="${APACHE1_BASEDIR}/modules" |
123 | APACHE_MODULESDIR="${APACHE_BASEDIR}/modules" |
| 79 | APACHE2_MODULESDIR="${APACHE2_BASEDIR}/modules" |
124 | } |
| 80 | |
125 | |
| 81 | #### |
126 | _init_no_apache() { |
| 82 | ## APACHE1_DEPEND, APACHE2_DEPEND |
127 | debug-print-function $FUNCNAME $* |
| 83 | ## |
128 | APACHE_VERSION="0" |
| 84 | ## Dependencies for apache 1.x and apache 2.x |
129 | } |
| 85 | ## - apache2 must be at least version 2.0.52-r3, this is lowest version |
|
|
| 86 | ## containing our new overall changes -- trapni (Jan 21 2005) |
|
|
| 87 | ## - apache1 must be at least version 1.3.33-r1, but how to |
|
|
| 88 | ## define the DEPEND here? (FIXME) -- trapni (Jan 21 2005) |
|
|
| 89 | ## - currently not possible - bug #4315 -- vericgar (Jan 21 2005) |
|
|
| 90 | #### |
|
|
| 91 | APACHE1_DEPEND="=net-www/apache-1*" |
|
|
| 92 | APACHE2_DEPEND=">=net-www/apache-2.0.54-r10" |
|
|
| 93 | |
130 | |
|
|
131 | # ============================================================================== |
|
|
132 | # PUBLIC FUNCTIONS |
|
|
133 | # ============================================================================== |
| 94 | |
134 | |
| 95 | #### |
135 | # @FUNCTION: want_apache |
| 96 | ## APACHE_DEPEND |
136 | # @USAGE: [myiuse] |
| 97 | ## |
137 | # @DESCRIPTION: |
| 98 | ## Dependency magic based on useflags to use the right DEPEND |
138 | # An ebuild calls this to get the dependency information for optional apache |
| 99 | #### |
139 | # support. If the myiuse parameter is not given it defaults to apache2. |
|
|
140 | want_apache() { |
|
|
141 | debug-print-function $FUNCNAME $* |
|
|
142 | want_apache2 "$@" |
|
|
143 | } |
| 100 | |
144 | |
| 101 | APACHE_DEPEND="apache2? ( ${APACHE2_DEPEND} ) !apache2? ( ${APACHE1_DEPEND} )" |
145 | # @FUNCTION: want_apache2 |
|
|
146 | # @USAGE: [myiuse] |
|
|
147 | # @DESCRIPTION: |
|
|
148 | # An ebuild calls this to get the dependency information for optional apache-2.x |
|
|
149 | # support. If the myiuse parameter is not given it defaults to apache2. |
|
|
150 | want_apache2() { |
|
|
151 | debug-print-function $FUNCNAME $* |
| 102 | |
152 | |
| 103 | #### |
153 | local myiuse=${1:-apache2} |
| 104 | ## need_apache1 |
154 | IUSE="${IUSE} ${myiuse}" |
| 105 | ## |
155 | DEPEND="${DEPEND} ${myiuse}? ( ${APACHE2_DEPEND} )" |
|
|
156 | RDEPEND="${RDEPEND} ${myiuse}? ( ${APACHE2_DEPEND} )" |
|
|
157 | |
|
|
158 | if use ${myiuse}; then |
|
|
159 | _init_apache2 |
|
|
160 | else |
|
|
161 | _init_no_apache |
|
|
162 | fi |
|
|
163 | } |
|
|
164 | |
|
|
165 | # @FUNCTION: want_apache2_2 |
|
|
166 | # @USAGE: [myiuse] |
|
|
167 | # @DESCRIPTION: |
|
|
168 | # An ebuild calls this to get the dependency information for optional |
|
|
169 | # apache-2.2.x support. If the myiuse parameter is not given it defaults to |
|
|
170 | # apache2. |
|
|
171 | want_apache2_2() { |
|
|
172 | debug-print-function $FUNCNAME $* |
|
|
173 | |
|
|
174 | local myiuse=${1:-apache2} |
|
|
175 | IUSE="${IUSE} ${myiuse}" |
|
|
176 | DEPEND="${DEPEND} ${myiuse}? ( ${APACHE2_2_DEPEND} )" |
|
|
177 | RDEPEND="${RDEPEND} ${myiuse}? ( ${APACHE2_2_DEPEND} )" |
|
|
178 | |
|
|
179 | if use ${myiuse}; then |
|
|
180 | _init_apache2 |
|
|
181 | else |
|
|
182 | _init_no_apache |
|
|
183 | fi |
|
|
184 | } |
|
|
185 | |
|
|
186 | # @FUNCTION: need_apache |
|
|
187 | # @DESCRIPTION: |
| 106 | ## An ebuild calls this to get the dependency information |
188 | # An ebuild calls this to get the dependency information for apache. |
| 107 | ## for apache-1.x. An ebuild should use this in order for |
|
|
| 108 | ## future changes to the build infrastructure to happen |
|
|
| 109 | ## seamlessly. All an ebuild needs to do is include the |
|
|
| 110 | ## line need_apache1 somewhere. |
|
|
| 111 | #### |
|
|
| 112 | need_apache1() { |
189 | need_apache() { |
| 113 | debug-print-function need_apache1 |
190 | debug-print-function $FUNCNAME $* |
| 114 | |
|
|
| 115 | DEPEND="${DEPEND} ${APACHE1_DEPEND}" |
|
|
| 116 | RDEPEND="${RDEPEND} ${APACHE1_DEPEND}" |
|
|
| 117 | APACHE_VERSION='1' |
|
|
| 118 | } |
|
|
| 119 | |
|
|
| 120 | #### |
|
|
| 121 | ## need_apache2 |
191 | need_apache2 |
| 122 | ## |
192 | } |
|
|
193 | |
|
|
194 | # @FUNCTION: need_apache2 |
|
|
195 | # @DESCRIPTION: |
| 123 | ## An ebuild calls this to get the dependency information |
196 | # An ebuild calls this to get the dependency information for apache-2.x. |
| 124 | ## for apache-2.x. An ebuild should use this in order for |
|
|
| 125 | ## future changes to the build infrastructure to happen |
|
|
| 126 | ## seamlessly. All an ebuild needs to do is include the |
|
|
| 127 | ## line need_apache1 somewhere. |
|
|
| 128 | #### |
|
|
| 129 | need_apache2() { |
197 | need_apache2() { |
| 130 | debug-print-function need_apache2 |
198 | debug-print-function $FUNCNAME $* |
| 131 | |
199 | |
| 132 | DEPEND="${DEPEND} ${APACHE2_DEPEND}" |
200 | DEPEND="${DEPEND} ${APACHE2_DEPEND}" |
| 133 | RDEPEND="${RDEPEND} ${APACHE2_DEPEND}" |
201 | RDEPEND="${RDEPEND} ${APACHE2_DEPEND}" |
| 134 | APACHE_VERSION='2' |
202 | _init_apache2 |
| 135 | } |
203 | } |
| 136 | |
204 | |
| 137 | #### |
205 | # @FUNCTION: need_apache2_2 |
| 138 | ## DO NOT CHANGE THIS FUNCTION UNLESS YOU UNDERSTAND THE CONSEQUENCES IT |
206 | # @DESCRIPTION: |
| 139 | ## WILL HAVE ON THE CACHE! There MUST be a apache2? () block in DEPEND for |
207 | # An ebuild calls this to get the dependency information for apache-2.2.x. |
| 140 | ## things to work correct in the dependency calculation stage. |
|
|
| 141 | #### |
|
|
| 142 | need_apache() { |
208 | need_apache2_2() { |
| 143 | debug-print-function need_apache |
209 | debug-print-function $FUNCNAME $* |
| 144 | |
210 | |
| 145 | IUSE="${IUSE} apache2" |
|
|
| 146 | DEPEND="${DEPEND} ${APACHE_DEPEND}" |
211 | DEPEND="${DEPEND} ${APACHE2_2_DEPEND}" |
| 147 | RDEPEND="${RDEPEND} ${APACHE_DEPEND}" |
212 | RDEPEND="${RDEPEND} ${APACHE2_2_DEPEND}" |
| 148 | if useq apache2; then |
213 | _init_apache2 |
| 149 | APACHE_VERSION='2' |
214 | } |
| 150 | USE_APACHE2=2 |
215 | |
| 151 | APXS="$APXS2" |
216 | # @FUNCTION: has_apache |
| 152 | APACHECTL="${APACHECTL2}" |
217 | # @DESCRIPTION: |
| 153 | APACHE_BASEDIR="${APACHE2_BASEDIR}" |
218 | # An ebuild calls this to get runtime variables for an indirect apache |
| 154 | APACHE_CONFDIR="${APACHE2_CONFDIR}" |
219 | # dependency without USE-flag, in which case want_apache does not work. |
| 155 | APACHE_MODULES_CONFDIR="${APACHE2_MODULES_CONFDIR}" |
220 | # DO NOT call this function in global scope. |
| 156 | APACHE_VHOSTSDIR="${APACHE2_VHOSTSDIR}" |
221 | has_apache() { |
| 157 | APACHE_MODULESDIR="${APACHE2_MODULESDIR}" |
222 | debug-print-function $FUNCNAME $* |
|
|
223 | |
|
|
224 | if has_version '>=www-servers/apache-2'; then |
|
|
225 | _init_apache2 |
| 158 | else |
226 | else |
| 159 | APACHE_VERSION='1' |
227 | _init_no_apache |
| 160 | APXS="$APXS1" |
|
|
| 161 | USE_APACHE2= |
|
|
| 162 | APACHECTL="${APACHECTL1}" |
|
|
| 163 | APACHE_BASEDIR="${APACHE1_BASEDIR}" |
|
|
| 164 | APACHE_CONFDIR="${APACHE1_CONFDIR}" |
|
|
| 165 | APACHE_MODULES_CONFDIR="${APACHE1_MODULES_CONFDIR}" |
|
|
| 166 | APACHE_VHOSTSDIR="${APACHE1_VHOSTSDIR}" |
|
|
| 167 | APACHE_MODULESDIR="${APACHE1_MODULESDIR}" |
|
|
| 168 | fi |
228 | fi |
| 169 | } |
229 | } |
|
|
230 | |
|
|
231 | # @FUNCTION: has_apache_threads |
|
|
232 | # @USAGE: [myflag] |
|
|
233 | # @DESCRIPTION: |
|
|
234 | # An ebuild calls this to make sure thread-safety is enabled if apache has been |
|
|
235 | # built with a threaded MPM. If the myflag parameter is not given it defaults to |
|
|
236 | # threads. |
|
|
237 | has_apache_threads() { |
|
|
238 | debug-print-function $FUNCNAME $* |
|
|
239 | |
|
|
240 | if ! built_with_use www-servers/apache threads; then |
|
|
241 | return |
|
|
242 | fi |
|
|
243 | |
|
|
244 | local myflag="${1:-threads}" |
|
|
245 | |
|
|
246 | if ! use ${myflag}; then |
|
|
247 | echo |
|
|
248 | eerror "You need to enable USE flag '${myflag}' to build a thread-safe version" |
|
|
249 | eerror "of ${CATEGORY}/${PN} for use with www-servers/apache" |
|
|
250 | die "Need missing USE flag '${myflag}'" |
|
|
251 | fi |
|
|
252 | } |
|
|
253 | |
|
|
254 | # @FUNCTION: has_apache_threads_in |
|
|
255 | # @USAGE: <myforeign> [myflag] |
|
|
256 | # @DESCRIPTION: |
|
|
257 | # An ebuild calls this to make sure thread-safety is enabled in a foreign |
|
|
258 | # package if apache has been built with a threaded MPM. If the myflag parameter |
|
|
259 | # is not given it defaults to threads. |
|
|
260 | has_apache_threads_in() { |
|
|
261 | debug-print-function $FUNCNAME $* |
|
|
262 | |
|
|
263 | if ! built_with_use www-servers/apache threads; then |
|
|
264 | return |
|
|
265 | fi |
|
|
266 | |
|
|
267 | local myforeign="$1" |
|
|
268 | local myflag="${2:-threads}" |
|
|
269 | |
|
|
270 | if ! built_with_use ${myforeign} ${myflag}; then |
|
|
271 | echo |
|
|
272 | eerror "You need to enable USE flag '${myflag}' in ${myforeign} to" |
|
|
273 | eerror "build a thread-safe version of ${CATEGORY}/${PN} for use" |
|
|
274 | eerror "with www-servers/apache" |
|
|
275 | die "Need missing USE flag '${myflag}' in ${myforeign}" |
|
|
276 | fi |
|
|
277 | } |