| 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.182 2005/06/11 00:02:26 vapier Exp $ |
3 | # $Header: /var/cvsroot/gentoo-x86/eclass/eutils.eclass,v 1.225 2006/02/18 10:50:10 flameeyes 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 userland_GNU? ( sys-apps/shadow ) )" |
14 | DEPEND="!bootstrap? ( sys-devel/patch )" |
| 17 | # sys-apps/shadow is needed for useradd, etc, bug #94745. |
15 | # sys-apps/shadow is needed for useradd, etc, bug #94745. |
| 18 | |
16 | |
| 19 | DESCRIPTION="Based on the ${ECLASS} eclass" |
17 | DESCRIPTION="Based on the ${ECLASS} eclass" |
| 20 | |
18 | |
| 21 | # 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 |
| … | |
… | |
| 62 | # to point to the latest version of the library present. |
60 | # to point to the latest version of the library present. |
| 63 | # |
61 | # |
| 64 | # <azarah@gentoo.org> (26 Oct 2002) |
62 | # <azarah@gentoo.org> (26 Oct 2002) |
| 65 | # |
63 | # |
| 66 | gen_usr_ldscript() { |
64 | gen_usr_ldscript() { |
| 67 | local libdir="$(get_libdir)" |
65 | local lib libdir=$(get_libdir) |
| 68 | # Just make sure it exists |
66 | # Just make sure it exists |
| 69 | dodir /usr/${libdir} |
67 | dodir /usr/${libdir} |
| 70 | |
68 | |
| 71 | for lib in "${@}" ; do |
69 | for lib in "${@}" ; do |
| 72 | cat > "${D}/usr/${libdir}/${lib}" <<-END_LDSCRIPT |
70 | cat > "${D}/usr/${libdir}/${lib}" <<-END_LDSCRIPT |
| 73 | /* GNU ld script |
71 | /* GNU ld script |
| 74 | Since Gentoo has critical dynamic libraries |
72 | Since Gentoo has critical dynamic libraries |
| 75 | in /lib, and the static versions in /usr/lib, |
73 | in /lib, and the static versions in /usr/lib, |
| 76 | we need to have a "fake" dynamic lib in /usr/lib, |
74 | we need to have a "fake" dynamic lib in /usr/lib, |
| 77 | otherwise we run into linking problems. |
75 | otherwise we run into linking problems. |
| 78 | |
76 | |
| 79 | See bug http://bugs.gentoo.org/4411 for more info. |
77 | See bug http://bugs.gentoo.org/4411 for more info. |
| 80 | */ |
78 | */ |
| 81 | GROUP ( /${libdir}/${lib} ) |
79 | GROUP ( /${libdir}/${lib} ) |
| 82 | END_LDSCRIPT |
80 | END_LDSCRIPT |
| 83 | fperms a+x "/usr/${libdir}/${lib}" |
81 | fperms a+x "/usr/${libdir}/${lib}" || die "could not change perms on ${lib}" |
| 84 | done |
82 | done |
| 85 | } |
83 | } |
| 86 | |
84 | |
| 87 | # Simple function to draw a line consisting of '=' the same length as $* |
|
|
| 88 | # - only to be used by epatch() |
|
|
| 89 | # |
|
|
| 90 | # <azarah@gentoo.org> (11 Nov 2002) |
|
|
| 91 | # |
|
|
| 92 | draw_line() { |
|
|
| 93 | local i=0 |
|
|
| 94 | local str_length="" |
|
|
| 95 | |
|
|
| 96 | # Handle calls that do not have args, or wc not being installed ... |
|
|
| 97 | if [ -z "$1" -o ! -x "$(which wc 2>/dev/null)" ] |
|
|
| 98 | then |
|
|
| 99 | echo "===============================================================" |
|
|
| 100 | return 0 |
|
|
| 101 | fi |
|
|
| 102 | |
|
|
| 103 | # Get the length of $* |
|
|
| 104 | str_length="$(echo -n "$*" | wc -m)" |
|
|
| 105 | |
|
|
| 106 | while [ "$i" -lt "${str_length}" ] |
|
|
| 107 | do |
|
|
| 108 | echo -n "=" |
|
|
| 109 | |
|
|
| 110 | i=$((i + 1)) |
|
|
| 111 | done |
|
|
| 112 | |
|
|
| 113 | echo |
|
|
| 114 | |
|
|
| 115 | return 0 |
|
|
| 116 | } |
|
|
| 117 | |
85 | |
| 118 | # Default directory where patches are located |
86 | # Default directory where patches are located |
| 119 | EPATCH_SOURCE="${WORKDIR}/patch" |
87 | EPATCH_SOURCE="${WORKDIR}/patch" |
| 120 | # Default extension for patches |
88 | # Default extension for patches |
| 121 | EPATCH_SUFFIX="patch.bz2" |
89 | EPATCH_SUFFIX="patch.bz2" |
| … | |
… | |
| 168 | # hand its a directory, it will set EPATCH_SOURCE to this. |
136 | # hand its a directory, it will set EPATCH_SOURCE to this. |
| 169 | # |
137 | # |
| 170 | # <azarah@gentoo.org> (10 Nov 2002) |
138 | # <azarah@gentoo.org> (10 Nov 2002) |
| 171 | # |
139 | # |
| 172 | epatch() { |
140 | epatch() { |
|
|
141 | _epatch_draw_line() { |
|
|
142 | local i=0 str_length="" str_out="" |
|
|
143 | |
|
|
144 | # Handle calls that do not have args, or wc not being installed ... |
|
|
145 | if [[ -z $1 ]] || ! type -p wc >/dev/null ; then |
|
|
146 | str_length=65 |
|
|
147 | else |
|
|
148 | str_length=$(echo -n "$*" | wc -m) |
|
|
149 | fi |
|
|
150 | |
|
|
151 | while ((i++ < ${str_length})) ; do |
|
|
152 | str_out="${str_out}=" |
|
|
153 | done |
|
|
154 | echo ${str_out} |
|
|
155 | |
|
|
156 | return 0 |
|
|
157 | } |
|
|
158 | _epatch_assert() { local _pipestatus=${PIPESTATUS[*]}; [[ ${_pipestatus// /} -eq 0 ]] ; } |
| 173 | local PIPE_CMD="" |
159 | local PIPE_CMD="" |
| 174 | local STDERR_TARGET="${T}/$$.out" |
160 | local STDERR_TARGET="${T}/$$.out" |
| 175 | local PATCH_TARGET="${T}/$$.patch" |
161 | local PATCH_TARGET="${T}/$$.patch" |
| 176 | local PATCH_SUFFIX="" |
162 | local PATCH_SUFFIX="" |
| 177 | local SINGLE_PATCH="no" |
163 | local SINGLE_PATCH="no" |
| 178 | local x="" |
164 | local x="" |
|
|
165 | |
|
|
166 | unset P4CONFIG P4PORT P4USER # keep perforce at bay #56402 |
| 179 | |
167 | |
| 180 | if [ "$#" -gt 1 ] |
168 | if [ "$#" -gt 1 ] |
| 181 | then |
169 | then |
| 182 | local m="" |
170 | local m="" |
| 183 | for m in "$@" ; do |
171 | for m in "$@" ; do |
| … | |
… | |
| 284 | |
272 | |
| 285 | # Allow for prefix to differ ... im lazy, so shoot me :/ |
273 | # Allow for prefix to differ ... im lazy, so shoot me :/ |
| 286 | while [ "${count}" -lt 5 ] |
274 | while [ "${count}" -lt 5 ] |
| 287 | do |
275 | do |
| 288 | # Generate some useful debug info ... |
276 | # Generate some useful debug info ... |
| 289 | draw_line "***** ${patchname} *****" >> ${STDERR_TARGET%/*}/${patchname}-${STDERR_TARGET##*/} |
277 | _epatch_draw_line "***** ${patchname} *****" >> ${STDERR_TARGET%/*}/${patchname}-${STDERR_TARGET##*/} |
| 290 | echo >> ${STDERR_TARGET%/*}/${patchname}-${STDERR_TARGET##*/} |
278 | echo >> ${STDERR_TARGET%/*}/${patchname}-${STDERR_TARGET##*/} |
| 291 | |
279 | |
| 292 | if [ "${PATCH_SUFFIX}" != "patch" ] |
280 | if [ "${PATCH_SUFFIX}" != "patch" ] |
| 293 | then |
281 | then |
| 294 | echo -n "PIPE_COMMAND: " >> ${STDERR_TARGET%/*}/${patchname}-${STDERR_TARGET##*/} |
282 | echo -n "PIPE_COMMAND: " >> ${STDERR_TARGET%/*}/${patchname}-${STDERR_TARGET##*/} |
| … | |
… | |
| 299 | |
287 | |
| 300 | echo -n "PATCH COMMAND: " >> ${STDERR_TARGET%/*}/${patchname}-${STDERR_TARGET##*/} |
288 | echo -n "PATCH COMMAND: " >> ${STDERR_TARGET%/*}/${patchname}-${STDERR_TARGET##*/} |
| 301 | echo "patch -p${count} ${popts} < ${PATCH_TARGET}" >> ${STDERR_TARGET%/*}/${patchname}-${STDERR_TARGET##*/} |
289 | echo "patch -p${count} ${popts} < ${PATCH_TARGET}" >> ${STDERR_TARGET%/*}/${patchname}-${STDERR_TARGET##*/} |
| 302 | |
290 | |
| 303 | echo >> ${STDERR_TARGET%/*}/${patchname}-${STDERR_TARGET##*/} |
291 | echo >> ${STDERR_TARGET%/*}/${patchname}-${STDERR_TARGET##*/} |
| 304 | draw_line "***** ${patchname} *****" >> ${STDERR_TARGET%/*}/${patchname}-${STDERR_TARGET##*/} |
292 | _epatch_draw_line "***** ${patchname} *****" >> ${STDERR_TARGET%/*}/${patchname}-${STDERR_TARGET##*/} |
| 305 | |
293 | |
| 306 | if [ "${PATCH_SUFFIX}" != "patch" ] |
294 | if [ "${PATCH_SUFFIX}" != "patch" ] |
| 307 | then |
295 | then |
| 308 | if ! (${PIPE_CMD} ${x} > ${PATCH_TARGET}) >> ${STDERR_TARGET%/*}/${patchname}-${STDERR_TARGET##*/} 2>&1 |
296 | if ! (${PIPE_CMD} ${x} > ${PATCH_TARGET}) >> ${STDERR_TARGET%/*}/${patchname}-${STDERR_TARGET##*/} 2>&1 |
| 309 | then |
297 | then |
| … | |
… | |
| 313 | count=5 |
301 | count=5 |
| 314 | break |
302 | break |
| 315 | fi |
303 | fi |
| 316 | fi |
304 | fi |
| 317 | |
305 | |
| 318 | if (cat ${PATCH_TARGET} | patch -p${count} ${popts} --dry-run -f) >> ${STDERR_TARGET%/*}/${patchname}-${STDERR_TARGET##*/} 2>&1 |
306 | if (cat ${PATCH_TARGET} | patch -p${count} ${popts} --dry-run -f ; _epatch_assert) >> ${STDERR_TARGET%/*}/${patchname}-${STDERR_TARGET##*/} 2>&1 |
| 319 | then |
307 | then |
| 320 | draw_line "***** ${patchname} *****" > ${STDERR_TARGET%/*}/${patchname}-${STDERR_TARGET##*/}.real |
308 | _epatch_draw_line "***** ${patchname} *****" > ${STDERR_TARGET%/*}/${patchname}-${STDERR_TARGET##*/}.real |
| 321 | echo >> ${STDERR_TARGET%/*}/${patchname}-${STDERR_TARGET##*/}.real |
309 | echo >> ${STDERR_TARGET%/*}/${patchname}-${STDERR_TARGET##*/}.real |
| 322 | echo "ACTUALLY APPLYING ${patchname} ..." >> ${STDERR_TARGET%/*}/${patchname}-${STDERR_TARGET##*/}.real |
310 | echo "ACTUALLY APPLYING ${patchname} ..." >> ${STDERR_TARGET%/*}/${patchname}-${STDERR_TARGET##*/}.real |
| 323 | echo >> ${STDERR_TARGET%/*}/${patchname}-${STDERR_TARGET##*/}.real |
311 | echo >> ${STDERR_TARGET%/*}/${patchname}-${STDERR_TARGET##*/}.real |
| 324 | draw_line "***** ${patchname} *****" >> ${STDERR_TARGET%/*}/${patchname}-${STDERR_TARGET##*/}.real |
312 | _epatch_draw_line "***** ${patchname} *****" >> ${STDERR_TARGET%/*}/${patchname}-${STDERR_TARGET##*/}.real |
| 325 | |
313 | |
| 326 | cat ${PATCH_TARGET} | patch -p${count} ${popts} >> ${STDERR_TARGET%/*}/${patchname}-${STDERR_TARGET##*/}.real 2>&1 |
314 | cat ${PATCH_TARGET} | patch -p${count} ${popts} >> ${STDERR_TARGET%/*}/${patchname}-${STDERR_TARGET##*/}.real 2>&1 |
|
|
315 | _epatch_assert |
| 327 | |
316 | |
| 328 | if [ "$?" -ne 0 ] |
317 | if [ "$?" -ne 0 ] |
| 329 | then |
318 | then |
| 330 | cat ${STDERR_TARGET%/*}/${patchname}-${STDERR_TARGET##*/}.real >> ${STDERR_TARGET%/*}/${patchname}-${STDERR_TARGET##*/} |
319 | cat ${STDERR_TARGET%/*}/${patchname}-${STDERR_TARGET##*/}.real >> ${STDERR_TARGET%/*}/${patchname}-${STDERR_TARGET##*/} |
| 331 | echo |
320 | echo |
| … | |
… | |
| 377 | # vapier@gentoo.org |
366 | # vapier@gentoo.org |
| 378 | # |
367 | # |
| 379 | # Takes just 1 optional parameter (the directory to create tmpfile in) |
368 | # Takes just 1 optional parameter (the directory to create tmpfile in) |
| 380 | emktemp() { |
369 | emktemp() { |
| 381 | local exe="touch" |
370 | local exe="touch" |
| 382 | [ "$1" == "-d" ] && exe="mkdir" && shift |
371 | [[ $1 == -d ]] && exe="mkdir" && shift |
| 383 | local topdir="$1" |
372 | local topdir=$1 |
| 384 | |
373 | |
| 385 | if [ -z "${topdir}" ] |
374 | if [[ -z ${topdir} ]] ; then |
| 386 | then |
|
|
| 387 | [ -z "${T}" ] \ |
375 | [[ -z ${T} ]] \ |
| 388 | && topdir="/tmp" \ |
376 | && topdir="/tmp" \ |
| 389 | || topdir="${T}" |
377 | || topdir=${T} |
| 390 | fi |
378 | fi |
| 391 | |
379 | |
| 392 | if [ -z "$(type -p mktemp)" ] |
380 | if [[ -z $(type -p mktemp) ]] ; then |
| 393 | then |
|
|
| 394 | local tmp=/ |
381 | local tmp=/ |
| 395 | while [ -e "${tmp}" ] ; do |
382 | while [[ -e ${tmp} ]] ; do |
| 396 | tmp="${topdir}/tmp.${RANDOM}.${RANDOM}.${RANDOM}" |
383 | tmp=${topdir}/tmp.${RANDOM}.${RANDOM}.${RANDOM} |
| 397 | done |
384 | done |
| 398 | ${exe} "${tmp}" |
385 | ${exe} "${tmp}" || ${exe} -p "${tmp}" |
| 399 | echo "${tmp}" |
386 | echo "${tmp}" |
| 400 | else |
387 | else |
| 401 | [ "${exe}" == "touch" ] \ |
388 | if [[ ${exe} == "touch" ]] ; then |
| 402 | && exe="-p" \ |
389 | [[ ${USERLAND} == "GNU" ]] \ |
| 403 | || exe="-d" |
390 | && mktemp -p "${topdir}" \ |
| 404 | mktemp ${exe} "${topdir}" |
391 | || TMPDIR="${topdir}" mktemp -t tmp |
|
|
392 | else |
|
|
393 | [[ ${USERLAND} == "GNU" ]] \ |
|
|
394 | && mktemp -d "${topdir}" \ |
|
|
395 | || TMPDIR="${topdir}" mktemp -dt tmp |
|
|
396 | fi |
| 405 | fi |
397 | fi |
| 406 | } |
398 | } |
| 407 | |
399 | |
| 408 | # Small wrapper for getent (Linux), nidump (Mac OS X), |
400 | # Small wrapper for getent (Linux), nidump (Mac OS X), |
| 409 | # and pw (FreeBSD) used in enewuser()/enewgroup() |
401 | # and pw (FreeBSD) used in enewuser()/enewgroup() |
| 410 | # Joe Jezak <josejx@gmail.com> and usata@gentoo.org |
402 | # Joe Jezak <josejx@gmail.com> and usata@gentoo.org |
| 411 | # FBSD stuff: Aaron Walker <ka0ttic@gentoo.org> |
403 | # FBSD stuff: Aaron Walker <ka0ttic@gentoo.org> |
| 412 | # |
404 | # |
| 413 | # egetent(database, key) |
405 | # egetent(database, key) |
| 414 | egetent() { |
406 | egetent() { |
| 415 | if [[ "${USERLAND}" == "Darwin" ]] ; then |
407 | case ${CHOST} in |
|
|
408 | *-darwin*) |
| 416 | case "$2" in |
409 | case "$2" in |
| 417 | *[!0-9]*) # Non numeric |
410 | *[!0-9]*) # Non numeric |
| 418 | nidump $1 . | awk -F":" "{ if (\$1 ~ /^$2$/) {print \$0;exit;} }" |
411 | nidump $1 . | awk -F":" "{ if (\$1 ~ /^$2$/) {print \$0;exit;} }" |
| 419 | ;; |
412 | ;; |
| 420 | *) # Numeric |
413 | *) # Numeric |
| 421 | nidump $1 . | awk -F":" "{ if (\$3 == $2) {print \$0;exit;} }" |
414 | nidump $1 . | awk -F":" "{ if (\$3 == $2) {print \$0;exit;} }" |
| 422 | ;; |
415 | ;; |
| 423 | esac |
416 | esac |
| 424 | elif [[ "${USERLAND}" == "BSD" ]] ; then |
417 | ;; |
| 425 | local action |
418 | *-freebsd*|*-dragonfly*) |
| 426 | if [ "$1" == "passwd" ] |
419 | local opts action="user" |
| 427 | then |
420 | [[ $1 == "passwd" ]] || action="group" |
| 428 | action="user" |
421 | |
| 429 | else |
422 | # lookup by uid/gid |
| 430 | action="group" |
423 | if [[ $2 == [[:digit:]]* ]] ; then |
|
|
424 | [[ ${action} == "user" ]] && opts="-u" || opts="-g" |
| 431 | fi |
425 | fi |
|
|
426 | |
| 432 | pw show "${action}" "$2" -q |
427 | pw show ${action} ${opts} "$2" -q |
| 433 | else |
428 | ;; |
|
|
429 | *-netbsd*|*-openbsd*) |
|
|
430 | grep "$2:\*:" /etc/$1 |
|
|
431 | ;; |
|
|
432 | *) |
| 434 | which nscd >& /dev/null && nscd -i "$1" |
433 | type -p nscd >& /dev/null && nscd -i "$1" |
| 435 | getent "$1" "$2" |
434 | getent "$1" "$2" |
| 436 | fi |
435 | ;; |
|
|
436 | esac |
| 437 | } |
437 | } |
| 438 | |
438 | |
| 439 | # Simplify/standardize adding users to the system |
439 | # Simplify/standardize adding users to the system |
| 440 | # vapier@gentoo.org |
440 | # vapier@gentoo.org |
| 441 | # |
441 | # |
| … | |
… | |
| 479 | fi |
479 | fi |
| 480 | else |
480 | else |
| 481 | euid="next" |
481 | euid="next" |
| 482 | fi |
482 | fi |
| 483 | if [[ ${euid} == "next" ]] ; then |
483 | if [[ ${euid} == "next" ]] ; then |
| 484 | local pwrange |
484 | for euid in $(seq 101 999) ; do |
| 485 | if [[ ${USERLAND} == "BSD" ]] ; then |
|
|
| 486 | pwrange=$(jot 898 101) |
|
|
| 487 | else |
|
|
| 488 | pwrange=$(seq 101 999) |
|
|
| 489 | fi |
|
|
| 490 | for euid in ${pwrange} ; do |
|
|
| 491 | [[ -z $(egetent passwd ${euid}) ]] && break |
485 | [[ -z $(egetent passwd ${euid}) ]] && break |
| 492 | done |
486 | done |
| 493 | fi |
487 | fi |
| 494 | opts="${opts} -u ${euid}" |
488 | opts="${opts} -u ${euid}" |
| 495 | einfo " - Userid: ${euid}" |
489 | einfo " - Userid: ${euid}" |
| 496 | |
490 | |
| 497 | # handle shell |
491 | # handle shell |
| 498 | local eshell=$1; shift |
492 | local eshell=$1; shift |
| 499 | if [[ ! -z ${eshell} ]] && [[ ${eshell} != "-1" ]] ; then |
493 | if [[ ! -z ${eshell} ]] && [[ ${eshell} != "-1" ]] ; then |
| 500 | if [[ ! -e ${eshell} ]] ; then |
494 | if [[ ! -e ${ROOT}${eshell} ]] ; then |
| 501 | eerror "A shell was specified but it does not exist !" |
495 | eerror "A shell was specified but it does not exist !" |
| 502 | die "${eshell} does not exist" |
496 | die "${eshell} does not exist in ${ROOT}" |
| 503 | fi |
497 | fi |
|
|
498 | if [[ ${eshell} == */false || ${eshell} == */nologin ]] ; then |
|
|
499 | eerror "Do not specify ${eshell} yourself, use -1" |
|
|
500 | die "Pass '-1' as the shell parameter" |
|
|
501 | fi |
| 504 | else |
502 | else |
| 505 | case ${USERLAND} in |
503 | for shell in /sbin/nologin /usr/sbin/nologin /bin/false /usr/bin/false /dev/null ; do |
| 506 | Darwin) eshell="/usr/bin/false";; |
504 | [[ -x ${ROOT}${shell} ]] && break |
| 507 | BSD) eshell="/usr/sbin/nologin";; |
505 | done |
| 508 | *) eshell="/bin/false";; |
506 | |
| 509 | esac |
507 | if [[ ${shell} == "/dev/null" ]] ; then |
|
|
508 | eerror "Unable to identify the shell to use" |
|
|
509 | die "Unable to identify the shell to use" |
|
|
510 | fi |
|
|
511 | |
|
|
512 | eshell=${shell} |
| 510 | fi |
513 | fi |
| 511 | einfo " - Shell: ${eshell}" |
514 | einfo " - Shell: ${eshell}" |
| 512 | opts="${opts} -s ${eshell}" |
515 | opts="${opts} -s ${eshell}" |
| 513 | |
516 | |
| 514 | # handle homedir |
517 | # handle homedir |
| … | |
… | |
| 551 | einfo " - Groups: ${egroups}" |
554 | einfo " - Groups: ${egroups}" |
| 552 | |
555 | |
| 553 | # handle extra and add the user |
556 | # handle extra and add the user |
| 554 | local oldsandbox=${SANDBOX_ON} |
557 | local oldsandbox=${SANDBOX_ON} |
| 555 | export SANDBOX_ON="0" |
558 | export SANDBOX_ON="0" |
| 556 | case ${USERLAND} in |
559 | case ${CHOST} in |
| 557 | Darwin) |
560 | *-darwin*) |
| 558 | ### Make the user |
561 | ### Make the user |
| 559 | if [[ -z $@ ]] ; then |
562 | if [[ -z $@ ]] ; then |
| 560 | dscl . create /users/${euser} uid ${euid} |
563 | dscl . create /users/${euser} uid ${euid} |
| 561 | dscl . create /users/${euser} shell ${eshell} |
564 | dscl . create /users/${euser} shell ${eshell} |
| 562 | dscl . create /users/${euser} home ${ehome} |
565 | dscl . create /users/${euser} home ${ehome} |
| … | |
… | |
| 573 | einfo "Please report the ebuild along with the info below" |
576 | einfo "Please report the ebuild along with the info below" |
| 574 | einfo "eextra: $@" |
577 | einfo "eextra: $@" |
| 575 | die "Required function missing" |
578 | die "Required function missing" |
| 576 | fi |
579 | fi |
| 577 | ;; |
580 | ;; |
| 578 | BSD) |
581 | *-freebsd*|*-dragonfly*) |
| 579 | if [[ -z $@ ]] ; then |
582 | if [[ -z $@ ]] ; then |
| 580 | pw useradd ${euser} ${opts} \ |
583 | pw useradd ${euser} ${opts} \ |
| 581 | -c "added by portage for ${PN}" \ |
584 | -c "added by portage for ${PN}" \ |
| 582 | die "enewuser failed" |
585 | die "enewuser failed" |
| 583 | else |
586 | else |
| 584 | einfo " - Extra: $@" |
587 | einfo " - Extra: $@" |
| 585 | pw useradd ${euser} ${opts} \ |
588 | pw useradd ${euser} ${opts} \ |
| 586 | "$@" || die "enewuser failed" |
589 | "$@" || die "enewuser failed" |
| 587 | fi |
590 | fi |
| 588 | ;; |
591 | ;; |
|
|
592 | |
|
|
593 | *-netbsd*) |
|
|
594 | if [[ -z $@ ]] ; then |
|
|
595 | useradd ${opts} ${euser} || die "enewuser failed" |
|
|
596 | else |
|
|
597 | einfo " - Extra: $@" |
|
|
598 | useradd ${opts} ${euser} "$@" || die "enewuser failed" |
|
|
599 | fi |
|
|
600 | ;; |
|
|
601 | |
|
|
602 | *-openbsd*) |
|
|
603 | if [[ -z $@ ]] ; then |
|
|
604 | useradd -u ${euid} -s ${eshell} \ |
|
|
605 | -d ${ehome} -c "Added by portage for ${PN}" \ |
|
|
606 | -g ${egroups} ${euser} || die "enewuser failed" |
|
|
607 | else |
|
|
608 | einfo " - Extra: $@" |
|
|
609 | useradd -u ${euid} -s ${eshell} \ |
|
|
610 | -d ${ehome} -c "Added by portage for ${PN}" \ |
|
|
611 | -g ${egroups} ${euser} "$@" || die "enewuser failed" |
|
|
612 | fi |
|
|
613 | ;; |
|
|
614 | |
| 589 | *) |
615 | *) |
| 590 | if [[ -z $@ ]] ; then |
616 | if [[ -z $@ ]] ; then |
| 591 | useradd ${opts} ${euser} \ |
617 | useradd ${opts} ${euser} \ |
| 592 | -c "added by portage for ${PN}" \ |
618 | -c "added by portage for ${PN}" \ |
| 593 | || die "enewuser failed" |
619 | || die "enewuser failed" |
| … | |
… | |
| 596 | useradd ${opts} ${euser} "$@" \ |
622 | useradd ${opts} ${euser} "$@" \ |
| 597 | || die "enewuser failed" |
623 | || die "enewuser failed" |
| 598 | fi |
624 | fi |
| 599 | ;; |
625 | ;; |
| 600 | esac |
626 | esac |
|
|
627 | |
|
|
628 | if [[ ! -e ${ROOT}/${ehome} ]] ; then |
|
|
629 | einfo " - Creating ${ehome} in ${ROOT}" |
|
|
630 | mkdir -p "${ROOT}/${ehome}" |
|
|
631 | chown ${euser} "${ROOT}/${ehome}" |
|
|
632 | chmod 755 "${ROOT}/${ehome}" |
|
|
633 | fi |
|
|
634 | |
| 601 | export SANDBOX_ON=${oldsandbox} |
635 | export SANDBOX_ON=${oldsandbox} |
| 602 | |
|
|
| 603 | if [ ! -e "${ehome}" ] && [ ! -e "${D}/${ehome}" ] |
|
|
| 604 | then |
|
|
| 605 | einfo " - Creating ${ehome} in ${D}" |
|
|
| 606 | dodir ${ehome} |
|
|
| 607 | fowners ${euser} ${ehome} |
|
|
| 608 | fperms 755 ${ehome} |
|
|
| 609 | fi |
|
|
| 610 | } |
636 | } |
| 611 | |
637 | |
| 612 | # Simplify/standardize adding groups to the system |
638 | # Simplify/standardize adding groups to the system |
| 613 | # vapier@gentoo.org |
639 | # vapier@gentoo.org |
| 614 | # |
640 | # |
| … | |
… | |
| 643 | then |
669 | then |
| 644 | if [ "${egid}" -gt 0 ] |
670 | if [ "${egid}" -gt 0 ] |
| 645 | then |
671 | then |
| 646 | if [ -z "`egetent group ${egid}`" ] |
672 | if [ -z "`egetent group ${egid}`" ] |
| 647 | then |
673 | then |
| 648 | if [[ "${USERLAND}" == "Darwin" ]]; then |
674 | if [[ "${CHOST}" == *-darwin* ]]; then |
| 649 | opts="${opts} ${egid}" |
675 | opts="${opts} ${egid}" |
| 650 | else |
676 | else |
| 651 | opts="${opts} -g ${egid}" |
677 | opts="${opts} -g ${egid}" |
| 652 | fi |
678 | fi |
| 653 | else |
679 | else |
| … | |
… | |
| 667 | opts="${opts} ${eextra}" |
693 | opts="${opts} ${eextra}" |
| 668 | |
694 | |
| 669 | # add the group |
695 | # add the group |
| 670 | local oldsandbox="${SANDBOX_ON}" |
696 | local oldsandbox="${SANDBOX_ON}" |
| 671 | export SANDBOX_ON="0" |
697 | export SANDBOX_ON="0" |
| 672 | if [[ "${USERLAND}" == "Darwin" ]]; then |
698 | case ${CHOST} in |
|
|
699 | *-darwin*) |
| 673 | if [ ! -z "${eextra}" ]; |
700 | if [ ! -z "${eextra}" ]; |
| 674 | then |
701 | then |
| 675 | einfo "Extra options are not supported on Darwin/OS X yet" |
702 | einfo "Extra options are not supported on Darwin/OS X yet" |
| 676 | einfo "Please report the ebuild along with the info below" |
703 | einfo "Please report the ebuild along with the info below" |
| 677 | einfo "eextra: ${eextra}" |
704 | einfo "eextra: ${eextra}" |
| 678 | die "Required function missing" |
705 | die "Required function missing" |
| 679 | fi |
706 | fi |
| 680 | |
707 | |
| 681 | # If we need the next available |
708 | # If we need the next available |
| 682 | case ${egid} in |
709 | case ${egid} in |
| 683 | *[!0-9]*) # Non numeric |
710 | *[!0-9]*) # Non numeric |
| 684 | for egid in `jot 898 101`; do |
711 | for egid in $(seq 101 999); do |
| 685 | [ -z "`egetent group ${egid}`" ] && break |
712 | [ -z "`egetent group ${egid}`" ] && break |
| 686 | done |
713 | done |
| 687 | esac |
714 | esac |
| 688 | dscl . create /groups/${egroup} gid ${egid} |
715 | dscl . create /groups/${egroup} gid ${egid} |
| 689 | dscl . create /groups/${egroup} passwd '*' |
716 | dscl . create /groups/${egroup} passwd '*' |
| 690 | elif [[ "${USERLAND}" == "BSD" ]] ; then |
717 | ;; |
|
|
718 | |
|
|
719 | *-freebsd*|*-dragonfly*) |
| 691 | case ${egid} in |
720 | case ${egid} in |
| 692 | *[!0-9]*) # Non numeric |
721 | *[!0-9]*) # Non numeric |
| 693 | for egid in `jot 898 101`; do |
722 | for egid in $(seq 101 999); do |
| 694 | [ -z "`egetent group ${egid}`" ] && break |
723 | [ -z "`egetent group ${egid}`" ] && break |
| 695 | done |
724 | done |
| 696 | esac |
725 | esac |
| 697 | pw groupadd ${egroup} -g ${egid} || die "enewgroup failed" |
726 | pw groupadd ${egroup} -g ${egid} || die "enewgroup failed" |
| 698 | else |
727 | ;; |
|
|
728 | |
|
|
729 | *-netbsd*) |
|
|
730 | case ${egid} in |
|
|
731 | *[!0-9]*) # Non numeric |
|
|
732 | for egid in $(seq 101 999); do |
|
|
733 | [ -z "`egetent group ${egid}`" ] && break |
|
|
734 | done |
|
|
735 | esac |
|
|
736 | groupadd -g ${egid} ${egroup} || die "enewgroup failed" |
|
|
737 | ;; |
|
|
738 | |
|
|
739 | *) |
| 699 | groupadd ${opts} ${egroup} || die "enewgroup failed" |
740 | groupadd ${opts} ${egroup} || die "enewgroup failed" |
| 700 | fi |
741 | ;; |
|
|
742 | esac |
| 701 | export SANDBOX_ON="${oldsandbox}" |
743 | export SANDBOX_ON="${oldsandbox}" |
| 702 | } |
744 | } |
| 703 | |
745 | |
| 704 | # Simple script to replace 'dos2unix' binaries |
746 | # Simple script to replace 'dos2unix' binaries |
| 705 | # vapier@gentoo.org |
747 | # vapier@gentoo.org |
| … | |
… | |
| 730 | # name: the name that will show up in the menu |
772 | # name: the name that will show up in the menu |
| 731 | # icon: give your little like a pretty little icon ... |
773 | # icon: give your little like a pretty little icon ... |
| 732 | # this can be relative (to /usr/share/pixmaps) or |
774 | # this can be relative (to /usr/share/pixmaps) or |
| 733 | # a full path to an icon |
775 | # a full path to an icon |
| 734 | # type: what kind of application is this ? for categories: |
776 | # type: what kind of application is this ? for categories: |
| 735 | # http://www.freedesktop.org/wiki/Standards_2fmenu_2dspec |
777 | # http://www.freedesktop.org/Standards/desktop-entry-spec |
| 736 | # path: if your app needs to startup in a specific dir |
778 | # path: if your app needs to startup in a specific dir |
| 737 | make_desktop_entry() { |
779 | make_desktop_entry() { |
| 738 | [[ -z $1 ]] && eerror "make_desktop_entry: You must specify the executable" && return 1 |
780 | [[ -z $1 ]] && eerror "make_desktop_entry: You must specify the executable" && return 1 |
| 739 | |
781 | |
| 740 | local exec=${1} |
782 | local exec=${1} |
| … | |
… | |
| 766 | dev) |
808 | dev) |
| 767 | type="Development" |
809 | type="Development" |
| 768 | ;; |
810 | ;; |
| 769 | |
811 | |
| 770 | games) |
812 | games) |
| 771 | [[ -z ${path} ]] && path=${GAMES_BINDIR} |
|
|
| 772 | |
|
|
| 773 | case ${catmin} in |
813 | case ${catmin} in |
| 774 | action) type=ActionGame;; |
814 | action) type=ActionGame;; |
| 775 | arcade) type=ArcadeGame;; |
815 | arcade) type=ArcadeGame;; |
| 776 | board) type=BoardGame;; |
816 | board) type=BoardGame;; |
| 777 | kid) type=KidsGame;; |
817 | kid) type=KidsGame;; |
| … | |
… | |
| 818 | type="Network;${type}" |
858 | type="Network;${type}" |
| 819 | ;; |
859 | ;; |
| 820 | |
860 | |
| 821 | sci) |
861 | sci) |
| 822 | case ${catmin} in |
862 | case ${catmin} in |
| 823 | astro*) type=Astronomoy;; |
863 | astro*) type=Astronomy;; |
| 824 | bio*) type=Biology;; |
864 | bio*) type=Biology;; |
| 825 | calc*) type=Calculator;; |
865 | calc*) type=Calculator;; |
| 826 | chem*) type=Chemistry;; |
866 | chem*) type=Chemistry;; |
| 827 | geo*) type=Geology;; |
867 | geo*) type=Geology;; |
| 828 | math*) type=Math;; |
868 | math*) type=Math;; |
| … | |
… | |
| 860 | Exec=${exec} |
900 | Exec=${exec} |
| 861 | Path=${path} |
901 | Path=${path} |
| 862 | Icon=${icon} |
902 | Icon=${icon} |
| 863 | Categories=Application;${type};" > "${desktop}" |
903 | Categories=Application;${type};" > "${desktop}" |
| 864 | |
904 | |
|
|
905 | ( |
|
|
906 | # wrap the env here so that the 'insinto' call |
|
|
907 | # doesn't corrupt the env of the caller |
| 865 | insinto /usr/share/applications |
908 | insinto /usr/share/applications |
| 866 | doins "${desktop}" |
909 | doins "${desktop}" |
| 867 | |
910 | ) |
| 868 | return 0 |
|
|
| 869 | } |
911 | } |
| 870 | |
912 | |
| 871 | # Make a GDM/KDM Session file |
913 | # Make a GDM/KDM Session file |
| 872 | # |
914 | # |
| 873 | # make_desktop_entry(<title>, <command>) |
915 | # make_desktop_entry(<title>, <command>) |
| … | |
… | |
| 902 | doins "${i}" |
944 | doins "${i}" |
| 903 | elif [[ -d ${i} ]] ; then |
945 | elif [[ -d ${i} ]] ; then |
| 904 | for j in "${i}"/*.desktop ; do |
946 | for j in "${i}"/*.desktop ; do |
| 905 | doins "${j}" |
947 | doins "${j}" |
| 906 | done |
948 | done |
| 907 | fi |
949 | fi |
| 908 | done |
950 | done |
| 909 | } |
951 | } |
| 910 | newmenu() { |
952 | newmenu() { |
| 911 | insinto /usr/share/applications |
953 | insinto /usr/share/applications |
| 912 | newins "$1" "$2" |
954 | newins "$1" "$2" |
| … | |
… | |
| 920 | doins "${i}" |
962 | doins "${i}" |
| 921 | elif [[ -d ${i} ]] ; then |
963 | elif [[ -d ${i} ]] ; then |
| 922 | for j in "${i}"/*.png ; do |
964 | for j in "${i}"/*.png ; do |
| 923 | doins "${j}" |
965 | doins "${j}" |
| 924 | done |
966 | done |
| 925 | fi |
967 | fi |
| 926 | done |
968 | done |
| 927 | } |
969 | } |
| 928 | newicon() { |
970 | newicon() { |
| 929 | insinto /usr/share/pixmaps |
971 | insinto /usr/share/pixmaps |
| 930 | newins "$1" "$2" |
972 | newins "$1" "$2" |
| … | |
… | |
| 935 | ############################################################## |
977 | ############################################################## |
| 936 | |
978 | |
| 937 | |
979 | |
| 938 | # for internal use only (unpack_pdv and unpack_makeself) |
980 | # for internal use only (unpack_pdv and unpack_makeself) |
| 939 | find_unpackable_file() { |
981 | find_unpackable_file() { |
| 940 | local src="$1" |
982 | local src=$1 |
| 941 | if [ -z "${src}" ] |
983 | if [[ -z ${src} ]] ; then |
| 942 | then |
|
|
| 943 | src="${DISTDIR}/${A}" |
984 | src=${DISTDIR}/${A} |
| 944 | else |
985 | else |
| 945 | if [ -e "${DISTDIR}/${src}" ] |
986 | if [[ -e ${DISTDIR}/${src} ]] ; then |
| 946 | then |
|
|
| 947 | src="${DISTDIR}/${src}" |
987 | src=${DISTDIR}/${src} |
| 948 | elif [ -e "${PWD}/${src}" ] |
988 | elif [[ -e ${PWD}/${src} ]] ; then |
| 949 | then |
|
|
| 950 | src="${PWD}/${src}" |
989 | src=${PWD}/${src} |
| 951 | elif [ -e "${src}" ] |
990 | elif [[ -e ${src} ]] ; then |
| 952 | then |
|
|
| 953 | src="${src}" |
991 | src=${src} |
| 954 | fi |
|
|
| 955 | fi |
992 | fi |
| 956 | [ ! -e "${src}" ] && die "Could not find requested archive ${src}" |
993 | fi |
|
|
994 | [[ ! -e ${src} ]] && return 1 |
| 957 | echo "${src}" |
995 | echo "${src}" |
| 958 | } |
996 | } |
| 959 | |
997 | |
| 960 | # Unpack those pesky pdv generated files ... |
998 | # Unpack those pesky pdv generated files ... |
| 961 | # They're self-unpacking programs with the binary package stuffed in |
999 | # They're self-unpacking programs with the binary package stuffed in |
| … | |
… | |
| 976 | # lseek |
1014 | # lseek |
| 977 | # root@vapier 0 pdv_unpack # strace -elseek ./hldsupdatetool.bin |
1015 | # root@vapier 0 pdv_unpack # strace -elseek ./hldsupdatetool.bin |
| 978 | # lseek(3, -4, SEEK_END) = 2981250 |
1016 | # lseek(3, -4, SEEK_END) = 2981250 |
| 979 | # thus we would pass in the value of '4' as the second parameter. |
1017 | # thus we would pass in the value of '4' as the second parameter. |
| 980 | unpack_pdv() { |
1018 | unpack_pdv() { |
| 981 | local src="`find_unpackable_file $1`" |
1019 | local src=$(find_unpackable_file $1) |
| 982 | local sizeoff_t="$2" |
1020 | local sizeoff_t=$2 |
| 983 | |
1021 | |
|
|
1022 | [[ -z ${src} ]] && die "Could not locate source for '$1'" |
| 984 | [ -z "${sizeoff_t}" ] && die "No idea what off_t size was used for this pdv :(" |
1023 | [[ -z ${sizeoff_t} ]] && die "No idea what off_t size was used for this pdv :(" |
| 985 | |
1024 | |
| 986 | local shrtsrc="`basename ${src}`" |
1025 | local shrtsrc=$(basename "${src}") |
| 987 | echo ">>> Unpacking ${shrtsrc} to ${PWD}" |
1026 | echo ">>> Unpacking ${shrtsrc} to ${PWD}" |
| 988 | local metaskip=`tail -c ${sizeoff_t} ${src} | hexdump -e \"%i\"` |
1027 | local metaskip=`tail -c ${sizeoff_t} ${src} | hexdump -e \"%i\"` |
| 989 | local tailskip=`tail -c $((${sizeoff_t}*2)) ${src} | head -c ${sizeoff_t} | hexdump -e \"%i\"` |
1028 | local tailskip=`tail -c $((${sizeoff_t}*2)) ${src} | head -c ${sizeoff_t} | hexdump -e \"%i\"` |
| 990 | |
1029 | |
| 991 | # grab metadata for debug reasons |
1030 | # grab metadata for debug reasons |
| … | |
… | |
| 1055 | # Usage: unpack_makeself [file to unpack] [offset] [tail|dd] |
1094 | # Usage: unpack_makeself [file to unpack] [offset] [tail|dd] |
| 1056 | # - If the file is not specified then unpack will utilize ${A}. |
1095 | # - If the file is not specified then unpack will utilize ${A}. |
| 1057 | # - If the offset is not specified then we will attempt to extract |
1096 | # - If the offset is not specified then we will attempt to extract |
| 1058 | # the proper offset from the script itself. |
1097 | # the proper offset from the script itself. |
| 1059 | unpack_makeself() { |
1098 | unpack_makeself() { |
|
|
1099 | local src_input=${1:-${A}} |
| 1060 | local src="$(find_unpackable_file "$1")" |
1100 | local src=$(find_unpackable_file "${src_input}") |
| 1061 | local skip="$2" |
1101 | local skip=$2 |
| 1062 | local exe="$3" |
1102 | local exe=$3 |
| 1063 | |
1103 | |
|
|
1104 | [[ -z ${src} ]] && die "Could not locate source for '${src_input}'" |
|
|
1105 | |
| 1064 | local shrtsrc="$(basename "${src}")" |
1106 | local shrtsrc=$(basename "${src}") |
| 1065 | echo ">>> Unpacking ${shrtsrc} to ${PWD}" |
1107 | echo ">>> Unpacking ${shrtsrc} to ${PWD}" |
| 1066 | if [ -z "${skip}" ] |
1108 | if [[ -z ${skip} ]] ; then |
| 1067 | then |
|
|
| 1068 | local ver="`grep -a '#.*Makeself' ${src} | awk '{print $NF}'`" |
1109 | local ver=$(grep -a '#.*Makeself' "${src}" | awk '{print $NF}') |
| 1069 | local skip=0 |
1110 | local skip=0 |
| 1070 | exe=tail |
1111 | exe=tail |
| 1071 | case ${ver} in |
1112 | case ${ver} in |
| 1072 | 1.5.*) # tested 1.5.{3,4,5} ... guessing 1.5.x series is same |
1113 | 1.5.*) # tested 1.5.{3,4,5} ... guessing 1.5.x series is same |
| 1073 | skip=$(grep -a ^skip= "${src}" | cut -d= -f2) |
1114 | skip=$(grep -a ^skip= "${src}" | cut -d= -f2) |
| … | |
… | |
| 1085 | ;; |
1126 | ;; |
| 1086 | 2.1.3) |
1127 | 2.1.3) |
| 1087 | skip=`grep -a ^offset= "${src}" | awk '{print $3}'` |
1128 | skip=`grep -a ^offset= "${src}" | awk '{print $3}'` |
| 1088 | let skip="skip + 1" |
1129 | let skip="skip + 1" |
| 1089 | ;; |
1130 | ;; |
| 1090 | 2.1.4) |
1131 | 2.1.4|2.1.5) |
| 1091 | skip=$(grep -a offset=.*head.*wc "${src}" | awk '{print $3}' | head -n 1) |
1132 | skip=$(grep -a offset=.*head.*wc "${src}" | awk '{print $3}' | head -n 1) |
| 1092 | skip=$(head -n ${skip} "${src}" | wc -c) |
1133 | skip=$(head -n ${skip} "${src}" | wc -c) |
| 1093 | exe="dd" |
1134 | exe="dd" |
| 1094 | ;; |
1135 | ;; |
| 1095 | *) |
1136 | *) |
| … | |
… | |
| 1140 | check_license() { |
1181 | check_license() { |
| 1141 | local lic=$1 |
1182 | local lic=$1 |
| 1142 | if [ -z "${lic}" ] ; then |
1183 | if [ -z "${lic}" ] ; then |
| 1143 | lic="${PORTDIR}/licenses/${LICENSE}" |
1184 | lic="${PORTDIR}/licenses/${LICENSE}" |
| 1144 | else |
1185 | else |
| 1145 | if [ -e "${PORTDIR}/licenses/${src}" ] ; then |
1186 | if [ -e "${PORTDIR}/licenses/${lic}" ] ; then |
| 1146 | lic="${PORTDIR}/licenses/${src}" |
1187 | lic="${PORTDIR}/licenses/${lic}" |
| 1147 | elif [ -e "${PWD}/${src}" ] ; then |
1188 | elif [ -e "${PWD}/${lic}" ] ; then |
| 1148 | lic="${PWD}/${src}" |
1189 | lic="${PWD}/${lic}" |
| 1149 | elif [ -e "${src}" ] ; then |
1190 | elif [ -e "${lic}" ] ; then |
| 1150 | lic="${src}" |
1191 | lic="${lic}" |
| 1151 | fi |
|
|
| 1152 | fi |
1192 | fi |
|
|
1193 | fi |
| 1153 | [ ! -f "${lic}" ] && die "Could not find requested license ${src}" |
1194 | [ ! -f "${lic}" ] && die "Could not find requested license ${lic}" |
| 1154 | local l="`basename ${lic}`" |
1195 | local l="`basename ${lic}`" |
| 1155 | |
1196 | |
| 1156 | # here is where we check for the licenses the user already |
1197 | # here is where we check for the licenses the user already |
| 1157 | # accepted ... if we don't find a match, we make the user accept |
1198 | # accepted ... if we don't find a match, we make the user accept |
| 1158 | local shopts=$- |
1199 | local shopts=$- |
| … | |
… | |
| 1214 | # first we figure out how many cds we're dealing with by |
1255 | # first we figure out how many cds we're dealing with by |
| 1215 | # the # of files they gave us |
1256 | # the # of files they gave us |
| 1216 | local cdcnt=0 |
1257 | local cdcnt=0 |
| 1217 | local f= |
1258 | local f= |
| 1218 | for f in "$@" ; do |
1259 | for f in "$@" ; do |
| 1219 | cdcnt=$((cdcnt + 1)) |
1260 | ((++cdcnt)) |
| 1220 | export CDROM_CHECK_${cdcnt}="$f" |
1261 | export CDROM_CHECK_${cdcnt}="$f" |
| 1221 | done |
1262 | done |
| 1222 | export CDROM_TOTAL_CDS=${cdcnt} |
1263 | export CDROM_TOTAL_CDS=${cdcnt} |
| 1223 | export CDROM_CURRENT_CD=1 |
1264 | export CDROM_CURRENT_CD=1 |
| 1224 | |
1265 | |
| 1225 | # now we see if the user gave use CD_ROOT ... |
1266 | # now we see if the user gave use CD_ROOT ... |
| 1226 | # if they did, let's just believe them that it's correct |
1267 | # if they did, let's just believe them that it's correct |
| 1227 | if [[ ! -z ${CD_ROOT} ]] ; then |
|
|
| 1228 | export CDROM_ROOT=${CD_ROOT} |
|
|
| 1229 | einfo "Found CD #${CDROM_CURRENT_CD} root at ${CDROM_ROOT}" |
|
|
| 1230 | return |
|
|
| 1231 | fi |
|
|
| 1232 | # do the same for CD_ROOT_X |
|
|
| 1233 | if [[ ! -z ${CD_ROOT_1} ]] ; then |
1268 | if [[ -n ${CD_ROOT}${CD_ROOT_1} ]] ; then |
| 1234 | local var= |
1269 | local var= |
| 1235 | cdcnt=0 |
1270 | cdcnt=0 |
| 1236 | while [[ ${cdcnt} -lt ${CDROM_TOTAL_CDS} ]] ; do |
1271 | while [[ ${cdcnt} -lt ${CDROM_TOTAL_CDS} ]] ; do |
| 1237 | cdcnt=$((cdcnt + 1)) |
1272 | ((++cdcnt)) |
| 1238 | var="CD_ROOT_${cdcnt}" |
1273 | var="CD_ROOT_${cdcnt}" |
|
|
1274 | [[ -z ${!var} ]] && var="CD_ROOT" |
| 1239 | if [[ -z ${!var} ]] ; then |
1275 | if [[ -z ${!var} ]] ; then |
| 1240 | eerror "You must either use just the CD_ROOT" |
1276 | eerror "You must either use just the CD_ROOT" |
| 1241 | eerror "or specify ALL the CD_ROOT_X variables." |
1277 | eerror "or specify ALL the CD_ROOT_X variables." |
| 1242 | eerror "In this case, you will need ${CDROM_TOTAL_CDS} CD_ROOT_X variables." |
1278 | eerror "In this case, you will need ${CDROM_TOTAL_CDS} CD_ROOT_X variables." |
| 1243 | die "could not locate CD_ROOT_${cdcnt}" |
1279 | die "could not locate CD_ROOT_${cdcnt}" |
| 1244 | fi |
1280 | fi |
| 1245 | export CDROM_ROOTS_${cdcnt}="${!var}" |
|
|
| 1246 | done |
1281 | done |
| 1247 | export CDROM_ROOT=${CDROM_ROOTS_1} |
1282 | export CDROM_ROOT=${CD_ROOT_1:-${CD_ROOT}} |
| 1248 | einfo "Found CD #${CDROM_CURRENT_CD} root at ${CDROM_ROOT}" |
1283 | einfo "Found CD #${CDROM_CURRENT_CD} root at ${CDROM_ROOT}" |
|
|
1284 | export CDROM_SET=-1 |
|
|
1285 | for f in ${CDROM_CHECK_1//:/ } ; do |
|
|
1286 | ((++CDROM_SET)) |
|
|
1287 | [[ -e ${CD_ROOT}/${f} ]] && break |
|
|
1288 | done |
|
|
1289 | export CDROM_MATCH=${f} |
| 1249 | return |
1290 | return |
| 1250 | fi |
1291 | fi |
| 1251 | |
1292 | |
|
|
1293 | # User didn't help us out so lets make sure they know they can |
|
|
1294 | # simplify the whole process ... |
| 1252 | if [[ ${CDROM_TOTAL_CDS} -eq 1 ]] ; then |
1295 | if [[ ${CDROM_TOTAL_CDS} -eq 1 ]] ; then |
| 1253 | einfon "This ebuild will need the " |
1296 | einfo "This ebuild will need the ${CDROM_NAME:-cdrom for ${PN}}" |
| 1254 | if [[ -z ${CDROM_NAME} ]] ; then |
|
|
| 1255 | echo "cdrom for ${PN}." |
|
|
| 1256 | else |
|
|
| 1257 | echo "${CDROM_NAME}." |
|
|
| 1258 | fi |
|
|
| 1259 | echo |
1297 | echo |
| 1260 | einfo "If you do not have the CD, but have the data files" |
1298 | einfo "If you do not have the CD, but have the data files" |
| 1261 | einfo "mounted somewhere on your filesystem, just export" |
1299 | einfo "mounted somewhere on your filesystem, just export" |
| 1262 | einfo "the variable CD_ROOT so that it points to the" |
1300 | einfo "the variable CD_ROOT so that it points to the" |
| 1263 | einfo "directory containing the files." |
1301 | einfo "directory containing the files." |
| … | |
… | |
| 1267 | echo |
1305 | echo |
| 1268 | else |
1306 | else |
| 1269 | einfo "This package will need access to ${CDROM_TOTAL_CDS} cds." |
1307 | einfo "This package will need access to ${CDROM_TOTAL_CDS} cds." |
| 1270 | cdcnt=0 |
1308 | cdcnt=0 |
| 1271 | while [[ ${cdcnt} -lt ${CDROM_TOTAL_CDS} ]] ; do |
1309 | while [[ ${cdcnt} -lt ${CDROM_TOTAL_CDS} ]] ; do |
| 1272 | cdcnt=$((cdcnt + 1)) |
1310 | ((++cdcnt)) |
| 1273 | var="CDROM_NAME_${cdcnt}" |
1311 | var="CDROM_NAME_${cdcnt}" |
| 1274 | [[ ! -z ${!var} ]] && einfo " CD ${cdcnt}: ${!var}" |
1312 | [[ ! -z ${!var} ]] && einfo " CD ${cdcnt}: ${!var}" |
| 1275 | done |
1313 | done |
| 1276 | echo |
1314 | echo |
| 1277 | einfo "If you do not have the CDs, but have the data files" |
1315 | einfo "If you do not have the CDs, but have the data files" |
| 1278 | einfo "mounted somewhere on your filesystem, just export" |
1316 | einfo "mounted somewhere on your filesystem, just export" |
| 1279 | einfo "the following variables so they point to the right place:" |
1317 | einfo "the following variables so they point to the right place:" |
| 1280 | einfon "" |
1318 | einfon "" |
| 1281 | cdcnt=0 |
1319 | cdcnt=0 |
| 1282 | while [[ ${cdcnt} -lt ${CDROM_TOTAL_CDS} ]] ; do |
1320 | while [[ ${cdcnt} -lt ${CDROM_TOTAL_CDS} ]] ; do |
| 1283 | cdcnt=$((cdcnt + 1)) |
1321 | ((++cdcnt)) |
| 1284 | echo -n " CD_ROOT_${cdcnt}" |
1322 | echo -n " CD_ROOT_${cdcnt}" |
| 1285 | done |
1323 | done |
| 1286 | echo |
1324 | echo |
| 1287 | einfo "Or, if you have all the files in the same place, or" |
1325 | einfo "Or, if you have all the files in the same place, or" |
| 1288 | einfo "you only have one cdrom, you can export CD_ROOT" |
1326 | einfo "you only have one cdrom, you can export CD_ROOT" |
| … | |
… | |
| 1291 | echo |
1329 | echo |
| 1292 | einfo "For example:" |
1330 | einfo "For example:" |
| 1293 | einfo "export CD_ROOT_1=/mnt/cdrom" |
1331 | einfo "export CD_ROOT_1=/mnt/cdrom" |
| 1294 | echo |
1332 | echo |
| 1295 | fi |
1333 | fi |
|
|
1334 | |
|
|
1335 | export CDROM_SET="" |
| 1296 | export CDROM_CURRENT_CD=0 |
1336 | export CDROM_CURRENT_CD=0 |
| 1297 | cdrom_load_next_cd |
1337 | cdrom_load_next_cd |
| 1298 | } |
1338 | } |
| 1299 | |
1339 | |
| 1300 | # this is only used when you need access to more than one cd. |
1340 | # this is only used when you need access to more than one cd. |
| 1301 | # when you have finished using the first cd, just call this function. |
1341 | # when you have finished using the first cd, just call this function. |
| 1302 | # when it returns, CDROM_ROOT will be pointing to the second cd. |
1342 | # when it returns, CDROM_ROOT will be pointing to the second cd. |
| 1303 | # remember, you can only go forward in the cd chain, you can't go back. |
1343 | # remember, you can only go forward in the cd chain, you can't go back. |
| 1304 | cdrom_load_next_cd() { |
1344 | cdrom_load_next_cd() { |
| 1305 | export CDROM_CURRENT_CD=$((CDROM_CURRENT_CD + 1)) |
|
|
| 1306 | local var= |
1345 | local var |
| 1307 | |
1346 | ((++CDROM_CURRENT_CD)) |
| 1308 | if [[ ! -z ${CD_ROOT} ]] ; then |
|
|
| 1309 | einfo "Using same root as before for CD #${CDROM_CURRENT_CD}" |
|
|
| 1310 | return |
|
|
| 1311 | fi |
|
|
| 1312 | |
1347 | |
| 1313 | unset CDROM_ROOT |
1348 | unset CDROM_ROOT |
| 1314 | var=CDROM_ROOTS_${CDROM_CURRENT_CD} |
1349 | var=CD_ROOT_${CDROM_CURRENT_CD} |
|
|
1350 | [[ -z ${!var} ]] && var="CD_ROOT" |
| 1315 | if [[ -z ${!var} ]] ; then |
1351 | if [[ -z ${!var} ]] ; then |
| 1316 | var="CDROM_CHECK_${CDROM_CURRENT_CD}" |
1352 | var="CDROM_CHECK_${CDROM_CURRENT_CD}" |
| 1317 | cdrom_locate_file_on_cd ${!var} |
1353 | _cdrom_locate_file_on_cd ${!var} |
| 1318 | else |
1354 | else |
| 1319 | export CDROM_ROOT=${!var} |
1355 | export CDROM_ROOT=${!var} |
| 1320 | fi |
1356 | fi |
| 1321 | |
1357 | |
| 1322 | einfo "Found CD #${CDROM_CURRENT_CD} root at ${CDROM_ROOT}" |
1358 | einfo "Found CD #${CDROM_CURRENT_CD} root at ${CDROM_ROOT}" |
| … | |
… | |
| 1327 | # all it does is try to locate a give file on a cd ... if the cd isn't |
1363 | # all it does is try to locate a give file on a cd ... if the cd isn't |
| 1328 | # found, then a message asking for the user to insert the cdrom will be |
1364 | # found, then a message asking for the user to insert the cdrom will be |
| 1329 | # displayed and we'll hang out here until: |
1365 | # displayed and we'll hang out here until: |
| 1330 | # (1) the file is found on a mounted cdrom |
1366 | # (1) the file is found on a mounted cdrom |
| 1331 | # (2) the user hits CTRL+C |
1367 | # (2) the user hits CTRL+C |
| 1332 | cdrom_locate_file_on_cd() { |
1368 | _cdrom_locate_file_on_cd() { |
|
|
1369 | local mline="" |
|
|
1370 | local showedmsg=0 |
|
|
1371 | |
| 1333 | while [[ -z ${CDROM_ROOT} ]] ; do |
1372 | while [[ -z ${CDROM_ROOT} ]] ; do |
|
|
1373 | local i=0 |
|
|
1374 | local -a cdset=(${*//:/ }) |
|
|
1375 | if [[ -n ${CDROM_SET} ]] ; then |
|
|
1376 | cdset=(${cdset[${CDROM_SET}]}) |
|
|
1377 | fi |
|
|
1378 | |
|
|
1379 | while [[ -n ${cdset[${i}]} ]] ; do |
| 1334 | local dir="$(dirname ${@})" |
1380 | local dir=$(dirname ${cdset[${i}]}) |
| 1335 | local file="$(basename ${@})" |
1381 | local file=$(basename ${cdset[${i}]}) |
| 1336 | local mline="" |
|
|
| 1337 | local showedmsg=0 |
|
|
| 1338 | |
1382 | |
| 1339 | for mline in $(mount | egrep -e '(iso|cdrom)' | awk '{print $3}') ; do |
1383 | for mline in $(mount | gawk '/(iso|cdrom|fs=cdfss)/ {print $3}') ; do |
| 1340 | [[ -d ${mline}/${dir} ]] || continue |
1384 | [[ -d ${mline}/${dir} ]] || continue |
| 1341 | [[ ! -z $(find ${mline}/${dir} -maxdepth 1 -iname ${file}) ]] \ |
1385 | if [[ -n $(find ${mline}/${dir} -maxdepth 1 -iname ${file}) ]] ; then |
| 1342 | && export CDROM_ROOT=${mline} |
1386 | export CDROM_ROOT=${mline} |
|
|
1387 | export CDROM_SET=${i} |
|
|
1388 | export CDROM_MATCH=${cdset[${i}]} |
|
|
1389 | return |
|
|
1390 | fi |
|
|
1391 | done |
|
|
1392 | |
|
|
1393 | ((++i)) |
| 1343 | done |
1394 | done |
| 1344 | |
1395 | |
| 1345 | if [[ -z ${CDROM_ROOT} ]] ; then |
|
|
| 1346 | echo |
1396 | echo |
| 1347 | if [[ ${showedmsg} -eq 0 ]] ; then |
1397 | if [[ ${showedmsg} -eq 0 ]] ; then |
| 1348 | if [[ ${CDROM_TOTAL_CDS} -eq 1 ]] ; then |
1398 | if [[ ${CDROM_TOTAL_CDS} -eq 1 ]] ; then |
| 1349 | if [[ -z ${CDROM_NAME} ]] ; then |
1399 | if [[ -z ${CDROM_NAME} ]] ; then |
| 1350 | einfo "Please insert the cdrom for ${PN} now !" |
1400 | einfo "Please insert+mount the cdrom for ${PN} now !" |
| 1351 | else |
|
|
| 1352 | einfo "Please insert the ${CDROM_NAME} cdrom now !" |
|
|
| 1353 | fi |
|
|
| 1354 | else |
1401 | else |
| 1355 | if [[ -z ${CDROM_NAME_1} ]] ; then |
|
|
| 1356 | einfo "Please insert cd #${CDROM_CURRENT_CD} for ${PN} now !" |
|
|
| 1357 | else |
|
|
| 1358 | local var="CDROM_NAME_${CDROM_CURRENT_CD}" |
|
|
| 1359 | einfo "Please insert+mount the ${!var} cdrom now !" |
1402 | einfo "Please insert+mount the ${CDROM_NAME} cdrom now !" |
| 1360 | fi |
|
|
| 1361 | fi |
1403 | fi |
| 1362 | showedmsg=1 |
1404 | else |
|
|
1405 | if [[ -z ${CDROM_NAME_1} ]] ; then |
|
|
1406 | einfo "Please insert+mount cd #${CDROM_CURRENT_CD} for ${PN} now !" |
|
|
1407 | else |
|
|
1408 | local var="CDROM_NAME_${CDROM_CURRENT_CD}" |
|
|
1409 | einfo "Please insert+mount the ${!var} cdrom now !" |
|
|
1410 | fi |
| 1363 | fi |
1411 | fi |
|
|
1412 | showedmsg=1 |
|
|
1413 | fi |
| 1364 | einfo "Press return to scan for the cd again" |
1414 | einfo "Press return to scan for the cd again" |
| 1365 | einfo "or hit CTRL+C to abort the emerge." |
1415 | einfo "or hit CTRL+C to abort the emerge." |
| 1366 | read |
1416 | echo |
| 1367 | fi |
1417 | einfo "If you are having trouble with the detection" |
|
|
1418 | einfo "of your CD, it is possible that you do not have" |
|
|
1419 | einfo "Joliet support enabled in your kernel. Please" |
|
|
1420 | einfo "check that CONFIG_JOLIET is enabled in your kernel." |
|
|
1421 | read || die "something is screwed with your system" |
| 1368 | done |
1422 | done |
| 1369 | } |
1423 | } |
| 1370 | |
1424 | |
| 1371 | # Make sure that LINGUAS only contains languages that |
1425 | # Make sure that LINGUAS only contains languages that |
| 1372 | # a package can support |
1426 | # a package can support |
| … | |
… | |
| 1493 | LIB=$1 |
1547 | LIB=$1 |
| 1494 | |
1548 | |
| 1495 | if [ -n "${LIB}" -a -f "${ROOT}${LIB}" ]; then |
1549 | if [ -n "${LIB}" -a -f "${ROOT}${LIB}" ]; then |
| 1496 | SONAME=`basename ${LIB}` |
1550 | SONAME=`basename ${LIB}` |
| 1497 | |
1551 | |
| 1498 | einfo "An old version of an installed library was detected on your system." |
1552 | ewarn "An old version of an installed library was detected on your system." |
| 1499 | einfo "In order to avoid breaking packages that link against is, this older version" |
1553 | ewarn "In order to avoid breaking packages that link against it, this older version" |
| 1500 | einfo "is not being removed. In order to make full use of this newer version," |
1554 | ewarn "is not being removed. In order to make full use of this newer version," |
| 1501 | einfo "you will need to execute the following command:" |
1555 | ewarn "you will need to execute the following command:" |
| 1502 | einfo " revdep-rebuild --soname ${SONAME}" |
1556 | ewarn " revdep-rebuild --soname ${SONAME}" |
| 1503 | einfo |
1557 | ewarn |
| 1504 | einfo "After doing that, you can safely remove ${LIB}" |
1558 | ewarn "After doing that, you can safely remove ${LIB}" |
| 1505 | einfo "Note: 'emerge gentoolkit' to get revdep-rebuild" |
1559 | ewarn "Note: 'emerge gentoolkit' to get revdep-rebuild" |
| 1506 | fi |
1560 | fi |
| 1507 | } |
1561 | } |
| 1508 | |
1562 | |
| 1509 | # Hack for people to figure out if a package was built with |
1563 | # Hack for people to figure out if a package was built with |
| 1510 | # certain USE flags |
1564 | # certain USE flags |
| … | |
… | |
| 1520 | [[ ${opt:0:1} = "-" ]] && shift || opt="-a" |
1574 | [[ ${opt:0:1} = "-" ]] && shift || opt="-a" |
| 1521 | |
1575 | |
| 1522 | local PKG=$(best_version $1) |
1576 | local PKG=$(best_version $1) |
| 1523 | shift |
1577 | shift |
| 1524 | |
1578 | |
| 1525 | local USEFILE="${ROOT}/var/db/pkg/${PKG}/USE" |
1579 | local USEFILE=${ROOT}/var/db/pkg/${PKG}/USE |
|
|
1580 | |
|
|
1581 | # if the USE file doesnt exist, assume the $PKG is either |
|
|
1582 | # injected or package.provided |
| 1526 | [[ ! -e ${USEFILE} ]] && return 1 |
1583 | [[ ! -e ${USEFILE} ]] && return 0 |
| 1527 | |
1584 | |
| 1528 | local USE_BUILT=$(<${USEFILE}) |
1585 | local USE_BUILT=$(<${USEFILE}) |
| 1529 | while [[ $# -gt 0 ]] ; do |
1586 | while [[ $# -gt 0 ]] ; do |
| 1530 | if [[ ${opt} = "-o" ]] ; then |
1587 | if [[ ${opt} = "-o" ]] ; then |
| 1531 | has $1 ${USE_BUILT} && return 0 |
1588 | has $1 ${USE_BUILT} && return 0 |
| … | |
… | |
| 1583 | # $4 == extra LD_LIBRARY_PATH's (make it : delimited) |
1640 | # $4 == extra LD_LIBRARY_PATH's (make it : delimited) |
| 1584 | # $5 == path for wrapper |
1641 | # $5 == path for wrapper |
| 1585 | make_wrapper() { |
1642 | make_wrapper() { |
| 1586 | local wrapper=$1 bin=$2 chdir=$3 libdir=$4 path=$5 |
1643 | local wrapper=$1 bin=$2 chdir=$3 libdir=$4 path=$5 |
| 1587 | local tmpwrapper=$(emktemp) |
1644 | local tmpwrapper=$(emktemp) |
|
|
1645 | # We don't want to quote ${bin} so that people can pass complex |
|
|
1646 | # things as $bin ... "./someprog --args" |
| 1588 | cat << EOF > "${tmpwrapper}" |
1647 | cat << EOF > "${tmpwrapper}" |
| 1589 | #!/bin/sh |
1648 | #!/bin/sh |
| 1590 | cd "${chdir}" |
1649 | cd "${chdir:-.}" |
|
|
1650 | if [ -n "${libdir}" ] ; then |
|
|
1651 | if [ "\${LD_LIBRARY_PATH+set}" = "set" ] ; then |
| 1591 | export LD_LIBRARY_PATH="\${LD_LIBRARY_PATH}:${libdir}" |
1652 | export LD_LIBRARY_PATH="\${LD_LIBRARY_PATH}:${libdir}" |
|
|
1653 | else |
|
|
1654 | export LD_LIBRARY_PATH="${libdir}" |
|
|
1655 | fi |
|
|
1656 | fi |
| 1592 | exec ${bin} "\$@" |
1657 | exec ${bin} "\$@" |
| 1593 | EOF |
1658 | EOF |
| 1594 | chmod go+rx "${tmpwrapper}" |
1659 | chmod go+rx "${tmpwrapper}" |
| 1595 | if [ -n "${5}" ] |
1660 | if [[ -n ${path} ]] ; then |
| 1596 | then |
|
|
| 1597 | exeinto ${5} |
1661 | exeinto "${path}" |
| 1598 | newexe "${tmpwrapper}" "${wrapper}" |
1662 | newexe "${tmpwrapper}" "${wrapper}" |
| 1599 | else |
1663 | else |
| 1600 | newbin "${tmpwrapper}" "${wrapper}" |
1664 | newbin "${tmpwrapper}" "${wrapper}" |
| 1601 | fi |
1665 | fi |
| 1602 | } |
1666 | } |