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