1 | # Copyright 1999-2005 Gentoo Foundation |
1 | # Copyright 1999-2005 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.php.eclass,v 1.10 2006/01/21 09:15:08 sebastian Exp $ |
3 | # $Header: /var/cvsroot/gentoo-x86/eclass/depend.php.eclass,v 1.14 2006/05/05 21:42:16 chtekk Exp $ |
4 | # |
4 | # |
5 | # ======================================================================== |
5 | # ======================================================================== |
6 | # |
6 | # |
7 | # depend.php.eclass |
7 | # depend.php.eclass |
8 | # functions to allow ebuilds to depend on php4 and/or php5 |
8 | # functions to allow ebuilds to depend on php4 and/or php5 |
… | |
… | |
15 | # |
15 | # |
16 | # Maintained by the PHP Herd <php-bugs@gentoo.org> |
16 | # Maintained by the PHP Herd <php-bugs@gentoo.org> |
17 | # |
17 | # |
18 | # ======================================================================== |
18 | # ======================================================================== |
19 | |
19 | |
20 | inherit eutils |
20 | inherit eutils phpconfutils |
21 | |
21 | |
22 | # PHP4-only depend functions |
22 | # PHP4-only depend functions |
23 | need_php4_cli() |
23 | need_php4_cli() { |
24 | { |
|
|
25 | DEPEND="${DEPEND} =virtual/php-4*" |
24 | DEPEND="${DEPEND} =virtual/php-4*" |
26 | RDEPEND="${RDEPEND} =virtual/php-4*" |
25 | RDEPEND="${RDEPEND} =virtual/php-4*" |
27 | PHP_VERSION=4 |
26 | PHP_VERSION="4" |
28 | } |
27 | } |
29 | |
28 | |
30 | need_php4_httpd() |
29 | need_php4_httpd() { |
31 | { |
|
|
32 | DEPEND="${DEPEND} =virtual/httpd-php-4*" |
30 | DEPEND="${DEPEND} =virtual/httpd-php-4*" |
33 | RDEPEND="${RDEPEND} =virtual/httpd-php-4*" |
31 | RDEPEND="${RDEPEND} =virtual/httpd-php-4*" |
34 | PHP_VERSION=4 |
32 | PHP_VERSION="4" |
35 | } |
33 | } |
36 | |
34 | |
37 | need_php4() |
35 | need_php4() { |
38 | { |
|
|
39 | DEPEND="${DEPEND} =dev-lang/php-4*" |
36 | DEPEND="${DEPEND} =dev-lang/php-4*" |
40 | RDEPEND="${RDEPEND} =dev-lang/php-4*" |
37 | RDEPEND="${RDEPEND} =dev-lang/php-4*" |
41 | PHP_VERSION=4 |
38 | PHP_VERSION="4" |
42 | PHP_SHARED_CAT="php4" |
39 | PHP_SHARED_CAT="php4" |
43 | } |
40 | } |
44 | |
41 | |
45 | # common settings go in here |
42 | # common settings go in here |
46 | uses_php4() |
43 | uses_php4() { |
47 | { |
|
|
48 | # cache this |
44 | # cache this |
49 | libdir=$(get_libdir) |
45 | libdir=$(get_libdir) |
50 | |
46 | |
51 | PHPIZE="/usr/${libdir}/php4/bin/phpize" |
47 | PHPIZE="/usr/${libdir}/php4/bin/phpize" |
52 | PHPCONFIG="/usr/${libdir}/php4/bin/php-config" |
48 | PHPCONFIG="/usr/${libdir}/php4/bin/php-config" |
… | |
… | |
59 | einfo "Using ${PHP_PKG}" |
55 | einfo "Using ${PHP_PKG}" |
60 | einfo |
56 | einfo |
61 | } |
57 | } |
62 | |
58 | |
63 | # PHP5-only depend functions |
59 | # PHP5-only depend functions |
64 | need_php5_cli() |
60 | need_php5_cli() { |
65 | { |
|
|
66 | DEPEND="${DEPEND} =virtual/php-5*" |
61 | DEPEND="${DEPEND} =virtual/php-5*" |
67 | RDEPEND="${RDEPEND} =virtual/php-5*" |
62 | RDEPEND="${RDEPEND} =virtual/php-5*" |
68 | PHP_VERSION=5 |
63 | PHP_VERSION="5" |
69 | } |
64 | } |
70 | |
65 | |
71 | need_php5_httpd() |
66 | need_php5_httpd() { |
72 | { |
|
|
73 | DEPEND="${DEPEND} =virtual/httpd-php-5*" |
67 | DEPEND="${DEPEND} =virtual/httpd-php-5*" |
74 | RDEPEND="${RDEPEND} =virtual/httpd-php-5*" |
68 | RDEPEND="${RDEPEND} =virtual/httpd-php-5*" |
75 | PHP_VERSION=5 |
69 | PHP_VERSION="5" |
76 | } |
70 | } |
77 | |
71 | |
78 | need_php5() |
72 | need_php5() { |
79 | { |
|
|
80 | DEPEND="${DEPEND} =dev-lang/php-5*" |
73 | DEPEND="${DEPEND} =dev-lang/php-5*" |
81 | RDEPEND="${RDEPEND} =dev-lang/php-5*" |
74 | RDEPEND="${RDEPEND} =dev-lang/php-5*" |
82 | PHP_VERSION=5 |
75 | PHP_VERSION="5" |
83 | PHP_SHARED_CAT="php5" |
76 | PHP_SHARED_CAT="php5" |
84 | } |
77 | } |
85 | |
78 | |
86 | # common settings go in here |
79 | # common settings go in here |
87 | uses_php5() |
80 | uses_php5() { |
88 | { |
|
|
89 | # cache this |
81 | # cache this |
90 | libdir=$(get_libdir) |
82 | libdir=$(get_libdir) |
91 | |
83 | |
92 | PHPIZE="/usr/${libdir}/php5/bin/phpize" |
84 | PHPIZE="/usr/${libdir}/php5/bin/phpize" |
93 | PHPCONFIG="/usr/${libdir}/php5/bin/php-config" |
85 | PHPCONFIG="/usr/${libdir}/php5/bin/php-config" |
… | |
… | |
100 | einfo "Using ${PHP_PKG}" |
92 | einfo "Using ${PHP_PKG}" |
101 | einfo |
93 | einfo |
102 | } |
94 | } |
103 | |
95 | |
104 | # general PHP depend functions |
96 | # general PHP depend functions |
105 | need_php_cli() |
97 | need_php_cli() { |
106 | { |
|
|
107 | DEPEND="${DEPEND} virtual/php" |
98 | DEPEND="${DEPEND} virtual/php" |
108 | RDEPEND="${RDEPEND} virtual/php" |
99 | RDEPEND="${RDEPEND} virtual/php" |
109 | } |
100 | } |
110 | |
101 | |
111 | need_php_httpd() |
102 | need_php_httpd() { |
112 | { |
|
|
113 | DEPEND="${DEPEND} virtual/httpd-php" |
103 | DEPEND="${DEPEND} virtual/httpd-php" |
114 | RDEPEND="${RDEPEND} virtual/httpd-php" |
104 | RDEPEND="${RDEPEND} virtual/httpd-php" |
115 | } |
105 | } |
116 | |
106 | |
117 | need_php() |
107 | need_php() { |
118 | { |
|
|
119 | DEPEND="${DEPEND} dev-lang/php" |
108 | DEPEND="${DEPEND} dev-lang/php" |
120 | RDEPEND="${RDEPEND} dev-lang/php" |
109 | RDEPEND="${RDEPEND} dev-lang/php" |
121 | PHP_SHARED_CAT="php" |
110 | PHP_SHARED_CAT="php" |
122 | } |
111 | } |
123 | |
112 | |
124 | need_php_by_category() |
113 | need_php_by_category() { |
125 | { |
|
|
126 | case "${CATEGORY}" in |
114 | case "${CATEGORY}" in |
127 | dev-php) need_php ;; |
115 | dev-php) need_php ;; |
128 | dev-php4) need_php4 ;; |
116 | dev-php4) need_php4 ;; |
129 | dev-php5) need_php5 ;; |
117 | dev-php5) need_php5 ;; |
130 | *) die "I don't know which version of PHP packages in ${CATEGORY} require" |
118 | *) die "I don't know which version of PHP packages in ${CATEGORY} require" |
131 | esac |
119 | esac |
132 | } |
120 | } |
133 | |
121 | |
|
|
122 | # Call this function from your pkg_setup, src_compile and src_install methods |
|
|
123 | # if you need to know where the PHP binaries are installed and their data |
|
|
124 | |
|
|
125 | has_php() { |
|
|
126 | # If PHP_PKG is already set, then we have remembered our PHP settings |
|
|
127 | # from last time |
|
|
128 | if [[ -n ${PHP_PKG} ]] ; then |
|
|
129 | return |
|
|
130 | fi |
|
|
131 | |
|
|
132 | if [[ -z ${PHP_VERSION} ]] ; then |
|
|
133 | # Detect which PHP version we have installed |
|
|
134 | if has_version '=dev-lang/php-5*' ; then |
|
|
135 | PHP_VERSION="5" |
|
|
136 | elif has_version '=dev-lang/php-4*' ; then |
|
|
137 | PHP_VERSION="4" |
|
|
138 | else |
|
|
139 | die "Unable to find an installed dev-lang/php package" |
|
|
140 | fi |
|
|
141 | fi |
|
|
142 | |
|
|
143 | # If we get here, then PHP_VERSION tells us which version of PHP we |
|
|
144 | # want to use |
|
|
145 | uses_php${PHP_VERSION} |
|
|
146 | } |
|
|
147 | |
134 | # call this function from pkg_setup if your PHP extension only works with |
148 | # Call this function from pkg_setup if your package only works with |
135 | # specific SAPIs |
149 | # specific SAPIs |
136 | # |
150 | # |
137 | # this function will disappear when USE-based deps are supported by |
|
|
138 | # Portage |
|
|
139 | # |
|
|
140 | # $1 ... a list of SAPI USE flags (eg cli, cgi, apache2) |
151 | # $1 ... a list of PHP SAPI USE flags (cli, cgi, apache, apache2) |
141 | # |
152 | # |
142 | # returns if any one of the listed SAPIs has been installed |
153 | # Returns if any one of the listed SAPIs have been installed |
143 | # dies if none of the listed SAPIs has been installed |
154 | # Dies if none of the listed SAPIs have been installed |
144 | |
155 | |
145 | require_php_sapi_from() |
156 | require_php_sapi_from() { |
146 | { |
|
|
147 | has_php |
157 | has_php |
148 | |
158 | |
149 | local has_sapi=0 |
159 | local has_sapi="0" |
150 | local x |
160 | local x |
151 | |
161 | |
152 | einfo "Checking for compatible SAPI(s)" |
162 | einfo "Checking for compatible SAPI(s)" |
153 | |
163 | |
154 | for x in $@ ; do |
164 | for x in $@ ; do |
155 | if built_with_use =${PHP_PKG} ${x} ; then |
165 | if built_with_use =${PHP_PKG} ${x} || phpconfutils_built_with_use =${PHP_PKG} ${x} ; then |
156 | einfo " Discovered compatible SAPI ${x}" |
166 | einfo " Discovered compatible SAPI ${x}" |
157 | has_sapi=1 |
167 | has_sapi="1" |
158 | fi |
168 | fi |
159 | done |
169 | done |
160 | |
170 | |
161 | if [[ ${has_sapi} == 1 ]]; then |
171 | if [[ "${has_sapi}" == "1" ]] ; then |
162 | return |
172 | return |
163 | fi |
173 | fi |
164 | |
174 | |
165 | eerror |
175 | eerror |
166 | eerror "${PHP_PKG} needs to be re-installed with one of the following" |
176 | eerror "${PHP_PKG} needs to be re-installed with one of the following" |
167 | eerror "USE flags enabled:" |
177 | eerror "USE flags enabled:" |
168 | eerror |
178 | eerror |
169 | eerror " $@" |
179 | eerror " $@" |
170 | eerror |
180 | eerror |
171 | die "Re-install ${PHP_PKG}" |
181 | die "No compatible PHP SAPIs found" |
172 | } |
182 | } |
173 | |
183 | |
174 | # call this function from pkg_setup if your package requires PHP compiled |
184 | # Call this function from pkg_setup if your package requires PHP compiled |
175 | # with specific USE flags |
185 | # with specific USE flags |
176 | # |
186 | # |
177 | # this function will disappear when USE-based deps are supported by |
|
|
178 | # Portage |
|
|
179 | # |
|
|
180 | # $1 ... a list of USE flags |
187 | # $1 ... a list of USE flags |
181 | # |
188 | # |
182 | # returns if all of the listed USE flags are set |
189 | # Returns if all of the listed USE flags are enabled |
183 | # dies if any of the listed USE flags are not set |
190 | # Dies if any of the listed USE flags are disabled |
184 | |
191 | |
185 | require_php_with_use() |
192 | require_php_with_use() { |
186 | { |
|
|
187 | has_php |
193 | has_php |
188 | |
194 | |
189 | local missing_use= |
195 | local missing_use="" |
190 | local x |
196 | local x |
191 | |
197 | |
192 | einfo "Checking for required PHP feature(s):" |
198 | einfo "Checking for required PHP feature(s) ..." |
193 | |
199 | |
194 | for x in $@ ; do |
200 | for x in $@ ; do |
195 | if ! built_with_use =${PHP_PKG} ${x} ; then |
201 | if ! built_with_use =${PHP_PKG} ${x} && ! phpconfutils_built_with_use =${PHP_PKG} ${x} ; then |
196 | einfo " Discovered missing USE flag ${x}" |
202 | einfo " Discovered missing USE flag: ${x}" |
197 | missing_use="${missing_use} ${x}" |
203 | missing_use="${missing_use} ${x}" |
198 | fi |
204 | fi |
199 | done |
205 | done |
200 | |
206 | |
201 | if [[ -z ${missing_use} ]]; then |
207 | if [[ -z ${missing_use} ]] ; then |
202 | return |
208 | return |
203 | fi |
209 | fi |
204 | |
210 | |
205 | eerror |
211 | eerror |
206 | eerror "${PHP_PKG} needs to be re-installed with all of the following" |
212 | eerror "${PHP_PKG} needs to be re-installed with all of the following" |
207 | eerror "USE flags enabled:" |
213 | eerror "USE flags enabled:" |
208 | eerror |
214 | eerror |
209 | eerror " $@" |
215 | eerror " $@" |
210 | eerror |
216 | eerror |
211 | die "Re-install ${PHP_PKG}" |
217 | die "Missing PHP USE flags found" |
212 | } |
218 | } |
213 | |
219 | |
214 | # call this function from your pkg_setup, src_compile & src_install methods |
220 | # Call this function from pkg_setup if your package requires PHP compiled |
215 | # if you need to know where the PHP binaries are installed and their data |
221 | # with any of specified USE flags |
|
|
222 | # |
|
|
223 | # $1 ... a list of USE flags |
|
|
224 | # |
|
|
225 | # Returns if any of the listed USE flags are enabled |
|
|
226 | # Dies if all of the listed USE flags are disabled |
216 | |
227 | |
|
|
228 | require_php_with_any_use() { |
217 | has_php() |
229 | has_php |
218 | { |
|
|
219 | # if PHP_PKG is set, then we have remembered our PHP settings |
|
|
220 | # from last time |
|
|
221 | |
230 | |
222 | if [[ -n ${PHP_PKG} ]]; then |
231 | local missing_use="" |
|
|
232 | local x |
|
|
233 | |
|
|
234 | einfo "Checking for required PHP feature(s) ..." |
|
|
235 | |
|
|
236 | for x in $@ ; do |
|
|
237 | if built_with_use =${PHP_PKG} ${x} || phpconfutils_built_with_use =${PHP_PKG} ${x} ; then |
|
|
238 | einfo " USE flag ${x} is enabled, ok ..." |
223 | return |
239 | return |
224 | fi |
|
|
225 | |
|
|
226 | if [[ -z ${PHP_VERSION} ]]; then |
|
|
227 | # detect which PHP version installed |
|
|
228 | if has_version '=dev-lang/php-4*' ; then |
|
|
229 | PHP_VERSION=4 |
|
|
230 | elif has_version '=dev-lang/php-5*' ; then |
|
|
231 | PHP_VERSION=5 |
|
|
232 | else |
240 | else |
233 | die "Unable to find an installed dev-lang/php package" |
241 | missing_use="${missing_use} ${x}" |
234 | fi |
|
|
235 | fi |
242 | fi |
|
|
243 | done |
236 | |
244 | |
237 | # if we get here, then PHP_VERSION tells us which version of PHP we |
245 | if [[ -z ${missing_use} ]] ; then |
238 | # want to use |
246 | return |
|
|
247 | fi |
239 | |
248 | |
240 | uses_php${PHP_VERSION} |
249 | eerror |
|
|
250 | eerror "${PHP_PKG} needs to be re-installed with any of the following" |
|
|
251 | eerror "USE flags enabled:" |
|
|
252 | eerror |
|
|
253 | eerror " $@" |
|
|
254 | eerror |
|
|
255 | die "Missing PHP USE flags found" |
241 | } |
256 | } |
242 | |
257 | |
243 | # ======================================================================== |
258 | # ======================================================================== |
244 | # has_*() functions |
259 | # has_*() functions |
245 | # |
260 | # |
246 | # these functions return 0 if the condition is satisfied, or 1 otherwise |
261 | # These functions return 0 if the condition is satisfied, 1 otherwise |
247 | # ======================================================================== |
262 | # ======================================================================== |
248 | |
263 | |
249 | # check if our PHP was compiled with ZTS (Zend Thread Safety) |
264 | # Check if our PHP was compiled with ZTS (Zend Thread Safety) enabled |
250 | |
265 | |
251 | has_zts() |
266 | has_zts() { |
252 | { |
|
|
253 | has_php |
267 | has_php |
254 | |
268 | |
255 | if built_with_use =${PHP_PKG} apache2 threads ; then |
269 | if built_with_use =${PHP_PKG} apache2 threads || phpconfutils_built_with_use =${PHP_PKG} apache2 threads ; then |
256 | return 0 |
270 | return 0 |
257 | fi |
271 | fi |
258 | |
272 | |
259 | return 1 |
273 | return 1 |
260 | } |
274 | } |
261 | |
275 | |
262 | # check if our PHP was built with Hardened-PHP active |
276 | # Check if our PHP was built with Hardened-PHP enabled |
263 | |
277 | |
264 | has_hardenedphp() |
278 | has_hardenedphp() { |
265 | { |
|
|
266 | has_php |
279 | has_php |
267 | |
280 | |
268 | if built_with_use =${PHP_PKG} hardenedphp ; then |
281 | if built_with_use =${PHP_PKG} hardenedphp || phpconfutils_built_with_use =${PHP_PKG} hardenedphp ; then |
269 | return 0 |
282 | return 0 |
270 | fi |
283 | fi |
271 | |
284 | |
272 | return 1 |
285 | return 1 |
273 | } |
286 | } |
274 | |
287 | |
|
|
288 | # Check if our PHP was built with debug support enabled |
|
|
289 | |
|
|
290 | has_debug() { |
|
|
291 | has_php |
|
|
292 | |
|
|
293 | if built_with_use =${PHP_PKG} debug || phpconfutils_built_with_use =${PHP_PKG} debug ; then |
|
|
294 | return 0 |
|
|
295 | fi |
|
|
296 | |
|
|
297 | return 1 |
|
|
298 | } |
|
|
299 | |
275 | # ======================================================================== |
300 | # ======================================================================== |
276 | # require_*() functions |
301 | # require_*() functions |
277 | # |
302 | # |
278 | # These functions die() if PHP was built without the required USE flag(s) |
303 | # These functions die() if PHP was built without the required features |
279 | # ======================================================================== |
304 | # ======================================================================== |
280 | |
305 | |
281 | # require a PHP built with PDO support for PHP5 |
306 | # Require a PHP built with PDO support (PHP5 only) |
282 | |
307 | |
283 | require_pdo() |
308 | require_pdo() { |
284 | { |
|
|
285 | has_php |
309 | has_php |
286 | |
310 | |
287 | # do we have php5.1 installed? |
311 | # Do we have PHP5 installed? |
288 | |
|
|
289 | if [[ ${PHP_VERSION} == 4 ]] ; then |
312 | if [[ "${PHP_VERSION}" == "4" ]] ; then |
290 | eerror |
313 | eerror |
291 | eerror "This package requires PDO." |
314 | eerror "This package requires PDO." |
292 | eerror "PDO is only available for PHP 5." |
315 | eerror "PDO is only available for PHP 5." |
293 | eerror "Please install dev-lang/php-5*" |
316 | eerror "You must install =dev-lang/php-5.0* with" |
|
|
317 | eerror "the 'pdo-external' USE flag or you must" |
|
|
318 | eerror "install >=dev-lang/php-5.1 with either" |
|
|
319 | eerror "the 'pdo' or the 'pdo-external' USE flags" |
|
|
320 | eerror "turned on." |
294 | eerror |
321 | eerror |
295 | die "PHP 5 not installed" |
322 | die "PHP 5 not installed" |
296 | fi |
323 | fi |
297 | |
324 | |
298 | # was php5 compiled w/ pdo support? |
325 | # Was PHP5 compiled with internal PDO support? |
299 | |
326 | if built_with_use =${PHP_PKG} pdo || phpconfutils_built_with_use =${PHP_PKG} pdo ; then |
300 | if built_with_use =${PHP_PKG} pdo ; then |
|
|
301 | return |
327 | return |
302 | fi |
328 | fi |
303 | |
329 | |
304 | # ok, maybe PDO was built as an external extension? |
330 | # Ok, maybe PDO was built as an external extension? |
305 | |
331 | if ( built_with_use =${PHP_PKG} pdo-external || phpconfutils_built_with_use =${PHP_PKG} pdo-external ) && has_version 'dev-php5/pecl-pdo' ; then |
306 | if built_with_use =${PHP_PKG} pdo-external && has_version dev-php5/pecl-pdo ; then |
|
|
307 | return |
332 | return |
308 | fi |
333 | fi |
309 | |
334 | |
310 | # ok, as last resort, it suffices that pecl-pdo was installed to have PDO support |
335 | # Ok, as last resort, it suffices that pecl-pdo was installed to have PDO support |
311 | |
|
|
312 | if has_version dev-php5/pecl-pdo ; then |
336 | if has_version 'dev-php5/pecl-pdo' ; then |
313 | return |
337 | return |
314 | fi |
338 | fi |
315 | |
339 | |
316 | # if we get here, then we have no PDO support |
340 | # If we get here, then we have no PDO support |
317 | |
|
|
318 | eerror |
341 | eerror |
319 | eerror "No PDO extension for PHP found." |
342 | eerror "No PDO extension for PHP found." |
320 | eerror "Please note that PDO only exists for PHP 5." |
343 | eerror "Please note that PDO only exists for PHP 5." |
321 | eerror "Please install a PDO extension for PHP 5," |
344 | eerror "Please install a PDO extension for PHP 5," |
322 | eerror "you must install dev-lang/php-5.0* with" |
345 | eerror "you must install =dev-lang/php-5.0* with" |
323 | eerror "the 'pdo-external' USE flag or you must" |
346 | eerror "the 'pdo-external' USE flag or you must" |
324 | eerror "install dev-lang/php-5.1* with either" |
347 | eerror "install >=dev-lang/php-5.1 with either" |
325 | eerror "the 'pdo' or the 'pdo-external' USE flags" |
348 | eerror "the 'pdo' or the 'pdo-external' USE flags" |
326 | eerror "turned on." |
349 | eerror "turned on." |
327 | eerror |
350 | eerror |
328 | die "No PDO extension found for PHP 5" |
351 | die "No PDO extension for PHP 5 found" |
329 | } |
352 | } |
330 | |
353 | |
331 | # determines which installed PHP version has the CLI sapi |
354 | # Determines which installed PHP version has the CLI SAPI enabled, |
332 | # useful for PEAR eclass, or anything which needs to run PHP |
355 | # useful for PEAR stuff, or anything which needs to run PHP |
333 | # scripts depending on the cli sapi |
356 | # scripts depending on the CLI SAPI |
334 | |
357 | |
335 | require_php_cli() |
358 | require_php_cli() { |
336 | { |
|
|
337 | # if PHP_PKG is set, then we have remembered our PHP settings |
359 | # If PHP_PKG is set, then we have remembered our PHP settings |
338 | # from last time |
360 | # from last time |
339 | |
|
|
340 | if [[ -n ${PHP_PKG} ]]; then |
361 | if [[ -n ${PHP_PKG} ]] ; then |
341 | return |
362 | return |
342 | fi |
363 | fi |
343 | |
364 | |
|
|
365 | local PHP_PACKAGE_FOUND="" |
|
|
366 | |
344 | # detect which PHP version installed |
367 | # Detect which PHP version we have installed |
345 | if has_version '=dev-lang/php-4*' ; then |
368 | if has_version '=dev-lang/php-4*' ; then |
346 | PHP_PACKAGE_FOUND=1 |
369 | PHP_PACKAGE_FOUND="1" |
347 | pkg="`best_version '=dev-lang/php-4*'`" |
370 | pkg="`best_version '=dev-lang/php-4*'`" |
348 | if built_with_use =${pkg} cli ; then |
371 | if built_with_use =${pkg} cli || phpconfutils_built_with_use =${pkg} cli ; then |
349 | PHP_VERSION=4 |
372 | PHP_VERSION="4" |
350 | fi |
373 | fi |
351 | fi |
374 | fi |
352 | |
375 | |
353 | if has_version '=dev-lang/php-5*' ; then |
376 | if has_version '=dev-lang/php-5*' ; then |
354 | PHP_PACKAGE_FOUND=1 |
377 | PHP_PACKAGE_FOUND="1" |
355 | pkg="`best_version '=dev-lang/php-5*'`" |
378 | pkg="`best_version '=dev-lang/php-5*'`" |
356 | if built_with_use =${pkg} cli ; then |
379 | if built_with_use =${pkg} cli || phpconfutils_built_with_use =${pkg} cli ; then |
357 | PHP_VERSION=5 |
380 | PHP_VERSION="5" |
358 | fi |
|
|
359 | fi |
381 | fi |
|
|
382 | fi |
360 | |
383 | |
361 | if [[ -z ${PHP_PACKAGE_FOUND} ]]; then |
384 | if [[ -z ${PHP_PACKAGE_FOUND} ]] ; then |
362 | die "Unable to find an installed dev-lang/php package" |
385 | die "Unable to find an installed dev-lang/php package" |
363 | fi |
386 | fi |
364 | |
387 | |
365 | if [[ -z ${PHP_VERSION} ]]; then |
388 | if [[ -z ${PHP_VERSION} ]] ; then |
366 | die "No PHP CLI installed" |
389 | die "No PHP CLI installed" |
367 | fi |
390 | fi |
368 | |
391 | |
369 | # if we get here, then PHP_VERSION tells us which version of PHP we |
392 | # If we get here, then PHP_VERSION tells us which version of PHP we |
370 | # want to use |
393 | # want to use |
371 | |
|
|
372 | uses_php${PHP_VERSION} |
394 | uses_php${PHP_VERSION} |
373 | } |
395 | } |
374 | |
396 | |
375 | # determines which installed PHP version has the CGI sapi |
397 | # Determines which installed PHP version has the CGI SAPI enabled, |
376 | # useful for anything which needs to run PHP scripts |
398 | # useful for anything which needs to run PHP scripts |
377 | # depending on the cgi sapi |
399 | # depending on the CGI SAPI |
378 | |
400 | |
379 | require_php_cgi() |
401 | require_php_cgi() { |
380 | { |
|
|
381 | # if PHP_PKG is set, then we have remembered our PHP settings |
402 | # If PHP_PKG is set, then we have remembered our PHP settings |
382 | # from last time |
403 | # from last time |
383 | |
|
|
384 | if [[ -n ${PHP_PKG} ]]; then |
404 | if [[ -n ${PHP_PKG} ]] ; then |
385 | return |
405 | return |
386 | fi |
406 | fi |
387 | |
407 | |
|
|
408 | local PHP_PACKAGE_FOUND="" |
|
|
409 | |
388 | # detect which PHP version installed |
410 | # Detect which PHP version we have installed |
389 | if has_version '=dev-lang/php-4*' ; then |
411 | if has_version '=dev-lang/php-4*' ; then |
390 | PHP_PACKAGE_FOUND=1 |
412 | PHP_PACKAGE_FOUND="1" |
391 | pkg="`best_version '=dev-lang/php-4*'`" |
413 | pkg="`best_version '=dev-lang/php-4*'`" |
392 | if built_with_use =${pkg} cgi ; then |
414 | if built_with_use =${pkg} cgi || phpconfutils_built_with_use =${pkg} cgi ; then |
393 | PHP_VERSION=4 |
415 | PHP_VERSION="4" |
394 | fi |
416 | fi |
395 | fi |
417 | fi |
396 | |
418 | |
397 | if has_version '=dev-lang/php-5*' ; then |
419 | if has_version '=dev-lang/php-5*' ; then |
398 | PHP_PACKAGE_FOUND=1 |
420 | PHP_PACKAGE_FOUND="1" |
399 | pkg="`best_version '=dev-lang/php-5*'`" |
421 | pkg="`best_version '=dev-lang/php-5*'`" |
400 | if built_with_use =${pkg} cgi ; then |
422 | if built_with_use =${pkg} cgi || phpconfutils_built_with_use =${pkg} cgi ; then |
401 | PHP_VERSION=5 |
423 | PHP_VERSION="5" |
402 | fi |
|
|
403 | fi |
424 | fi |
404 | |
425 | fi |
|
|
426 | |
405 | if [[ -z ${PHP_PACKAGE_FOUND} ]]; then |
427 | if [[ -z ${PHP_PACKAGE_FOUND} ]] ; then |
406 | die "Unable to find an installed dev-lang/php package" |
428 | die "Unable to find an installed dev-lang/php package" |
407 | fi |
429 | fi |
408 | |
430 | |
409 | if [[ -z ${PHP_VERSION} ]]; then |
431 | if [[ -z ${PHP_VERSION} ]] ; then |
410 | die "No PHP CGI installed" |
432 | die "No PHP CGI installed" |
411 | fi |
433 | fi |
412 | |
434 | |
413 | # if we get here, then PHP_VERSION tells us which version of PHP we |
435 | # If we get here, then PHP_VERSION tells us which version of PHP we |
414 | # want to use |
436 | # want to use |
415 | |
|
|
416 | uses_php${PHP_VERSION} |
437 | uses_php${PHP_VERSION} |
417 | } |
438 | } |
418 | |
439 | |
419 | # require a PHP built with sqlite support |
440 | # Require a PHP built with SQLite support |
420 | |
441 | |
421 | require_sqlite() |
442 | require_sqlite() { |
422 | { |
|
|
423 | has_php |
443 | has_php |
424 | |
444 | |
425 | # has our PHP been built with sqlite? |
445 | # Has our PHP been built with SQLite support? |
426 | |
446 | if built_with_use =${PHP_PKG} sqlite || phpconfutils_built_with_use =${PHP_PKG} sqlite ; then |
427 | if built_with_use =${PHP_PKG} sqlite ; then |
|
|
428 | return |
447 | return |
429 | fi |
448 | fi |
430 | |
449 | |
431 | # do we have pecl-sqlite installed for PHP 4? |
450 | # Do we have pecl-sqlite installed for PHP4? |
432 | |
|
|
433 | if [[ ${PHP_VERSION} == 4 ]] ; then |
451 | if [[ "${PHP_VERSION}" == "4" ]] ; then |
434 | if has_version dev-php4/pecl-sqlite ; then |
452 | if has_version 'dev-php4/pecl-sqlite' ; then |
435 | return |
453 | return |
436 | fi |
454 | fi |
437 | fi |
455 | fi |
438 | |
456 | |
439 | # if we get here, then we don't have any sqlite support for PHP installed |
457 | # If we get here, then we don't have any SQLite support for PHP installed |
440 | |
|
|
441 | eerror |
458 | eerror |
442 | eerror "No sqlite extension for PHP found." |
459 | eerror "No SQLite extension for PHP found." |
443 | eerror "Please install an sqlite extension for PHP," |
460 | eerror "Please install an SQLite extension for PHP," |
444 | eerror "this is done best by simply adding the" |
461 | eerror "this is done best by simply adding the" |
445 | eerror "'sqlite' USE flag when emerging dev-lang/php." |
462 | eerror "'sqlite' USE flag when emerging dev-lang/php." |
446 | eerror |
463 | eerror |
447 | die "No sqlite extension for PHP found" |
464 | die "No SQLite extension for PHP found" |
448 | } |
465 | } |
449 | |
466 | |
450 | # require a PHP built with GD support |
467 | # Require a PHP built with GD support |
451 | |
468 | |
452 | require_gd() |
469 | require_gd() { |
453 | { |
|
|
454 | has_php |
470 | has_php |
455 | |
471 | |
456 | # do we have the internal GD support installed? |
472 | # Do we have the internal GD support installed? |
457 | |
473 | if built_with_use =${PHP_PKG} gd || phpconfutils_built_with_use =${PHP_PKG} gd ; then |
458 | if built_with_use =${PHP_PKG} gd ; then |
|
|
459 | return |
474 | return |
460 | fi |
475 | fi |
461 | |
476 | |
462 | # ok, maybe GD was built using the external support? |
477 | # Ok, maybe GD was built using the external library support? |
463 | |
478 | if built_with_use =${PHP_PKG} gd-external || phpconfutils_built_with_use =${PHP_PKG} gd-external ; then |
464 | if built_with_use =${PHP_PKG} gd-external ; then |
|
|
465 | return |
479 | return |
466 | fi |
480 | fi |
467 | |
481 | |
468 | # if we get here, then we have no GD support |
482 | # If we get here, then we have no GD support |
469 | |
|
|
470 | eerror |
483 | eerror |
471 | eerror "No GD support for PHP found." |
484 | eerror "No GD support for PHP found." |
472 | eerror "Please install the GD support for PHP," |
485 | eerror "Please install the GD support for PHP," |
473 | eerror "you must install dev-lang/php with either" |
486 | eerror "you must install dev-lang/php with either" |
474 | eerror "the 'gd' or the 'gd-external' USE flags" |
487 | eerror "the 'gd' or the 'gd-external' USE flags" |
… | |
… | |
481 | # Misc functions |
494 | # Misc functions |
482 | # |
495 | # |
483 | # These functions provide miscellaneous checks and functionality. |
496 | # These functions provide miscellaneous checks and functionality. |
484 | # ======================================================================== |
497 | # ======================================================================== |
485 | |
498 | |
486 | # executes some checks needed when installing a binary PHP extension |
499 | # Executes some checks needed when installing a binary PHP extension |
487 | |
500 | |
488 | php_binary_extension() { |
501 | php_binary_extension() { |
489 | has_php |
502 | has_php |
490 | |
503 | |
|
|
504 | local PUSE_ENABLED="" |
|
|
505 | |
491 | # binary extensions do not support the change of PHP |
506 | # Binary extensions do not support the change of PHP |
492 | # API version, so they can't be installed when USE flags |
507 | # API version, so they can't be installed when USE flags |
493 | # are enabled wich change the PHP API version |
508 | # are enabled wich change the PHP API version |
494 | |
509 | |
495 | if built_with_use =${PHP_PKG} hardenedphp ; then |
510 | if built_with_use =${PHP_PKG} hardenedphp || phpconfutils_built_with_use =${PHP_PKG} hardenedphp ; then |
496 | eerror |
511 | eerror |
497 | eerror "You cannot install binary PHP extensions" |
512 | eerror "You cannot install binary PHP extensions" |
498 | eerror "when the 'hardenedphp' USE flag is enabled!" |
513 | eerror "when the 'hardenedphp' USE flag is enabled!" |
499 | eerror "Please reemerge dev-lang/php with the" |
514 | eerror "Please reemerge dev-lang/php with the" |
500 | eerror "'hardenedphp' USE flag turned off." |
515 | eerror "'hardenedphp' USE flag turned off." |
501 | eerror |
516 | eerror |
502 | die "'hardenedphp' USE flag turned on" |
517 | PUSE_ENABLED="1" |
503 | fi |
518 | fi |
504 | |
519 | |
505 | if built_with_use =${PHP_PKG} debug ; then |
520 | if built_with_use =${PHP_PKG} debug || phpconfutils_built_with_use =${PHP_PKG} debug ; then |
506 | eerror |
521 | eerror |
507 | eerror "You cannot install binary PHP extensions" |
522 | eerror "You cannot install binary PHP extensions" |
508 | eerror "when the 'debug' USE flag is enabled!" |
523 | eerror "when the 'debug' USE flag is enabled!" |
509 | eerror "Please reemerge dev-lang/php with the" |
524 | eerror "Please reemerge dev-lang/php with the" |
510 | eerror "'debug' USE flag turned off." |
525 | eerror "'debug' USE flag turned off." |
511 | eerror |
526 | eerror |
|
|
527 | PUSE_ENABLED="1" |
|
|
528 | fi |
|
|
529 | |
|
|
530 | if [[ -n ${PUSE_ENABLED} ]] ; then |
512 | die "'debug' USE flag turned on" |
531 | die "'hardenedphp' and/or 'debug' USE flags turned on" |
513 | fi |
532 | fi |
514 | } |
533 | } |
515 | |
534 | |
516 | # alternative to dodoc for use in our php eclasses and ebuilds |
535 | # Alternative to dodoc function for use in our PHP eclasses and |
|
|
536 | # ebuilds. |
517 | # stored here because depend.php gets always sourced everywhere |
537 | # Stored here because depend.php gets always sourced everywhere |
518 | # in the PHP ebuilds and eclasses |
538 | # in the PHP ebuilds and eclasses. |
519 | # it simply is dodoc with a changed path to the docs |
539 | # It simply is dodoc with a changed path to the docs. |
520 | # no support for docinto is given! |
540 | # NOTE: no support for docinto is given! |
521 | |
541 | |
522 | dodoc-php() |
542 | dodoc-php() { |
523 | { |
|
|
524 | if [ $# -lt 1 ] ; then |
543 | if [[ $# -lt 1 ]] ; then |
525 | echo "$0: at least one argument needed" 1>&2 |
544 | echo "$0: at least one argument needed" 1>&2 |
526 | exit 1 |
545 | exit 1 |
527 | fi |
546 | fi |
528 | |
547 | |
529 | phpdocdir="${D}/usr/share/doc/${CATEGORY}/${PF}/" |
548 | phpdocdir="${D}/usr/share/doc/${CATEGORY}/${PF}/" |
530 | |
549 | |
531 | if [ ! -d "${phpdocdir}" ] ; then |
550 | if [[ ! -d "${phpdocdir}" ]] ; then |
532 | install -d "${phpdocdir}" |
551 | install -d "${phpdocdir}" |
533 | fi |
552 | fi |
534 | |
553 | |
535 | for x in "$@" ; do |
554 | for x in $@ ; do |
536 | if [ -s "${x}" ] ; then |
555 | if [[ -s "${x}" ]] ; then |
537 | install -m0644 "${x}" "${phpdocdir}" |
556 | install -m0644 "${x}" "${phpdocdir}" |
538 | gzip -f -9 "${phpdocdir}/${x##*/}" |
557 | gzip -f -9 "${phpdocdir}/${x##*/}" |
539 | elif [ ! -e "${x}" ] ; then |
558 | elif [[ ! -e "${x}" ]] ; then |
540 | echo "dodoc-php: ${x} does not exist" 1>&2 |
559 | echo "dodoc-php: ${x} does not exist" 1>&2 |
541 | fi |
560 | fi |
542 | done |
561 | done |
543 | } |
562 | } |