| 1 | # Copyright 1999-2005 Gentoo Foundation |
1 | # Copyright 1999-2009 Gentoo Foundation |
| 2 | # Distributed under the terms of the GNU General Public License v2 |
2 | # Distributed under the terms of the GNU General Public License v2 |
| 3 | # $Header: /var/cvsroot/gentoo-x86/eclass/depend.apache.eclass,v 1.20 2005/09/04 10:54:53 stuart Exp $ |
3 | # $Header: /var/cvsroot/gentoo-x86/eclass/depend.apache.eclass,v 1.45 2009/05/26 16:41:56 arfrever 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 | # |
|
|
38 | # pkg_setup() { |
|
|
39 | # depend.apache_pkg_setup server |
|
|
40 | # } |
|
|
41 | # @CODE |
| 12 | |
42 | |
| 13 | #### |
43 | inherit multilib |
| 14 | ## APACHE_VERSION |
44 | |
| 15 | ## |
45 | # ============================================================================== |
|
|
46 | # INTERNAL VARIABLES |
|
|
47 | # ============================================================================== |
|
|
48 | |
|
|
49 | # @ECLASS-VARIABLE: APACHE_VERSION |
|
|
50 | # @DESCRIPTION: |
| 16 | ## Stores the version of apache we are going to be ebuilding. This variable is |
51 | # Stores the version of apache we are going to be ebuilding. |
| 17 | ## set by the need_apache{|1|2} functions. |
52 | # 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 | |
53 | |
| 24 | #### |
54 | # @ECLASS-VARIABLE: APXS |
| 25 | ## APXS1, APXS2 |
55 | # @DESCRIPTION: |
| 26 | ## |
|
|
| 27 | ## Paths to the apxs tools |
56 | # Path to the apxs tool. |
| 28 | #### |
57 | # This variable is set by the want/need_apache functions. |
| 29 | APXS1="/usr/sbin/apxs" |
|
|
| 30 | APXS2="/usr/sbin/apxs2" |
|
|
| 31 | |
58 | |
| 32 | #### |
59 | # @ECLASS-VARIABLE: APACHE_BIN |
| 33 | ## APACHECTL1, APACHECTL2 |
60 | # @DESCRIPTION: |
| 34 | ## |
61 | # Path to the apache binary. |
|
|
62 | # This variable is set by the want/need_apache functions. |
|
|
63 | |
|
|
64 | # @ECLASS-VARIABLE: APACHE_CTL |
|
|
65 | # @DESCRIPTION: |
| 35 | ## Paths to the apachectl tools |
66 | # Path to the apachectl tool. |
| 36 | #### |
67 | # This variable is set by the want/need_apache functions. |
| 37 | APACHECTL1="/usr/sbin/apachectl" |
|
|
| 38 | APACHECTL2="/usr/sbin/apache2ctl" |
|
|
| 39 | |
68 | |
| 40 | #### |
69 | # @ECLASS-VARIABLE: APACHE_BASEDIR |
| 41 | ## APACHE1_BASEDIR, APACHE2_BASEDIR |
70 | # @DESCRIPTION: |
| 42 | ## |
|
|
| 43 | ## Paths to the server root directories |
71 | # Path to the server root directory. |
| 44 | #### |
72 | # This variable is set by the want/need_apache functions. |
| 45 | APACHE1_BASEDIR="/usr/lib/apache" |
|
|
| 46 | APACHE2_BASEDIR="/usr/lib/apache2" |
|
|
| 47 | |
73 | |
| 48 | #### |
74 | # @ECLASS-VARIABLE: APACHE_CONFDIR |
| 49 | ## APACHE1_CONFDIR, APACHE2_CONFDIR |
75 | # @DESCRIPTION: |
| 50 | ## |
|
|
| 51 | ## Paths to the configuration file directories (usually under |
76 | # Path to the configuration file directory. |
| 52 | ## $APACHE?_BASEDIR/conf) |
77 | # This variable is set by the want/need_apache functions. |
| 53 | #### |
|
|
| 54 | APACHE1_CONFDIR="/etc/apache" |
|
|
| 55 | APACHE2_CONFDIR="/etc/apache2" |
|
|
| 56 | |
78 | |
| 57 | #### |
79 | # @ECLASS-VARIABLE: APACHE_MODULES_CONFDIR |
| 58 | ## APACHE1_MODULES_CONFDIR, APACHE2_MODULES_CONFDIR |
80 | # @DESCRIPTION: |
| 59 | ## |
|
|
| 60 | ## Paths where module configuration files are kept |
81 | # Path where module configuration files are kept. |
| 61 | #### |
82 | # 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 | |
83 | |
| 65 | #### |
84 | # @ECLASS-VARIABLE: APACHE_VHOSTS_CONFDIR |
| 66 | ## APACHE1_MODULES_VHOSTDIR, APACHE2_MODULES_VHOSTDIR |
85 | # @DESCRIPTION: |
| 67 | ## |
|
|
| 68 | ## Paths where virtual host configuration files are kept |
86 | # Path where virtual host configuration files are kept. |
| 69 | #### |
87 | # 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 | |
88 | |
| 73 | #### |
89 | # @ECLASS-VARIABLE: APACHE_MODULESDIR |
| 74 | ## APACHE1_MODULESDIR, APACHE2_MODULESDIR |
90 | # @DESCRIPTION: |
| 75 | ## |
|
|
| 76 | ## Paths where we install modules |
91 | # Path where we install modules. |
| 77 | #### |
92 | # This variable is set by the want/need_apache functions. |
|
|
93 | |
|
|
94 | # @ECLASS-VARIABLE: APACHE_DEPEND |
|
|
95 | # @DESCRIPTION: |
|
|
96 | # Dependencies for Apache |
|
|
97 | APACHE_DEPEND="www-servers/apache" |
|
|
98 | |
|
|
99 | # @ECLASS-VARIABLE: APACHE2_DEPEND |
|
|
100 | # @DESCRIPTION: |
|
|
101 | # Dependencies for Apache 2.x |
|
|
102 | APACHE2_DEPEND="=www-servers/apache-2*" |
|
|
103 | |
|
|
104 | # @ECLASS-VARIABLE: APACHE2_2_DEPEND |
|
|
105 | # @DESCRIPTION: |
|
|
106 | # Dependencies for Apache 2.2.x |
|
|
107 | APACHE2_2_DEPEND="=www-servers/apache-2.2*" |
|
|
108 | |
|
|
109 | # ============================================================================== |
|
|
110 | # INTERNAL FUNCTIONS |
|
|
111 | # ============================================================================== |
|
|
112 | |
|
|
113 | _init_apache2() { |
|
|
114 | debug-print-function $FUNCNAME $* |
|
|
115 | |
|
|
116 | # WARNING: Do not use these variables with anything that is put |
|
|
117 | # into the dependency cache (DEPEND/RDEPEND/etc) |
|
|
118 | APACHE_VERSION="2" |
|
|
119 | APXS="/usr/sbin/apxs2" |
|
|
120 | APACHE_BIN="/usr/sbin/apache2" |
|
|
121 | APACHE_CTL="/usr/sbin/apache2ctl" |
|
|
122 | APACHE_INCLUDEDIR="/usr/include/apache2" |
|
|
123 | APACHE_BASEDIR="/usr/$(get_libdir)/apache2" |
|
|
124 | APACHE_CONFDIR="/etc/apache2" |
|
|
125 | APACHE_MODULES_CONFDIR="${APACHE_CONFDIR}/modules.d" |
|
|
126 | APACHE_VHOSTS_CONFDIR="${APACHE_CONFDIR}/vhosts.d" |
| 78 | APACHE1_MODULESDIR="${APACHE1_BASEDIR}/modules" |
127 | APACHE_MODULESDIR="${APACHE_BASEDIR}/modules" |
| 79 | APACHE2_MODULESDIR="${APACHE2_BASEDIR}/modules" |
|
|
| 80 | |
|
|
| 81 | #### |
|
|
| 82 | ## APACHE1_DEPEND, APACHE2_DEPEND |
|
|
| 83 | ## |
|
|
| 84 | ## Dependencies for apache 1.x and apache 2.x |
|
|
| 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 | |
|
|
| 94 | #### |
|
|
| 95 | ## APACHE_DEPEND |
|
|
| 96 | ## |
|
|
| 97 | ## Dependency magic based on useflags to use the right DEPEND |
|
|
| 98 | #### |
|
|
| 99 | |
|
|
| 100 | NEED_APACHE_DEPEND="apache2? ( ${APACHE2_DEPEND} ) !apache2? ( ${APACHE1_DEPEND} )" |
|
|
| 101 | WANT_APACHE_DEPEND="apache2? ( ${APACHE2_DEPEND} ) !apache2? ( apache? ( ${APACHE1_DEPEND} ) )" |
|
|
| 102 | |
|
|
| 103 | #### |
|
|
| 104 | # uses_apache1() |
|
|
| 105 | # |
|
|
| 106 | # sets up all of the environment variables required by an apache1 module |
|
|
| 107 | #### |
|
|
| 108 | |
|
|
| 109 | uses_apache1() { |
|
|
| 110 | APACHE_VERSION='1' |
|
|
| 111 | APXS="$APXS1" |
|
|
| 112 | USE_APACHE2= |
|
|
| 113 | APACHECTL="${APACHECTL1}" |
|
|
| 114 | APACHE_BASEDIR="${APACHE1_BASEDIR}" |
|
|
| 115 | APACHE_CONFDIR="${APACHE1_CONFDIR}" |
|
|
| 116 | APACHE_MODULES_CONFDIR="${APACHE1_MODULES_CONFDIR}" |
|
|
| 117 | APACHE_VHOSTSDIR="${APACHE1_VHOSTSDIR}" |
|
|
| 118 | APACHE_MODULESDIR="${APACHE1_MODULESDIR}" |
|
|
| 119 | } |
128 | } |
| 120 | |
129 | |
| 121 | #### |
130 | _init_no_apache() { |
| 122 | # uses_apache2() |
131 | debug-print-function $FUNCNAME $* |
| 123 | # |
|
|
| 124 | # sets up all of the environment variables required by an apache2 module |
|
|
| 125 | #### |
|
|
| 126 | |
|
|
| 127 | uses_apache2() { |
|
|
| 128 | APACHE_VERSION='2' |
|
|
| 129 | USE_APACHE2=2 |
|
|
| 130 | APXS="$APXS2" |
|
|
| 131 | APACHECTL="${APACHECTL2}" |
|
|
| 132 | APACHE_BASEDIR="${APACHE2_BASEDIR}" |
|
|
| 133 | APACHE_CONFDIR="${APACHE2_CONFDIR}" |
|
|
| 134 | APACHE_MODULES_CONFDIR="${APACHE2_MODULES_CONFDIR}" |
|
|
| 135 | APACHE_VHOSTSDIR="${APACHE2_VHOSTSDIR}" |
|
|
| 136 | APACHE_MODULESDIR="${APACHE2_MODULESDIR}" |
|
|
| 137 | } |
|
|
| 138 | |
|
|
| 139 | doesnt_use_apache() { |
|
|
| 140 | APACHE_VERSION='0' |
132 | APACHE_VERSION="0" |
| 141 | USE_APACHE= |
|
|
| 142 | } |
133 | } |
| 143 | |
134 | |
| 144 | #### |
135 | # ============================================================================== |
| 145 | ## need_apache1 |
136 | # PUBLIC FUNCTIONS |
| 146 | ## |
137 | # ============================================================================== |
|
|
138 | |
|
|
139 | # @FUNCTION: depend.apache_pkg_setup |
|
|
140 | # @USAGE: [myiuse] |
|
|
141 | # @DESCRIPTION: |
|
|
142 | # An ebuild calls this in pkg_setup() to initialize variables for optional |
|
|
143 | # apache-2.x support. If the myiuse parameter is not given it defaults to |
|
|
144 | # apache2. |
|
|
145 | depend.apache_pkg_setup() { |
|
|
146 | debug-print-function $FUNCNAME $* |
|
|
147 | |
|
|
148 | if [[ "${EBUILD_PHASE}" != "setup" ]]; then |
|
|
149 | die "$FUNCNAME() should be called in pkg_setup()" |
|
|
150 | fi |
|
|
151 | |
|
|
152 | local myiuse=${1:-apache2} |
|
|
153 | if has ${myiuse} ${IUSE}; then |
|
|
154 | if use ${myiuse}; then |
|
|
155 | _init_apache2 |
|
|
156 | else |
|
|
157 | _init_no_apache |
|
|
158 | fi |
|
|
159 | fi |
|
|
160 | } |
|
|
161 | |
|
|
162 | # @FUNCTION: want_apache |
|
|
163 | # @USAGE: [myiuse] |
|
|
164 | # @DESCRIPTION: |
|
|
165 | # An ebuild calls this to get the dependency information for optional apache |
|
|
166 | # support. If the myiuse parameter is not given it defaults to apache2. |
|
|
167 | # An ebuild should additionally call depend.apache_pkg_setup() in pkg_setup() |
|
|
168 | # with the same myiuse parameter. |
|
|
169 | want_apache() { |
|
|
170 | debug-print-function $FUNCNAME $* |
|
|
171 | want_apache2 "$@" |
|
|
172 | } |
|
|
173 | |
|
|
174 | # @FUNCTION: want_apache2 |
|
|
175 | # @USAGE: [myiuse] |
|
|
176 | # @DESCRIPTION: |
|
|
177 | # An ebuild calls this to get the dependency information for optional apache-2.x |
|
|
178 | # support. If the myiuse parameter is not given it defaults to apache2. |
|
|
179 | # An ebuild should additionally call depend.apache_pkg_setup() in pkg_setup() |
|
|
180 | # with the same myiuse parameter. |
|
|
181 | want_apache2() { |
|
|
182 | debug-print-function $FUNCNAME $* |
|
|
183 | |
|
|
184 | local myiuse=${1:-apache2} |
|
|
185 | IUSE="${IUSE} ${myiuse}" |
|
|
186 | DEPEND="${DEPEND} ${myiuse}? ( ${APACHE2_DEPEND} )" |
|
|
187 | RDEPEND="${RDEPEND} ${myiuse}? ( ${APACHE2_DEPEND} )" |
|
|
188 | } |
|
|
189 | |
|
|
190 | # @FUNCTION: want_apache2_2 |
|
|
191 | # @USAGE: [myiuse] |
|
|
192 | # @DESCRIPTION: |
|
|
193 | # An ebuild calls this to get the dependency information for optional |
|
|
194 | # apache-2.2.x support. If the myiuse parameter is not given it defaults to |
|
|
195 | # apache2. |
|
|
196 | # An ebuild should additionally call depend.apache_pkg_setup() in pkg_setup() |
|
|
197 | # with the same myiuse parameter. |
|
|
198 | want_apache2_2() { |
|
|
199 | debug-print-function $FUNCNAME $* |
|
|
200 | |
|
|
201 | local myiuse=${1:-apache2} |
|
|
202 | IUSE="${IUSE} ${myiuse}" |
|
|
203 | DEPEND="${DEPEND} ${myiuse}? ( ${APACHE2_2_DEPEND} )" |
|
|
204 | RDEPEND="${RDEPEND} ${myiuse}? ( ${APACHE2_2_DEPEND} )" |
|
|
205 | } |
|
|
206 | |
|
|
207 | # @FUNCTION: need_apache |
|
|
208 | # @DESCRIPTION: |
| 147 | ## An ebuild calls this to get the dependency information |
209 | # An ebuild calls this to get the dependency information for apache. |
| 148 | ## for apache-1.x. An ebuild should use this in order for |
|
|
| 149 | ## future changes to the build infrastructure to happen |
|
|
| 150 | ## seamlessly. All an ebuild needs to do is include the |
|
|
| 151 | ## line need_apache1 somewhere. |
|
|
| 152 | #### |
|
|
| 153 | need_apache1() { |
210 | need_apache() { |
| 154 | debug-print-function need_apache1 |
211 | debug-print-function $FUNCNAME $* |
| 155 | |
|
|
| 156 | DEPEND="${DEPEND} ${APACHE1_DEPEND}" |
|
|
| 157 | RDEPEND="${RDEPEND} ${APACHE1_DEPEND}" |
|
|
| 158 | APACHE_VERSION='1' |
|
|
| 159 | } |
|
|
| 160 | |
|
|
| 161 | #### |
|
|
| 162 | ## need_apache2 |
212 | need_apache2 |
| 163 | ## |
213 | } |
|
|
214 | |
|
|
215 | # @FUNCTION: need_apache2 |
|
|
216 | # @DESCRIPTION: |
| 164 | ## An ebuild calls this to get the dependency information |
217 | # An ebuild calls this to get the dependency information for apache-2.x. |
| 165 | ## for apache-2.x. An ebuild should use this in order for |
|
|
| 166 | ## future changes to the build infrastructure to happen |
|
|
| 167 | ## seamlessly. All an ebuild needs to do is include the |
|
|
| 168 | ## line need_apache1 somewhere. |
|
|
| 169 | #### |
|
|
| 170 | need_apache2() { |
218 | need_apache2() { |
| 171 | debug-print-function need_apache2 |
219 | debug-print-function $FUNCNAME $* |
| 172 | |
220 | |
| 173 | DEPEND="${DEPEND} ${APACHE2_DEPEND}" |
221 | DEPEND="${DEPEND} ${APACHE2_DEPEND}" |
| 174 | RDEPEND="${RDEPEND} ${APACHE2_DEPEND}" |
222 | RDEPEND="${RDEPEND} ${APACHE2_DEPEND}" |
| 175 | APACHE_VERSION='2' |
223 | _init_apache2 |
| 176 | } |
224 | } |
| 177 | |
225 | |
| 178 | #### |
226 | # @FUNCTION: need_apache2_2 |
| 179 | ## DO NOT CHANGE THIS FUNCTION UNLESS YOU UNDERSTAND THE CONSEQUENCES IT |
227 | # @DESCRIPTION: |
| 180 | ## WILL HAVE ON THE CACHE! There MUST be a apache2? () block in DEPEND for |
228 | # An ebuild calls this to get the dependency information for apache-2.2.x. |
| 181 | ## things to work correct in the dependency calculation stage. |
|
|
| 182 | #### |
|
|
| 183 | need_apache() { |
229 | need_apache2_2() { |
| 184 | debug-print-function need_apache |
230 | debug-print-function $FUNCNAME $* |
| 185 | |
231 | |
| 186 | IUSE="${IUSE} apache2" |
|
|
| 187 | DEPEND="${DEPEND} ${NEED_APACHE_DEPEND}" |
232 | DEPEND="${DEPEND} ${APACHE2_2_DEPEND}" |
| 188 | RDEPEND="${RDEPEND} ${NEED_APACHE_DEPEND}" |
233 | RDEPEND="${RDEPEND} ${APACHE2_2_DEPEND}" |
| 189 | if useq apache2; then |
234 | _init_apache2 |
| 190 | uses_apache2 |
235 | } |
|
|
236 | |
|
|
237 | # @FUNCTION: has_apache |
|
|
238 | # @DESCRIPTION: |
|
|
239 | # An ebuild calls this to get runtime variables for an indirect apache |
|
|
240 | # dependency without USE-flag, in which case want_apache does not work. |
|
|
241 | # DO NOT call this function in global scope. |
|
|
242 | has_apache() { |
|
|
243 | debug-print-function $FUNCNAME $* |
|
|
244 | |
|
|
245 | if has_version '>=www-servers/apache-2'; then |
|
|
246 | _init_apache2 |
| 191 | else |
247 | else |
| 192 | uses_apache1 |
248 | _init_no_apache |
| 193 | fi |
249 | fi |
| 194 | } |
250 | } |
| 195 | |
251 | |
| 196 | want_apache() { |
252 | # @FUNCTION: has_apache_threads |
| 197 | debug-print-function want_apache |
253 | # @USAGE: [myflag] |
|
|
254 | # @DESCRIPTION: |
|
|
255 | # An ebuild calls this to make sure thread-safety is enabled if apache has been |
|
|
256 | # built with a threaded MPM. If the myflag parameter is not given it defaults to |
|
|
257 | # threads. |
|
|
258 | has_apache_threads() { |
|
|
259 | debug-print-function $FUNCNAME $* |
| 198 | |
260 | |
| 199 | IUSE="${IUSE} apache apache2" |
261 | if ! built_with_use www-servers/apache threads; then |
| 200 | DEPEND="${DEPEND} ${WANT_APACHE_DEPEND}" |
262 | return |
| 201 | RDEPEND="${DEPEND} ${WANT_APACHE_DEPEND}" |
|
|
| 202 | if useq apache2 ; then |
|
|
| 203 | uses_apache2 |
|
|
| 204 | elif useq apache ; then |
|
|
| 205 | uses_apache1 |
|
|
| 206 | else |
|
|
| 207 | doesnt_use_apache |
|
|
| 208 | fi |
263 | fi |
|
|
264 | |
|
|
265 | local myflag="${1:-threads}" |
|
|
266 | |
|
|
267 | if ! use ${myflag}; then |
|
|
268 | echo |
|
|
269 | eerror "You need to enable USE flag '${myflag}' to build a thread-safe version" |
|
|
270 | eerror "of ${CATEGORY}/${PN} for use with www-servers/apache" |
|
|
271 | die "Need missing USE flag '${myflag}'" |
|
|
272 | fi |
| 209 | } |
273 | } |
|
|
274 | |
|
|
275 | # @FUNCTION: has_apache_threads_in |
|
|
276 | # @USAGE: <myforeign> [myflag] |
|
|
277 | # @DESCRIPTION: |
|
|
278 | # An ebuild calls this to make sure thread-safety is enabled in a foreign |
|
|
279 | # package if apache has been built with a threaded MPM. If the myflag parameter |
|
|
280 | # is not given it defaults to threads. |
|
|
281 | has_apache_threads_in() { |
|
|
282 | debug-print-function $FUNCNAME $* |
|
|
283 | |
|
|
284 | if ! built_with_use www-servers/apache threads; then |
|
|
285 | return |
|
|
286 | fi |
|
|
287 | |
|
|
288 | local myforeign="$1" |
|
|
289 | local myflag="${2:-threads}" |
|
|
290 | |
|
|
291 | if ! built_with_use ${myforeign} ${myflag}; then |
|
|
292 | echo |
|
|
293 | eerror "You need to enable USE flag '${myflag}' in ${myforeign} to" |
|
|
294 | eerror "build a thread-safe version of ${CATEGORY}/${PN} for use" |
|
|
295 | eerror "with www-servers/apache" |
|
|
296 | die "Need missing USE flag '${myflag}' in ${myforeign}" |
|
|
297 | fi |
|
|
298 | } |
|
|
299 | |
|
|
300 | EXPORT_FUNCTIONS pkg_setup |