This repository has been archived by the owner on May 12, 2018. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
php.eselect
352 lines (289 loc) · 7.44 KB
/
php.eselect
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
# -*-eselect-*- vim: ft=eselect
# Copyright 2010-2011 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
inherit config multilib
DESCRIPTION="Manage php installations"
MAINTAINER="[email protected]"
MODULES="cli apache2 fpm cgi"
cli_link="${EROOT}"/usr/bin/php
fpm_link="${EROOT}"/usr/bin/php-fpm
cgi_link="${EROOT}"/usr/bin/php-cgi
cleanup_sapis() {
local m
local link
for m in $MODULES ; do
cleanup_sapi $m
done
}
cleanup_sapi() {
local l=${1}_link
local link=${!l}
if [[ -L $link && ! -e $link ]] ; then
echo -n "Broken link for $1"
if update_sapi $1 ; then
echo ". Updated version to $(get_active_$1)"
return
else
rm $link
echo ". No suitable targets left. Removing"
return
fi
fi
return 1
}
update_sapi() {
local target=$(find_targets_$1 | tail -n 1)
local current=$(get_active_$1)
[[ -z $target ]] && return 1
[[ $current = $target ]] && return 1
set_$1 $target
}
get_libdirs() {
local dir libdirs
for dir in $(list_libdirs); do
[[ -L ${EROOT}/usr/${dir} ]] && continue
ls "${EROOT}"/usr/${dir}/php*.* > /dev/null 2>&1 || continue
libdirs+=' '/usr/${dir}
done
echo ${libdirs:-/usr/lib}
}
get_active_libdir() {
local dir
for dir in $(get_libdirs); do
echo ${dir}
return
done
echo /usr/lib
}
get_libname() {
# probe on a well-known library
local lib ret=.so
for lib in "${EROOT}"$(get_active_libdir)/libz.* ; do
case "${lib##*/}" in
libz.a) ret=.a ;; # some platforms use .a as ext
libz.*.*) continue ;;
libz.*)
ret=${lib##*libz}
break
;;
esac
done
echo ${ret}
}
apache2_link="${EROOT}"$(get_active_libdir)/apache2/modules/libphp5$(get_libname)
cleanup() {
local target=$(find_targets_$1 | tail -n 1)
[[ -z $target ]] &&
set_$1 $target
}
find_targets() {
local dir dirs libdir
for libdir in $(get_libdirs); do
for dir in "${EROOT}"${libdir}/php*.*; do
t=$(basename $dir)
has $t $dirs || dirs="${dirs} $t"
done
done
echo $dirs
}
find_targets_apache2() {
local target libdir
for target in $(find_targets); do
for libdir in $(get_libdirs); do
[[ -f ${EROOT}${libdir}/$target/apache2/libphp5$(get_libname) ]] && echo $target
done
done | sort -u
}
find_targets_cli() {
local target libdir
for target in $(find_targets); do
for libdir in $(get_libdirs); do
[[ -f ${EROOT}${libdir}/$target/bin/php ]] && echo $target
done
done | sort -u
}
find_targets_fpm() {
local target libdir
for target in $(find_targets); do
for libdir in $(get_libdirs); do
[[ -f ${EROOT}${libdir}/$target/bin/php-fpm ]] && echo $target
done
done | sort -u
}
find_targets_cgi() {
local target libdir
for target in $(find_targets); do
for libdir in $(get_libdirs); do
[[ -f ${EROOT}${libdir}/$target/bin/php-cgi ]] && echo $target
done
done | sort -u
}
get_active_cli() {
readlink -e "${EROOT}"/usr/bin/php | sed -ne "s:.*/usr/.*/\(php[0-9]\.[0-9][0-9]*\)/bin/php:\1:p"
}
get_active_cgi() {
readlink -e "${EROOT}"/usr/bin/php-cgi | sed -ne "s:.*/usr/.*/\(php[0-9]\.[0-9]\)/bin/php-cgi:\1:p"
}
get_active_fpm() {
readlink -e "${EROOT}"/usr/bin/php-fpm | sed -ne "s:.*/usr/.*/\(php[0-9]\.[0-9]\)/bin/php-fpm:\1:p"
}
get_active_apache2() {
readlink -e "${EROOT}"$(get_active_libdir)/apache2/modules/libphp5$(get_libname) | sed -ne "s:.*/usr/.*/\(php[0-9]\.[0-9]\)/apache2/libphp5$(get_libname):\1:p"
}
resolv_target() {
local targets=( $(find_targets_$1) )
if is_number $2; then
[[ $2 -le ${#targets[@]} && $2 -gt 0 ]] && echo "${targets[ $(( $2 - 1 )) ]}"
elif has $2 ${targets[@]}; then
echo $2
fi
}
check_module() {
has $1 $(echo $MODULES) || die -q "Please chose one of the following modules: ${MODULES}"
}
## Actual actions
list_apache2() {
local targets
local a
targets=( $(find_targets_apache2) )
a=$(get_active_apache2)
for (( i = 0; i < ${#targets[@]}; i++ )) ; do
[[ $a == ${targets[i]} ]] && targets[i]=$(highlight_marker "${targets[i]}")
done
write_numbered_list -m "(none found)" "${targets[@]}"
}
list_cli() {
local targets
local a
targets=( $(find_targets_cli) )
a=$(get_active_cli)
for (( i = 0; i < ${#targets[@]}; i++ )) ; do
[[ $a == ${targets[i]} ]] && targets[i]=$(highlight_marker "${targets[i]}")
done
write_numbered_list -m "(none found)" "${targets[@]}"
}
list_cgi() {
local targets
local a
targets=( $(find_targets_cgi) )
a=$(get_active_cgi)
for (( i = 0; i < ${#targets[@]}; i++ )) ; do
[[ $a == ${targets[i]} ]] && targets[i]=$(highlight_marker "${targets[i]}")
done
write_numbered_list -m "(none found)" "${targets[@]}"
}
list_fpm() {
local targets
local a
targets=( $(find_targets_fpm) )
a=$(get_active_fpm)
for (( i = 0; i < ${#targets[@]}; i++ )) ; do
[[ $a == ${targets[i]} ]] && targets[i]=$(highlight_marker "${targets[i]}")
done
write_numbered_list -m "(none found)" "${targets[@]}"
}
set_apache2() {
local libdir t=$(resolv_target apache2 $1)
[[ -z $t ]] && die -q "Bad target"
for libdir in $(get_libdirs); do
ln -sf ../../$t/apache2/libphp5$(get_libname) "${EROOT}"${libdir}/apache2/modules/ || \
die -q "Failed to set symlink for ${EPREFIX}${libdir}/apache2/modules/libphp5$(get_libname)"
done
echo "You have to run \`${EPREFIX}/etc/init.d/apache2 restart' for the changes to take effect"
}
set_cli() {
local file libdir t=$(resolv_target cli $1)
[[ -z $t ]] && die -q "Bad target"
for file in php phpize php-config; do
ln -sf ../..$(get_active_libdir)/$t/bin/$file "${EROOT}"/usr/bin/$file || \
die -q "Failed to create symlink for ${file}"
done
}
set_cgi() {
t=$(resolv_target cgi $1)
[[ -z $t ]] && die -q "Bad target"
ln -sf ../..$(get_active_libdir)/$t/bin/php-cgi "${EROOT}"/usr/bin/php-cgi || \
die -q "Failed to create symlink for php-cgi"
}
set_fpm() {
local t=$(resolv_target fpm $1)
[[ -z $t ]] && die -q "Bad target"
ln -sf ../..$(get_active_libdir)/$t/bin/php-fpm "${EROOT}"/usr/bin/php-fpm || \
die -q "Failed to create symlink for the php-fpm binary"
echo "You have to run \`${EPREFIX}/etc/init.d/php-fpm restart' for the changes to take effect"
}
## set action
describe_set() {
echo "Sets the current configuration for a module"
}
describe_set_parameters() {
echo "<module> <target>"
}
describe_set_options() {
echo "module: one of ${MODULES}"
echo "target: Target name or number (from the 'list' action)"
}
do_set() {
check_module $1
set_$1 $2
}
## List action
describe_list() {
echo "Lists available php installs for a module"
}
describe_list_parameters() {
echo "<module>"
}
describe_list_options() {
echo "module: one of ${MODULES}"
}
do_list() {
check_module $1
list_$1
}
## Show action
describe_show() {
echo "Lists available php installs for a module"
}
describe_show_parameters() {
echo "<module>"
}
describe_show_options() {
echo "module: one of ${MODULES}"
}
do_show() {
check_module $1
get_active_$1
}
## update action
describe_update() {
echo "Automatically update the php versions"
}
describe_update_parameters() {
echo "<module> [ifunset]"
}
describe_update_options() {
echo "module: one of ${MODULES}"
echo "ifunset : Do not override existing implementation"
}
do_update() {
check_module $1
[[ -z ${2} || ( -z ${3} && ( ${2} == ifunset || ${2} == '--if-unset' ) ) ]] || \
die -q "Usage error"
[[ ( ${2} == ifunset || ${2} == '--if-unset' ) && -n $(get_active_$1) ]] && \
return
update_sapi $1 || echo "Nothing to update"
}
## cleanup action
describe_cleanup() {
echo "Automatically clean up stale links"
}
describe_cleanup_parameters() {
echo
}
describe_cleanup_options() {
echo
}
do_cleanup() {
cleanup_sapis
}