1 |
# Copyright 1999-2005 Gentoo Foundation |
2 |
# Distributed under the terms of the GNU General Public License v2 |
3 |
# $Header: /var/cvsroot/gentoo-x86/eclass/eutils.eclass,v 1.226 2006/02/20 11:56:33 flameeyes Exp $ |
4 |
# |
5 |
# Author: Martin Schlemmer <azarah@gentoo.org> |
6 |
# |
7 |
# This eclass is for general purpose functions that most ebuilds |
8 |
# have to implement themselves. |
9 |
# |
10 |
# NB: If you add anything, please comment it! |
11 |
|
12 |
inherit multilib portability |
13 |
|
14 |
DEPEND="!bootstrap? ( sys-devel/patch )" |
15 |
# sys-apps/shadow is needed for useradd, etc, bug #94745. |
16 |
|
17 |
DESCRIPTION="Based on the ${ECLASS} eclass" |
18 |
|
19 |
# Wait for the supplied number of seconds. If no argument is supplied, defaults |
20 |
# to five seconds. If the EPAUSE_IGNORE env var is set, don't wait. If we're not |
21 |
# outputting to a terminal, don't wait. For compatability purposes, the argument |
22 |
# must be an integer greater than zero. |
23 |
# Bug 62950, Ciaran McCreesh <ciaranm@gentoo.org> (05 Sep 2004) |
24 |
epause() { |
25 |
if [ -z "$EPAUSE_IGNORE" ] && [ -t 1 ] ; then |
26 |
sleep ${1:-5} |
27 |
fi |
28 |
} |
29 |
|
30 |
# Beep the specified number of times (defaults to five). If our output |
31 |
# is not a terminal, don't beep. If the EBEEP_IGNORE env var is set, |
32 |
# don't beep. |
33 |
# Bug 62950, Ciaran McCreesh <ciaranm@gentoo.org> (05 Sep 2004) |
34 |
ebeep() { |
35 |
local n |
36 |
if [ -z "$EBEEP_IGNORE" ] && [ -t 1 ] ; then |
37 |
for ((n=1 ; n <= ${1:-5} ; n++)) ; do |
38 |
echo -ne "\a" |
39 |
sleep 0.1 &>/dev/null ; sleep 0,1 &>/dev/null |
40 |
echo -ne "\a" |
41 |
sleep 1 |
42 |
done |
43 |
fi |
44 |
} |
45 |
|
46 |
# This function generate linker scripts in /usr/lib for dynamic |
47 |
# libs in /lib. This is to fix linking problems when you have |
48 |
# the .so in /lib, and the .a in /usr/lib. What happens is that |
49 |
# in some cases when linking dynamic, the .a in /usr/lib is used |
50 |
# instead of the .so in /lib due to gcc/libtool tweaking ld's |
51 |
# library search path. This cause many builds to fail. |
52 |
# See bug #4411 for more info. |
53 |
# |
54 |
# To use, simply call: |
55 |
# |
56 |
# gen_usr_ldscript libfoo.so |
57 |
# |
58 |
# Note that you should in general use the unversioned name of |
59 |
# the library, as ldconfig should usually update it correctly |
60 |
# to point to the latest version of the library present. |
61 |
# |
62 |
# <azarah@gentoo.org> (26 Oct 2002) |
63 |
# |
64 |
gen_usr_ldscript() { |
65 |
local lib libdir=$(get_libdir) |
66 |
# Just make sure it exists |
67 |
dodir /usr/${libdir} |
68 |
|
69 |
for lib in "${@}" ; do |
70 |
cat > "${D}/usr/${libdir}/${lib}" <<-END_LDSCRIPT |
71 |
/* GNU ld script |
72 |
Since Gentoo has critical dynamic libraries |
73 |
in /lib, and the static versions in /usr/lib, |
74 |
we need to have a "fake" dynamic lib in /usr/lib, |
75 |
otherwise we run into linking problems. |
76 |
|
77 |
See bug http://bugs.gentoo.org/4411 for more info. |
78 |
*/ |
79 |
GROUP ( /${libdir}/${lib} ) |
80 |
END_LDSCRIPT |
81 |
fperms a+x "/usr/${libdir}/${lib}" || die "could not change perms on ${lib}" |
82 |
done |
83 |
} |
84 |
|
85 |
|
86 |
# Default directory where patches are located |
87 |
EPATCH_SOURCE="${WORKDIR}/patch" |
88 |
# Default extension for patches |
89 |
EPATCH_SUFFIX="patch.bz2" |
90 |
# Default options for patch |
91 |
# Set -g0 to keep RCS, ClearCase, Perforce and SCCS happy. Bug #24571 |
92 |
# Set --no-backup-if-mismatch so we don't leave '.orig' files behind. |
93 |
EPATCH_OPTS="-g0 --no-backup-if-mismatch" |
94 |
# List of patches not to apply. Not this is only file names, |
95 |
# and not the full path .. |
96 |
EPATCH_EXCLUDE="" |
97 |
# Change the printed message for a single patch. |
98 |
EPATCH_SINGLE_MSG="" |
99 |
# Change the printed message for multiple patches. |
100 |
EPATCH_MULTI_MSG="Applying various patches (bugfixes/updates) ..." |
101 |
# Force applying bulk patches even if not following the style: |
102 |
# |
103 |
# ??_${ARCH}_foo.${EPATCH_SUFFIX} |
104 |
# |
105 |
EPATCH_FORCE="no" |
106 |
|
107 |
# This function is for bulk patching, or in theory for just one |
108 |
# or two patches. |
109 |
# |
110 |
# It should work with .bz2, .gz, .zip and plain text patches. |
111 |
# Currently all patches should be the same format. |
112 |
# |
113 |
# You do not have to specify '-p' option to patch, as it will |
114 |
# try with -p0 to -p5 until it succeed, or fail at -p5. |
115 |
# |
116 |
# Above EPATCH_* variables can be used to control various defaults, |
117 |
# bug they should be left as is to ensure an ebuild can rely on |
118 |
# them for. |
119 |
# |
120 |
# Patches are applied in current directory. |
121 |
# |
122 |
# Bulk Patches should preferibly have the form of: |
123 |
# |
124 |
# ??_${ARCH}_foo.${EPATCH_SUFFIX} |
125 |
# |
126 |
# For example: |
127 |
# |
128 |
# 01_all_misc-fix.patch.bz2 |
129 |
# 02_sparc_another-fix.patch.bz2 |
130 |
# |
131 |
# This ensures that there are a set order, and you can have ARCH |
132 |
# specific patches. |
133 |
# |
134 |
# If you however give an argument to epatch(), it will treat it as a |
135 |
# single patch that need to be applied if its a file. If on the other |
136 |
# hand its a directory, it will set EPATCH_SOURCE to this. |
137 |
# |
138 |
# <azarah@gentoo.org> (10 Nov 2002) |
139 |
# |
140 |
epatch() { |
141 |
_epatch_draw_line() { |
142 |
local i=0 str_length="" str_out="" |
143 |
|
144 |
# Handle calls that do not have args, or wc not being installed ... |
145 |
if [[ -z $1 ]] || ! type -p wc >/dev/null ; then |
146 |
str_length=65 |
147 |
else |
148 |
str_length=$(echo -n "$*" | wc -m) |
149 |
fi |
150 |
|
151 |
while ((i++ < ${str_length})) ; do |
152 |
str_out="${str_out}=" |
153 |
done |
154 |
echo ${str_out} |
155 |
|
156 |
return 0 |
157 |
} |
158 |
_epatch_assert() { local _pipestatus=${PIPESTATUS[*]}; [[ ${_pipestatus// /} -eq 0 ]] ; } |
159 |
local PIPE_CMD="" |
160 |
local STDERR_TARGET="${T}/$$.out" |
161 |
local PATCH_TARGET="${T}/$$.patch" |
162 |
local PATCH_SUFFIX="" |
163 |
local SINGLE_PATCH="no" |
164 |
local x="" |
165 |
|
166 |
unset P4CONFIG P4PORT P4USER # keep perforce at bay #56402 |
167 |
|
168 |
if [ "$#" -gt 1 ] |
169 |
then |
170 |
local m="" |
171 |
for m in "$@" ; do |
172 |
epatch "${m}" |
173 |
done |
174 |
return 0 |
175 |
fi |
176 |
|
177 |
if [ -n "$1" -a -f "$1" ] |
178 |
then |
179 |
SINGLE_PATCH="yes" |
180 |
|
181 |
local EPATCH_SOURCE="$1" |
182 |
local EPATCH_SUFFIX="${1##*\.}" |
183 |
|
184 |
elif [ -n "$1" -a -d "$1" ] |
185 |
then |
186 |
# Allow no extension if EPATCH_FORCE=yes ... used by vim for example ... |
187 |
if [ "${EPATCH_FORCE}" = "yes" ] && [ -z "${EPATCH_SUFFIX}" ] |
188 |
then |
189 |
local EPATCH_SOURCE="$1/*" |
190 |
else |
191 |
local EPATCH_SOURCE="$1/*.${EPATCH_SUFFIX}" |
192 |
fi |
193 |
else |
194 |
if [ ! -d ${EPATCH_SOURCE} ] || [ -n "$1" ] |
195 |
then |
196 |
if [ -n "$1" -a "${EPATCH_SOURCE}" = "${WORKDIR}/patch" ] |
197 |
then |
198 |
EPATCH_SOURCE="$1" |
199 |
fi |
200 |
|
201 |
echo |
202 |
eerror "Cannot find \$EPATCH_SOURCE! Value for \$EPATCH_SOURCE is:" |
203 |
eerror |
204 |
eerror " ${EPATCH_SOURCE}" |
205 |
eerror " ( ${EPATCH_SOURCE##*/} )" |
206 |
echo |
207 |
die "Cannot find \$EPATCH_SOURCE!" |
208 |
fi |
209 |
|
210 |
local EPATCH_SOURCE="${EPATCH_SOURCE}/*.${EPATCH_SUFFIX}" |
211 |
fi |
212 |
|
213 |
case ${EPATCH_SUFFIX##*\.} in |
214 |
bz2) |
215 |
PIPE_CMD="bzip2 -dc" |
216 |
PATCH_SUFFIX="bz2" |
217 |
;; |
218 |
gz|Z|z) |
219 |
PIPE_CMD="gzip -dc" |
220 |
PATCH_SUFFIX="gz" |
221 |
;; |
222 |
ZIP|zip) |
223 |
PIPE_CMD="unzip -p" |
224 |
PATCH_SUFFIX="zip" |
225 |
;; |
226 |
*) |
227 |
PIPE_CMD="cat" |
228 |
PATCH_SUFFIX="patch" |
229 |
;; |
230 |
esac |
231 |
|
232 |
if [ "${SINGLE_PATCH}" = "no" ] |
233 |
then |
234 |
einfo "${EPATCH_MULTI_MSG}" |
235 |
fi |
236 |
for x in ${EPATCH_SOURCE} |
237 |
do |
238 |
# New ARCH dependant patch naming scheme ... |
239 |
# |
240 |
# ???_arch_foo.patch |
241 |
# |
242 |
if [ -f ${x} ] && \ |
243 |
([ "${SINGLE_PATCH}" = "yes" -o "${x/_all_}" != "${x}" -o "${x/_${ARCH}_}" != "${x}" ] || \ |
244 |
[ "${EPATCH_FORCE}" = "yes" ]) |
245 |
then |
246 |
local count=0 |
247 |
local popts="${EPATCH_OPTS}" |
248 |
local patchname=${x##*/} |
249 |
|
250 |
if [ -n "${EPATCH_EXCLUDE}" ] |
251 |
then |
252 |
if [ "${EPATCH_EXCLUDE/${patchname}}" != "${EPATCH_EXCLUDE}" ] |
253 |
then |
254 |
continue |
255 |
fi |
256 |
fi |
257 |
|
258 |
if [ "${SINGLE_PATCH}" = "yes" ] |
259 |
then |
260 |
if [ -n "${EPATCH_SINGLE_MSG}" ] |
261 |
then |
262 |
einfo "${EPATCH_SINGLE_MSG}" |
263 |
else |
264 |
einfo "Applying ${patchname} ..." |
265 |
fi |
266 |
else |
267 |
einfo " ${patchname} ..." |
268 |
fi |
269 |
|
270 |
echo "***** ${patchname} *****" > ${STDERR_TARGET%/*}/${patchname}-${STDERR_TARGET##*/} |
271 |
echo >> ${STDERR_TARGET%/*}/${patchname}-${STDERR_TARGET##*/} |
272 |
|
273 |
# Allow for prefix to differ ... im lazy, so shoot me :/ |
274 |
while [ "${count}" -lt 5 ] |
275 |
do |
276 |
# Generate some useful debug info ... |
277 |
_epatch_draw_line "***** ${patchname} *****" >> ${STDERR_TARGET%/*}/${patchname}-${STDERR_TARGET##*/} |
278 |
echo >> ${STDERR_TARGET%/*}/${patchname}-${STDERR_TARGET##*/} |
279 |
|
280 |
if [ "${PATCH_SUFFIX}" != "patch" ] |
281 |
then |
282 |
echo -n "PIPE_COMMAND: " >> ${STDERR_TARGET%/*}/${patchname}-${STDERR_TARGET##*/} |
283 |
echo "${PIPE_CMD} ${x} > ${PATCH_TARGET}" >> ${STDERR_TARGET%/*}/${patchname}-${STDERR_TARGET##*/} |
284 |
else |
285 |
PATCH_TARGET="${x}" |
286 |
fi |
287 |
|
288 |
echo -n "PATCH COMMAND: " >> ${STDERR_TARGET%/*}/${patchname}-${STDERR_TARGET##*/} |
289 |
echo "patch -p${count} ${popts} < ${PATCH_TARGET}" >> ${STDERR_TARGET%/*}/${patchname}-${STDERR_TARGET##*/} |
290 |
|
291 |
echo >> ${STDERR_TARGET%/*}/${patchname}-${STDERR_TARGET##*/} |
292 |
_epatch_draw_line "***** ${patchname} *****" >> ${STDERR_TARGET%/*}/${patchname}-${STDERR_TARGET##*/} |
293 |
|
294 |
if [ "${PATCH_SUFFIX}" != "patch" ] |
295 |
then |
296 |
if ! (${PIPE_CMD} ${x} > ${PATCH_TARGET}) >> ${STDERR_TARGET%/*}/${patchname}-${STDERR_TARGET##*/} 2>&1 |
297 |
then |
298 |
echo |
299 |
eerror "Could not extract patch!" |
300 |
#die "Could not extract patch!" |
301 |
count=5 |
302 |
break |
303 |
fi |
304 |
fi |
305 |
|
306 |
if (cat ${PATCH_TARGET} | patch -p${count} ${popts} --dry-run -f ; _epatch_assert) >> ${STDERR_TARGET%/*}/${patchname}-${STDERR_TARGET##*/} 2>&1 |
307 |
then |
308 |
_epatch_draw_line "***** ${patchname} *****" > ${STDERR_TARGET%/*}/${patchname}-${STDERR_TARGET##*/}.real |
309 |
echo >> ${STDERR_TARGET%/*}/${patchname}-${STDERR_TARGET##*/}.real |
310 |
echo "ACTUALLY APPLYING ${patchname} ..." >> ${STDERR_TARGET%/*}/${patchname}-${STDERR_TARGET##*/}.real |
311 |
echo >> ${STDERR_TARGET%/*}/${patchname}-${STDERR_TARGET##*/}.real |
312 |
_epatch_draw_line "***** ${patchname} *****" >> ${STDERR_TARGET%/*}/${patchname}-${STDERR_TARGET##*/}.real |
313 |
|
314 |
cat ${PATCH_TARGET} | patch -p${count} ${popts} >> ${STDERR_TARGET%/*}/${patchname}-${STDERR_TARGET##*/}.real 2>&1 |
315 |
_epatch_assert |
316 |
|
317 |
if [ "$?" -ne 0 ] |
318 |
then |
319 |
cat ${STDERR_TARGET%/*}/${patchname}-${STDERR_TARGET##*/}.real >> ${STDERR_TARGET%/*}/${patchname}-${STDERR_TARGET##*/} |
320 |
echo |
321 |
eerror "A dry-run of patch command succeeded, but actually" |
322 |
eerror "applying the patch failed!" |
323 |
#die "Real world sux compared to the dreamworld!" |
324 |
count=5 |
325 |
fi |
326 |
|
327 |
rm -f ${STDERR_TARGET%/*}/${patchname}-${STDERR_TARGET##*/}.real |
328 |
|
329 |
break |
330 |
fi |
331 |
|
332 |
count=$((count + 1)) |
333 |
done |
334 |
|
335 |
if [ "${PATCH_SUFFIX}" != "patch" ] |
336 |
then |
337 |
rm -f ${PATCH_TARGET} |
338 |
fi |
339 |
|
340 |
if [ "${count}" -eq 5 ] |
341 |
then |
342 |
echo |
343 |
eerror "Failed Patch: ${patchname} !" |
344 |
eerror " ( ${PATCH_TARGET} )" |
345 |
eerror |
346 |
eerror "Include in your bugreport the contents of:" |
347 |
eerror |
348 |
eerror " ${STDERR_TARGET%/*}/${patchname}-${STDERR_TARGET##*/}" |
349 |
echo |
350 |
die "Failed Patch: ${patchname}!" |
351 |
fi |
352 |
|
353 |
rm -f ${STDERR_TARGET%/*}/${patchname}-${STDERR_TARGET##*/} |
354 |
|
355 |
eend 0 |
356 |
fi |
357 |
done |
358 |
if [ "${SINGLE_PATCH}" = "no" ] |
359 |
then |
360 |
einfo "Done with patching" |
361 |
fi |
362 |
} |
363 |
|
364 |
# Cheap replacement for when debianutils (and thus mktemp) |
365 |
# does not exist on the users system |
366 |
# vapier@gentoo.org |
367 |
# |
368 |
# Takes just 1 optional parameter (the directory to create tmpfile in) |
369 |
emktemp() { |
370 |
local exe="touch" |
371 |
[[ $1 == -d ]] && exe="mkdir" && shift |
372 |
local topdir=$1 |
373 |
|
374 |
if [[ -z ${topdir} ]] ; then |
375 |
[[ -z ${T} ]] \ |
376 |
&& topdir="/tmp" \ |
377 |
|| topdir=${T} |
378 |
fi |
379 |
|
380 |
if [[ -z $(type -p mktemp) ]] ; then |
381 |
local tmp=/ |
382 |
while [[ -e ${tmp} ]] ; do |
383 |
tmp=${topdir}/tmp.${RANDOM}.${RANDOM}.${RANDOM} |
384 |
done |
385 |
${exe} "${tmp}" || ${exe} -p "${tmp}" |
386 |
echo "${tmp}" |
387 |
else |
388 |
if [[ ${exe} == "touch" ]] ; then |
389 |
[[ ${USERLAND} == "GNU" ]] \ |
390 |
&& mktemp -p "${topdir}" \ |
391 |
|| TMPDIR="${topdir}" mktemp -t tmp |
392 |
else |
393 |
[[ ${USERLAND} == "GNU" ]] \ |
394 |
&& mktemp -d "${topdir}" \ |
395 |
|| TMPDIR="${topdir}" mktemp -dt tmp |
396 |
fi |
397 |
fi |
398 |
} |
399 |
|
400 |
# Small wrapper for getent (Linux), nidump (Mac OS X), |
401 |
# and pw (FreeBSD) used in enewuser()/enewgroup() |
402 |
# Joe Jezak <josejx@gmail.com> and usata@gentoo.org |
403 |
# FBSD stuff: Aaron Walker <ka0ttic@gentoo.org> |
404 |
# |
405 |
# egetent(database, key) |
406 |
egetent() { |
407 |
case ${CHOST} in |
408 |
*-darwin*) |
409 |
case "$2" in |
410 |
*[!0-9]*) # Non numeric |
411 |
nidump $1 . | awk -F":" "{ if (\$1 ~ /^$2$/) {print \$0;exit;} }" |
412 |
;; |
413 |
*) # Numeric |
414 |
nidump $1 . | awk -F":" "{ if (\$3 == $2) {print \$0;exit;} }" |
415 |
;; |
416 |
esac |
417 |
;; |
418 |
*-freebsd*|*-dragonfly*) |
419 |
local opts action="user" |
420 |
[[ $1 == "passwd" ]] || action="group" |
421 |
|
422 |
# lookup by uid/gid |
423 |
if [[ $2 == [[:digit:]]* ]] ; then |
424 |
[[ ${action} == "user" ]] && opts="-u" || opts="-g" |
425 |
fi |
426 |
|
427 |
pw show ${action} ${opts} "$2" -q |
428 |
;; |
429 |
*-netbsd*|*-openbsd*) |
430 |
grep "$2:\*:" /etc/$1 |
431 |
;; |
432 |
*) |
433 |
type -p nscd >& /dev/null && nscd -i "$1" |
434 |
getent "$1" "$2" |
435 |
;; |
436 |
esac |
437 |
} |
438 |
|
439 |
# Simplify/standardize adding users to the system |
440 |
# vapier@gentoo.org |
441 |
# |
442 |
# enewuser(username, uid, shell, homedir, groups, extra options) |
443 |
# |
444 |
# Default values if you do not specify any: |
445 |
# username: REQUIRED ! |
446 |
# uid: next available (see useradd(8)) |
447 |
# note: pass -1 to get default behavior |
448 |
# shell: /bin/false |
449 |
# homedir: /dev/null |
450 |
# groups: none |
451 |
# extra: comment of 'added by portage for ${PN}' |
452 |
enewuser() { |
453 |
# get the username |
454 |
local euser=$1; shift |
455 |
if [[ -z ${euser} ]] ; then |
456 |
eerror "No username specified !" |
457 |
die "Cannot call enewuser without a username" |
458 |
fi |
459 |
|
460 |
# lets see if the username already exists |
461 |
if [[ ${euser} == $(egetent passwd "${euser}" | cut -d: -f1) ]] ; then |
462 |
return 0 |
463 |
fi |
464 |
einfo "Adding user '${euser}' to your system ..." |
465 |
|
466 |
# options to pass to useradd |
467 |
local opts= |
468 |
|
469 |
# handle uid |
470 |
local euid=$1; shift |
471 |
if [[ ! -z ${euid} ]] && [[ ${euid} != "-1" ]] ; then |
472 |
if [[ ${euid} -gt 0 ]] ; then |
473 |
if [[ ! -z $(egetent passwd ${euid}) ]] ; then |
474 |
euid="next" |
475 |
fi |
476 |
else |
477 |
eerror "Userid given but is not greater than 0 !" |
478 |
die "${euid} is not a valid UID" |
479 |
fi |
480 |
else |
481 |
euid="next" |
482 |
fi |
483 |
if [[ ${euid} == "next" ]] ; then |
484 |
for euid in $(seq 101 999) ; do |
485 |
[[ -z $(egetent passwd ${euid}) ]] && break |
486 |
done |
487 |
fi |
488 |
opts="${opts} -u ${euid}" |
489 |
einfo " - Userid: ${euid}" |
490 |
|
491 |
# handle shell |
492 |
local eshell=$1; shift |
493 |
if [[ ! -z ${eshell} ]] && [[ ${eshell} != "-1" ]] ; then |
494 |
if [[ ! -e ${ROOT}${eshell} ]] ; then |
495 |
eerror "A shell was specified but it does not exist !" |
496 |
die "${eshell} does not exist in ${ROOT}" |
497 |
fi |
498 |
if [[ ${eshell} == */false || ${eshell} == */nologin ]] ; then |
499 |
eerror "Do not specify ${eshell} yourself, use -1" |
500 |
die "Pass '-1' as the shell parameter" |
501 |
fi |
502 |
else |
503 |
for shell in /sbin/nologin /usr/sbin/nologin /bin/false /usr/bin/false /dev/null ; do |
504 |
[[ -x ${ROOT}${shell} ]] && break |
505 |
done |
506 |
|
507 |
if [[ ${shell} == "/dev/null" ]] ; then |
508 |
eerror "Unable to identify the shell to use" |
509 |
die "Unable to identify the shell to use" |
510 |
fi |
511 |
|
512 |
eshell=${shell} |
513 |
fi |
514 |
einfo " - Shell: ${eshell}" |
515 |
opts="${opts} -s ${eshell}" |
516 |
|
517 |
# handle homedir |
518 |
local ehome=$1; shift |
519 |
if [[ -z ${ehome} ]] || [[ ${ehome} == "-1" ]] ; then |
520 |
ehome="/dev/null" |
521 |
fi |
522 |
einfo " - Home: ${ehome}" |
523 |
opts="${opts} -d ${ehome}" |
524 |
|
525 |
# handle groups |
526 |
local egroups=$1; shift |
527 |
if [[ ! -z ${egroups} ]] ; then |
528 |
local oldifs=${IFS} |
529 |
local defgroup="" exgroups="" |
530 |
|
531 |
export IFS="," |
532 |
for g in ${egroups} ; do |
533 |
export IFS=${oldifs} |
534 |
if [[ -z $(egetent group "${g}") ]] ; then |
535 |
eerror "You must add group ${g} to the system first" |
536 |
die "${g} is not a valid GID" |
537 |
fi |
538 |
if [[ -z ${defgroup} ]] ; then |
539 |
defgroup=${g} |
540 |
else |
541 |
exgroups="${exgroups},${g}" |
542 |
fi |
543 |
export IFS="," |
544 |
done |
545 |
export IFS=${oldifs} |
546 |
|
547 |
opts="${opts} -g ${defgroup}" |
548 |
if [[ ! -z ${exgroups} ]] ; then |
549 |
opts="${opts} -G ${exgroups:1}" |
550 |
fi |
551 |
else |
552 |
egroups="(none)" |
553 |
fi |
554 |
einfo " - Groups: ${egroups}" |
555 |
|
556 |
# handle extra and add the user |
557 |
local oldsandbox=${SANDBOX_ON} |
558 |
export SANDBOX_ON="0" |
559 |
case ${CHOST} in |
560 |
*-darwin*) |
561 |
### Make the user |
562 |
if [[ -z $@ ]] ; then |
563 |
dscl . create /users/${euser} uid ${euid} |
564 |
dscl . create /users/${euser} shell ${eshell} |
565 |
dscl . create /users/${euser} home ${ehome} |
566 |
dscl . create /users/${euser} realname "added by portage for ${PN}" |
567 |
### Add the user to the groups specified |
568 |
local oldifs=${IFS} |
569 |
export IFS="," |
570 |
for g in ${egroups} ; do |
571 |
dscl . merge /groups/${g} users ${euser} |
572 |
done |
573 |
export IFS=${oldifs} |
574 |
else |
575 |
einfo "Extra options are not supported on Darwin yet" |
576 |
einfo "Please report the ebuild along with the info below" |
577 |
einfo "eextra: $@" |
578 |
die "Required function missing" |
579 |
fi |
580 |
;; |
581 |
*-freebsd*|*-dragonfly*) |
582 |
if [[ -z $@ ]] ; then |
583 |
pw useradd ${euser} ${opts} \ |
584 |
-c "added by portage for ${PN}" \ |
585 |
die "enewuser failed" |
586 |
else |
587 |
einfo " - Extra: $@" |
588 |
pw useradd ${euser} ${opts} \ |
589 |
"$@" || die "enewuser failed" |
590 |
fi |
591 |
;; |
592 |
|
593 |
*-netbsd*) |
594 |
if [[ -z $@ ]] ; then |
595 |
useradd ${opts} ${euser} || die "enewuser failed" |
596 |
else |
597 |
einfo " - Extra: $@" |
598 |
useradd ${opts} ${euser} "$@" || die "enewuser failed" |
599 |
fi |
600 |
;; |
601 |
|
602 |
*-openbsd*) |
603 |
if [[ -z $@ ]] ; then |
604 |
useradd -u ${euid} -s ${eshell} \ |
605 |
-d ${ehome} -c "Added by portage for ${PN}" \ |
606 |
-g ${egroups} ${euser} || die "enewuser failed" |
607 |
else |
608 |
einfo " - Extra: $@" |
609 |
useradd -u ${euid} -s ${eshell} \ |
610 |
-d ${ehome} -c "Added by portage for ${PN}" \ |
611 |
-g ${egroups} ${euser} "$@" || die "enewuser failed" |
612 |
fi |
613 |
;; |
614 |
|
615 |
*) |
616 |
if [[ -z $@ ]] ; then |
617 |
useradd ${opts} ${euser} \ |
618 |
-c "added by portage for ${PN}" \ |
619 |
|| die "enewuser failed" |
620 |
else |
621 |
einfo " - Extra: $@" |
622 |
useradd ${opts} ${euser} "$@" \ |
623 |
|| die "enewuser failed" |
624 |
fi |
625 |
;; |
626 |
esac |
627 |
|
628 |
if [[ ! -e ${ROOT}/${ehome} ]] ; then |
629 |
einfo " - Creating ${ehome} in ${ROOT}" |
630 |
mkdir -p "${ROOT}/${ehome}" |
631 |
chown ${euser} "${ROOT}/${ehome}" |
632 |
chmod 755 "${ROOT}/${ehome}" |
633 |
fi |
634 |
|
635 |
export SANDBOX_ON=${oldsandbox} |
636 |
} |
637 |
|
638 |
# Simplify/standardize adding groups to the system |
639 |
# vapier@gentoo.org |
640 |
# |
641 |
# enewgroup(group, gid) |
642 |
# |
643 |
# Default values if you do not specify any: |
644 |
# groupname: REQUIRED ! |
645 |
# gid: next available (see groupadd(8)) |
646 |
# extra: none |
647 |
enewgroup() { |
648 |
# get the group |
649 |
local egroup="$1"; shift |
650 |
if [ -z "${egroup}" ] |
651 |
then |
652 |
eerror "No group specified !" |
653 |
die "Cannot call enewgroup without a group" |
654 |
fi |
655 |
|
656 |
# see if group already exists |
657 |
if [ "${egroup}" == "`egetent group \"${egroup}\" | cut -d: -f1`" ] |
658 |
then |
659 |
return 0 |
660 |
fi |
661 |
einfo "Adding group '${egroup}' to your system ..." |
662 |
|
663 |
# options to pass to useradd |
664 |
local opts= |
665 |
|
666 |
# handle gid |
667 |
local egid="$1"; shift |
668 |
if [ ! -z "${egid}" ] |
669 |
then |
670 |
if [ "${egid}" -gt 0 ] |
671 |
then |
672 |
if [ -z "`egetent group ${egid}`" ] |
673 |
then |
674 |
if [[ "${CHOST}" == *-darwin* ]]; then |
675 |
opts="${opts} ${egid}" |
676 |
else |
677 |
opts="${opts} -g ${egid}" |
678 |
fi |
679 |
else |
680 |
egid="next available; requested gid taken" |
681 |
fi |
682 |
else |
683 |
eerror "Groupid given but is not greater than 0 !" |
684 |
die "${egid} is not a valid GID" |
685 |
fi |
686 |
else |
687 |
egid="next available" |
688 |
fi |
689 |
einfo " - Groupid: ${egid}" |
690 |
|
691 |
# handle extra |
692 |
local eextra="$@" |
693 |
opts="${opts} ${eextra}" |
694 |
|
695 |
# add the group |
696 |
local oldsandbox="${SANDBOX_ON}" |
697 |
export SANDBOX_ON="0" |
698 |
case ${CHOST} in |
699 |
*-darwin*) |
700 |
if [ ! -z "${eextra}" ]; |
701 |
then |
702 |
einfo "Extra options are not supported on Darwin/OS X yet" |
703 |
einfo "Please report the ebuild along with the info below" |
704 |
einfo "eextra: ${eextra}" |
705 |
die "Required function missing" |
706 |
fi |
707 |
|
708 |
# If we need the next available |
709 |
case ${egid} in |
710 |
*[!0-9]*) # Non numeric |
711 |
for egid in $(seq 101 999); do |
712 |
[ -z "`egetent group ${egid}`" ] && break |
713 |
done |
714 |
esac |
715 |
dscl . create /groups/${egroup} gid ${egid} |
716 |
dscl . create /groups/${egroup} passwd '*' |
717 |
;; |
718 |
|
719 |
*-freebsd*|*-dragonfly*) |
720 |
case ${egid} in |
721 |
*[!0-9]*) # Non numeric |
722 |
for egid in $(seq 101 999); do |
723 |
[ -z "`egetent group ${egid}`" ] && break |
724 |
done |
725 |
esac |
726 |
pw groupadd ${egroup} -g ${egid} || die "enewgroup failed" |
727 |
;; |
728 |
|
729 |
*-netbsd*) |
730 |
case ${egid} in |
731 |
*[!0-9]*) # Non numeric |
732 |
for egid in $(seq 101 999); do |
733 |
[ -z "`egetent group ${egid}`" ] && break |
734 |
done |
735 |
esac |
736 |
groupadd -g ${egid} ${egroup} || die "enewgroup failed" |
737 |
;; |
738 |
|
739 |
*) |
740 |
groupadd ${opts} ${egroup} || die "enewgroup failed" |
741 |
;; |
742 |
esac |
743 |
export SANDBOX_ON="${oldsandbox}" |
744 |
} |
745 |
|
746 |
# Simple script to replace 'dos2unix' binaries |
747 |
# vapier@gentoo.org |
748 |
# |
749 |
# edos2unix(file, <more files> ...) |
750 |
edos2unix() { |
751 |
for f in "$@" |
752 |
do |
753 |
cp "${f}" ${T}/edos2unix |
754 |
sed 's/\r$//' ${T}/edos2unix > "${f}" |
755 |
done |
756 |
} |
757 |
|
758 |
|
759 |
############################################################## |
760 |
# START: Handle .desktop files and menu entries # |
761 |
# maybe this should be separated into a new eclass some time # |
762 |
# lanius@gentoo.org # |
763 |
############################################################## |
764 |
|
765 |
# Make a desktop file ! |
766 |
# Great for making those icons in kde/gnome startmenu ! |
767 |
# Amaze your friends ! Get the women ! Join today ! |
768 |
# |
769 |
# make_desktop_entry(<binary>, [name], [icon], [type], [path]) |
770 |
# |
771 |
# binary: what binary does the app run with ? |
772 |
# name: the name that will show up in the menu |
773 |
# icon: give your little like a pretty little icon ... |
774 |
# this can be relative (to /usr/share/pixmaps) or |
775 |
# a full path to an icon |
776 |
# type: what kind of application is this ? for categories: |
777 |
# http://www.freedesktop.org/Standards/desktop-entry-spec |
778 |
# path: if your app needs to startup in a specific dir |
779 |
make_desktop_entry() { |
780 |
[[ -z $1 ]] && eerror "make_desktop_entry: You must specify the executable" && return 1 |
781 |
|
782 |
local exec=${1} |
783 |
local name=${2:-${PN}} |
784 |
local icon=${3:-${PN}.png} |
785 |
local type=${4} |
786 |
local path=${5} |
787 |
|
788 |
if [[ -z ${type} ]] ; then |
789 |
local catmaj=${CATEGORY%%-*} |
790 |
local catmin=${CATEGORY##*-} |
791 |
case ${catmaj} in |
792 |
app) |
793 |
case ${catmin} in |
794 |
admin) type=System;; |
795 |
cdr) type=DiscBurning;; |
796 |
dicts) type=Dictionary;; |
797 |
editors) type=TextEditor;; |
798 |
emacs) type=TextEditor;; |
799 |
emulation) type=Emulator;; |
800 |
laptop) type=HardwareSettings;; |
801 |
office) type=Office;; |
802 |
vim) type=TextEditor;; |
803 |
xemacs) type=TextEditor;; |
804 |
*) type=;; |
805 |
esac |
806 |
;; |
807 |
|
808 |
dev) |
809 |
type="Development" |
810 |
;; |
811 |
|
812 |
games) |
813 |
case ${catmin} in |
814 |
action) type=ActionGame;; |
815 |
arcade) type=ArcadeGame;; |
816 |
board) type=BoardGame;; |
817 |
kid) type=KidsGame;; |
818 |
emulation) type=Emulator;; |
819 |
puzzle) type=LogicGame;; |
820 |
rpg) type=RolePlaying;; |
821 |
roguelike) type=RolePlaying;; |
822 |
simulation) type=Simulation;; |
823 |
sports) type=SportsGame;; |
824 |
strategy) type=StrategyGame;; |
825 |
*) type=;; |
826 |
esac |
827 |
type="Game;${type}" |
828 |
;; |
829 |
|
830 |
mail) |
831 |
type="Network;Email" |
832 |
;; |
833 |
|
834 |
media) |
835 |
case ${catmin} in |
836 |
gfx) type=Graphics;; |
837 |
radio) type=Tuner;; |
838 |
sound) type=Audio;; |
839 |
tv) type=TV;; |
840 |
video) type=Video;; |
841 |
*) type=;; |
842 |
esac |
843 |
type="AudioVideo;${type}" |
844 |
;; |
845 |
|
846 |
net) |
847 |
case ${catmin} in |
848 |
dialup) type=Dialup;; |
849 |
ftp) type=FileTransfer;; |
850 |
im) type=InstantMessaging;; |
851 |
irc) type=IRCClient;; |
852 |
mail) type=Email;; |
853 |
news) type=News;; |
854 |
nntp) type=News;; |
855 |
p2p) type=FileTransfer;; |
856 |
*) type=;; |
857 |
esac |
858 |
type="Network;${type}" |
859 |
;; |
860 |
|
861 |
sci) |
862 |
case ${catmin} in |
863 |
astro*) type=Astronomy;; |
864 |
bio*) type=Biology;; |
865 |
calc*) type=Calculator;; |
866 |
chem*) type=Chemistry;; |
867 |
geo*) type=Geology;; |
868 |
math*) type=Math;; |
869 |
*) type=;; |
870 |
esac |
871 |
type="Science;${type}" |
872 |
;; |
873 |
|
874 |
www) |
875 |
case ${catmin} in |
876 |
client) type=WebBrowser;; |
877 |
*) type=;; |
878 |
esac |
879 |
type="Network" |
880 |
;; |
881 |
|
882 |
*) |
883 |
type= |
884 |
;; |
885 |
esac |
886 |
fi |
887 |
if [ "${SLOT}" == "0" ] ; then |
888 |
local desktop_name="${PN}" |
889 |
else |
890 |
local desktop_name="${PN}-${SLOT}" |
891 |
fi |
892 |
local desktop=${T}/${exec%% *}-${desktop_name}.desktop |
893 |
|
894 |
echo "[Desktop Entry] |
895 |
Encoding=UTF-8 |
896 |
Version=0.9.2 |
897 |
Name=${name} |
898 |
Type=Application |
899 |
Comment=${DESCRIPTION} |
900 |
Exec=${exec} |
901 |
Path=${path} |
902 |
Icon=${icon} |
903 |
Categories=Application;${type};" > "${desktop}" |
904 |
|
905 |
( |
906 |
# wrap the env here so that the 'insinto' call |
907 |
# doesn't corrupt the env of the caller |
908 |
insinto /usr/share/applications |
909 |
doins "${desktop}" |
910 |
) |
911 |
} |
912 |
|
913 |
# Make a GDM/KDM Session file |
914 |
# |
915 |
# make_desktop_entry(<title>, <command>) |
916 |
# title: File to execute to start the Window Manager |
917 |
# command: Name of the Window Manager |
918 |
|
919 |
make_session_desktop() { |
920 |
[[ -z $1 ]] && eerror "make_session_desktop: You must specify the title" && return 1 |
921 |
[[ -z $2 ]] && eerror "make_session_desktop: You must specify the command" && return 1 |
922 |
|
923 |
local title=$1 |
924 |
local command=$2 |
925 |
local desktop=${T}/${wm}.desktop |
926 |
|
927 |
echo "[Desktop Entry] |
928 |
Encoding=UTF-8 |
929 |
Name=${title} |
930 |
Comment=This session logs you into ${title} |
931 |
Exec=${command} |
932 |
TryExec=${command} |
933 |
Type=Application" > "${desktop}" |
934 |
|
935 |
insinto /usr/share/xsessions |
936 |
doins "${desktop}" |
937 |
} |
938 |
|
939 |
domenu() { |
940 |
local i j |
941 |
insinto /usr/share/applications |
942 |
for i in "$@" ; do |
943 |
if [[ -f ${i} ]] ; then |
944 |
doins "${i}" |
945 |
elif [[ -d ${i} ]] ; then |
946 |
for j in "${i}"/*.desktop ; do |
947 |
doins "${j}" |
948 |
done |
949 |
fi |
950 |
done |
951 |
} |
952 |
newmenu() { |
953 |
insinto /usr/share/applications |
954 |
newins "$1" "$2" |
955 |
} |
956 |
|
957 |
doicon() { |
958 |
local i j |
959 |
insinto /usr/share/pixmaps |
960 |
for i in "$@" ; do |
961 |
if [[ -f ${i} ]] ; then |
962 |
doins "${i}" |
963 |
elif [[ -d ${i} ]] ; then |
964 |
for j in "${i}"/*.png ; do |
965 |
doins "${j}" |
966 |
done |
967 |
fi |
968 |
done |
969 |
} |
970 |
newicon() { |
971 |
insinto /usr/share/pixmaps |
972 |
newins "$1" "$2" |
973 |
} |
974 |
|
975 |
############################################################## |
976 |
# END: Handle .desktop files and menu entries # |
977 |
############################################################## |
978 |
|
979 |
|
980 |
# for internal use only (unpack_pdv and unpack_makeself) |
981 |
find_unpackable_file() { |
982 |
local src=$1 |
983 |
if [[ -z ${src} ]] ; then |
984 |
src=${DISTDIR}/${A} |
985 |
else |
986 |
if [[ -e ${DISTDIR}/${src} ]] ; then |
987 |
src=${DISTDIR}/${src} |
988 |
elif [[ -e ${PWD}/${src} ]] ; then |
989 |
src=${PWD}/${src} |
990 |
elif [[ -e ${src} ]] ; then |
991 |
src=${src} |
992 |
fi |
993 |
fi |
994 |
[[ ! -e ${src} ]] && return 1 |
995 |
echo "${src}" |
996 |
} |
997 |
|
998 |
# Unpack those pesky pdv generated files ... |
999 |
# They're self-unpacking programs with the binary package stuffed in |
1000 |
# the middle of the archive. Valve seems to use it a lot ... too bad |
1001 |
# it seems to like to segfault a lot :(. So lets take it apart ourselves. |
1002 |
# |
1003 |
# Usage: unpack_pdv [file to unpack] [size of off_t] |
1004 |
# - you have to specify the off_t size ... i have no idea how to extract that |
1005 |
# information out of the binary executable myself. basically you pass in |
1006 |
# the size of the off_t type (in bytes) on the machine that built the pdv |
1007 |
# archive. one way to determine this is by running the following commands: |
1008 |
# strings <pdv archive> | grep lseek |
1009 |
# strace -elseek <pdv archive> |
1010 |
# basically look for the first lseek command (we do the strings/grep because |
1011 |
# sometimes the function call is _llseek or something) and steal the 2nd |
1012 |
# parameter. here is an example: |
1013 |
# root@vapier 0 pdv_unpack # strings hldsupdatetool.bin | grep lseek |
1014 |
# lseek |
1015 |
# root@vapier 0 pdv_unpack # strace -elseek ./hldsupdatetool.bin |
1016 |
# lseek(3, -4, SEEK_END) = 2981250 |
1017 |
# thus we would pass in the value of '4' as the second parameter. |
1018 |
unpack_pdv() { |
1019 |
local src=$(find_unpackable_file $1) |
1020 |
local sizeoff_t=$2 |
1021 |
|
1022 |
[[ -z ${src} ]] && die "Could not locate source for '$1'" |
1023 |
[[ -z ${sizeoff_t} ]] && die "No idea what off_t size was used for this pdv :(" |
1024 |
|
1025 |
local shrtsrc=$(basename "${src}") |
1026 |
echo ">>> Unpacking ${shrtsrc} to ${PWD}" |
1027 |
local metaskip=`tail -c ${sizeoff_t} ${src} | hexdump -e \"%i\"` |
1028 |
local tailskip=`tail -c $((${sizeoff_t}*2)) ${src} | head -c ${sizeoff_t} | hexdump -e \"%i\"` |
1029 |
|
1030 |
# grab metadata for debug reasons |
1031 |
local metafile="$(emktemp)" |
1032 |
tail -c +$((${metaskip}+1)) ${src} > ${metafile} |
1033 |
|
1034 |
# rip out the final file name from the metadata |
1035 |
local datafile="`tail -c +$((${metaskip}+1)) ${src} | strings | head -n 1`" |
1036 |
datafile="`basename ${datafile}`" |
1037 |
|
1038 |
# now lets uncompress/untar the file if need be |
1039 |
local tmpfile="$(emktemp)" |
1040 |
tail -c +$((${tailskip}+1)) ${src} 2>/dev/null | head -c 512 > ${tmpfile} |
1041 |
|
1042 |
local iscompressed="`file -b ${tmpfile}`" |
1043 |
if [ "${iscompressed:0:8}" == "compress" ] ; then |
1044 |
iscompressed=1 |
1045 |
mv ${tmpfile}{,.Z} |
1046 |
gunzip ${tmpfile} |
1047 |
else |
1048 |
iscompressed=0 |
1049 |
fi |
1050 |
local istar="`file -b ${tmpfile}`" |
1051 |
if [ "${istar:0:9}" == "POSIX tar" ] ; then |
1052 |
istar=1 |
1053 |
else |
1054 |
istar=0 |
1055 |
fi |
1056 |
|
1057 |
#for some reason gzip dies with this ... dd cant provide buffer fast enough ? |
1058 |
#dd if=${src} ibs=${metaskip} count=1 \ |
1059 |
# | dd ibs=${tailskip} skip=1 \ |
1060 |
# | gzip -dc \ |
1061 |
# > ${datafile} |
1062 |
if [ ${iscompressed} -eq 1 ] ; then |
1063 |
if [ ${istar} -eq 1 ] ; then |
1064 |
tail -c +$((${tailskip}+1)) ${src} 2>/dev/null \ |
1065 |
| head -c $((${metaskip}-${tailskip})) \ |
1066 |
| tar -xzf - |
1067 |
else |
1068 |
tail -c +$((${tailskip}+1)) ${src} 2>/dev/null \ |
1069 |
| head -c $((${metaskip}-${tailskip})) \ |
1070 |
| gzip -dc \ |
1071 |
> ${datafile} |
1072 |
fi |
1073 |
else |
1074 |
if [ ${istar} -eq 1 ] ; then |
1075 |
tail -c +$((${tailskip}+1)) ${src} 2>/dev/null \ |
1076 |
| head -c $((${metaskip}-${tailskip})) \ |
1077 |
| tar --no-same-owner -xf - |
1078 |
else |
1079 |
tail -c +$((${tailskip}+1)) ${src} 2>/dev/null \ |
1080 |
| head -c $((${metaskip}-${tailskip})) \ |
1081 |
> ${datafile} |
1082 |
fi |
1083 |
fi |
1084 |
true |
1085 |
#[ -s "${datafile}" ] || die "failure unpacking pdv ('${metaskip}' '${tailskip}' '${datafile}')" |
1086 |
#assert "failure unpacking pdv ('${metaskip}' '${tailskip}' '${datafile}')" |
1087 |
} |
1088 |
|
1089 |
# Unpack those pesky makeself generated files ... |
1090 |
# They're shell scripts with the binary package tagged onto |
1091 |
# the end of the archive. Loki utilized the format as does |
1092 |
# many other game companies. |
1093 |
# |
1094 |
# Usage: unpack_makeself [file to unpack] [offset] [tail|dd] |
1095 |
# - If the file is not specified then unpack will utilize ${A}. |
1096 |
# - If the offset is not specified then we will attempt to extract |
1097 |
# the proper offset from the script itself. |
1098 |
unpack_makeself() { |
1099 |
local src_input=${1:-${A}} |
1100 |
local src=$(find_unpackable_file "${src_input}") |
1101 |
local skip=$2 |
1102 |
local exe=$3 |
1103 |
|
1104 |
[[ -z ${src} ]] && die "Could not locate source for '${src_input}'" |
1105 |
|
1106 |
local shrtsrc=$(basename "${src}") |
1107 |
echo ">>> Unpacking ${shrtsrc} to ${PWD}" |
1108 |
if [[ -z ${skip} ]] ; then |
1109 |
local ver=$(grep -a '#.*Makeself' "${src}" | awk '{print $NF}') |
1110 |
local skip=0 |
1111 |
exe=tail |
1112 |
case ${ver} in |
1113 |
1.5.*) # tested 1.5.{3,4,5} ... guessing 1.5.x series is same |
1114 |
skip=$(grep -a ^skip= "${src}" | cut -d= -f2) |
1115 |
;; |
1116 |
2.0|2.0.1) |
1117 |
skip=$(grep -a ^$'\t'tail "${src}" | awk '{print $2}' | cut -b2-) |
1118 |
;; |
1119 |
2.1.1) |
1120 |
skip=$(grep -a ^offset= "${src}" | awk '{print $2}' | cut -b2-) |
1121 |
let skip="skip + 1" |
1122 |
;; |
1123 |
2.1.2) |
1124 |
skip=$(grep -a ^offset= "${src}" | awk '{print $3}' | head -n 1) |
1125 |
let skip="skip + 1" |
1126 |
;; |
1127 |
2.1.3) |
1128 |
skip=`grep -a ^offset= "${src}" | awk '{print $3}'` |
1129 |
let skip="skip + 1" |
1130 |
;; |
1131 |
2.1.4|2.1.5) |
1132 |
skip=$(grep -a offset=.*head.*wc "${src}" | awk '{print $3}' | head -n 1) |
1133 |
skip=$(head -n ${skip} "${src}" | wc -c) |
1134 |
exe="dd" |
1135 |
;; |
1136 |
*) |
1137 |
eerror "I'm sorry, but I was unable to support the Makeself file." |
1138 |
eerror "The version I detected was '${ver}'." |
1139 |
eerror "Please file a bug about the file ${shrtsrc} at" |
1140 |
eerror "http://bugs.gentoo.org/ so that support can be added." |
1141 |
die "makeself version '${ver}' not supported" |
1142 |
;; |
1143 |
esac |
1144 |
debug-print "Detected Makeself version ${ver} ... using ${skip} as offset" |
1145 |
fi |
1146 |
case ${exe} in |
1147 |
tail) exe="tail -n +${skip} '${src}'";; |
1148 |
dd) exe="dd ibs=${skip} skip=1 obs=1024 conv=sync if='${src}'";; |
1149 |
*) die "makeself cant handle exe '${exe}'" |
1150 |
esac |
1151 |
|
1152 |
# lets grab the first few bytes of the file to figure out what kind of archive it is |
1153 |
local tmpfile="$(emktemp)" |
1154 |
eval ${exe} 2>/dev/null | head -c 512 > "${tmpfile}" |
1155 |
local filetype="$(file -b "${tmpfile}")" |
1156 |
case ${filetype} in |
1157 |
*tar\ archive) |
1158 |
eval ${exe} | tar --no-same-owner -xf - |
1159 |
;; |
1160 |
bzip2*) |
1161 |
eval ${exe} | bzip2 -dc | tar --no-same-owner -xf - |
1162 |
;; |
1163 |
gzip*) |
1164 |
eval ${exe} | tar --no-same-owner -xzf - |
1165 |
;; |
1166 |
compress*) |
1167 |
eval ${exe} | gunzip | tar --no-same-owner -xf - |
1168 |
;; |
1169 |
*) |
1170 |
eerror "Unknown filetype \"${filetype}\" ?" |
1171 |
false |
1172 |
;; |
1173 |
esac |
1174 |
assert "failure unpacking (${filetype}) makeself ${shrtsrc} ('${ver}' +${skip})" |
1175 |
} |
1176 |
|
1177 |
# Display a license for user to accept. |
1178 |
# |
1179 |
# Usage: check_license [license] |
1180 |
# - If the file is not specified then ${LICENSE} is used. |
1181 |
check_license() { |
1182 |
local lic=$1 |
1183 |
if [ -z "${lic}" ] ; then |
1184 |
lic="${PORTDIR}/licenses/${LICENSE}" |
1185 |
else |
1186 |
if [ -e "${PORTDIR}/licenses/${lic}" ] ; then |
1187 |
lic="${PORTDIR}/licenses/${lic}" |
1188 |
elif [ -e "${PWD}/${lic}" ] ; then |
1189 |
lic="${PWD}/${lic}" |
1190 |
elif [ -e "${lic}" ] ; then |
1191 |
lic="${lic}" |
1192 |
fi |
1193 |
fi |
1194 |
[ ! -f "${lic}" ] && die "Could not find requested license ${lic}" |
1195 |
local l="`basename ${lic}`" |
1196 |
|
1197 |
# here is where we check for the licenses the user already |
1198 |
# accepted ... if we don't find a match, we make the user accept |
1199 |
local shopts=$- |
1200 |
local alic |
1201 |
set -o noglob #so that bash doesn't expand "*" |
1202 |
for alic in ${ACCEPT_LICENSE} ; do |
1203 |
if [[ ${alic} == * || ${alic} == ${l} ]]; then |
1204 |
set +o noglob; set -${shopts} #reset old shell opts |
1205 |
return 0 |
1206 |
fi |
1207 |
done |
1208 |
set +o noglob; set -$shopts #reset old shell opts |
1209 |
|
1210 |
local licmsg="$(emktemp)" |
1211 |
cat << EOF > ${licmsg} |
1212 |
********************************************************** |
1213 |
The following license outlines the terms of use of this |
1214 |
package. You MUST accept this license for installation to |
1215 |
continue. When you are done viewing, hit 'q'. If you |
1216 |
CTRL+C out of this, the install will not run! |
1217 |
********************************************************** |
1218 |
|
1219 |
EOF |
1220 |
cat ${lic} >> ${licmsg} |
1221 |
${PAGER:-less} ${licmsg} || die "Could not execute pager (${PAGER}) to accept ${lic}" |
1222 |
einfon "Do you accept the terms of this license (${l})? [yes/no] " |
1223 |
read alic |
1224 |
case ${alic} in |
1225 |
yes|Yes|y|Y) |
1226 |
return 0 |
1227 |
;; |
1228 |
*) |
1229 |
echo;echo;echo |
1230 |
eerror "You MUST accept the license to continue! Exiting!" |
1231 |
die "Failed to accept license" |
1232 |
;; |
1233 |
esac |
1234 |
} |
1235 |
|
1236 |
# Aquire cd(s) for those lovely cd-based emerges. Yes, this violates |
1237 |
# the whole 'non-interactive' policy, but damnit I want CD support ! |
1238 |
# |
1239 |
# with these cdrom functions we handle all the user interaction and |
1240 |
# standardize everything. all you have to do is call cdrom_get_cds() |
1241 |
# and when the function returns, you can assume that the cd has been |
1242 |
# found at CDROM_ROOT. |
1243 |
# |
1244 |
# normally the cdrom functions will refer to the cds as 'cd #1', 'cd #2', |
1245 |
# etc... if you want to give the cds better names, then just export |
1246 |
# the CDROM_NAME_X variables before calling cdrom_get_cds(). |
1247 |
# |
1248 |
# for those multi cd ebuilds, see the cdrom_load_next_cd() below. |
1249 |
# |
1250 |
# Usage: cdrom_get_cds <file on cd1> [file on cd2] [file on cd3] [...] |
1251 |
# - this will attempt to locate a cd based upon a file that is on |
1252 |
# the cd ... the more files you give this function, the more cds |
1253 |
# the cdrom functions will handle |
1254 |
cdrom_get_cds() { |
1255 |
# first we figure out how many cds we're dealing with by |
1256 |
# the # of files they gave us |
1257 |
local cdcnt=0 |
1258 |
local f= |
1259 |
for f in "$@" ; do |
1260 |
((++cdcnt)) |
1261 |
export CDROM_CHECK_${cdcnt}="$f" |
1262 |
done |
1263 |
export CDROM_TOTAL_CDS=${cdcnt} |
1264 |
export CDROM_CURRENT_CD=1 |
1265 |
|
1266 |
# now we see if the user gave use CD_ROOT ... |
1267 |
# if they did, let's just believe them that it's correct |
1268 |
if [[ -n ${CD_ROOT}${CD_ROOT_1} ]] ; then |
1269 |
local var= |
1270 |
cdcnt=0 |
1271 |
while [[ ${cdcnt} -lt ${CDROM_TOTAL_CDS} ]] ; do |
1272 |
((++cdcnt)) |
1273 |
var="CD_ROOT_${cdcnt}" |
1274 |
[[ -z ${!var} ]] && var="CD_ROOT" |
1275 |
if [[ -z ${!var} ]] ; then |
1276 |
eerror "You must either use just the CD_ROOT" |
1277 |
eerror "or specify ALL the CD_ROOT_X variables." |
1278 |
eerror "In this case, you will need ${CDROM_TOTAL_CDS} CD_ROOT_X variables." |
1279 |
die "could not locate CD_ROOT_${cdcnt}" |
1280 |
fi |
1281 |
done |
1282 |
export CDROM_ROOT=${CD_ROOT_1:-${CD_ROOT}} |
1283 |
einfo "Found CD #${CDROM_CURRENT_CD} root at ${CDROM_ROOT}" |
1284 |
export CDROM_SET=-1 |
1285 |
for f in ${CDROM_CHECK_1//:/ } ; do |
1286 |
((++CDROM_SET)) |
1287 |
[[ -e ${CD_ROOT}/${f} ]] && break |
1288 |
done |
1289 |
export CDROM_MATCH=${f} |
1290 |
return |
1291 |
fi |
1292 |
|
1293 |
# User didn't help us out so lets make sure they know they can |
1294 |
# simplify the whole process ... |
1295 |
if [[ ${CDROM_TOTAL_CDS} -eq 1 ]] ; then |
1296 |
einfo "This ebuild will need the ${CDROM_NAME:-cdrom for ${PN}}" |
1297 |
echo |
1298 |
einfo "If you do not have the CD, but have the data files" |
1299 |
einfo "mounted somewhere on your filesystem, just export" |
1300 |
einfo "the variable CD_ROOT so that it points to the" |
1301 |
einfo "directory containing the files." |
1302 |
echo |
1303 |
einfo "For example:" |
1304 |
einfo "export CD_ROOT=/mnt/cdrom" |
1305 |
echo |
1306 |
else |
1307 |
einfo "This package will need access to ${CDROM_TOTAL_CDS} cds." |
1308 |
cdcnt=0 |
1309 |
while [[ ${cdcnt} -lt ${CDROM_TOTAL_CDS} ]] ; do |
1310 |
((++cdcnt)) |
1311 |
var="CDROM_NAME_${cdcnt}" |
1312 |
[[ ! -z ${!var} ]] && einfo " CD ${cdcnt}: ${!var}" |
1313 |
done |
1314 |
echo |
1315 |
einfo "If you do not have the CDs, but have the data files" |
1316 |
einfo "mounted somewhere on your filesystem, just export" |
1317 |
einfo "the following variables so they point to the right place:" |
1318 |
einfon "" |
1319 |
cdcnt=0 |
1320 |
while [[ ${cdcnt} -lt ${CDROM_TOTAL_CDS} ]] ; do |
1321 |
((++cdcnt)) |
1322 |
echo -n " CD_ROOT_${cdcnt}" |
1323 |
done |
1324 |
echo |
1325 |
einfo "Or, if you have all the files in the same place, or" |
1326 |
einfo "you only have one cdrom, you can export CD_ROOT" |
1327 |
einfo "and that place will be used as the same data source" |
1328 |
einfo "for all the CDs." |
1329 |
echo |
1330 |
einfo "For example:" |
1331 |
einfo "export CD_ROOT_1=/mnt/cdrom" |
1332 |
echo |
1333 |
fi |
1334 |
|
1335 |
export CDROM_SET="" |
1336 |
export CDROM_CURRENT_CD=0 |
1337 |
cdrom_load_next_cd |
1338 |
} |
1339 |
|
1340 |
# this is only used when you need access to more than one cd. |
1341 |
# when you have finished using the first cd, just call this function. |
1342 |
# when it returns, CDROM_ROOT will be pointing to the second cd. |
1343 |
# remember, you can only go forward in the cd chain, you can't go back. |
1344 |
cdrom_load_next_cd() { |
1345 |
local var |
1346 |
((++CDROM_CURRENT_CD)) |
1347 |
|
1348 |
unset CDROM_ROOT |
1349 |
var=CD_ROOT_${CDROM_CURRENT_CD} |
1350 |
[[ -z ${!var} ]] && var="CD_ROOT" |
1351 |
if [[ -z ${!var} ]] ; then |
1352 |
var="CDROM_CHECK_${CDROM_CURRENT_CD}" |
1353 |
_cdrom_locate_file_on_cd ${!var} |
1354 |
else |
1355 |
export CDROM_ROOT=${!var} |
1356 |
fi |
1357 |
|
1358 |
einfo "Found CD #${CDROM_CURRENT_CD} root at ${CDROM_ROOT}" |
1359 |
} |
1360 |
|
1361 |
# this is used internally by the cdrom_get_cds() and cdrom_load_next_cd() |
1362 |
# functions. this should *never* be called from an ebuild. |
1363 |
# all it does is try to locate a give file on a cd ... if the cd isn't |
1364 |
# found, then a message asking for the user to insert the cdrom will be |
1365 |
# displayed and we'll hang out here until: |
1366 |
# (1) the file is found on a mounted cdrom |
1367 |
# (2) the user hits CTRL+C |
1368 |
_cdrom_locate_file_on_cd() { |
1369 |
local mline="" |
1370 |
local showedmsg=0 |
1371 |
|
1372 |
while [[ -z ${CDROM_ROOT} ]] ; do |
1373 |
local i=0 |
1374 |
local -a cdset=(${*//:/ }) |
1375 |
if [[ -n ${CDROM_SET} ]] ; then |
1376 |
cdset=(${cdset[${CDROM_SET}]}) |
1377 |
fi |
1378 |
|
1379 |
while [[ -n ${cdset[${i}]} ]] ; do |
1380 |
local dir=$(dirname ${cdset[${i}]}) |
1381 |
local file=$(basename ${cdset[${i}]}) |
1382 |
|
1383 |
for mline in $(mount | gawk '/(iso|cdrom|fs=cdfss)/ {print $3}') ; do |
1384 |
[[ -d ${mline}/${dir} ]] || continue |
1385 |
if [[ -n $(find ${mline}/${dir} -maxdepth 1 -iname ${file}) ]] ; then |
1386 |
export CDROM_ROOT=${mline} |
1387 |
export CDROM_SET=${i} |
1388 |
export CDROM_MATCH=${cdset[${i}]} |
1389 |
return |
1390 |
fi |
1391 |
done |
1392 |
|
1393 |
((++i)) |
1394 |
done |
1395 |
|
1396 |
echo |
1397 |
if [[ ${showedmsg} -eq 0 ]] ; then |
1398 |
if [[ ${CDROM_TOTAL_CDS} -eq 1 ]] ; then |
1399 |
if [[ -z ${CDROM_NAME} ]] ; then |
1400 |
einfo "Please insert+mount the cdrom for ${PN} now !" |
1401 |
else |
1402 |
einfo "Please insert+mount the ${CDROM_NAME} cdrom now !" |
1403 |
fi |
1404 |
else |
1405 |
if [[ -z ${CDROM_NAME_1} ]] ; then |
1406 |
einfo "Please insert+mount cd #${CDROM_CURRENT_CD} for ${PN} now !" |
1407 |
else |
1408 |
local var="CDROM_NAME_${CDROM_CURRENT_CD}" |
1409 |
einfo "Please insert+mount the ${!var} cdrom now !" |
1410 |
fi |
1411 |
fi |
1412 |
showedmsg=1 |
1413 |
fi |
1414 |
einfo "Press return to scan for the cd again" |
1415 |
einfo "or hit CTRL+C to abort the emerge." |
1416 |
echo |
1417 |
einfo "If you are having trouble with the detection" |
1418 |
einfo "of your CD, it is possible that you do not have" |
1419 |
einfo "Joliet support enabled in your kernel. Please" |
1420 |
einfo "check that CONFIG_JOLIET is enabled in your kernel." |
1421 |
read || die "something is screwed with your system" |
1422 |
done |
1423 |
} |
1424 |
|
1425 |
# Make sure that LINGUAS only contains languages that |
1426 |
# a package can support |
1427 |
# |
1428 |
# usage: strip-linguas <allow LINGUAS> |
1429 |
# strip-linguas -i <directories of .po files> |
1430 |
# strip-linguas -u <directories of .po files> |
1431 |
# |
1432 |
# The first form allows you to specify a list of LINGUAS. |
1433 |
# The -i builds a list of po files found in all the |
1434 |
# directories and uses the intersection of the lists. |
1435 |
# The -u builds a list of po files found in all the |
1436 |
# directories and uses the union of the lists. |
1437 |
strip-linguas() { |
1438 |
local ls newls |
1439 |
if [[ $1 == "-i" ]] || [[ $1 == "-u" ]] ; then |
1440 |
local op=$1; shift |
1441 |
ls=" $(find "$1" -name '*.po' -exec basename {} \;) "; shift |
1442 |
local d f |
1443 |
for d in "$@" ; do |
1444 |
if [[ ${op} == "-u" ]] ; then |
1445 |
newls=${ls} |
1446 |
else |
1447 |
newls="" |
1448 |
fi |
1449 |
for f in $(find "$d" -name '*.po' -exec basename {} \;) ; do |
1450 |
if [[ ${op} == "-i" ]] ; then |
1451 |
[[ ${ls/ ${f} /} != ${ls} ]] && newls="${newls} ${f}" |
1452 |
else |
1453 |
[[ ${ls/ ${f} /} == ${ls} ]] && newls="${newls} ${f}" |
1454 |
fi |
1455 |
done |
1456 |
ls=${newls} |
1457 |
done |
1458 |
ls=${ls//.po} |
1459 |
else |
1460 |
ls=$@ |
1461 |
fi |
1462 |
|
1463 |
ls=" ${ls} " |
1464 |
newls="" |
1465 |
for f in ${LINGUAS} ; do |
1466 |
if [[ ${ls/ ${f} /} != ${ls} ]] ; then |
1467 |
newls="${newls} ${f}" |
1468 |
else |
1469 |
ewarn "Sorry, but ${PN} does not support the ${f} LINGUA" |
1470 |
fi |
1471 |
done |
1472 |
if [[ -z ${newls} ]] ; then |
1473 |
export LINGUAS="" |
1474 |
else |
1475 |
export LINGUAS=${newls:1} |
1476 |
fi |
1477 |
} |
1478 |
|
1479 |
# moved from kernel.eclass since they are generally useful outside of |
1480 |
# kernel.eclass -iggy (20041002) |
1481 |
|
1482 |
# the following functions are useful in kernel module ebuilds, etc. |
1483 |
# for an example see ivtv or drbd ebuilds |
1484 |
|
1485 |
# set's ARCH to match what the kernel expects |
1486 |
set_arch_to_kernel() { |
1487 |
i=10 |
1488 |
while ((i--)) ; do |
1489 |
ewarn "PLEASE UPDATE TO YOUR PACKAGE TO USE linux-info.eclass" |
1490 |
done |
1491 |
export EUTILS_ECLASS_PORTAGE_ARCH="${ARCH}" |
1492 |
case ${ARCH} in |
1493 |
x86) export ARCH="i386";; |
1494 |
amd64) export ARCH="x86_64";; |
1495 |
hppa) export ARCH="parisc";; |
1496 |
mips) export ARCH="mips";; |
1497 |
sparc) export ARCH="$(tc-arch-kernel)";; # Yeah this is ugly, but it's even WORSE if you don't do this. linux-info.eclass's set_arch_to_kernel is fixed, but won't get used over this one! |
1498 |
*) export ARCH="${ARCH}";; |
1499 |
esac |
1500 |
} |
1501 |
|
1502 |
# set's ARCH back to what portage expects |
1503 |
set_arch_to_portage() { |
1504 |
i=10 |
1505 |
while ((i--)) ; do |
1506 |
ewarn "PLEASE UPDATE TO YOUR PACKAGE TO USE linux-info.eclass" |
1507 |
done |
1508 |
export ARCH="${EUTILS_ECLASS_PORTAGE_ARCH}" |
1509 |
} |
1510 |
|
1511 |
# Jeremy Huddleston <eradicator@gentoo.org>: |
1512 |
# preserve_old_lib /path/to/libblah.so.0 |
1513 |
# preserve_old_lib_notify /path/to/libblah.so.0 |
1514 |
# |
1515 |
# These functions are useful when a lib in your package changes --library. Such |
1516 |
# an example might be from libogg.so.0 to libogg.so.1. Removing libogg.so.0 |
1517 |
# would break packages that link against it. Most people get around this |
1518 |
# by using the portage SLOT mechanism, but that is not always a relevant |
1519 |
# solution, so instead you can add the following to your ebuilds: |
1520 |
# |
1521 |
# src_install() { |
1522 |
# ... |
1523 |
# preserve_old_lib /usr/$(get_libdir)/libogg.so.0 |
1524 |
# ... |
1525 |
# } |
1526 |
# |
1527 |
# pkg_postinst() { |
1528 |
# ... |
1529 |
# preserve_old_lib_notify /usr/$(get_libdir)/libogg.so.0 |
1530 |
# ... |
1531 |
# } |
1532 |
|
1533 |
preserve_old_lib() { |
1534 |
LIB=$1 |
1535 |
|
1536 |
if [ -n "${LIB}" -a -f "${ROOT}${LIB}" ]; then |
1537 |
SONAME=`basename ${LIB}` |
1538 |
DIRNAME=`dirname ${LIB}` |
1539 |
|
1540 |
dodir ${DIRNAME} |
1541 |
cp ${ROOT}${LIB} ${D}${DIRNAME} |
1542 |
touch ${D}${LIB} |
1543 |
fi |
1544 |
} |
1545 |
|
1546 |
preserve_old_lib_notify() { |
1547 |
LIB=$1 |
1548 |
|
1549 |
if [ -n "${LIB}" -a -f "${ROOT}${LIB}" ]; then |
1550 |
SONAME=`basename ${LIB}` |
1551 |
|
1552 |
ewarn "An old version of an installed library was detected on your system." |
1553 |
ewarn "In order to avoid breaking packages that link against it, this older version" |
1554 |
ewarn "is not being removed. In order to make full use of this newer version," |
1555 |
ewarn "you will need to execute the following command:" |
1556 |
ewarn " revdep-rebuild --library ${SONAME}" |
1557 |
ewarn |
1558 |
ewarn "After doing that, you can safely remove ${LIB}" |
1559 |
ewarn "Note: 'emerge gentoolkit' to get revdep-rebuild" |
1560 |
fi |
1561 |
} |
1562 |
|
1563 |
# Hack for people to figure out if a package was built with |
1564 |
# certain USE flags |
1565 |
# |
1566 |
# Usage: built_with_use [-a|-o] <DEPEND ATOM> <List of USE flags> |
1567 |
# ex: built_with_use xchat gtk2 |
1568 |
# |
1569 |
# Flags: -a all USE flags should be utilized |
1570 |
# -o at least one USE flag should be utilized |
1571 |
# Note: the default flag is '-a' |
1572 |
built_with_use() { |
1573 |
local opt=$1 |
1574 |
[[ ${opt:0:1} = "-" ]] && shift || opt="-a" |
1575 |
|
1576 |
local PKG=$(best_version $1) |
1577 |
shift |
1578 |
|
1579 |
local USEFILE=${ROOT}/var/db/pkg/${PKG}/USE |
1580 |
|
1581 |
# if the USE file doesnt exist, assume the $PKG is either |
1582 |
# injected or package.provided |
1583 |
[[ ! -e ${USEFILE} ]] && return 0 |
1584 |
|
1585 |
local USE_BUILT=$(<${USEFILE}) |
1586 |
while [[ $# -gt 0 ]] ; do |
1587 |
if [[ ${opt} = "-o" ]] ; then |
1588 |
has $1 ${USE_BUILT} && return 0 |
1589 |
else |
1590 |
has $1 ${USE_BUILT} || return 1 |
1591 |
fi |
1592 |
shift |
1593 |
done |
1594 |
[[ ${opt} = "-a" ]] |
1595 |
} |
1596 |
|
1597 |
# Many configure scripts wrongly bail when a C++ compiler |
1598 |
# could not be detected. #73450 |
1599 |
epunt_cxx() { |
1600 |
local dir=$1 |
1601 |
[[ -z ${dir} ]] && dir=${S} |
1602 |
ebegin "Removing useless C++ checks" |
1603 |
local f |
1604 |
for f in $(find ${dir} -name configure) ; do |
1605 |
patch -p0 "${f}" "${PORTDIR}/eclass/ELT-patches/nocxx/nocxx.patch" > /dev/null |
1606 |
done |
1607 |
eend 0 |
1608 |
} |
1609 |
|
1610 |
# dopamd <file> [more files] |
1611 |
# |
1612 |
# Install pam auth config file in /etc/pam.d |
1613 |
dopamd() { |
1614 |
[[ -z $1 ]] && die "dopamd requires at least one argument" |
1615 |
|
1616 |
use pam || return 0 |
1617 |
|
1618 |
INSDESTTREE=/etc/pam.d \ |
1619 |
doins "$@" || die "failed to install $@" |
1620 |
} |
1621 |
# newpamd <old name> <new name> |
1622 |
# |
1623 |
# Install pam file <old name> as <new name> in /etc/pam.d |
1624 |
newpamd() { |
1625 |
[[ $# -ne 2 ]] && die "newpamd requires two arguements" |
1626 |
|
1627 |
use pam || return 0 |
1628 |
|
1629 |
INSDESTTREE=/etc/pam.d \ |
1630 |
newins "$1" "$2" || die "failed to install $1 as $2" |
1631 |
} |
1632 |
|
1633 |
# make a wrapper script ... |
1634 |
# NOTE: this was originally games_make_wrapper, but I noticed other places where |
1635 |
# this could be used, so I have moved it here and made it not games-specific |
1636 |
# -- wolf31o2 |
1637 |
# $1 == wrapper name |
1638 |
# $2 == binary to run |
1639 |
# $3 == directory to chdir before running binary |
1640 |
# $4 == extra LD_LIBRARY_PATH's (make it : delimited) |
1641 |
# $5 == path for wrapper |
1642 |
make_wrapper() { |
1643 |
local wrapper=$1 bin=$2 chdir=$3 libdir=$4 path=$5 |
1644 |
local tmpwrapper=$(emktemp) |
1645 |
# We don't want to quote ${bin} so that people can pass complex |
1646 |
# things as $bin ... "./someprog --args" |
1647 |
cat << EOF > "${tmpwrapper}" |
1648 |
#!/bin/sh |
1649 |
cd "${chdir:-.}" |
1650 |
if [ -n "${libdir}" ] ; then |
1651 |
if [ "\${LD_LIBRARY_PATH+set}" = "set" ] ; then |
1652 |
export LD_LIBRARY_PATH="\${LD_LIBRARY_PATH}:${libdir}" |
1653 |
else |
1654 |
export LD_LIBRARY_PATH="${libdir}" |
1655 |
fi |
1656 |
fi |
1657 |
exec ${bin} "\$@" |
1658 |
EOF |
1659 |
chmod go+rx "${tmpwrapper}" |
1660 |
if [[ -n ${path} ]] ; then |
1661 |
exeinto "${path}" |
1662 |
newexe "${tmpwrapper}" "${wrapper}" |
1663 |
else |
1664 |
newbin "${tmpwrapper}" "${wrapper}" |
1665 |
fi |
1666 |
} |