| 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.218 2005/11/22 11:15:34 flameeyes Exp $ |
3 | # $Header: /var/cvsroot/gentoo-x86/eclass/eutils.eclass,v 1.224 2006/02/17 22:18:19 swegener 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. |
| … | |
… | |
| 60 | # to point to the latest version of the library present. |
60 | # to point to the latest version of the library present. |
| 61 | # |
61 | # |
| 62 | # <azarah@gentoo.org> (26 Oct 2002) |
62 | # <azarah@gentoo.org> (26 Oct 2002) |
| 63 | # |
63 | # |
| 64 | gen_usr_ldscript() { |
64 | gen_usr_ldscript() { |
| 65 | local libdir="$(get_libdir)" |
65 | local lib libdir=$(get_libdir) |
| 66 | # Just make sure it exists |
66 | # Just make sure it exists |
| 67 | dodir /usr/${libdir} |
67 | dodir /usr/${libdir} |
| 68 | |
68 | |
| 69 | for lib in "${@}" ; do |
69 | for lib in "${@}" ; do |
| 70 | cat > "${D}/usr/${libdir}/${lib}" <<-END_LDSCRIPT |
70 | cat > "${D}/usr/${libdir}/${lib}" <<-END_LDSCRIPT |
| … | |
… | |
| 76 | |
76 | |
| 77 | See bug http://bugs.gentoo.org/4411 for more info. |
77 | See bug http://bugs.gentoo.org/4411 for more info. |
| 78 | */ |
78 | */ |
| 79 | GROUP ( /${libdir}/${lib} ) |
79 | GROUP ( /${libdir}/${lib} ) |
| 80 | END_LDSCRIPT |
80 | END_LDSCRIPT |
| 81 | fperms a+x "/usr/${libdir}/${lib}" |
81 | fperms a+x "/usr/${libdir}/${lib}" || die "could not change perms on ${lib}" |
| 82 | done |
82 | done |
| 83 | } |
83 | } |
| 84 | |
84 | |
| 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 | |
85 | |
| 116 | # Default directory where patches are located |
86 | # Default directory where patches are located |
| 117 | EPATCH_SOURCE="${WORKDIR}/patch" |
87 | EPATCH_SOURCE="${WORKDIR}/patch" |
| 118 | # Default extension for patches |
88 | # Default extension for patches |
| 119 | EPATCH_SUFFIX="patch.bz2" |
89 | EPATCH_SUFFIX="patch.bz2" |
| … | |
… | |
| 166 | # hand its a directory, it will set EPATCH_SOURCE to this. |
136 | # hand its a directory, it will set EPATCH_SOURCE to this. |
| 167 | # |
137 | # |
| 168 | # <azarah@gentoo.org> (10 Nov 2002) |
138 | # <azarah@gentoo.org> (10 Nov 2002) |
| 169 | # |
139 | # |
| 170 | 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 | } |
| 171 | _epatch_assert() { local _pipestatus=${PIPESTATUS[*]}; [[ ${_pipestatus// /} -eq 0 ]] ; } |
158 | _epatch_assert() { local _pipestatus=${PIPESTATUS[*]}; [[ ${_pipestatus// /} -eq 0 ]] ; } |
| 172 | local PIPE_CMD="" |
159 | local PIPE_CMD="" |
| 173 | local STDERR_TARGET="${T}/$$.out" |
160 | local STDERR_TARGET="${T}/$$.out" |
| 174 | local PATCH_TARGET="${T}/$$.patch" |
161 | local PATCH_TARGET="${T}/$$.patch" |
| 175 | local PATCH_SUFFIX="" |
162 | local PATCH_SUFFIX="" |
| … | |
… | |
| 285 | |
272 | |
| 286 | # Allow for prefix to differ ... im lazy, so shoot me :/ |
273 | # Allow for prefix to differ ... im lazy, so shoot me :/ |
| 287 | while [ "${count}" -lt 5 ] |
274 | while [ "${count}" -lt 5 ] |
| 288 | do |
275 | do |
| 289 | # Generate some useful debug info ... |
276 | # Generate some useful debug info ... |
| 290 | draw_line "***** ${patchname} *****" >> ${STDERR_TARGET%/*}/${patchname}-${STDERR_TARGET##*/} |
277 | _epatch_draw_line "***** ${patchname} *****" >> ${STDERR_TARGET%/*}/${patchname}-${STDERR_TARGET##*/} |
| 291 | echo >> ${STDERR_TARGET%/*}/${patchname}-${STDERR_TARGET##*/} |
278 | echo >> ${STDERR_TARGET%/*}/${patchname}-${STDERR_TARGET##*/} |
| 292 | |
279 | |
| 293 | if [ "${PATCH_SUFFIX}" != "patch" ] |
280 | if [ "${PATCH_SUFFIX}" != "patch" ] |
| 294 | then |
281 | then |
| 295 | echo -n "PIPE_COMMAND: " >> ${STDERR_TARGET%/*}/${patchname}-${STDERR_TARGET##*/} |
282 | echo -n "PIPE_COMMAND: " >> ${STDERR_TARGET%/*}/${patchname}-${STDERR_TARGET##*/} |
| … | |
… | |
| 300 | |
287 | |
| 301 | echo -n "PATCH COMMAND: " >> ${STDERR_TARGET%/*}/${patchname}-${STDERR_TARGET##*/} |
288 | echo -n "PATCH COMMAND: " >> ${STDERR_TARGET%/*}/${patchname}-${STDERR_TARGET##*/} |
| 302 | 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##*/} |
| 303 | |
290 | |
| 304 | echo >> ${STDERR_TARGET%/*}/${patchname}-${STDERR_TARGET##*/} |
291 | echo >> ${STDERR_TARGET%/*}/${patchname}-${STDERR_TARGET##*/} |
| 305 | draw_line "***** ${patchname} *****" >> ${STDERR_TARGET%/*}/${patchname}-${STDERR_TARGET##*/} |
292 | _epatch_draw_line "***** ${patchname} *****" >> ${STDERR_TARGET%/*}/${patchname}-${STDERR_TARGET##*/} |
| 306 | |
293 | |
| 307 | if [ "${PATCH_SUFFIX}" != "patch" ] |
294 | if [ "${PATCH_SUFFIX}" != "patch" ] |
| 308 | then |
295 | then |
| 309 | 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 |
| 310 | then |
297 | then |
| … | |
… | |
| 316 | fi |
303 | fi |
| 317 | fi |
304 | fi |
| 318 | |
305 | |
| 319 | if (cat ${PATCH_TARGET} | patch -p${count} ${popts} --dry-run -f ; _epatch_assert) >> ${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 |
| 320 | then |
307 | then |
| 321 | draw_line "***** ${patchname} *****" > ${STDERR_TARGET%/*}/${patchname}-${STDERR_TARGET##*/}.real |
308 | _epatch_draw_line "***** ${patchname} *****" > ${STDERR_TARGET%/*}/${patchname}-${STDERR_TARGET##*/}.real |
| 322 | echo >> ${STDERR_TARGET%/*}/${patchname}-${STDERR_TARGET##*/}.real |
309 | echo >> ${STDERR_TARGET%/*}/${patchname}-${STDERR_TARGET##*/}.real |
| 323 | echo "ACTUALLY APPLYING ${patchname} ..." >> ${STDERR_TARGET%/*}/${patchname}-${STDERR_TARGET##*/}.real |
310 | echo "ACTUALLY APPLYING ${patchname} ..." >> ${STDERR_TARGET%/*}/${patchname}-${STDERR_TARGET##*/}.real |
| 324 | echo >> ${STDERR_TARGET%/*}/${patchname}-${STDERR_TARGET##*/}.real |
311 | echo >> ${STDERR_TARGET%/*}/${patchname}-${STDERR_TARGET##*/}.real |
| 325 | draw_line "***** ${patchname} *****" >> ${STDERR_TARGET%/*}/${patchname}-${STDERR_TARGET##*/}.real |
312 | _epatch_draw_line "***** ${patchname} *****" >> ${STDERR_TARGET%/*}/${patchname}-${STDERR_TARGET##*/}.real |
| 326 | |
313 | |
| 327 | 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 |
| 328 | _epatch_assert |
315 | _epatch_assert |
| 329 | |
316 | |
| 330 | if [ "$?" -ne 0 ] |
317 | if [ "$?" -ne 0 ] |
| … | |
… | |
| 396 | tmp=${topdir}/tmp.${RANDOM}.${RANDOM}.${RANDOM} |
383 | tmp=${topdir}/tmp.${RANDOM}.${RANDOM}.${RANDOM} |
| 397 | done |
384 | done |
| 398 | ${exe} "${tmp}" || ${exe} -p "${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 |
|
|
389 | [[ ${USERLAND} == "GNU" ]] \ |
| 402 | && exe="-p" \ |
390 | && exe="-p" \ |
|
|
391 | || exe="-t" |
|
|
392 | else |
|
|
393 | [[ ${USERLAND} == "GNU" ]] \ |
|
|
394 | && exe="-d" \ |
| 403 | || exe="-d" |
395 | || exe="-dt" |
| 404 | mktemp ${exe} "${topdir}" |
396 | fi |
|
|
397 | TMPDIR="${topdir}" mktemp ${exe} tmp |
| 405 | fi |
398 | fi |
| 406 | } |
399 | } |
| 407 | |
400 | |
| 408 | # Small wrapper for getent (Linux), nidump (Mac OS X), |
401 | # Small wrapper for getent (Linux), nidump (Mac OS X), |
| 409 | # and pw (FreeBSD) used in enewuser()/enewgroup() |
402 | # and pw (FreeBSD) used in enewuser()/enewgroup() |
| … | |
… | |
| 421 | *) # Numeric |
414 | *) # Numeric |
| 422 | nidump $1 . | awk -F":" "{ if (\$3 == $2) {print \$0;exit;} }" |
415 | nidump $1 . | awk -F":" "{ if (\$3 == $2) {print \$0;exit;} }" |
| 423 | ;; |
416 | ;; |
| 424 | esac |
417 | esac |
| 425 | ;; |
418 | ;; |
| 426 | *-freebsd*) |
419 | *-freebsd*|*-dragonfly*) |
| 427 | local opts action="user" |
420 | local opts action="user" |
| 428 | [[ $1 == "passwd" ]] || action="group" |
421 | [[ $1 == "passwd" ]] || action="group" |
| 429 | |
422 | |
| 430 | # lookup by uid/gid |
423 | # lookup by uid/gid |
| 431 | if [[ $2 == [[:digit:]]* ]] ; then |
424 | if [[ $2 == [[:digit:]]* ]] ; then |
| … | |
… | |
| 497 | einfo " - Userid: ${euid}" |
490 | einfo " - Userid: ${euid}" |
| 498 | |
491 | |
| 499 | # handle shell |
492 | # handle shell |
| 500 | local eshell=$1; shift |
493 | local eshell=$1; shift |
| 501 | if [[ ! -z ${eshell} ]] && [[ ${eshell} != "-1" ]] ; then |
494 | if [[ ! -z ${eshell} ]] && [[ ${eshell} != "-1" ]] ; then |
| 502 | if [[ ! -e ${eshell} ]] ; then |
495 | if [[ ! -e ${ROOT}${eshell} ]] ; then |
| 503 | eerror "A shell was specified but it does not exist !" |
496 | eerror "A shell was specified but it does not exist !" |
| 504 | die "${eshell} does not exist" |
497 | die "${eshell} does not exist in ${ROOT}" |
|
|
498 | fi |
|
|
499 | if [[ ${eshell} == */false || ${eshell} == */nologin ]] ; then |
|
|
500 | eerror "Do not specify ${eshell} yourself, use -1" |
|
|
501 | die "Pass '-1' as the shell parameter" |
| 505 | fi |
502 | fi |
| 506 | else |
503 | else |
| 507 | for shell in /sbin/nologin /usr/sbin/nologin /bin/false /usr/bin/false /dev/null ; do |
504 | for shell in /sbin/nologin /usr/sbin/nologin /bin/false /usr/bin/false /dev/null ; do |
| 508 | [[ -x ${ROOT}${shell} ]] && break |
505 | [[ -x ${ROOT}${shell} ]] && break |
| 509 | done |
506 | done |
| … | |
… | |
| 580 | einfo "Please report the ebuild along with the info below" |
577 | einfo "Please report the ebuild along with the info below" |
| 581 | einfo "eextra: $@" |
578 | einfo "eextra: $@" |
| 582 | die "Required function missing" |
579 | die "Required function missing" |
| 583 | fi |
580 | fi |
| 584 | ;; |
581 | ;; |
| 585 | *-freebsd*) |
582 | *-freebsd*|*-dragonfly*) |
| 586 | if [[ -z $@ ]] ; then |
583 | if [[ -z $@ ]] ; then |
| 587 | pw useradd ${euser} ${opts} \ |
584 | pw useradd ${euser} ${opts} \ |
| 588 | -c "added by portage for ${PN}" \ |
585 | -c "added by portage for ${PN}" \ |
| 589 | die "enewuser failed" |
586 | die "enewuser failed" |
| 590 | else |
587 | else |
| … | |
… | |
| 718 | esac |
715 | esac |
| 719 | dscl . create /groups/${egroup} gid ${egid} |
716 | dscl . create /groups/${egroup} gid ${egid} |
| 720 | dscl . create /groups/${egroup} passwd '*' |
717 | dscl . create /groups/${egroup} passwd '*' |
| 721 | ;; |
718 | ;; |
| 722 | |
719 | |
| 723 | *-freebsd*) |
720 | *-freebsd*|*-dragonfly*) |
| 724 | case ${egid} in |
721 | case ${egid} in |
| 725 | *[!0-9]*) # Non numeric |
722 | *[!0-9]*) # Non numeric |
| 726 | for egid in $(seq 101 999); do |
723 | for egid in $(seq 101 999); do |
| 727 | [ -z "`egetent group ${egid}`" ] && break |
724 | [ -z "`egetent group ${egid}`" ] && break |
| 728 | done |
725 | done |
| … | |
… | |
| 1420 | echo |
1417 | echo |
| 1421 | einfo "If you are having trouble with the detection" |
1418 | einfo "If you are having trouble with the detection" |
| 1422 | einfo "of your CD, it is possible that you do not have" |
1419 | einfo "of your CD, it is possible that you do not have" |
| 1423 | einfo "Joliet support enabled in your kernel. Please" |
1420 | einfo "Joliet support enabled in your kernel. Please" |
| 1424 | einfo "check that CONFIG_JOLIET is enabled in your kernel." |
1421 | einfo "check that CONFIG_JOLIET is enabled in your kernel." |
| 1425 | read |
1422 | read || die "something is screwed with your system" |
| 1426 | done |
1423 | done |
| 1427 | } |
1424 | } |
| 1428 | |
1425 | |
| 1429 | # Make sure that LINGUAS only contains languages that |
1426 | # Make sure that LINGUAS only contains languages that |
| 1430 | # a package can support |
1427 | # a package can support |