| 1 | # Copyright 1999-2005 Gentoo Foundation |
1 | # Copyright 1999-2006 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.1.1.1 2005/11/30 09:59:15 chriswhite Exp $ |
3 | # $Header: /var/cvsroot/gentoo-x86/eclass/eutils.eclass,v 1.248 2006/08/19 13:52:02 vapier Exp $ |
| 4 | # |
|
|
| 5 | # Author: Martin Schlemmer <azarah@gentoo.org> |
|
|
| 6 | # |
4 | # |
| 7 | # This eclass is for general purpose functions that most ebuilds |
5 | # This eclass is for general purpose functions that most ebuilds |
| 8 | # have to implement themselves. |
6 | # have to implement themselves. |
| 9 | # |
7 | # |
| 10 | # NB: If you add anything, please comment it! |
8 | # NB: If you add anything, please comment it! |
|
|
9 | # |
|
|
10 | # Maintainer: see each individual function, base-system@gentoo.org as default |
| 11 | |
11 | |
| 12 | inherit multilib portability |
12 | inherit multilib portability |
| 13 | |
|
|
| 14 | DEPEND="!bootstrap? ( sys-devel/patch )" |
|
|
| 15 | # sys-apps/shadow is needed for useradd, etc, bug #94745. |
|
|
| 16 | |
13 | |
| 17 | DESCRIPTION="Based on the ${ECLASS} eclass" |
14 | DESCRIPTION="Based on the ${ECLASS} eclass" |
| 18 | |
15 | |
| 19 | # Wait for the supplied number of seconds. If no argument is supplied, defaults |
16 | # Wait for the supplied number of seconds. If no argument is supplied, defaults |
| 20 | # to five seconds. If the EPAUSE_IGNORE env var is set, don't wait. If we're not |
17 | # to five seconds. If the EPAUSE_IGNORE env var is set, don't wait. If we're not |
| 21 | # outputting to a terminal, don't wait. For compatability purposes, the argument |
18 | # outputting to a terminal, don't wait. For compatability purposes, the argument |
| 22 | # must be an integer greater than zero. |
19 | # must be an integer greater than zero. |
| 23 | # Bug 62950, Ciaran McCreesh <ciaranm@gentoo.org> (05 Sep 2004) |
20 | # Bug 62950, Ciaran McCreesh <ciaranm@gentoo.org> (05 Sep 2004) |
| 24 | epause() { |
21 | epause() { |
| 25 | if [ -z "$EPAUSE_IGNORE" ] && [ -t 1 ] ; then |
22 | [[ -z ${EPAUSE_IGNORE} ]] && sleep ${1:-5} |
| 26 | sleep ${1:-5} |
|
|
| 27 | fi |
|
|
| 28 | } |
23 | } |
| 29 | |
24 | |
| 30 | # Beep the specified number of times (defaults to five). If our output |
25 | # Beep the specified number of times (defaults to five). If our output |
| 31 | # is not a terminal, don't beep. If the EBEEP_IGNORE env var is set, |
26 | # is not a terminal, don't beep. If the EBEEP_IGNORE env var is set, |
| 32 | # don't beep. |
27 | # don't beep. |
| 33 | # Bug 62950, Ciaran McCreesh <ciaranm@gentoo.org> (05 Sep 2004) |
28 | # Bug 62950, Ciaran McCreesh <ciaranm@gentoo.org> (05 Sep 2004) |
| 34 | ebeep() { |
29 | ebeep() { |
| 35 | local n |
30 | local n |
| 36 | if [ -z "$EBEEP_IGNORE" ] && [ -t 1 ] ; then |
31 | if [[ -z ${EBEEP_IGNORE} ]] ; then |
| 37 | for ((n=1 ; n <= ${1:-5} ; n++)) ; do |
32 | for ((n=1 ; n <= ${1:-5} ; n++)) ; do |
| 38 | echo -ne "\a" |
33 | echo -ne "\a" |
| 39 | sleep 0.1 &>/dev/null ; sleep 0,1 &>/dev/null |
34 | sleep 0.1 &>/dev/null ; sleep 0,1 &>/dev/null |
| 40 | echo -ne "\a" |
35 | echo -ne "\a" |
| 41 | sleep 1 |
36 | sleep 1 |
| … | |
… | |
| 60 | # to point to the latest version of the library present. |
55 | # to point to the latest version of the library present. |
| 61 | # |
56 | # |
| 62 | # <azarah@gentoo.org> (26 Oct 2002) |
57 | # <azarah@gentoo.org> (26 Oct 2002) |
| 63 | # |
58 | # |
| 64 | gen_usr_ldscript() { |
59 | gen_usr_ldscript() { |
|
|
60 | if [[ $(type -t _tc_gen_usr_ldscript) == "function" ]] ; then |
|
|
61 | _tc_gen_usr_ldscript "$@" |
|
|
62 | return $? |
|
|
63 | fi |
|
|
64 | |
|
|
65 | ewarn "QA Notice: Please upgrade your ebuild to use toolchain-funcs" |
|
|
66 | ewarn "QA Notice: rather than gen_usr_ldscript() from eutils" |
|
|
67 | |
| 65 | local libdir="$(get_libdir)" |
68 | local lib libdir=$(get_libdir) |
| 66 | # Just make sure it exists |
69 | # Just make sure it exists |
| 67 | dodir /usr/${libdir} |
70 | dodir /usr/${libdir} |
| 68 | |
71 | |
| 69 | for lib in "${@}" ; do |
72 | for lib in "${@}" ; do |
| 70 | cat > "${D}/usr/${libdir}/${lib}" <<-END_LDSCRIPT |
73 | cat > "${D}/usr/${libdir}/${lib}" <<-END_LDSCRIPT |
| … | |
… | |
| 76 | |
79 | |
| 77 | See bug http://bugs.gentoo.org/4411 for more info. |
80 | See bug http://bugs.gentoo.org/4411 for more info. |
| 78 | */ |
81 | */ |
| 79 | GROUP ( /${libdir}/${lib} ) |
82 | GROUP ( /${libdir}/${lib} ) |
| 80 | END_LDSCRIPT |
83 | END_LDSCRIPT |
| 81 | fperms a+x "/usr/${libdir}/${lib}" |
84 | fperms a+x "/usr/${libdir}/${lib}" || die "could not change perms on ${lib}" |
| 82 | done |
85 | done |
| 83 | } |
86 | } |
| 84 | |
87 | |
| 85 | # Simple function to draw a line consisting of '=' the same length as $* |
|
|
| 86 | # - only to be used by epatch() |
|
|
| 87 | # |
|
|
| 88 | # <azarah@gentoo.org> (11 Nov 2002) |
|
|
| 89 | # |
|
|
| 90 | draw_line() { |
|
|
| 91 | local i=0 |
|
|
| 92 | local str_length="" |
|
|
| 93 | |
|
|
| 94 | # Handle calls that do not have args, or wc not being installed ... |
|
|
| 95 | if [ -z "$1" -o ! -x "$(which wc 2>/dev/null)" ] |
|
|
| 96 | then |
|
|
| 97 | echo "===============================================================" |
|
|
| 98 | return 0 |
|
|
| 99 | fi |
|
|
| 100 | |
|
|
| 101 | # Get the length of $* |
|
|
| 102 | str_length="$(echo -n "$*" | wc -m)" |
|
|
| 103 | |
|
|
| 104 | while [ "$i" -lt "${str_length}" ] |
|
|
| 105 | do |
|
|
| 106 | echo -n "=" |
|
|
| 107 | |
|
|
| 108 | i=$((i + 1)) |
|
|
| 109 | done |
|
|
| 110 | |
|
|
| 111 | echo |
|
|
| 112 | |
|
|
| 113 | return 0 |
|
|
| 114 | } |
|
|
| 115 | |
88 | |
| 116 | # Default directory where patches are located |
89 | # Default directory where patches are located |
| 117 | EPATCH_SOURCE="${WORKDIR}/patch" |
90 | EPATCH_SOURCE="${WORKDIR}/patch" |
| 118 | # Default extension for patches |
91 | # Default extension for patches |
| 119 | EPATCH_SUFFIX="patch.bz2" |
92 | EPATCH_SUFFIX="patch.bz2" |
| 120 | # Default options for patch |
93 | # Default options for patch |
| 121 | # Set -g0 to keep RCS, ClearCase, Perforce and SCCS happy. Bug #24571 |
94 | # Set -g0 to keep RCS, ClearCase, Perforce and SCCS happy. Bug #24571 |
| 122 | # Set --no-backup-if-mismatch so we don't leave '.orig' files behind. |
95 | # Set --no-backup-if-mismatch so we don't leave '.orig' files behind. |
|
|
96 | # Set -E to automatically remove empty files. |
| 123 | EPATCH_OPTS="-g0 --no-backup-if-mismatch" |
97 | EPATCH_OPTS="-g0 -E --no-backup-if-mismatch" |
| 124 | # List of patches not to apply. Not this is only file names, |
98 | # List of patches not to apply. Not this is only file names, |
| 125 | # and not the full path .. |
99 | # and not the full path .. |
| 126 | EPATCH_EXCLUDE="" |
100 | EPATCH_EXCLUDE="" |
| 127 | # Change the printed message for a single patch. |
101 | # Change the printed message for a single patch. |
| 128 | EPATCH_SINGLE_MSG="" |
102 | EPATCH_SINGLE_MSG="" |
| … | |
… | |
| 166 | # hand its a directory, it will set EPATCH_SOURCE to this. |
140 | # hand its a directory, it will set EPATCH_SOURCE to this. |
| 167 | # |
141 | # |
| 168 | # <azarah@gentoo.org> (10 Nov 2002) |
142 | # <azarah@gentoo.org> (10 Nov 2002) |
| 169 | # |
143 | # |
| 170 | epatch() { |
144 | epatch() { |
|
|
145 | _epatch_draw_line() { |
|
|
146 | [[ -z $1 ]] && set "$(printf "%65s" '')" |
|
|
147 | echo "${1//?/=}" |
|
|
148 | } |
| 171 | _epatch_assert() { local _pipestatus=${PIPESTATUS[*]}; [[ ${_pipestatus// /} -eq 0 ]] ; } |
149 | _epatch_assert() { local _pipestatus=${PIPESTATUS[*]}; [[ ${_pipestatus// /} -eq 0 ]] ; } |
| 172 | local PIPE_CMD="" |
150 | local PIPE_CMD="" |
| 173 | local STDERR_TARGET="${T}/$$.out" |
151 | local STDERR_TARGET="${T}/$$.out" |
| 174 | local PATCH_TARGET="${T}/$$.patch" |
152 | local PATCH_TARGET="${T}/$$.patch" |
| 175 | local PATCH_SUFFIX="" |
153 | local PATCH_SUFFIX="" |
| … | |
… | |
| 285 | |
263 | |
| 286 | # Allow for prefix to differ ... im lazy, so shoot me :/ |
264 | # Allow for prefix to differ ... im lazy, so shoot me :/ |
| 287 | while [ "${count}" -lt 5 ] |
265 | while [ "${count}" -lt 5 ] |
| 288 | do |
266 | do |
| 289 | # Generate some useful debug info ... |
267 | # Generate some useful debug info ... |
| 290 | draw_line "***** ${patchname} *****" >> ${STDERR_TARGET%/*}/${patchname}-${STDERR_TARGET##*/} |
268 | _epatch_draw_line "***** ${patchname} *****" >> ${STDERR_TARGET%/*}/${patchname}-${STDERR_TARGET##*/} |
| 291 | echo >> ${STDERR_TARGET%/*}/${patchname}-${STDERR_TARGET##*/} |
269 | echo >> ${STDERR_TARGET%/*}/${patchname}-${STDERR_TARGET##*/} |
| 292 | |
270 | |
| 293 | if [ "${PATCH_SUFFIX}" != "patch" ] |
271 | if [ "${PATCH_SUFFIX}" != "patch" ] |
| 294 | then |
272 | then |
| 295 | echo -n "PIPE_COMMAND: " >> ${STDERR_TARGET%/*}/${patchname}-${STDERR_TARGET##*/} |
273 | echo -n "PIPE_COMMAND: " >> ${STDERR_TARGET%/*}/${patchname}-${STDERR_TARGET##*/} |
| … | |
… | |
| 300 | |
278 | |
| 301 | echo -n "PATCH COMMAND: " >> ${STDERR_TARGET%/*}/${patchname}-${STDERR_TARGET##*/} |
279 | echo -n "PATCH COMMAND: " >> ${STDERR_TARGET%/*}/${patchname}-${STDERR_TARGET##*/} |
| 302 | echo "patch -p${count} ${popts} < ${PATCH_TARGET}" >> ${STDERR_TARGET%/*}/${patchname}-${STDERR_TARGET##*/} |
280 | echo "patch -p${count} ${popts} < ${PATCH_TARGET}" >> ${STDERR_TARGET%/*}/${patchname}-${STDERR_TARGET##*/} |
| 303 | |
281 | |
| 304 | echo >> ${STDERR_TARGET%/*}/${patchname}-${STDERR_TARGET##*/} |
282 | echo >> ${STDERR_TARGET%/*}/${patchname}-${STDERR_TARGET##*/} |
| 305 | draw_line "***** ${patchname} *****" >> ${STDERR_TARGET%/*}/${patchname}-${STDERR_TARGET##*/} |
283 | _epatch_draw_line "***** ${patchname} *****" >> ${STDERR_TARGET%/*}/${patchname}-${STDERR_TARGET##*/} |
| 306 | |
284 | |
| 307 | if [ "${PATCH_SUFFIX}" != "patch" ] |
285 | if [ "${PATCH_SUFFIX}" != "patch" ] |
| 308 | then |
286 | then |
| 309 | if ! (${PIPE_CMD} ${x} > ${PATCH_TARGET}) >> ${STDERR_TARGET%/*}/${patchname}-${STDERR_TARGET##*/} 2>&1 |
287 | if ! (${PIPE_CMD} ${x} > ${PATCH_TARGET}) >> ${STDERR_TARGET%/*}/${patchname}-${STDERR_TARGET##*/} 2>&1 |
| 310 | then |
288 | then |
| … | |
… | |
| 316 | fi |
294 | fi |
| 317 | fi |
295 | fi |
| 318 | |
296 | |
| 319 | if (cat ${PATCH_TARGET} | patch -p${count} ${popts} --dry-run -f ; _epatch_assert) >> ${STDERR_TARGET%/*}/${patchname}-${STDERR_TARGET##*/} 2>&1 |
297 | if (cat ${PATCH_TARGET} | patch -p${count} ${popts} --dry-run -f ; _epatch_assert) >> ${STDERR_TARGET%/*}/${patchname}-${STDERR_TARGET##*/} 2>&1 |
| 320 | then |
298 | then |
| 321 | draw_line "***** ${patchname} *****" > ${STDERR_TARGET%/*}/${patchname}-${STDERR_TARGET##*/}.real |
299 | _epatch_draw_line "***** ${patchname} *****" > ${STDERR_TARGET%/*}/${patchname}-${STDERR_TARGET##*/}.real |
| 322 | echo >> ${STDERR_TARGET%/*}/${patchname}-${STDERR_TARGET##*/}.real |
300 | echo >> ${STDERR_TARGET%/*}/${patchname}-${STDERR_TARGET##*/}.real |
| 323 | echo "ACTUALLY APPLYING ${patchname} ..." >> ${STDERR_TARGET%/*}/${patchname}-${STDERR_TARGET##*/}.real |
301 | echo "ACTUALLY APPLYING ${patchname} ..." >> ${STDERR_TARGET%/*}/${patchname}-${STDERR_TARGET##*/}.real |
| 324 | echo >> ${STDERR_TARGET%/*}/${patchname}-${STDERR_TARGET##*/}.real |
302 | echo >> ${STDERR_TARGET%/*}/${patchname}-${STDERR_TARGET##*/}.real |
| 325 | draw_line "***** ${patchname} *****" >> ${STDERR_TARGET%/*}/${patchname}-${STDERR_TARGET##*/}.real |
303 | _epatch_draw_line "***** ${patchname} *****" >> ${STDERR_TARGET%/*}/${patchname}-${STDERR_TARGET##*/}.real |
| 326 | |
304 | |
| 327 | cat ${PATCH_TARGET} | patch -p${count} ${popts} >> ${STDERR_TARGET%/*}/${patchname}-${STDERR_TARGET##*/}.real 2>&1 |
305 | cat ${PATCH_TARGET} | patch -p${count} ${popts} >> ${STDERR_TARGET%/*}/${patchname}-${STDERR_TARGET##*/}.real 2>&1 |
| 328 | _epatch_assert |
306 | _epatch_assert |
| 329 | |
307 | |
| 330 | if [ "$?" -ne 0 ] |
308 | if [ "$?" -ne 0 ] |
| … | |
… | |
| 396 | tmp=${topdir}/tmp.${RANDOM}.${RANDOM}.${RANDOM} |
374 | tmp=${topdir}/tmp.${RANDOM}.${RANDOM}.${RANDOM} |
| 397 | done |
375 | done |
| 398 | ${exe} "${tmp}" || ${exe} -p "${tmp}" |
376 | ${exe} "${tmp}" || ${exe} -p "${tmp}" |
| 399 | echo "${tmp}" |
377 | echo "${tmp}" |
| 400 | else |
378 | else |
| 401 | [[ ${exe} == "touch" ]] \ |
379 | if [[ ${exe} == "touch" ]] ; then |
| 402 | && exe="-p" \ |
380 | [[ ${USERLAND} == "GNU" ]] \ |
| 403 | || exe="-d" |
381 | && mktemp -p "${topdir}" \ |
| 404 | mktemp ${exe} "${topdir}" |
382 | || TMPDIR="${topdir}" mktemp -t tmp |
|
|
383 | else |
|
|
384 | [[ ${USERLAND} == "GNU" ]] \ |
|
|
385 | && mktemp -d "${topdir}" \ |
|
|
386 | || TMPDIR="${topdir}" mktemp -dt tmp |
|
|
387 | fi |
| 405 | fi |
388 | fi |
| 406 | } |
389 | } |
| 407 | |
390 | |
| 408 | # Small wrapper for getent (Linux), nidump (Mac OS X), |
391 | # Small wrapper for getent (Linux), nidump (Mac OS X), |
| 409 | # and pw (FreeBSD) used in enewuser()/enewgroup() |
392 | # and pw (FreeBSD) used in enewuser()/enewgroup() |
| … | |
… | |
| 421 | *) # Numeric |
404 | *) # Numeric |
| 422 | nidump $1 . | awk -F":" "{ if (\$3 == $2) {print \$0;exit;} }" |
405 | nidump $1 . | awk -F":" "{ if (\$3 == $2) {print \$0;exit;} }" |
| 423 | ;; |
406 | ;; |
| 424 | esac |
407 | esac |
| 425 | ;; |
408 | ;; |
| 426 | *-freebsd*) |
409 | *-freebsd*|*-dragonfly*) |
| 427 | local opts action="user" |
410 | local opts action="user" |
| 428 | [[ $1 == "passwd" ]] || action="group" |
411 | [[ $1 == "passwd" ]] || action="group" |
| 429 | |
412 | |
| 430 | # lookup by uid/gid |
413 | # lookup by uid/gid |
| 431 | if [[ $2 == [[:digit:]]* ]] ; then |
414 | if [[ $2 == [[:digit:]]* ]] ; then |
| … | |
… | |
| 456 | # shell: /bin/false |
439 | # shell: /bin/false |
| 457 | # homedir: /dev/null |
440 | # homedir: /dev/null |
| 458 | # groups: none |
441 | # groups: none |
| 459 | # extra: comment of 'added by portage for ${PN}' |
442 | # extra: comment of 'added by portage for ${PN}' |
| 460 | enewuser() { |
443 | enewuser() { |
|
|
444 | case ${EBUILD_PHASE} in |
|
|
445 | unpack|compile|test|install) |
|
|
446 | eerror "'enewuser()' called from '${EBUILD_PHASE}()' which is not a pkg_* function." |
|
|
447 | eerror "Package fails at QA and at life. Please file a bug." |
|
|
448 | die "Bad package! enewuser is only for use in pkg_* functions!" |
|
|
449 | esac |
|
|
450 | |
| 461 | # get the username |
451 | # get the username |
| 462 | local euser=$1; shift |
452 | local euser=$1; shift |
| 463 | if [[ -z ${euser} ]] ; then |
453 | if [[ -z ${euser} ]] ; then |
| 464 | eerror "No username specified !" |
454 | eerror "No username specified !" |
| 465 | die "Cannot call enewuser without a username" |
455 | die "Cannot call enewuser without a username" |
| … | |
… | |
| 497 | einfo " - Userid: ${euid}" |
487 | einfo " - Userid: ${euid}" |
| 498 | |
488 | |
| 499 | # handle shell |
489 | # handle shell |
| 500 | local eshell=$1; shift |
490 | local eshell=$1; shift |
| 501 | if [[ ! -z ${eshell} ]] && [[ ${eshell} != "-1" ]] ; then |
491 | if [[ ! -z ${eshell} ]] && [[ ${eshell} != "-1" ]] ; then |
| 502 | if [[ ! -e ${eshell} ]] ; then |
492 | if [[ ! -e ${ROOT}${eshell} ]] ; then |
| 503 | eerror "A shell was specified but it does not exist !" |
493 | eerror "A shell was specified but it does not exist !" |
| 504 | die "${eshell} does not exist" |
494 | die "${eshell} does not exist in ${ROOT}" |
|
|
495 | fi |
|
|
496 | if [[ ${eshell} == */false || ${eshell} == */nologin ]] ; then |
|
|
497 | eerror "Do not specify ${eshell} yourself, use -1" |
|
|
498 | die "Pass '-1' as the shell parameter" |
| 505 | fi |
499 | fi |
| 506 | else |
500 | else |
| 507 | for shell in /sbin/nologin /usr/sbin/nologin /bin/false /usr/bin/false /dev/null ; do |
501 | for shell in /sbin/nologin /usr/sbin/nologin /bin/false /usr/bin/false /dev/null ; do |
| 508 | [[ -x ${ROOT}${shell} ]] && break |
502 | [[ -x ${ROOT}${shell} ]] && break |
| 509 | done |
503 | done |
| … | |
… | |
| 580 | einfo "Please report the ebuild along with the info below" |
574 | einfo "Please report the ebuild along with the info below" |
| 581 | einfo "eextra: $@" |
575 | einfo "eextra: $@" |
| 582 | die "Required function missing" |
576 | die "Required function missing" |
| 583 | fi |
577 | fi |
| 584 | ;; |
578 | ;; |
| 585 | *-freebsd*) |
579 | *-freebsd*|*-dragonfly*) |
| 586 | if [[ -z $@ ]] ; then |
580 | if [[ -z $@ ]] ; then |
| 587 | pw useradd ${euser} ${opts} \ |
581 | pw useradd ${euser} ${opts} \ |
| 588 | -c "added by portage for ${PN}" \ |
582 | -c "added by portage for ${PN}" \ |
| 589 | die "enewuser failed" |
583 | die "enewuser failed" |
| 590 | else |
584 | else |
| … | |
… | |
| 647 | # Default values if you do not specify any: |
641 | # Default values if you do not specify any: |
| 648 | # groupname: REQUIRED ! |
642 | # groupname: REQUIRED ! |
| 649 | # gid: next available (see groupadd(8)) |
643 | # gid: next available (see groupadd(8)) |
| 650 | # extra: none |
644 | # extra: none |
| 651 | enewgroup() { |
645 | enewgroup() { |
|
|
646 | case ${EBUILD_PHASE} in |
|
|
647 | unpack|compile|test|install) |
|
|
648 | eerror "'enewgroup()' called from '${EBUILD_PHASE}()' which is not a pkg_* function." |
|
|
649 | eerror "Package fails at QA and at life. Please file a bug." |
|
|
650 | die "Bad package! enewgroup is only for use in pkg_* functions!" |
|
|
651 | esac |
|
|
652 | |
| 652 | # get the group |
653 | # get the group |
| 653 | local egroup="$1"; shift |
654 | local egroup="$1"; shift |
| 654 | if [ -z "${egroup}" ] |
655 | if [ -z "${egroup}" ] |
| 655 | then |
656 | then |
| 656 | eerror "No group specified !" |
657 | eerror "No group specified !" |
| … | |
… | |
| 718 | esac |
719 | esac |
| 719 | dscl . create /groups/${egroup} gid ${egid} |
720 | dscl . create /groups/${egroup} gid ${egid} |
| 720 | dscl . create /groups/${egroup} passwd '*' |
721 | dscl . create /groups/${egroup} passwd '*' |
| 721 | ;; |
722 | ;; |
| 722 | |
723 | |
| 723 | *-freebsd*) |
724 | *-freebsd*|*-dragonfly*) |
| 724 | case ${egid} in |
725 | case ${egid} in |
| 725 | *[!0-9]*) # Non numeric |
726 | *[!0-9]*) # Non numeric |
| 726 | for egid in $(seq 101 999); do |
727 | for egid in $(seq 101 999); do |
| 727 | [ -z "`egetent group ${egid}`" ] && break |
728 | [ -z "`egetent group ${egid}`" ] && break |
| 728 | done |
729 | done |
| … | |
… | |
| 768 | |
769 | |
| 769 | # Make a desktop file ! |
770 | # Make a desktop file ! |
| 770 | # Great for making those icons in kde/gnome startmenu ! |
771 | # Great for making those icons in kde/gnome startmenu ! |
| 771 | # Amaze your friends ! Get the women ! Join today ! |
772 | # Amaze your friends ! Get the women ! Join today ! |
| 772 | # |
773 | # |
| 773 | # make_desktop_entry(<binary>, [name], [icon], [type], [path]) |
774 | # make_desktop_entry(<command>, [name], [icon], [type], [path]) |
| 774 | # |
775 | # |
| 775 | # binary: what binary does the app run with ? |
776 | # binary: what command does the app run with ? |
| 776 | # name: the name that will show up in the menu |
777 | # name: the name that will show up in the menu |
| 777 | # icon: give your little like a pretty little icon ... |
778 | # icon: give your little like a pretty little icon ... |
| 778 | # this can be relative (to /usr/share/pixmaps) or |
779 | # this can be relative (to /usr/share/pixmaps) or |
| 779 | # a full path to an icon |
780 | # a full path to an icon |
| 780 | # type: what kind of application is this ? for categories: |
781 | # type: what kind of application is this ? for categories: |
| … | |
… | |
| 892 | local desktop_name="${PN}" |
893 | local desktop_name="${PN}" |
| 893 | else |
894 | else |
| 894 | local desktop_name="${PN}-${SLOT}" |
895 | local desktop_name="${PN}-${SLOT}" |
| 895 | fi |
896 | fi |
| 896 | local desktop=${T}/${exec%% *}-${desktop_name}.desktop |
897 | local desktop=${T}/${exec%% *}-${desktop_name}.desktop |
|
|
898 | # local desktop=${T}/${exec%% *:-${desktop_name}}.desktop |
| 897 | |
899 | |
| 898 | echo "[Desktop Entry] |
900 | echo "[Desktop Entry] |
| 899 | Encoding=UTF-8 |
901 | Encoding=UTF-8 |
| 900 | Version=0.9.2 |
902 | Version=0.9.2 |
| 901 | Name=${name} |
903 | Name=${name} |
| 902 | Type=Application |
904 | Type=Application |
| 903 | Comment=${DESCRIPTION} |
905 | Comment=${DESCRIPTION} |
| 904 | Exec=${exec} |
906 | Exec=${exec} |
|
|
907 | TryExec=${exec%% *} |
| 905 | Path=${path} |
908 | Path=${path} |
| 906 | Icon=${icon} |
909 | Icon=${icon} |
| 907 | Categories=Application;${type};" > "${desktop}" |
910 | Categories=Application;${type};" > "${desktop}" |
| 908 | |
911 | |
| 909 | ( |
912 | ( |
| … | |
… | |
| 1112 | if [[ -z ${skip} ]] ; then |
1115 | if [[ -z ${skip} ]] ; then |
| 1113 | local ver=$(grep -a '#.*Makeself' "${src}" | awk '{print $NF}') |
1116 | local ver=$(grep -a '#.*Makeself' "${src}" | awk '{print $NF}') |
| 1114 | local skip=0 |
1117 | local skip=0 |
| 1115 | exe=tail |
1118 | exe=tail |
| 1116 | case ${ver} in |
1119 | case ${ver} in |
| 1117 | 1.5.*) # tested 1.5.{3,4,5} ... guessing 1.5.x series is same |
1120 | 1.5.*|1.6.0-nv) # tested 1.5.{3,4,5} ... guessing 1.5.x series is same |
| 1118 | skip=$(grep -a ^skip= "${src}" | cut -d= -f2) |
1121 | skip=$(grep -a ^skip= "${src}" | cut -d= -f2) |
| 1119 | ;; |
1122 | ;; |
| 1120 | 2.0|2.0.1) |
1123 | 2.0|2.0.1) |
| 1121 | skip=$(grep -a ^$'\t'tail "${src}" | awk '{print $2}' | cut -b2-) |
1124 | skip=$(grep -a ^$'\t'tail "${src}" | awk '{print $2}' | cut -b2-) |
| 1122 | ;; |
1125 | ;; |
| … | |
… | |
| 1245 | # and when the function returns, you can assume that the cd has been |
1248 | # and when the function returns, you can assume that the cd has been |
| 1246 | # found at CDROM_ROOT. |
1249 | # found at CDROM_ROOT. |
| 1247 | # |
1250 | # |
| 1248 | # normally the cdrom functions will refer to the cds as 'cd #1', 'cd #2', |
1251 | # normally the cdrom functions will refer to the cds as 'cd #1', 'cd #2', |
| 1249 | # etc... if you want to give the cds better names, then just export |
1252 | # etc... if you want to give the cds better names, then just export |
| 1250 | # the CDROM_NAME_X variables before calling cdrom_get_cds(). |
1253 | # the appropriate CDROM_NAME variable before calling cdrom_get_cds(). |
|
|
1254 | # - CDROM_NAME="fooie cd" - for when you only want 1 cd |
|
|
1255 | # - CDROM_NAME_1="install cd" - for when you want more than 1 cd |
|
|
1256 | # CDROM_NAME_2="data cd" |
|
|
1257 | # - CDROM_NAME_SET=( "install cd" "data cd" ) - short hand for CDROM_NAME_# |
| 1251 | # |
1258 | # |
| 1252 | # for those multi cd ebuilds, see the cdrom_load_next_cd() below. |
1259 | # for those multi cd ebuilds, see the cdrom_load_next_cd() below. |
| 1253 | # |
1260 | # |
| 1254 | # Usage: cdrom_get_cds <file on cd1> [file on cd2] [file on cd3] [...] |
1261 | # Usage: cdrom_get_cds <file on cd1> [file on cd2] [file on cd3] [...] |
| 1255 | # - this will attempt to locate a cd based upon a file that is on |
1262 | # - this will attempt to locate a cd based upon a file that is on |
| … | |
… | |
| 1306 | echo |
1313 | echo |
| 1307 | einfo "For example:" |
1314 | einfo "For example:" |
| 1308 | einfo "export CD_ROOT=/mnt/cdrom" |
1315 | einfo "export CD_ROOT=/mnt/cdrom" |
| 1309 | echo |
1316 | echo |
| 1310 | else |
1317 | else |
|
|
1318 | if [[ -n ${CDROM_NAME_SET} ]] ; then |
|
|
1319 | # Translate the CDROM_NAME_SET array into CDROM_NAME_# |
|
|
1320 | cdcnt=0 |
|
|
1321 | while [[ ${cdcnt} -lt ${CDROM_TOTAL_CDS} ]] ; do |
|
|
1322 | ((++cdcnt)) |
|
|
1323 | export CDROM_NAME_${cdcnt}="${CDROM_NAME_SET[$((${cdcnt}-1))]}" |
|
|
1324 | done |
|
|
1325 | fi |
|
|
1326 | |
| 1311 | einfo "This package will need access to ${CDROM_TOTAL_CDS} cds." |
1327 | einfo "This package will need access to ${CDROM_TOTAL_CDS} cds." |
| 1312 | cdcnt=0 |
1328 | cdcnt=0 |
| 1313 | while [[ ${cdcnt} -lt ${CDROM_TOTAL_CDS} ]] ; do |
1329 | while [[ ${cdcnt} -lt ${CDROM_TOTAL_CDS} ]] ; do |
| 1314 | ((++cdcnt)) |
1330 | ((++cdcnt)) |
| 1315 | var="CDROM_NAME_${cdcnt}" |
1331 | var="CDROM_NAME_${cdcnt}" |
| … | |
… | |
| 1420 | echo |
1436 | echo |
| 1421 | einfo "If you are having trouble with the detection" |
1437 | einfo "If you are having trouble with the detection" |
| 1422 | einfo "of your CD, it is possible that you do not have" |
1438 | einfo "of your CD, it is possible that you do not have" |
| 1423 | einfo "Joliet support enabled in your kernel. Please" |
1439 | einfo "Joliet support enabled in your kernel. Please" |
| 1424 | einfo "check that CONFIG_JOLIET is enabled in your kernel." |
1440 | einfo "check that CONFIG_JOLIET is enabled in your kernel." |
| 1425 | read |
1441 | read || die "something is screwed with your system" |
| 1426 | done |
1442 | done |
| 1427 | } |
1443 | } |
| 1428 | |
1444 | |
| 1429 | # Make sure that LINGUAS only contains languages that |
1445 | # Make sure that LINGUAS only contains languages that |
| 1430 | # a package can support |
1446 | # a package can support |
| … | |
… | |
| 1437 | # The -i builds a list of po files found in all the |
1453 | # The -i builds a list of po files found in all the |
| 1438 | # directories and uses the intersection of the lists. |
1454 | # directories and uses the intersection of the lists. |
| 1439 | # The -u builds a list of po files found in all the |
1455 | # The -u builds a list of po files found in all the |
| 1440 | # directories and uses the union of the lists. |
1456 | # directories and uses the union of the lists. |
| 1441 | strip-linguas() { |
1457 | strip-linguas() { |
| 1442 | local ls newls |
1458 | local ls newls nols |
| 1443 | if [[ $1 == "-i" ]] || [[ $1 == "-u" ]] ; then |
1459 | if [[ $1 == "-i" ]] || [[ $1 == "-u" ]] ; then |
| 1444 | local op=$1; shift |
1460 | local op=$1; shift |
| 1445 | ls=" $(find "$1" -name '*.po' -printf '%f ') "; shift |
1461 | ls=$(find "$1" -name '*.po' -exec basename {} .po \;); shift |
| 1446 | local d f |
1462 | local d f |
| 1447 | for d in "$@" ; do |
1463 | for d in "$@" ; do |
| 1448 | if [[ ${op} == "-u" ]] ; then |
1464 | if [[ ${op} == "-u" ]] ; then |
| 1449 | newls=${ls} |
1465 | newls=${ls} |
| 1450 | else |
1466 | else |
| 1451 | newls="" |
1467 | newls="" |
| 1452 | fi |
1468 | fi |
| 1453 | for f in $(find "$d" -name '*.po' -printf '%f ') ; do |
1469 | for f in $(find "$d" -name '*.po' -exec basename {} .po \;) ; do |
| 1454 | if [[ ${op} == "-i" ]] ; then |
1470 | if [[ ${op} == "-i" ]] ; then |
| 1455 | [[ ${ls/ ${f} /} != ${ls} ]] && newls="${newls} ${f}" |
1471 | hasq ${f} ${ls} && newls="${newls} ${f}" |
| 1456 | else |
1472 | else |
| 1457 | [[ ${ls/ ${f} /} == ${ls} ]] && newls="${newls} ${f}" |
1473 | hasq ${f} ${ls} || newls="${newls} ${f}" |
| 1458 | fi |
1474 | fi |
| 1459 | done |
1475 | done |
| 1460 | ls=${newls} |
1476 | ls=${newls} |
| 1461 | done |
1477 | done |
| 1462 | ls=${ls//.po} |
|
|
| 1463 | else |
1478 | else |
| 1464 | ls=$@ |
1479 | ls="$@" |
| 1465 | fi |
1480 | fi |
| 1466 | |
1481 | |
| 1467 | ls=" ${ls} " |
1482 | nols="" |
| 1468 | newls="" |
1483 | newls="" |
| 1469 | for f in ${LINGUAS} ; do |
1484 | for f in ${LINGUAS} ; do |
| 1470 | if [[ ${ls/ ${f} /} != ${ls} ]] ; then |
1485 | if hasq ${f} ${ls} ; then |
| 1471 | newls="${newls} ${f}" |
1486 | newls="${newls} ${f}" |
| 1472 | else |
1487 | else |
| 1473 | ewarn "Sorry, but ${PN} does not support the ${f} LINGUA" |
1488 | nols="${nols} ${f}" |
| 1474 | fi |
1489 | fi |
| 1475 | done |
1490 | done |
| 1476 | if [[ -z ${newls} ]] ; then |
1491 | [[ -n ${nols} ]] \ |
| 1477 | export LINGUAS="" |
1492 | && ewarn "Sorry, but ${PN} does not support the LINGUAs:" ${nols} |
| 1478 | else |
|
|
| 1479 | export LINGUAS=${newls:1} |
1493 | export LINGUAS=${newls:1} |
| 1480 | fi |
|
|
| 1481 | } |
1494 | } |
| 1482 | |
1495 | |
| 1483 | # moved from kernel.eclass since they are generally useful outside of |
1496 | # moved from kernel.eclass since they are generally useful outside of |
| 1484 | # kernel.eclass -iggy (20041002) |
1497 | # kernel.eclass -iggy (20041002) |
| 1485 | |
1498 | |
| … | |
… | |
| 1514 | |
1527 | |
| 1515 | # Jeremy Huddleston <eradicator@gentoo.org>: |
1528 | # Jeremy Huddleston <eradicator@gentoo.org>: |
| 1516 | # preserve_old_lib /path/to/libblah.so.0 |
1529 | # preserve_old_lib /path/to/libblah.so.0 |
| 1517 | # preserve_old_lib_notify /path/to/libblah.so.0 |
1530 | # preserve_old_lib_notify /path/to/libblah.so.0 |
| 1518 | # |
1531 | # |
| 1519 | # These functions are useful when a lib in your package changes --soname. Such |
1532 | # These functions are useful when a lib in your package changes --library. Such |
| 1520 | # an example might be from libogg.so.0 to libogg.so.1. Removing libogg.so.0 |
1533 | # an example might be from libogg.so.0 to libogg.so.1. Removing libogg.so.0 |
| 1521 | # would break packages that link against it. Most people get around this |
1534 | # would break packages that link against it. Most people get around this |
| 1522 | # by using the portage SLOT mechanism, but that is not always a relevant |
1535 | # by using the portage SLOT mechanism, but that is not always a relevant |
| 1523 | # solution, so instead you can add the following to your ebuilds: |
1536 | # solution, so instead you can add the following to your ebuilds: |
| 1524 | # |
1537 | # |
| … | |
… | |
| 1555 | |
1568 | |
| 1556 | ewarn "An old version of an installed library was detected on your system." |
1569 | ewarn "An old version of an installed library was detected on your system." |
| 1557 | ewarn "In order to avoid breaking packages that link against it, this older version" |
1570 | ewarn "In order to avoid breaking packages that link against it, this older version" |
| 1558 | ewarn "is not being removed. In order to make full use of this newer version," |
1571 | ewarn "is not being removed. In order to make full use of this newer version," |
| 1559 | ewarn "you will need to execute the following command:" |
1572 | ewarn "you will need to execute the following command:" |
| 1560 | ewarn " revdep-rebuild --soname ${SONAME}" |
1573 | ewarn " revdep-rebuild --library ${SONAME}" |
| 1561 | ewarn |
1574 | ewarn |
| 1562 | ewarn "After doing that, you can safely remove ${LIB}" |
1575 | ewarn "After doing that, you can safely remove ${LIB}" |
| 1563 | ewarn "Note: 'emerge gentoolkit' to get revdep-rebuild" |
1576 | ewarn "Note: 'emerge gentoolkit' to get revdep-rebuild" |
| 1564 | fi |
1577 | fi |
| 1565 | } |
1578 | } |
| … | |
… | |
| 1576 | built_with_use() { |
1589 | built_with_use() { |
| 1577 | local opt=$1 |
1590 | local opt=$1 |
| 1578 | [[ ${opt:0:1} = "-" ]] && shift || opt="-a" |
1591 | [[ ${opt:0:1} = "-" ]] && shift || opt="-a" |
| 1579 | |
1592 | |
| 1580 | local PKG=$(best_version $1) |
1593 | local PKG=$(best_version $1) |
|
|
1594 | [[ -z ${PKG} ]] && die "Unable to resolve $1 to an installed package" |
| 1581 | shift |
1595 | shift |
| 1582 | |
1596 | |
| 1583 | local USEFILE=${ROOT}/var/db/pkg/${PKG}/USE |
1597 | local USEFILE=${ROOT}/var/db/pkg/${PKG}/USE |
| 1584 | |
1598 | |
| 1585 | # if the USE file doesnt exist, assume the $PKG is either |
1599 | # if the USE file doesnt exist, assume the $PKG is either |
| 1586 | # injected or package.provided |
1600 | # injected or package.provided |
| 1587 | [[ ! -e ${USEFILE} ]] && return 0 |
1601 | [[ ! -e ${USEFILE} ]] && die "Unable to determine what USE flags $PKG was built with" |
| 1588 | |
1602 | |
| 1589 | local USE_BUILT=$(<${USEFILE}) |
1603 | local USE_BUILT=$(<${USEFILE}) |
| 1590 | while [[ $# -gt 0 ]] ; do |
1604 | while [[ $# -gt 0 ]] ; do |
| 1591 | if [[ ${opt} = "-o" ]] ; then |
1605 | if [[ ${opt} = "-o" ]] ; then |
| 1592 | has $1 ${USE_BUILT} && return 0 |
1606 | has $1 ${USE_BUILT} && return 0 |