| 1 | # Copyright 1999-2005 Gentoo Foundation |
1 | # Copyright 1999-2005 Gentoo Foundation |
| 2 | # Distributed under the terms of the GNU General Public License v2 |
2 | # Distributed under the terms of the GNU General Public License v2 |
| 3 | # $Header: /var/cvsroot/gentoo-x86/eclass/eutils.eclass,v 1.179 2005/05/28 05:50:29 vapier Exp $ |
3 | # $Header: /var/cvsroot/gentoo-x86/eclass/eutils.eclass,v 1.228 2006/03/10 23:24:21 vapier Exp $ |
| 4 | # |
4 | # |
| 5 | # Author: Martin Schlemmer <azarah@gentoo.org> |
5 | # Author: Martin Schlemmer <azarah@gentoo.org> |
| 6 | # |
6 | # |
| 7 | # This eclass is for general purpose functions that most ebuilds |
7 | # This eclass is for general purpose functions that most ebuilds |
| 8 | # have to implement themselves. |
8 | # have to implement themselves. |
| 9 | # |
9 | # |
| 10 | # NB: If you add anything, please comment it! |
10 | # NB: If you add anything, please comment it! |
| 11 | |
11 | |
| 12 | inherit multilib |
12 | inherit multilib portability |
| 13 | ECLASS=eutils |
|
|
| 14 | INHERITED="$INHERITED $ECLASS" |
|
|
| 15 | |
13 | |
| 16 | DEPEND="!bootstrap? ( sys-devel/patch )" |
14 | DEPEND="!bootstrap? ( sys-devel/patch )" |
|
|
15 | # sys-apps/shadow is needed for useradd, etc, bug #94745. |
| 17 | |
16 | |
| 18 | DESCRIPTION="Based on the ${ECLASS} eclass" |
17 | DESCRIPTION="Based on the ${ECLASS} eclass" |
| 19 | |
18 | |
| 20 | # Wait for the supplied number of seconds. If no argument is supplied, defaults |
19 | # Wait for the supplied number of seconds. If no argument is supplied, defaults |
| 21 | # to five seconds. If the EPAUSE_IGNORE env var is set, don't wait. If we're not |
20 | # to five seconds. If the EPAUSE_IGNORE env var is set, don't wait. If we're not |
| … | |
… | |
| 61 | # to point to the latest version of the library present. |
60 | # to point to the latest version of the library present. |
| 62 | # |
61 | # |
| 63 | # <azarah@gentoo.org> (26 Oct 2002) |
62 | # <azarah@gentoo.org> (26 Oct 2002) |
| 64 | # |
63 | # |
| 65 | gen_usr_ldscript() { |
64 | gen_usr_ldscript() { |
| 66 | local libdir="$(get_libdir)" |
65 | local lib libdir=$(get_libdir) |
| 67 | # Just make sure it exists |
66 | # Just make sure it exists |
| 68 | dodir /usr/${libdir} |
67 | dodir /usr/${libdir} |
| 69 | |
68 | |
| 70 | for lib in "${@}" ; do |
69 | for lib in "${@}" ; do |
| 71 | cat > "${D}/usr/${libdir}/${lib}" <<-END_LDSCRIPT |
70 | cat > "${D}/usr/${libdir}/${lib}" <<-END_LDSCRIPT |
| 72 | /* GNU ld script |
71 | /* GNU ld script |
| 73 | Since Gentoo has critical dynamic libraries |
72 | Since Gentoo has critical dynamic libraries |
| 74 | in /lib, and the static versions in /usr/lib, |
73 | in /lib, and the static versions in /usr/lib, |
| 75 | we need to have a "fake" dynamic lib in /usr/lib, |
74 | we need to have a "fake" dynamic lib in /usr/lib, |
| 76 | otherwise we run into linking problems. |
75 | otherwise we run into linking problems. |
| 77 | |
76 | |
| 78 | See bug http://bugs.gentoo.org/4411 for more info. |
77 | See bug http://bugs.gentoo.org/4411 for more info. |
| 79 | */ |
78 | */ |
| 80 | GROUP ( /${libdir}/${lib} ) |
79 | GROUP ( /${libdir}/${lib} ) |
| 81 | END_LDSCRIPT |
80 | END_LDSCRIPT |
| 82 | fperms a+x "/usr/${libdir}/${lib}" |
81 | fperms a+x "/usr/${libdir}/${lib}" || die "could not change perms on ${lib}" |
| 83 | done |
82 | done |
| 84 | } |
83 | } |
| 85 | |
84 | |
| 86 | # Simple function to draw a line consisting of '=' the same length as $* |
|
|
| 87 | # - only to be used by epatch() |
|
|
| 88 | # |
|
|
| 89 | # <azarah@gentoo.org> (11 Nov 2002) |
|
|
| 90 | # |
|
|
| 91 | draw_line() { |
|
|
| 92 | local i=0 |
|
|
| 93 | local str_length="" |
|
|
| 94 | |
|
|
| 95 | # Handle calls that do not have args, or wc not being installed ... |
|
|
| 96 | if [ -z "$1" -o ! -x "$(which wc 2>/dev/null)" ] |
|
|
| 97 | then |
|
|
| 98 | echo "===============================================================" |
|
|
| 99 | return 0 |
|
|
| 100 | fi |
|
|
| 101 | |
|
|
| 102 | # Get the length of $* |
|
|
| 103 | str_length="$(echo -n "$*" | wc -m)" |
|
|
| 104 | |
|
|
| 105 | while [ "$i" -lt "${str_length}" ] |
|
|
| 106 | do |
|
|
| 107 | echo -n "=" |
|
|
| 108 | |
|
|
| 109 | i=$((i + 1)) |
|
|
| 110 | done |
|
|
| 111 | |
|
|
| 112 | echo |
|
|
| 113 | |
|
|
| 114 | return 0 |
|
|
| 115 | } |
|
|
| 116 | |
85 | |
| 117 | # Default directory where patches are located |
86 | # Default directory where patches are located |
| 118 | EPATCH_SOURCE="${WORKDIR}/patch" |
87 | EPATCH_SOURCE="${WORKDIR}/patch" |
| 119 | # Default extension for patches |
88 | # Default extension for patches |
| 120 | EPATCH_SUFFIX="patch.bz2" |
89 | EPATCH_SUFFIX="patch.bz2" |
| … | |
… | |
| 167 | # hand its a directory, it will set EPATCH_SOURCE to this. |
136 | # hand its a directory, it will set EPATCH_SOURCE to this. |
| 168 | # |
137 | # |
| 169 | # <azarah@gentoo.org> (10 Nov 2002) |
138 | # <azarah@gentoo.org> (10 Nov 2002) |
| 170 | # |
139 | # |
| 171 | epatch() { |
140 | epatch() { |
|
|
141 | _epatch_draw_line() { |
|
|
142 | # this func produces a lot of pointless noise when debugging is turned on ... |
|
|
143 | local is_debug=0 |
|
|
144 | [[ $- == *x* ]] && is_debug=1 && set +x |
|
|
145 | |
|
|
146 | local i=0 str_length="" str_out="" |
|
|
147 | |
|
|
148 | # Handle calls that do not have args, or wc not being installed ... |
|
|
149 | if [[ -z $1 ]] || ! type -p wc >/dev/null ; then |
|
|
150 | str_length=65 |
|
|
151 | else |
|
|
152 | str_length=$(echo -n "$*" | wc -m) |
|
|
153 | fi |
|
|
154 | |
|
|
155 | while ((i++ < ${str_length})) ; do |
|
|
156 | str_out="${str_out}=" |
|
|
157 | done |
|
|
158 | echo ${str_out} |
|
|
159 | |
|
|
160 | [[ ${is_debug} -eq 1 ]] && set -x |
|
|
161 | return 0 |
|
|
162 | } |
|
|
163 | _epatch_assert() { local _pipestatus=${PIPESTATUS[*]}; [[ ${_pipestatus// /} -eq 0 ]] ; } |
| 172 | local PIPE_CMD="" |
164 | local PIPE_CMD="" |
| 173 | local STDERR_TARGET="${T}/$$.out" |
165 | local STDERR_TARGET="${T}/$$.out" |
| 174 | local PATCH_TARGET="${T}/$$.patch" |
166 | local PATCH_TARGET="${T}/$$.patch" |
| 175 | local PATCH_SUFFIX="" |
167 | local PATCH_SUFFIX="" |
| 176 | local SINGLE_PATCH="no" |
168 | local SINGLE_PATCH="no" |
| 177 | local x="" |
169 | local x="" |
|
|
170 | |
|
|
171 | unset P4CONFIG P4PORT P4USER # keep perforce at bay #56402 |
| 178 | |
172 | |
| 179 | if [ "$#" -gt 1 ] |
173 | if [ "$#" -gt 1 ] |
| 180 | then |
174 | then |
| 181 | local m="" |
175 | local m="" |
| 182 | for m in "$@" ; do |
176 | for m in "$@" ; do |
| … | |
… | |
| 283 | |
277 | |
| 284 | # Allow for prefix to differ ... im lazy, so shoot me :/ |
278 | # Allow for prefix to differ ... im lazy, so shoot me :/ |
| 285 | while [ "${count}" -lt 5 ] |
279 | while [ "${count}" -lt 5 ] |
| 286 | do |
280 | do |
| 287 | # Generate some useful debug info ... |
281 | # Generate some useful debug info ... |
| 288 | draw_line "***** ${patchname} *****" >> ${STDERR_TARGET%/*}/${patchname}-${STDERR_TARGET##*/} |
282 | _epatch_draw_line "***** ${patchname} *****" >> ${STDERR_TARGET%/*}/${patchname}-${STDERR_TARGET##*/} |
| 289 | echo >> ${STDERR_TARGET%/*}/${patchname}-${STDERR_TARGET##*/} |
283 | echo >> ${STDERR_TARGET%/*}/${patchname}-${STDERR_TARGET##*/} |
| 290 | |
284 | |
| 291 | if [ "${PATCH_SUFFIX}" != "patch" ] |
285 | if [ "${PATCH_SUFFIX}" != "patch" ] |
| 292 | then |
286 | then |
| 293 | echo -n "PIPE_COMMAND: " >> ${STDERR_TARGET%/*}/${patchname}-${STDERR_TARGET##*/} |
287 | echo -n "PIPE_COMMAND: " >> ${STDERR_TARGET%/*}/${patchname}-${STDERR_TARGET##*/} |
| … | |
… | |
| 298 | |
292 | |
| 299 | echo -n "PATCH COMMAND: " >> ${STDERR_TARGET%/*}/${patchname}-${STDERR_TARGET##*/} |
293 | echo -n "PATCH COMMAND: " >> ${STDERR_TARGET%/*}/${patchname}-${STDERR_TARGET##*/} |
| 300 | echo "patch -p${count} ${popts} < ${PATCH_TARGET}" >> ${STDERR_TARGET%/*}/${patchname}-${STDERR_TARGET##*/} |
294 | echo "patch -p${count} ${popts} < ${PATCH_TARGET}" >> ${STDERR_TARGET%/*}/${patchname}-${STDERR_TARGET##*/} |
| 301 | |
295 | |
| 302 | echo >> ${STDERR_TARGET%/*}/${patchname}-${STDERR_TARGET##*/} |
296 | echo >> ${STDERR_TARGET%/*}/${patchname}-${STDERR_TARGET##*/} |
| 303 | draw_line "***** ${patchname} *****" >> ${STDERR_TARGET%/*}/${patchname}-${STDERR_TARGET##*/} |
297 | _epatch_draw_line "***** ${patchname} *****" >> ${STDERR_TARGET%/*}/${patchname}-${STDERR_TARGET##*/} |
| 304 | |
298 | |
| 305 | if [ "${PATCH_SUFFIX}" != "patch" ] |
299 | if [ "${PATCH_SUFFIX}" != "patch" ] |
| 306 | then |
300 | then |
| 307 | if ! (${PIPE_CMD} ${x} > ${PATCH_TARGET}) >> ${STDERR_TARGET%/*}/${patchname}-${STDERR_TARGET##*/} 2>&1 |
301 | if ! (${PIPE_CMD} ${x} > ${PATCH_TARGET}) >> ${STDERR_TARGET%/*}/${patchname}-${STDERR_TARGET##*/} 2>&1 |
| 308 | then |
302 | then |
| … | |
… | |
| 312 | count=5 |
306 | count=5 |
| 313 | break |
307 | break |
| 314 | fi |
308 | fi |
| 315 | fi |
309 | fi |
| 316 | |
310 | |
| 317 | if (cat ${PATCH_TARGET} | patch -p${count} ${popts} --dry-run -f) >> ${STDERR_TARGET%/*}/${patchname}-${STDERR_TARGET##*/} 2>&1 |
311 | if (cat ${PATCH_TARGET} | patch -p${count} ${popts} --dry-run -f ; _epatch_assert) >> ${STDERR_TARGET%/*}/${patchname}-${STDERR_TARGET##*/} 2>&1 |
| 318 | then |
312 | then |
| 319 | draw_line "***** ${patchname} *****" > ${STDERR_TARGET%/*}/${patchname}-${STDERR_TARGET##*/}.real |
313 | _epatch_draw_line "***** ${patchname} *****" > ${STDERR_TARGET%/*}/${patchname}-${STDERR_TARGET##*/}.real |
| 320 | echo >> ${STDERR_TARGET%/*}/${patchname}-${STDERR_TARGET##*/}.real |
314 | echo >> ${STDERR_TARGET%/*}/${patchname}-${STDERR_TARGET##*/}.real |
| 321 | echo "ACTUALLY APPLYING ${patchname} ..." >> ${STDERR_TARGET%/*}/${patchname}-${STDERR_TARGET##*/}.real |
315 | echo "ACTUALLY APPLYING ${patchname} ..." >> ${STDERR_TARGET%/*}/${patchname}-${STDERR_TARGET##*/}.real |
| 322 | echo >> ${STDERR_TARGET%/*}/${patchname}-${STDERR_TARGET##*/}.real |
316 | echo >> ${STDERR_TARGET%/*}/${patchname}-${STDERR_TARGET##*/}.real |
| 323 | draw_line "***** ${patchname} *****" >> ${STDERR_TARGET%/*}/${patchname}-${STDERR_TARGET##*/}.real |
317 | _epatch_draw_line "***** ${patchname} *****" >> ${STDERR_TARGET%/*}/${patchname}-${STDERR_TARGET##*/}.real |
| 324 | |
318 | |
| 325 | cat ${PATCH_TARGET} | patch -p${count} ${popts} >> ${STDERR_TARGET%/*}/${patchname}-${STDERR_TARGET##*/}.real 2>&1 |
319 | cat ${PATCH_TARGET} | patch -p${count} ${popts} >> ${STDERR_TARGET%/*}/${patchname}-${STDERR_TARGET##*/}.real 2>&1 |
|
|
320 | _epatch_assert |
| 326 | |
321 | |
| 327 | if [ "$?" -ne 0 ] |
322 | if [ "$?" -ne 0 ] |
| 328 | then |
323 | then |
| 329 | cat ${STDERR_TARGET%/*}/${patchname}-${STDERR_TARGET##*/}.real >> ${STDERR_TARGET%/*}/${patchname}-${STDERR_TARGET##*/} |
324 | cat ${STDERR_TARGET%/*}/${patchname}-${STDERR_TARGET##*/}.real >> ${STDERR_TARGET%/*}/${patchname}-${STDERR_TARGET##*/} |
| 330 | echo |
325 | echo |
| … | |
… | |
| 376 | # vapier@gentoo.org |
371 | # vapier@gentoo.org |
| 377 | # |
372 | # |
| 378 | # Takes just 1 optional parameter (the directory to create tmpfile in) |
373 | # Takes just 1 optional parameter (the directory to create tmpfile in) |
| 379 | emktemp() { |
374 | emktemp() { |
| 380 | local exe="touch" |
375 | local exe="touch" |
| 381 | [ "$1" == "-d" ] && exe="mkdir" && shift |
376 | [[ $1 == -d ]] && exe="mkdir" && shift |
| 382 | local topdir="$1" |
377 | local topdir=$1 |
| 383 | |
378 | |
| 384 | if [ -z "${topdir}" ] |
379 | if [[ -z ${topdir} ]] ; then |
| 385 | then |
|
|
| 386 | [ -z "${T}" ] \ |
380 | [[ -z ${T} ]] \ |
| 387 | && topdir="/tmp" \ |
381 | && topdir="/tmp" \ |
| 388 | || topdir="${T}" |
382 | || topdir=${T} |
| 389 | fi |
383 | fi |
| 390 | |
384 | |
| 391 | if [ -z "$(type -p mktemp)" ] |
385 | if [[ -z $(type -p mktemp) ]] ; then |
| 392 | then |
|
|
| 393 | local tmp=/ |
386 | local tmp=/ |
| 394 | while [ -e "${tmp}" ] ; do |
387 | while [[ -e ${tmp} ]] ; do |
| 395 | tmp="${topdir}/tmp.${RANDOM}.${RANDOM}.${RANDOM}" |
388 | tmp=${topdir}/tmp.${RANDOM}.${RANDOM}.${RANDOM} |
| 396 | done |
389 | done |
| 397 | ${exe} "${tmp}" |
390 | ${exe} "${tmp}" || ${exe} -p "${tmp}" |
| 398 | echo "${tmp}" |
391 | echo "${tmp}" |
| 399 | else |
392 | else |
| 400 | [ "${exe}" == "touch" ] \ |
393 | if [[ ${exe} == "touch" ]] ; then |
| 401 | && exe="-p" \ |
394 | [[ ${USERLAND} == "GNU" ]] \ |
| 402 | || exe="-d" |
395 | && mktemp -p "${topdir}" \ |
| 403 | mktemp ${exe} "${topdir}" |
396 | || TMPDIR="${topdir}" mktemp -t tmp |
|
|
397 | else |
|
|
398 | [[ ${USERLAND} == "GNU" ]] \ |
|
|
399 | && mktemp -d "${topdir}" \ |
|
|
400 | || TMPDIR="${topdir}" mktemp -dt tmp |
|
|
401 | fi |
| 404 | fi |
402 | fi |
| 405 | } |
403 | } |
| 406 | |
404 | |
| 407 | # Small wrapper for getent (Linux), nidump (Mac OS X), |
405 | # Small wrapper for getent (Linux), nidump (Mac OS X), |
| 408 | # and pw (FreeBSD) used in enewuser()/enewgroup() |
406 | # and pw (FreeBSD) used in enewuser()/enewgroup() |
| 409 | # Joe Jezak <josejx@gmail.com> and usata@gentoo.org |
407 | # Joe Jezak <josejx@gmail.com> and usata@gentoo.org |
| 410 | # FBSD stuff: Aaron Walker <ka0ttic@gentoo.org> |
408 | # FBSD stuff: Aaron Walker <ka0ttic@gentoo.org> |
| 411 | # |
409 | # |
| 412 | # egetent(database, key) |
410 | # egetent(database, key) |
| 413 | egetent() { |
411 | egetent() { |
| 414 | if [[ "${USERLAND}" == "Darwin" ]] ; then |
412 | case ${CHOST} in |
|
|
413 | *-darwin*) |
| 415 | case "$2" in |
414 | case "$2" in |
| 416 | *[!0-9]*) # Non numeric |
415 | *[!0-9]*) # Non numeric |
| 417 | nidump $1 . | awk -F":" "{ if (\$1 ~ /^$2$/) {print \$0;exit;} }" |
416 | nidump $1 . | awk -F":" "{ if (\$1 ~ /^$2$/) {print \$0;exit;} }" |
| 418 | ;; |
417 | ;; |
| 419 | *) # Numeric |
418 | *) # Numeric |
| 420 | nidump $1 . | awk -F":" "{ if (\$3 == $2) {print \$0;exit;} }" |
419 | nidump $1 . | awk -F":" "{ if (\$3 == $2) {print \$0;exit;} }" |
| 421 | ;; |
420 | ;; |
| 422 | esac |
421 | esac |
| 423 | elif [[ "${USERLAND}" == "BSD" ]] ; then |
422 | ;; |
| 424 | local action |
423 | *-freebsd*|*-dragonfly*) |
| 425 | if [ "$1" == "passwd" ] |
424 | local opts action="user" |
| 426 | then |
425 | [[ $1 == "passwd" ]] || action="group" |
| 427 | action="user" |
426 | |
| 428 | else |
427 | # lookup by uid/gid |
| 429 | action="group" |
428 | if [[ $2 == [[:digit:]]* ]] ; then |
|
|
429 | [[ ${action} == "user" ]] && opts="-u" || opts="-g" |
| 430 | fi |
430 | fi |
|
|
431 | |
| 431 | pw show "${action}" "$2" -q |
432 | pw show ${action} ${opts} "$2" -q |
| 432 | else |
433 | ;; |
|
|
434 | *-netbsd*|*-openbsd*) |
|
|
435 | grep "$2:\*:" /etc/$1 |
|
|
436 | ;; |
|
|
437 | *) |
| 433 | which nscd >& /dev/null && nscd -i "$1" |
438 | type -p nscd >& /dev/null && nscd -i "$1" |
| 434 | getent "$1" "$2" |
439 | getent "$1" "$2" |
| 435 | fi |
440 | ;; |
|
|
441 | esac |
| 436 | } |
442 | } |
| 437 | |
443 | |
| 438 | # Simplify/standardize adding users to the system |
444 | # Simplify/standardize adding users to the system |
| 439 | # vapier@gentoo.org |
445 | # vapier@gentoo.org |
| 440 | # |
446 | # |
| … | |
… | |
| 448 | # homedir: /dev/null |
454 | # homedir: /dev/null |
| 449 | # groups: none |
455 | # groups: none |
| 450 | # extra: comment of 'added by portage for ${PN}' |
456 | # extra: comment of 'added by portage for ${PN}' |
| 451 | enewuser() { |
457 | enewuser() { |
| 452 | # get the username |
458 | # get the username |
| 453 | local euser="$1"; shift |
459 | local euser=$1; shift |
| 454 | if [ -z "${euser}" ] |
460 | if [[ -z ${euser} ]] ; then |
| 455 | then |
|
|
| 456 | eerror "No username specified !" |
461 | eerror "No username specified !" |
| 457 | die "Cannot call enewuser without a username" |
462 | die "Cannot call enewuser without a username" |
| 458 | fi |
463 | fi |
| 459 | |
464 | |
| 460 | # lets see if the username already exists |
465 | # lets see if the username already exists |
| 461 | if [ "${euser}" == "`egetent passwd \"${euser}\" | cut -d: -f1`" ] |
466 | if [[ ${euser} == $(egetent passwd "${euser}" | cut -d: -f1) ]] ; then |
| 462 | then |
|
|
| 463 | return 0 |
467 | return 0 |
| 464 | fi |
468 | fi |
| 465 | einfo "Adding user '${euser}' to your system ..." |
469 | einfo "Adding user '${euser}' to your system ..." |
| 466 | |
470 | |
| 467 | # options to pass to useradd |
471 | # options to pass to useradd |
| 468 | local opts= |
472 | local opts= |
| 469 | |
473 | |
| 470 | # handle uid |
474 | # handle uid |
| 471 | local euid="$1"; shift |
475 | local euid=$1; shift |
| 472 | if [ ! -z "${euid}" ] && [ "${euid}" != "-1" ] |
476 | if [[ ! -z ${euid} ]] && [[ ${euid} != "-1" ]] ; then |
| 473 | then |
|
|
| 474 | if [ "${euid}" -gt 0 ] |
477 | if [[ ${euid} -gt 0 ]] ; then |
| 475 | then |
|
|
| 476 | if [ ! -z "`egetent passwd ${euid}`" ] |
478 | if [[ ! -z $(egetent passwd ${euid}) ]] ; then |
| 477 | then |
|
|
| 478 | euid="next" |
479 | euid="next" |
| 479 | fi |
480 | fi |
| 480 | else |
481 | else |
| 481 | eerror "Userid given but is not greater than 0 !" |
482 | eerror "Userid given but is not greater than 0 !" |
| 482 | die "${euid} is not a valid UID" |
483 | die "${euid} is not a valid UID" |
| 483 | fi |
484 | fi |
| 484 | else |
485 | else |
| 485 | euid="next" |
486 | euid="next" |
| 486 | fi |
487 | fi |
| 487 | if [ "${euid}" == "next" ] |
488 | if [[ ${euid} == "next" ]] ; then |
| 488 | then |
489 | for euid in $(seq 101 999) ; do |
| 489 | local pwrange |
|
|
| 490 | if [ "${USERLAND}" == "BSD" ] ; then |
|
|
| 491 | pwrange="`jot 898 101`" |
|
|
| 492 | else |
|
|
| 493 | pwrange="`seq 101 999`" |
|
|
| 494 | fi |
|
|
| 495 | for euid in ${pwrange} ; do |
|
|
| 496 | [ -z "`egetent passwd ${euid}`" ] && break |
490 | [[ -z $(egetent passwd ${euid}) ]] && break |
| 497 | done |
491 | done |
| 498 | fi |
492 | fi |
| 499 | opts="${opts} -u ${euid}" |
493 | opts="${opts} -u ${euid}" |
| 500 | einfo " - Userid: ${euid}" |
494 | einfo " - Userid: ${euid}" |
| 501 | |
495 | |
| 502 | # handle shell |
496 | # handle shell |
| 503 | local eshell="$1"; shift |
497 | local eshell=$1; shift |
| 504 | if [ ! -z "${eshell}" ] && [ "${eshell}" != "-1" ] |
498 | if [[ ! -z ${eshell} ]] && [[ ${eshell} != "-1" ]] ; then |
| 505 | then |
499 | if [[ ! -e ${ROOT}${eshell} ]] ; then |
| 506 | if [ ! -e "${eshell}" ] |
|
|
| 507 | then |
|
|
| 508 | eerror "A shell was specified but it does not exist !" |
500 | eerror "A shell was specified but it does not exist !" |
| 509 | die "${eshell} does not exist" |
501 | die "${eshell} does not exist in ${ROOT}" |
| 510 | fi |
502 | fi |
| 511 | else |
503 | if [[ ${eshell} == */false || ${eshell} == */nologin ]] ; then |
| 512 | if [[ "${USERLAND}" == "Darwin" ]]; then |
504 | eerror "Do not specify ${eshell} yourself, use -1" |
| 513 | eshell="/usr/bin/false" |
505 | die "Pass '-1' as the shell parameter" |
| 514 | elif [[ "${USERLAND}" == "BSD" ]]; then |
506 | fi |
| 515 | eshell="/usr/sbin/nologin" |
|
|
| 516 | else |
507 | else |
| 517 | eshell="/bin/false" |
508 | for shell in /sbin/nologin /usr/sbin/nologin /bin/false /usr/bin/false /dev/null ; do |
|
|
509 | [[ -x ${ROOT}${shell} ]] && break |
|
|
510 | done |
|
|
511 | |
|
|
512 | if [[ ${shell} == "/dev/null" ]] ; then |
|
|
513 | eerror "Unable to identify the shell to use" |
|
|
514 | die "Unable to identify the shell to use" |
| 518 | fi |
515 | fi |
|
|
516 | |
|
|
517 | eshell=${shell} |
| 519 | fi |
518 | fi |
| 520 | einfo " - Shell: ${eshell}" |
519 | einfo " - Shell: ${eshell}" |
| 521 | opts="${opts} -s ${eshell}" |
520 | opts="${opts} -s ${eshell}" |
| 522 | |
521 | |
| 523 | # handle homedir |
522 | # handle homedir |
| 524 | local ehome="$1"; shift |
523 | local ehome=$1; shift |
| 525 | if [ -z "${ehome}" ] || [ "${eshell}" == "-1" ] |
524 | if [[ -z ${ehome} ]] || [[ ${ehome} == "-1" ]] ; then |
| 526 | then |
|
|
| 527 | ehome="/dev/null" |
525 | ehome="/dev/null" |
| 528 | fi |
526 | fi |
| 529 | einfo " - Home: ${ehome}" |
527 | einfo " - Home: ${ehome}" |
| 530 | opts="${opts} -d ${ehome}" |
528 | opts="${opts} -d ${ehome}" |
| 531 | |
529 | |
| 532 | # handle groups |
530 | # handle groups |
| 533 | local egroups="$1"; shift |
531 | local egroups=$1; shift |
| 534 | if [ ! -z "${egroups}" ] |
532 | if [[ ! -z ${egroups} ]] ; then |
| 535 | then |
|
|
| 536 | local oldifs="${IFS}" |
533 | local oldifs=${IFS} |
| 537 | local defgroup="" exgroups="" |
534 | local defgroup="" exgroups="" |
| 538 | |
535 | |
| 539 | export IFS="," |
536 | export IFS="," |
| 540 | for g in ${egroups} |
537 | for g in ${egroups} ; do |
| 541 | do |
|
|
| 542 | export IFS="${oldifs}" |
538 | export IFS=${oldifs} |
| 543 | if [ -z "`egetent group \"${g}\"`" ] |
539 | if [[ -z $(egetent group "${g}") ]] ; then |
| 544 | then |
|
|
| 545 | eerror "You must add group ${g} to the system first" |
540 | eerror "You must add group ${g} to the system first" |
| 546 | die "${g} is not a valid GID" |
541 | die "${g} is not a valid GID" |
| 547 | fi |
542 | fi |
| 548 | if [ -z "${defgroup}" ] |
543 | if [[ -z ${defgroup} ]] ; then |
| 549 | then |
|
|
| 550 | defgroup="${g}" |
544 | defgroup=${g} |
| 551 | else |
545 | else |
| 552 | exgroups="${exgroups},${g}" |
546 | exgroups="${exgroups},${g}" |
| 553 | fi |
547 | fi |
| 554 | export IFS="," |
548 | export IFS="," |
| 555 | done |
549 | done |
| 556 | export IFS="${oldifs}" |
550 | export IFS=${oldifs} |
| 557 | |
551 | |
| 558 | opts="${opts} -g ${defgroup}" |
552 | opts="${opts} -g ${defgroup}" |
| 559 | if [ ! -z "${exgroups}" ] |
553 | if [[ ! -z ${exgroups} ]] ; then |
| 560 | then |
|
|
| 561 | opts="${opts} -G ${exgroups:1}" |
554 | opts="${opts} -G ${exgroups:1}" |
| 562 | fi |
555 | fi |
| 563 | else |
556 | else |
| 564 | egroups="(none)" |
557 | egroups="(none)" |
| 565 | fi |
558 | fi |
| 566 | einfo " - Groups: ${egroups}" |
559 | einfo " - Groups: ${egroups}" |
| 567 | |
560 | |
| 568 | # handle extra and add the user |
561 | # handle extra and add the user |
| 569 | local eextra="$@" |
|
|
| 570 | local oldsandbox="${SANDBOX_ON}" |
562 | local oldsandbox=${SANDBOX_ON} |
| 571 | export SANDBOX_ON="0" |
563 | export SANDBOX_ON="0" |
| 572 | if [[ "${USERLAND}" == "Darwin" ]] |
564 | case ${CHOST} in |
| 573 | then |
565 | *-darwin*) |
| 574 | ### Make the user |
566 | ### Make the user |
| 575 | if [ -z "${eextra}" ] |
567 | if [[ -z $@ ]] ; then |
| 576 | then |
|
|
| 577 | dscl . create /users/${euser} uid ${euid} |
568 | dscl . create /users/${euser} uid ${euid} |
| 578 | dscl . create /users/${euser} shell ${eshell} |
569 | dscl . create /users/${euser} shell ${eshell} |
| 579 | dscl . create /users/${euser} home ${ehome} |
570 | dscl . create /users/${euser} home ${ehome} |
| 580 | dscl . create /users/${euser} realname "added by portage for ${PN}" |
571 | dscl . create /users/${euser} realname "added by portage for ${PN}" |
| 581 | ### Add the user to the groups specified |
572 | ### Add the user to the groups specified |
| 582 | local oldifs="${IFS}" |
573 | local oldifs=${IFS} |
| 583 | export IFS="," |
574 | export IFS="," |
| 584 | for g in ${egroups} |
575 | for g in ${egroups} ; do |
| 585 | do |
|
|
| 586 | dscl . merge /groups/${g} users ${euser} |
576 | dscl . merge /groups/${g} users ${euser} |
| 587 | done |
577 | done |
| 588 | export IFS="${oldifs}" |
578 | export IFS=${oldifs} |
| 589 | else |
579 | else |
| 590 | einfo "Extra options are not supported on macos yet" |
580 | einfo "Extra options are not supported on Darwin yet" |
| 591 | einfo "Please report the ebuild along with the info below" |
581 | einfo "Please report the ebuild along with the info below" |
| 592 | einfo "eextra: ${eextra}" |
582 | einfo "eextra: $@" |
| 593 | die "Required function missing" |
583 | die "Required function missing" |
| 594 | fi |
584 | fi |
| 595 | elif [[ "${USERLAND}" == "BSD" ]] ; then |
585 | ;; |
| 596 | if [ -z "${eextra}" ] |
586 | *-freebsd*|*-dragonfly*) |
| 597 | then |
587 | if [[ -z $@ ]] ; then |
| 598 | pw useradd ${euser} ${opts} \ |
588 | pw useradd ${euser} ${opts} \ |
| 599 | -c "added by portage for ${PN}" \ |
589 | -c "added by portage for ${PN}" \ |
| 600 | die "enewuser failed" |
590 | die "enewuser failed" |
| 601 | else |
591 | else |
| 602 | einfo " - Extra: ${eextra}" |
592 | einfo " - Extra: $@" |
| 603 | pw useradd ${euser} ${opts} \ |
593 | pw useradd ${euser} ${opts} \ |
| 604 | -c ${eextra} || die "enewuser failed" |
594 | "$@" || die "enewuser failed" |
| 605 | fi |
595 | fi |
|
|
596 | ;; |
|
|
597 | |
|
|
598 | *-netbsd*) |
|
|
599 | if [[ -z $@ ]] ; then |
|
|
600 | useradd ${opts} ${euser} || die "enewuser failed" |
| 606 | else |
601 | else |
| 607 | if [ -z "${eextra}" ] |
602 | einfo " - Extra: $@" |
| 608 | then |
603 | useradd ${opts} ${euser} "$@" || die "enewuser failed" |
|
|
604 | fi |
|
|
605 | ;; |
|
|
606 | |
|
|
607 | *-openbsd*) |
|
|
608 | if [[ -z $@ ]] ; then |
|
|
609 | useradd -u ${euid} -s ${eshell} \ |
|
|
610 | -d ${ehome} -c "Added by portage for ${PN}" \ |
|
|
611 | -g ${egroups} ${euser} || die "enewuser failed" |
|
|
612 | else |
|
|
613 | einfo " - Extra: $@" |
|
|
614 | useradd -u ${euid} -s ${eshell} \ |
|
|
615 | -d ${ehome} -c "Added by portage for ${PN}" \ |
|
|
616 | -g ${egroups} ${euser} "$@" || die "enewuser failed" |
|
|
617 | fi |
|
|
618 | ;; |
|
|
619 | |
|
|
620 | *) |
|
|
621 | if [[ -z $@ ]] ; then |
| 609 | useradd ${opts} ${euser} \ |
622 | useradd ${opts} ${euser} \ |
| 610 | -c "added by portage for ${PN}" \ |
623 | -c "added by portage for ${PN}" \ |
| 611 | || die "enewuser failed" |
624 | || die "enewuser failed" |
| 612 | else |
625 | else |
| 613 | einfo " - Extra: ${eextra}" |
626 | einfo " - Extra: $@" |
| 614 | useradd ${opts} ${euser} ${eextra} \ |
627 | useradd ${opts} ${euser} "$@" \ |
| 615 | || die "enewuser failed" |
628 | || die "enewuser failed" |
| 616 | fi |
629 | fi |
|
|
630 | ;; |
|
|
631 | esac |
|
|
632 | |
|
|
633 | if [[ ! -e ${ROOT}/${ehome} ]] ; then |
|
|
634 | einfo " - Creating ${ehome} in ${ROOT}" |
|
|
635 | mkdir -p "${ROOT}/${ehome}" |
|
|
636 | chown ${euser} "${ROOT}/${ehome}" |
|
|
637 | chmod 755 "${ROOT}/${ehome}" |
| 617 | fi |
638 | fi |
|
|
639 | |
| 618 | export SANDBOX_ON="${oldsandbox}" |
640 | export SANDBOX_ON=${oldsandbox} |
| 619 | |
|
|
| 620 | if [ ! -e "${ehome}" ] && [ ! -e "${D}/${ehome}" ] |
|
|
| 621 | then |
|
|
| 622 | einfo " - Creating ${ehome} in ${D}" |
|
|
| 623 | dodir ${ehome} |
|
|
| 624 | fowners ${euser} ${ehome} |
|
|
| 625 | fperms 755 ${ehome} |
|
|
| 626 | fi |
|
|
| 627 | } |
641 | } |
| 628 | |
642 | |
| 629 | # Simplify/standardize adding groups to the system |
643 | # Simplify/standardize adding groups to the system |
| 630 | # vapier@gentoo.org |
644 | # vapier@gentoo.org |
| 631 | # |
645 | # |
| … | |
… | |
| 660 | then |
674 | then |
| 661 | if [ "${egid}" -gt 0 ] |
675 | if [ "${egid}" -gt 0 ] |
| 662 | then |
676 | then |
| 663 | if [ -z "`egetent group ${egid}`" ] |
677 | if [ -z "`egetent group ${egid}`" ] |
| 664 | then |
678 | then |
| 665 | if [[ "${USERLAND}" == "Darwin" ]]; then |
679 | if [[ "${CHOST}" == *-darwin* ]]; then |
| 666 | opts="${opts} ${egid}" |
680 | opts="${opts} ${egid}" |
| 667 | else |
681 | else |
| 668 | opts="${opts} -g ${egid}" |
682 | opts="${opts} -g ${egid}" |
| 669 | fi |
683 | fi |
| 670 | else |
684 | else |
| … | |
… | |
| 684 | opts="${opts} ${eextra}" |
698 | opts="${opts} ${eextra}" |
| 685 | |
699 | |
| 686 | # add the group |
700 | # add the group |
| 687 | local oldsandbox="${SANDBOX_ON}" |
701 | local oldsandbox="${SANDBOX_ON}" |
| 688 | export SANDBOX_ON="0" |
702 | export SANDBOX_ON="0" |
| 689 | if [[ "${USERLAND}" == "Darwin" ]]; then |
703 | case ${CHOST} in |
|
|
704 | *-darwin*) |
| 690 | if [ ! -z "${eextra}" ]; |
705 | if [ ! -z "${eextra}" ]; |
| 691 | then |
706 | then |
| 692 | einfo "Extra options are not supported on Darwin/OS X yet" |
707 | einfo "Extra options are not supported on Darwin/OS X yet" |
| 693 | einfo "Please report the ebuild along with the info below" |
708 | einfo "Please report the ebuild along with the info below" |
| 694 | einfo "eextra: ${eextra}" |
709 | einfo "eextra: ${eextra}" |
| 695 | die "Required function missing" |
710 | die "Required function missing" |
| 696 | fi |
711 | fi |
| 697 | |
712 | |
| 698 | # If we need the next available |
713 | # If we need the next available |
| 699 | case ${egid} in |
714 | case ${egid} in |
| 700 | *[!0-9]*) # Non numeric |
715 | *[!0-9]*) # Non numeric |
| 701 | for egid in `jot 898 101`; do |
716 | for egid in $(seq 101 999); do |
| 702 | [ -z "`egetent group ${egid}`" ] && break |
717 | [ -z "`egetent group ${egid}`" ] && break |
| 703 | done |
718 | done |
| 704 | esac |
719 | esac |
| 705 | dscl . create /groups/${egroup} gid ${egid} |
720 | dscl . create /groups/${egroup} gid ${egid} |
| 706 | dscl . create /groups/${egroup} passwd '*' |
721 | dscl . create /groups/${egroup} passwd '*' |
| 707 | elif [[ "${USERLAND}" == "BSD" ]] ; then |
722 | ;; |
|
|
723 | |
|
|
724 | *-freebsd*|*-dragonfly*) |
| 708 | case ${egid} in |
725 | case ${egid} in |
| 709 | *[!0-9]*) # Non numeric |
726 | *[!0-9]*) # Non numeric |
| 710 | for egid in `jot 898 101`; do |
727 | for egid in $(seq 101 999); do |
| 711 | [ -z "`egetent group ${egid}`" ] && break |
728 | [ -z "`egetent group ${egid}`" ] && break |
| 712 | done |
729 | done |
| 713 | esac |
730 | esac |
| 714 | pw groupadd ${egroup} -g ${egid} || die "enewgroup failed" |
731 | pw groupadd ${egroup} -g ${egid} || die "enewgroup failed" |
| 715 | else |
732 | ;; |
|
|
733 | |
|
|
734 | *-netbsd*) |
|
|
735 | case ${egid} in |
|
|
736 | *[!0-9]*) # Non numeric |
|
|
737 | for egid in $(seq 101 999); do |
|
|
738 | [ -z "`egetent group ${egid}`" ] && break |
|
|
739 | done |
|
|
740 | esac |
|
|
741 | groupadd -g ${egid} ${egroup} || die "enewgroup failed" |
|
|
742 | ;; |
|
|
743 | |
|
|
744 | *) |
| 716 | groupadd ${opts} ${egroup} || die "enewgroup failed" |
745 | groupadd ${opts} ${egroup} || die "enewgroup failed" |
| 717 | fi |
746 | ;; |
|
|
747 | esac |
| 718 | export SANDBOX_ON="${oldsandbox}" |
748 | export SANDBOX_ON="${oldsandbox}" |
| 719 | } |
749 | } |
| 720 | |
750 | |
| 721 | # Simple script to replace 'dos2unix' binaries |
751 | # Simple script to replace 'dos2unix' binaries |
| 722 | # vapier@gentoo.org |
752 | # vapier@gentoo.org |
| … | |
… | |
| 747 | # name: the name that will show up in the menu |
777 | # name: the name that will show up in the menu |
| 748 | # icon: give your little like a pretty little icon ... |
778 | # icon: give your little like a pretty little icon ... |
| 749 | # this can be relative (to /usr/share/pixmaps) or |
779 | # this can be relative (to /usr/share/pixmaps) or |
| 750 | # a full path to an icon |
780 | # a full path to an icon |
| 751 | # type: what kind of application is this ? for categories: |
781 | # type: what kind of application is this ? for categories: |
| 752 | # http://www.freedesktop.org/wiki/Standards_2fmenu_2dspec |
782 | # http://www.freedesktop.org/Standards/desktop-entry-spec |
| 753 | # path: if your app needs to startup in a specific dir |
783 | # path: if your app needs to startup in a specific dir |
| 754 | make_desktop_entry() { |
784 | make_desktop_entry() { |
| 755 | [[ -z $1 ]] && eerror "make_desktop_entry: You must specify the executable" && return 1 |
785 | [[ -z $1 ]] && eerror "make_desktop_entry: You must specify the executable" && return 1 |
| 756 | |
786 | |
| 757 | local exec=${1} |
787 | local exec=${1} |
| … | |
… | |
| 783 | dev) |
813 | dev) |
| 784 | type="Development" |
814 | type="Development" |
| 785 | ;; |
815 | ;; |
| 786 | |
816 | |
| 787 | games) |
817 | games) |
| 788 | [[ -z ${path} ]] && path=${GAMES_BINDIR} |
|
|
| 789 | |
|
|
| 790 | case ${catmin} in |
818 | case ${catmin} in |
| 791 | action) type=ActionGame;; |
819 | action) type=ActionGame;; |
| 792 | arcade) type=ArcadeGame;; |
820 | arcade) type=ArcadeGame;; |
| 793 | board) type=BoardGame;; |
821 | board) type=BoardGame;; |
| 794 | kid) type=KidsGame;; |
822 | kid) type=KidsGame;; |
| … | |
… | |
| 835 | type="Network;${type}" |
863 | type="Network;${type}" |
| 836 | ;; |
864 | ;; |
| 837 | |
865 | |
| 838 | sci) |
866 | sci) |
| 839 | case ${catmin} in |
867 | case ${catmin} in |
| 840 | astro*) type=Astronomoy;; |
868 | astro*) type=Astronomy;; |
| 841 | bio*) type=Biology;; |
869 | bio*) type=Biology;; |
| 842 | calc*) type=Calculator;; |
870 | calc*) type=Calculator;; |
| 843 | chem*) type=Chemistry;; |
871 | chem*) type=Chemistry;; |
| 844 | geo*) type=Geology;; |
872 | geo*) type=Geology;; |
| 845 | math*) type=Math;; |
873 | math*) type=Math;; |
| … | |
… | |
| 877 | Exec=${exec} |
905 | Exec=${exec} |
| 878 | Path=${path} |
906 | Path=${path} |
| 879 | Icon=${icon} |
907 | Icon=${icon} |
| 880 | Categories=Application;${type};" > "${desktop}" |
908 | Categories=Application;${type};" > "${desktop}" |
| 881 | |
909 | |
|
|
910 | ( |
|
|
911 | # wrap the env here so that the 'insinto' call |
|
|
912 | # doesn't corrupt the env of the caller |
| 882 | insinto /usr/share/applications |
913 | insinto /usr/share/applications |
| 883 | doins "${desktop}" |
914 | doins "${desktop}" |
| 884 | |
915 | ) |
| 885 | return 0 |
|
|
| 886 | } |
916 | } |
| 887 | |
917 | |
| 888 | # Make a GDM/KDM Session file |
918 | # Make a GDM/KDM Session file |
| 889 | # |
919 | # |
| 890 | # make_desktop_entry(<title>, <command>) |
920 | # make_desktop_entry(<title>, <command>) |
| … | |
… | |
| 919 | doins "${i}" |
949 | doins "${i}" |
| 920 | elif [[ -d ${i} ]] ; then |
950 | elif [[ -d ${i} ]] ; then |
| 921 | for j in "${i}"/*.desktop ; do |
951 | for j in "${i}"/*.desktop ; do |
| 922 | doins "${j}" |
952 | doins "${j}" |
| 923 | done |
953 | done |
| 924 | fi |
954 | fi |
| 925 | done |
955 | done |
| 926 | } |
956 | } |
| 927 | newmenu() { |
957 | newmenu() { |
| 928 | insinto /usr/share/applications |
958 | insinto /usr/share/applications |
| 929 | newins "$1" "$2" |
959 | newins "$1" "$2" |
| … | |
… | |
| 937 | doins "${i}" |
967 | doins "${i}" |
| 938 | elif [[ -d ${i} ]] ; then |
968 | elif [[ -d ${i} ]] ; then |
| 939 | for j in "${i}"/*.png ; do |
969 | for j in "${i}"/*.png ; do |
| 940 | doins "${j}" |
970 | doins "${j}" |
| 941 | done |
971 | done |
| 942 | fi |
972 | fi |
| 943 | done |
973 | done |
| 944 | } |
974 | } |
| 945 | newicon() { |
975 | newicon() { |
| 946 | insinto /usr/share/pixmaps |
976 | insinto /usr/share/pixmaps |
| 947 | newins "$1" "$2" |
977 | newins "$1" "$2" |
| … | |
… | |
| 952 | ############################################################## |
982 | ############################################################## |
| 953 | |
983 | |
| 954 | |
984 | |
| 955 | # for internal use only (unpack_pdv and unpack_makeself) |
985 | # for internal use only (unpack_pdv and unpack_makeself) |
| 956 | find_unpackable_file() { |
986 | find_unpackable_file() { |
| 957 | local src="$1" |
987 | local src=$1 |
| 958 | if [ -z "${src}" ] |
988 | if [[ -z ${src} ]] ; then |
| 959 | then |
|
|
| 960 | src="${DISTDIR}/${A}" |
989 | src=${DISTDIR}/${A} |
| 961 | else |
990 | else |
| 962 | if [ -e "${DISTDIR}/${src}" ] |
991 | if [[ -e ${DISTDIR}/${src} ]] ; then |
| 963 | then |
|
|
| 964 | src="${DISTDIR}/${src}" |
992 | src=${DISTDIR}/${src} |
| 965 | elif [ -e "${PWD}/${src}" ] |
993 | elif [[ -e ${PWD}/${src} ]] ; then |
| 966 | then |
|
|
| 967 | src="${PWD}/${src}" |
994 | src=${PWD}/${src} |
| 968 | elif [ -e "${src}" ] |
995 | elif [[ -e ${src} ]] ; then |
| 969 | then |
|
|
| 970 | src="${src}" |
996 | src=${src} |
| 971 | fi |
|
|
| 972 | fi |
997 | fi |
| 973 | [ ! -e "${src}" ] && die "Could not find requested archive ${src}" |
998 | fi |
|
|
999 | [[ ! -e ${src} ]] && return 1 |
| 974 | echo "${src}" |
1000 | echo "${src}" |
| 975 | } |
1001 | } |
| 976 | |
1002 | |
| 977 | # Unpack those pesky pdv generated files ... |
1003 | # Unpack those pesky pdv generated files ... |
| 978 | # They're self-unpacking programs with the binary package stuffed in |
1004 | # They're self-unpacking programs with the binary package stuffed in |
| … | |
… | |
| 993 | # lseek |
1019 | # lseek |
| 994 | # root@vapier 0 pdv_unpack # strace -elseek ./hldsupdatetool.bin |
1020 | # root@vapier 0 pdv_unpack # strace -elseek ./hldsupdatetool.bin |
| 995 | # lseek(3, -4, SEEK_END) = 2981250 |
1021 | # lseek(3, -4, SEEK_END) = 2981250 |
| 996 | # thus we would pass in the value of '4' as the second parameter. |
1022 | # thus we would pass in the value of '4' as the second parameter. |
| 997 | unpack_pdv() { |
1023 | unpack_pdv() { |
| 998 | local src="`find_unpackable_file $1`" |
1024 | local src=$(find_unpackable_file $1) |
| 999 | local sizeoff_t="$2" |
1025 | local sizeoff_t=$2 |
| 1000 | |
1026 | |
|
|
1027 | [[ -z ${src} ]] && die "Could not locate source for '$1'" |
| 1001 | [ -z "${sizeoff_t}" ] && die "No idea what off_t size was used for this pdv :(" |
1028 | [[ -z ${sizeoff_t} ]] && die "No idea what off_t size was used for this pdv :(" |
| 1002 | |
1029 | |
| 1003 | local shrtsrc="`basename ${src}`" |
1030 | local shrtsrc=$(basename "${src}") |
| 1004 | echo ">>> Unpacking ${shrtsrc} to ${PWD}" |
1031 | echo ">>> Unpacking ${shrtsrc} to ${PWD}" |
| 1005 | local metaskip=`tail -c ${sizeoff_t} ${src} | hexdump -e \"%i\"` |
1032 | local metaskip=`tail -c ${sizeoff_t} ${src} | hexdump -e \"%i\"` |
| 1006 | local tailskip=`tail -c $((${sizeoff_t}*2)) ${src} | head -c ${sizeoff_t} | hexdump -e \"%i\"` |
1033 | local tailskip=`tail -c $((${sizeoff_t}*2)) ${src} | head -c ${sizeoff_t} | hexdump -e \"%i\"` |
| 1007 | |
1034 | |
| 1008 | # grab metadata for debug reasons |
1035 | # grab metadata for debug reasons |
| … | |
… | |
| 1072 | # Usage: unpack_makeself [file to unpack] [offset] [tail|dd] |
1099 | # Usage: unpack_makeself [file to unpack] [offset] [tail|dd] |
| 1073 | # - If the file is not specified then unpack will utilize ${A}. |
1100 | # - If the file is not specified then unpack will utilize ${A}. |
| 1074 | # - If the offset is not specified then we will attempt to extract |
1101 | # - If the offset is not specified then we will attempt to extract |
| 1075 | # the proper offset from the script itself. |
1102 | # the proper offset from the script itself. |
| 1076 | unpack_makeself() { |
1103 | unpack_makeself() { |
|
|
1104 | local src_input=${1:-${A}} |
| 1077 | local src="$(find_unpackable_file "$1")" |
1105 | local src=$(find_unpackable_file "${src_input}") |
| 1078 | local skip="$2" |
1106 | local skip=$2 |
| 1079 | local exe="$3" |
1107 | local exe=$3 |
| 1080 | |
1108 | |
|
|
1109 | [[ -z ${src} ]] && die "Could not locate source for '${src_input}'" |
|
|
1110 | |
| 1081 | local shrtsrc="$(basename "${src}")" |
1111 | local shrtsrc=$(basename "${src}") |
| 1082 | echo ">>> Unpacking ${shrtsrc} to ${PWD}" |
1112 | echo ">>> Unpacking ${shrtsrc} to ${PWD}" |
| 1083 | if [ -z "${skip}" ] |
1113 | if [[ -z ${skip} ]] ; then |
| 1084 | then |
|
|
| 1085 | local ver="`grep -a '#.*Makeself' ${src} | awk '{print $NF}'`" |
1114 | local ver=$(grep -a '#.*Makeself' "${src}" | awk '{print $NF}') |
| 1086 | local skip=0 |
1115 | local skip=0 |
| 1087 | exe=tail |
1116 | exe=tail |
| 1088 | case ${ver} in |
1117 | case ${ver} in |
| 1089 | 1.5.*) # tested 1.5.{3,4,5} ... guessing 1.5.x series is same |
1118 | 1.5.*) # tested 1.5.{3,4,5} ... guessing 1.5.x series is same |
| 1090 | skip=$(grep -a ^skip= "${src}" | cut -d= -f2) |
1119 | skip=$(grep -a ^skip= "${src}" | cut -d= -f2) |
| … | |
… | |
| 1102 | ;; |
1131 | ;; |
| 1103 | 2.1.3) |
1132 | 2.1.3) |
| 1104 | skip=`grep -a ^offset= "${src}" | awk '{print $3}'` |
1133 | skip=`grep -a ^offset= "${src}" | awk '{print $3}'` |
| 1105 | let skip="skip + 1" |
1134 | let skip="skip + 1" |
| 1106 | ;; |
1135 | ;; |
| 1107 | 2.1.4) |
1136 | 2.1.4|2.1.5) |
| 1108 | skip=$(grep -a offset=.*head.*wc "${src}" | awk '{print $3}' | head -n 1) |
1137 | skip=$(grep -a offset=.*head.*wc "${src}" | awk '{print $3}' | head -n 1) |
| 1109 | skip=$(head -n ${skip} "${src}" | wc -c) |
1138 | skip=$(head -n ${skip} "${src}" | wc -c) |
| 1110 | exe="dd" |
1139 | exe="dd" |
| 1111 | ;; |
1140 | ;; |
| 1112 | *) |
1141 | *) |
| … | |
… | |
| 1157 | check_license() { |
1186 | check_license() { |
| 1158 | local lic=$1 |
1187 | local lic=$1 |
| 1159 | if [ -z "${lic}" ] ; then |
1188 | if [ -z "${lic}" ] ; then |
| 1160 | lic="${PORTDIR}/licenses/${LICENSE}" |
1189 | lic="${PORTDIR}/licenses/${LICENSE}" |
| 1161 | else |
1190 | else |
| 1162 | if [ -e "${PORTDIR}/licenses/${src}" ] ; then |
1191 | if [ -e "${PORTDIR}/licenses/${lic}" ] ; then |
| 1163 | lic="${PORTDIR}/licenses/${src}" |
1192 | lic="${PORTDIR}/licenses/${lic}" |
| 1164 | elif [ -e "${PWD}/${src}" ] ; then |
1193 | elif [ -e "${PWD}/${lic}" ] ; then |
| 1165 | lic="${PWD}/${src}" |
1194 | lic="${PWD}/${lic}" |
| 1166 | elif [ -e "${src}" ] ; then |
1195 | elif [ -e "${lic}" ] ; then |
| 1167 | lic="${src}" |
1196 | lic="${lic}" |
| 1168 | fi |
|
|
| 1169 | fi |
1197 | fi |
|
|
1198 | fi |
| 1170 | [ ! -f "${lic}" ] && die "Could not find requested license ${src}" |
1199 | [ ! -f "${lic}" ] && die "Could not find requested license ${lic}" |
| 1171 | local l="`basename ${lic}`" |
1200 | local l="`basename ${lic}`" |
| 1172 | |
1201 | |
| 1173 | # here is where we check for the licenses the user already |
1202 | # here is where we check for the licenses the user already |
| 1174 | # accepted ... if we don't find a match, we make the user accept |
1203 | # accepted ... if we don't find a match, we make the user accept |
| 1175 | local shopts=$- |
1204 | local shopts=$- |
| … | |
… | |
| 1231 | # first we figure out how many cds we're dealing with by |
1260 | # first we figure out how many cds we're dealing with by |
| 1232 | # the # of files they gave us |
1261 | # the # of files they gave us |
| 1233 | local cdcnt=0 |
1262 | local cdcnt=0 |
| 1234 | local f= |
1263 | local f= |
| 1235 | for f in "$@" ; do |
1264 | for f in "$@" ; do |
| 1236 | cdcnt=$((cdcnt + 1)) |
1265 | ((++cdcnt)) |
| 1237 | export CDROM_CHECK_${cdcnt}="$f" |
1266 | export CDROM_CHECK_${cdcnt}="$f" |
| 1238 | done |
1267 | done |
| 1239 | export CDROM_TOTAL_CDS=${cdcnt} |
1268 | export CDROM_TOTAL_CDS=${cdcnt} |
| 1240 | export CDROM_CURRENT_CD=1 |
1269 | export CDROM_CURRENT_CD=1 |
| 1241 | |
1270 | |
| 1242 | # now we see if the user gave use CD_ROOT ... |
1271 | # now we see if the user gave use CD_ROOT ... |
| 1243 | # if they did, let's just believe them that it's correct |
1272 | # if they did, let's just believe them that it's correct |
| 1244 | if [[ ! -z ${CD_ROOT} ]] ; then |
|
|
| 1245 | export CDROM_ROOT=${CD_ROOT} |
|
|
| 1246 | einfo "Found CD #${CDROM_CURRENT_CD} root at ${CDROM_ROOT}" |
|
|
| 1247 | return |
|
|
| 1248 | fi |
|
|
| 1249 | # do the same for CD_ROOT_X |
|
|
| 1250 | if [[ ! -z ${CD_ROOT_1} ]] ; then |
1273 | if [[ -n ${CD_ROOT}${CD_ROOT_1} ]] ; then |
| 1251 | local var= |
1274 | local var= |
| 1252 | cdcnt=0 |
1275 | cdcnt=0 |
| 1253 | while [[ ${cdcnt} -lt ${CDROM_TOTAL_CDS} ]] ; do |
1276 | while [[ ${cdcnt} -lt ${CDROM_TOTAL_CDS} ]] ; do |
| 1254 | cdcnt=$((cdcnt + 1)) |
1277 | ((++cdcnt)) |
| 1255 | var="CD_ROOT_${cdcnt}" |
1278 | var="CD_ROOT_${cdcnt}" |
|
|
1279 | [[ -z ${!var} ]] && var="CD_ROOT" |
| 1256 | if [[ -z ${!var} ]] ; then |
1280 | if [[ -z ${!var} ]] ; then |
| 1257 | eerror "You must either use just the CD_ROOT" |
1281 | eerror "You must either use just the CD_ROOT" |
| 1258 | eerror "or specify ALL the CD_ROOT_X variables." |
1282 | eerror "or specify ALL the CD_ROOT_X variables." |
| 1259 | eerror "In this case, you will need ${CDROM_TOTAL_CDS} CD_ROOT_X variables." |
1283 | eerror "In this case, you will need ${CDROM_TOTAL_CDS} CD_ROOT_X variables." |
| 1260 | die "could not locate CD_ROOT_${cdcnt}" |
1284 | die "could not locate CD_ROOT_${cdcnt}" |
| 1261 | fi |
1285 | fi |
| 1262 | export CDROM_ROOTS_${cdcnt}="${!var}" |
|
|
| 1263 | done |
1286 | done |
| 1264 | export CDROM_ROOT=${CDROM_ROOTS_1} |
1287 | export CDROM_ROOT=${CD_ROOT_1:-${CD_ROOT}} |
| 1265 | einfo "Found CD #${CDROM_CURRENT_CD} root at ${CDROM_ROOT}" |
1288 | einfo "Found CD #${CDROM_CURRENT_CD} root at ${CDROM_ROOT}" |
|
|
1289 | export CDROM_SET=-1 |
|
|
1290 | for f in ${CDROM_CHECK_1//:/ } ; do |
|
|
1291 | ((++CDROM_SET)) |
|
|
1292 | [[ -e ${CD_ROOT}/${f} ]] && break |
|
|
1293 | done |
|
|
1294 | export CDROM_MATCH=${f} |
| 1266 | return |
1295 | return |
| 1267 | fi |
1296 | fi |
| 1268 | |
1297 | |
|
|
1298 | # User didn't help us out so lets make sure they know they can |
|
|
1299 | # simplify the whole process ... |
| 1269 | if [[ ${CDROM_TOTAL_CDS} -eq 1 ]] ; then |
1300 | if [[ ${CDROM_TOTAL_CDS} -eq 1 ]] ; then |
| 1270 | einfon "This ebuild will need the " |
1301 | einfo "This ebuild will need the ${CDROM_NAME:-cdrom for ${PN}}" |
| 1271 | if [[ -z ${CDROM_NAME} ]] ; then |
|
|
| 1272 | echo "cdrom for ${PN}." |
|
|
| 1273 | else |
|
|
| 1274 | echo "${CDROM_NAME}." |
|
|
| 1275 | fi |
|
|
| 1276 | echo |
1302 | echo |
| 1277 | einfo "If you do not have the CD, but have the data files" |
1303 | einfo "If you do not have the CD, but have the data files" |
| 1278 | einfo "mounted somewhere on your filesystem, just export" |
1304 | einfo "mounted somewhere on your filesystem, just export" |
| 1279 | einfo "the variable CD_ROOT so that it points to the" |
1305 | einfo "the variable CD_ROOT so that it points to the" |
| 1280 | einfo "directory containing the files." |
1306 | einfo "directory containing the files." |
| … | |
… | |
| 1284 | echo |
1310 | echo |
| 1285 | else |
1311 | else |
| 1286 | einfo "This package will need access to ${CDROM_TOTAL_CDS} cds." |
1312 | einfo "This package will need access to ${CDROM_TOTAL_CDS} cds." |
| 1287 | cdcnt=0 |
1313 | cdcnt=0 |
| 1288 | while [[ ${cdcnt} -lt ${CDROM_TOTAL_CDS} ]] ; do |
1314 | while [[ ${cdcnt} -lt ${CDROM_TOTAL_CDS} ]] ; do |
| 1289 | cdcnt=$((cdcnt + 1)) |
1315 | ((++cdcnt)) |
| 1290 | var="CDROM_NAME_${cdcnt}" |
1316 | var="CDROM_NAME_${cdcnt}" |
| 1291 | [[ ! -z ${!var} ]] && einfo " CD ${cdcnt}: ${!var}" |
1317 | [[ ! -z ${!var} ]] && einfo " CD ${cdcnt}: ${!var}" |
| 1292 | done |
1318 | done |
| 1293 | echo |
1319 | echo |
| 1294 | einfo "If you do not have the CDs, but have the data files" |
1320 | einfo "If you do not have the CDs, but have the data files" |
| 1295 | einfo "mounted somewhere on your filesystem, just export" |
1321 | einfo "mounted somewhere on your filesystem, just export" |
| 1296 | einfo "the following variables so they point to the right place:" |
1322 | einfo "the following variables so they point to the right place:" |
| 1297 | einfon "" |
1323 | einfon "" |
| 1298 | cdcnt=0 |
1324 | cdcnt=0 |
| 1299 | while [[ ${cdcnt} -lt ${CDROM_TOTAL_CDS} ]] ; do |
1325 | while [[ ${cdcnt} -lt ${CDROM_TOTAL_CDS} ]] ; do |
| 1300 | cdcnt=$((cdcnt + 1)) |
1326 | ((++cdcnt)) |
| 1301 | echo -n " CD_ROOT_${cdcnt}" |
1327 | echo -n " CD_ROOT_${cdcnt}" |
| 1302 | done |
1328 | done |
| 1303 | echo |
1329 | echo |
| 1304 | einfo "Or, if you have all the files in the same place, or" |
1330 | einfo "Or, if you have all the files in the same place, or" |
| 1305 | einfo "you only have one cdrom, you can export CD_ROOT" |
1331 | einfo "you only have one cdrom, you can export CD_ROOT" |
| … | |
… | |
| 1308 | echo |
1334 | echo |
| 1309 | einfo "For example:" |
1335 | einfo "For example:" |
| 1310 | einfo "export CD_ROOT_1=/mnt/cdrom" |
1336 | einfo "export CD_ROOT_1=/mnt/cdrom" |
| 1311 | echo |
1337 | echo |
| 1312 | fi |
1338 | fi |
|
|
1339 | |
|
|
1340 | export CDROM_SET="" |
| 1313 | export CDROM_CURRENT_CD=0 |
1341 | export CDROM_CURRENT_CD=0 |
| 1314 | cdrom_load_next_cd |
1342 | cdrom_load_next_cd |
| 1315 | } |
1343 | } |
| 1316 | |
1344 | |
| 1317 | # this is only used when you need access to more than one cd. |
1345 | # this is only used when you need access to more than one cd. |
| 1318 | # when you have finished using the first cd, just call this function. |
1346 | # when you have finished using the first cd, just call this function. |
| 1319 | # when it returns, CDROM_ROOT will be pointing to the second cd. |
1347 | # when it returns, CDROM_ROOT will be pointing to the second cd. |
| 1320 | # remember, you can only go forward in the cd chain, you can't go back. |
1348 | # remember, you can only go forward in the cd chain, you can't go back. |
| 1321 | cdrom_load_next_cd() { |
1349 | cdrom_load_next_cd() { |
| 1322 | export CDROM_CURRENT_CD=$((CDROM_CURRENT_CD + 1)) |
|
|
| 1323 | local var= |
1350 | local var |
| 1324 | |
1351 | ((++CDROM_CURRENT_CD)) |
| 1325 | if [[ ! -z ${CD_ROOT} ]] ; then |
|
|
| 1326 | einfo "Using same root as before for CD #${CDROM_CURRENT_CD}" |
|
|
| 1327 | return |
|
|
| 1328 | fi |
|
|
| 1329 | |
1352 | |
| 1330 | unset CDROM_ROOT |
1353 | unset CDROM_ROOT |
| 1331 | var=CDROM_ROOTS_${CDROM_CURRENT_CD} |
1354 | var=CD_ROOT_${CDROM_CURRENT_CD} |
|
|
1355 | [[ -z ${!var} ]] && var="CD_ROOT" |
| 1332 | if [[ -z ${!var} ]] ; then |
1356 | if [[ -z ${!var} ]] ; then |
| 1333 | var="CDROM_CHECK_${CDROM_CURRENT_CD}" |
1357 | var="CDROM_CHECK_${CDROM_CURRENT_CD}" |
| 1334 | cdrom_locate_file_on_cd ${!var} |
1358 | _cdrom_locate_file_on_cd ${!var} |
| 1335 | else |
1359 | else |
| 1336 | export CDROM_ROOT=${!var} |
1360 | export CDROM_ROOT=${!var} |
| 1337 | fi |
1361 | fi |
| 1338 | |
1362 | |
| 1339 | einfo "Found CD #${CDROM_CURRENT_CD} root at ${CDROM_ROOT}" |
1363 | einfo "Found CD #${CDROM_CURRENT_CD} root at ${CDROM_ROOT}" |
| … | |
… | |
| 1344 | # all it does is try to locate a give file on a cd ... if the cd isn't |
1368 | # all it does is try to locate a give file on a cd ... if the cd isn't |
| 1345 | # found, then a message asking for the user to insert the cdrom will be |
1369 | # found, then a message asking for the user to insert the cdrom will be |
| 1346 | # displayed and we'll hang out here until: |
1370 | # displayed and we'll hang out here until: |
| 1347 | # (1) the file is found on a mounted cdrom |
1371 | # (1) the file is found on a mounted cdrom |
| 1348 | # (2) the user hits CTRL+C |
1372 | # (2) the user hits CTRL+C |
| 1349 | cdrom_locate_file_on_cd() { |
1373 | _cdrom_locate_file_on_cd() { |
|
|
1374 | local mline="" |
|
|
1375 | local showedmsg=0 |
|
|
1376 | |
| 1350 | while [[ -z ${CDROM_ROOT} ]] ; do |
1377 | while [[ -z ${CDROM_ROOT} ]] ; do |
|
|
1378 | local i=0 |
|
|
1379 | local -a cdset=(${*//:/ }) |
|
|
1380 | if [[ -n ${CDROM_SET} ]] ; then |
|
|
1381 | cdset=(${cdset[${CDROM_SET}]}) |
|
|
1382 | fi |
|
|
1383 | |
|
|
1384 | while [[ -n ${cdset[${i}]} ]] ; do |
| 1351 | local dir="$(dirname ${@})" |
1385 | local dir=$(dirname ${cdset[${i}]}) |
| 1352 | local file="$(basename ${@})" |
1386 | local file=$(basename ${cdset[${i}]}) |
| 1353 | local mline="" |
|
|
| 1354 | local showedmsg=0 |
|
|
| 1355 | |
1387 | |
| 1356 | for mline in $(mount | egrep -e '(iso|cdrom)' | awk '{print $3}') ; do |
1388 | for mline in $(mount | gawk '/(iso|cdrom|fs=cdfss)/ {print $3}') ; do |
| 1357 | [[ -d ${mline}/${dir} ]] || continue |
1389 | [[ -d ${mline}/${dir} ]] || continue |
| 1358 | [[ ! -z $(find ${mline}/${dir} -maxdepth 1 -iname ${file}) ]] \ |
1390 | if [[ -n $(find ${mline}/${dir} -maxdepth 1 -iname ${file}) ]] ; then |
| 1359 | && export CDROM_ROOT=${mline} |
1391 | export CDROM_ROOT=${mline} |
|
|
1392 | export CDROM_SET=${i} |
|
|
1393 | export CDROM_MATCH=${cdset[${i}]} |
|
|
1394 | return |
|
|
1395 | fi |
|
|
1396 | done |
|
|
1397 | |
|
|
1398 | ((++i)) |
| 1360 | done |
1399 | done |
| 1361 | |
1400 | |
| 1362 | if [[ -z ${CDROM_ROOT} ]] ; then |
|
|
| 1363 | echo |
1401 | echo |
| 1364 | if [[ ${showedmsg} -eq 0 ]] ; then |
1402 | if [[ ${showedmsg} -eq 0 ]] ; then |
| 1365 | if [[ ${CDROM_TOTAL_CDS} -eq 1 ]] ; then |
1403 | if [[ ${CDROM_TOTAL_CDS} -eq 1 ]] ; then |
| 1366 | if [[ -z ${CDROM_NAME} ]] ; then |
1404 | if [[ -z ${CDROM_NAME} ]] ; then |
| 1367 | einfo "Please insert the cdrom for ${PN} now !" |
1405 | einfo "Please insert+mount the cdrom for ${PN} now !" |
| 1368 | else |
|
|
| 1369 | einfo "Please insert the ${CDROM_NAME} cdrom now !" |
|
|
| 1370 | fi |
|
|
| 1371 | else |
1406 | else |
| 1372 | if [[ -z ${CDROM_NAME_1} ]] ; then |
|
|
| 1373 | einfo "Please insert cd #${CDROM_CURRENT_CD} for ${PN} now !" |
|
|
| 1374 | else |
|
|
| 1375 | local var="CDROM_NAME_${CDROM_CURRENT_CD}" |
|
|
| 1376 | einfo "Please insert+mount the ${!var} cdrom now !" |
1407 | einfo "Please insert+mount the ${CDROM_NAME} cdrom now !" |
| 1377 | fi |
|
|
| 1378 | fi |
1408 | fi |
| 1379 | showedmsg=1 |
1409 | else |
|
|
1410 | if [[ -z ${CDROM_NAME_1} ]] ; then |
|
|
1411 | einfo "Please insert+mount cd #${CDROM_CURRENT_CD} for ${PN} now !" |
|
|
1412 | else |
|
|
1413 | local var="CDROM_NAME_${CDROM_CURRENT_CD}" |
|
|
1414 | einfo "Please insert+mount the ${!var} cdrom now !" |
|
|
1415 | fi |
| 1380 | fi |
1416 | fi |
|
|
1417 | showedmsg=1 |
|
|
1418 | fi |
| 1381 | einfo "Press return to scan for the cd again" |
1419 | einfo "Press return to scan for the cd again" |
| 1382 | einfo "or hit CTRL+C to abort the emerge." |
1420 | einfo "or hit CTRL+C to abort the emerge." |
| 1383 | read |
1421 | echo |
| 1384 | fi |
1422 | einfo "If you are having trouble with the detection" |
|
|
1423 | einfo "of your CD, it is possible that you do not have" |
|
|
1424 | einfo "Joliet support enabled in your kernel. Please" |
|
|
1425 | einfo "check that CONFIG_JOLIET is enabled in your kernel." |
|
|
1426 | read || die "something is screwed with your system" |
| 1385 | done |
1427 | done |
| 1386 | } |
1428 | } |
| 1387 | |
1429 | |
| 1388 | # Make sure that LINGUAS only contains languages that |
1430 | # Make sure that LINGUAS only contains languages that |
| 1389 | # a package can support |
1431 | # a package can support |
| … | |
… | |
| 1399 | # directories and uses the union of the lists. |
1441 | # directories and uses the union of the lists. |
| 1400 | strip-linguas() { |
1442 | strip-linguas() { |
| 1401 | local ls newls |
1443 | local ls newls |
| 1402 | if [[ $1 == "-i" ]] || [[ $1 == "-u" ]] ; then |
1444 | if [[ $1 == "-i" ]] || [[ $1 == "-u" ]] ; then |
| 1403 | local op=$1; shift |
1445 | local op=$1; shift |
| 1404 | ls=" $(find "$1" -name '*.po' -printf '%f ') "; shift |
1446 | ls=" $(find "$1" -name '*.po' -exec basename {} \;) "; shift |
| 1405 | local d f |
1447 | local d f |
| 1406 | for d in "$@" ; do |
1448 | for d in "$@" ; do |
| 1407 | if [[ ${op} == "-u" ]] ; then |
1449 | if [[ ${op} == "-u" ]] ; then |
| 1408 | newls=${ls} |
1450 | newls=${ls} |
| 1409 | else |
1451 | else |
| 1410 | newls="" |
1452 | newls="" |
| 1411 | fi |
1453 | fi |
| 1412 | for f in $(find "$d" -name '*.po' -printf '%f ') ; do |
1454 | for f in $(find "$d" -name '*.po' -exec basename {} \;) ; do |
| 1413 | if [[ ${op} == "-i" ]] ; then |
1455 | if [[ ${op} == "-i" ]] ; then |
| 1414 | [[ ${ls/ ${f} /} != ${ls} ]] && newls="${newls} ${f}" |
1456 | [[ ${ls/ ${f} /} != ${ls} ]] && newls="${newls} ${f}" |
| 1415 | else |
1457 | else |
| 1416 | [[ ${ls/ ${f} /} == ${ls} ]] && newls="${newls} ${f}" |
1458 | [[ ${ls/ ${f} /} == ${ls} ]] && newls="${newls} ${f}" |
| 1417 | fi |
1459 | fi |
| … | |
… | |
| 1473 | |
1515 | |
| 1474 | # Jeremy Huddleston <eradicator@gentoo.org>: |
1516 | # Jeremy Huddleston <eradicator@gentoo.org>: |
| 1475 | # preserve_old_lib /path/to/libblah.so.0 |
1517 | # preserve_old_lib /path/to/libblah.so.0 |
| 1476 | # preserve_old_lib_notify /path/to/libblah.so.0 |
1518 | # preserve_old_lib_notify /path/to/libblah.so.0 |
| 1477 | # |
1519 | # |
| 1478 | # These functions are useful when a lib in your package changes --soname. Such |
1520 | # These functions are useful when a lib in your package changes --library. Such |
| 1479 | # an example might be from libogg.so.0 to libogg.so.1. Removing libogg.so.0 |
1521 | # an example might be from libogg.so.0 to libogg.so.1. Removing libogg.so.0 |
| 1480 | # would break packages that link against it. Most people get around this |
1522 | # would break packages that link against it. Most people get around this |
| 1481 | # by using the portage SLOT mechanism, but that is not always a relevant |
1523 | # by using the portage SLOT mechanism, but that is not always a relevant |
| 1482 | # solution, so instead you can add the following to your ebuilds: |
1524 | # solution, so instead you can add the following to your ebuilds: |
| 1483 | # |
1525 | # |
| … | |
… | |
| 1510 | LIB=$1 |
1552 | LIB=$1 |
| 1511 | |
1553 | |
| 1512 | if [ -n "${LIB}" -a -f "${ROOT}${LIB}" ]; then |
1554 | if [ -n "${LIB}" -a -f "${ROOT}${LIB}" ]; then |
| 1513 | SONAME=`basename ${LIB}` |
1555 | SONAME=`basename ${LIB}` |
| 1514 | |
1556 | |
| 1515 | einfo "An old version of an installed library was detected on your system." |
1557 | ewarn "An old version of an installed library was detected on your system." |
| 1516 | einfo "In order to avoid breaking packages that link against is, this older version" |
1558 | ewarn "In order to avoid breaking packages that link against it, this older version" |
| 1517 | einfo "is not being removed. In order to make full use of this newer version," |
1559 | ewarn "is not being removed. In order to make full use of this newer version," |
| 1518 | einfo "you will need to execute the following command:" |
1560 | ewarn "you will need to execute the following command:" |
| 1519 | einfo " revdep-rebuild --soname ${SONAME}" |
1561 | ewarn " revdep-rebuild --library ${SONAME}" |
| 1520 | einfo |
1562 | ewarn |
| 1521 | einfo "After doing that, you can safely remove ${LIB}" |
1563 | ewarn "After doing that, you can safely remove ${LIB}" |
| 1522 | einfo "Note: 'emerge gentoolkit' to get revdep-rebuild" |
1564 | ewarn "Note: 'emerge gentoolkit' to get revdep-rebuild" |
| 1523 | fi |
1565 | fi |
| 1524 | } |
1566 | } |
| 1525 | |
1567 | |
| 1526 | # Hack for people to figure out if a package was built with |
1568 | # Hack for people to figure out if a package was built with |
| 1527 | # certain USE flags |
1569 | # certain USE flags |
| … | |
… | |
| 1537 | [[ ${opt:0:1} = "-" ]] && shift || opt="-a" |
1579 | [[ ${opt:0:1} = "-" ]] && shift || opt="-a" |
| 1538 | |
1580 | |
| 1539 | local PKG=$(best_version $1) |
1581 | local PKG=$(best_version $1) |
| 1540 | shift |
1582 | shift |
| 1541 | |
1583 | |
| 1542 | local USEFILE="${ROOT}/var/db/pkg/${PKG}/USE" |
1584 | local USEFILE=${ROOT}/var/db/pkg/${PKG}/USE |
|
|
1585 | |
|
|
1586 | # if the USE file doesnt exist, assume the $PKG is either |
|
|
1587 | # injected or package.provided |
| 1543 | [[ ! -e ${USEFILE} ]] && return 1 |
1588 | [[ ! -e ${USEFILE} ]] && return 0 |
| 1544 | |
1589 | |
| 1545 | local USE_BUILT=$(<${USEFILE}) |
1590 | local USE_BUILT=$(<${USEFILE}) |
| 1546 | while [[ $# -gt 0 ]] ; do |
1591 | while [[ $# -gt 0 ]] ; do |
| 1547 | if [[ ${opt} = "-o" ]] ; then |
1592 | if [[ ${opt} = "-o" ]] ; then |
| 1548 | has $1 ${USE_BUILT} && return 0 |
1593 | has $1 ${USE_BUILT} && return 0 |
| … | |
… | |
| 1600 | # $4 == extra LD_LIBRARY_PATH's (make it : delimited) |
1645 | # $4 == extra LD_LIBRARY_PATH's (make it : delimited) |
| 1601 | # $5 == path for wrapper |
1646 | # $5 == path for wrapper |
| 1602 | make_wrapper() { |
1647 | make_wrapper() { |
| 1603 | local wrapper=$1 bin=$2 chdir=$3 libdir=$4 path=$5 |
1648 | local wrapper=$1 bin=$2 chdir=$3 libdir=$4 path=$5 |
| 1604 | local tmpwrapper=$(emktemp) |
1649 | local tmpwrapper=$(emktemp) |
|
|
1650 | # We don't want to quote ${bin} so that people can pass complex |
|
|
1651 | # things as $bin ... "./someprog --args" |
| 1605 | cat << EOF > "${tmpwrapper}" |
1652 | cat << EOF > "${tmpwrapper}" |
| 1606 | #!/bin/sh |
1653 | #!/bin/sh |
| 1607 | cd "${chdir}" |
1654 | cd "${chdir:-.}" |
|
|
1655 | if [ -n "${libdir}" ] ; then |
|
|
1656 | if [ "\${LD_LIBRARY_PATH+set}" = "set" ] ; then |
| 1608 | export LD_LIBRARY_PATH="\${LD_LIBRARY_PATH}:${libdir}" |
1657 | export LD_LIBRARY_PATH="\${LD_LIBRARY_PATH}:${libdir}" |
|
|
1658 | else |
|
|
1659 | export LD_LIBRARY_PATH="${libdir}" |
|
|
1660 | fi |
|
|
1661 | fi |
| 1609 | exec ${bin} "\$@" |
1662 | exec ${bin} "\$@" |
| 1610 | EOF |
1663 | EOF |
| 1611 | chmod go+rx "${tmpwrapper}" |
1664 | chmod go+rx "${tmpwrapper}" |
| 1612 | if [ -n "${5}" ] |
1665 | if [[ -n ${path} ]] ; then |
| 1613 | then |
|
|
| 1614 | exeinto ${5} |
1666 | exeinto "${path}" |
| 1615 | newexe "${tmpwrapper}" "${wrapper}" |
1667 | newexe "${tmpwrapper}" "${wrapper}" |
| 1616 | else |
1668 | else |
| 1617 | newbin "${tmpwrapper}" "${wrapper}" |
1669 | newbin "${tmpwrapper}" "${wrapper}" |
| 1618 | fi |
1670 | fi |
| 1619 | } |
1671 | } |