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