| 1 | # Copyright 1999-2009 Gentoo Foundation |
1 | # Copyright 1999-2011 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.334 2010/02/26 03:15:26 abcd Exp $ |
3 | # $Header: /var/cvsroot/gentoo-x86/eclass/eutils.eclass,v 1.371 2011/12/14 17:27:16 vapier Exp $ |
| 4 | |
4 | |
| 5 | # @ECLASS: eutils.eclass |
5 | # @ECLASS: eutils.eclass |
| 6 | # @MAINTAINER: |
6 | # @MAINTAINER: |
| 7 | # base-system@gentoo.org |
7 | # base-system@gentoo.org |
| 8 | # @BLURB: many extra (but common) functions that are used in ebuilds |
8 | # @BLURB: many extra (but common) functions that are used in ebuilds |
| … | |
… | |
| 13 | # home rather than having multiple ebuilds implementing the same thing. |
13 | # home rather than having multiple ebuilds implementing the same thing. |
| 14 | # |
14 | # |
| 15 | # Due to the nature of this eclass, some functions may have maintainers |
15 | # Due to the nature of this eclass, some functions may have maintainers |
| 16 | # different from the overall eclass! |
16 | # different from the overall eclass! |
| 17 | |
17 | |
|
|
18 | if [[ ${___ECLASS_ONCE_EUTILS} != "recur -_+^+_- spank" ]] ; then |
|
|
19 | ___ECLASS_ONCE_EUTILS="recur -_+^+_- spank" |
|
|
20 | |
| 18 | inherit multilib portability |
21 | inherit multilib portability user |
| 19 | |
22 | |
| 20 | DESCRIPTION="Based on the ${ECLASS} eclass" |
23 | DESCRIPTION="Based on the ${ECLASS} eclass" |
| 21 | |
24 | |
| 22 | if has "${EAPI:-0}" 0 1 2; then |
25 | if has "${EAPI:-0}" 0 1 2; then |
| 23 | |
26 | |
| … | |
… | |
| 52 | } |
55 | } |
| 53 | |
56 | |
| 54 | else |
57 | else |
| 55 | |
58 | |
| 56 | ebeep() { |
59 | ebeep() { |
| 57 | [[ $(type -t eqawarn) == function ]] && \ |
|
|
| 58 | eqawarn "QA Notice: ebeep is not defined in EAPI=3, please file a bug at http://bugs.gentoo.org" |
60 | ewarn "QA Notice: ebeep is not defined in EAPI=${EAPI}, please file a bug at http://bugs.gentoo.org" |
| 59 | } |
61 | } |
| 60 | |
62 | |
| 61 | epause() { |
63 | epause() { |
| 62 | [[ $(type -t eqawarn) == function ]] && \ |
|
|
| 63 | eqawarn "QA Notice: epause is not defined in EAPI=3, please file a bug at http://bugs.gentoo.org" |
64 | ewarn "QA Notice: epause is not defined in EAPI=${EAPI}, please file a bug at http://bugs.gentoo.org" |
| 64 | } |
65 | } |
| 65 | |
66 | |
|
|
67 | fi |
|
|
68 | |
|
|
69 | # @FUNCTION: eqawarn |
|
|
70 | # @USAGE: [message] |
|
|
71 | # @DESCRIPTION: |
|
|
72 | # Proxy to ewarn for package managers that don't provide eqawarn and use the PM |
|
|
73 | # implementation if available. Reuses PORTAGE_ELOG_CLASSES as set by the dev |
|
|
74 | # profile. |
|
|
75 | if ! declare -F eqawarn >/dev/null ; then |
|
|
76 | eqawarn() { |
|
|
77 | has qa ${PORTAGE_ELOG_CLASSES} && ewarn "$@" |
|
|
78 | : |
|
|
79 | } |
| 66 | fi |
80 | fi |
| 67 | |
81 | |
| 68 | # @FUNCTION: ecvs_clean |
82 | # @FUNCTION: ecvs_clean |
| 69 | # @USAGE: [list of dirs] |
83 | # @USAGE: [list of dirs] |
| 70 | # @DESCRIPTION: |
84 | # @DESCRIPTION: |
| … | |
… | |
| 191 | # If you do not specify any options, then epatch will default to the directory |
205 | # If you do not specify any options, then epatch will default to the directory |
| 192 | # specified by EPATCH_SOURCE. |
206 | # specified by EPATCH_SOURCE. |
| 193 | # |
207 | # |
| 194 | # When processing directories, epatch will apply all patches that match: |
208 | # When processing directories, epatch will apply all patches that match: |
| 195 | # @CODE |
209 | # @CODE |
| 196 | # ${EPATCH_FORCE} == "yes" |
210 | # if ${EPATCH_FORCE} != "yes" |
| 197 | # ??_${ARCH}_foo.${EPATCH_SUFFIX} |
211 | # ??_${ARCH}_foo.${EPATCH_SUFFIX} |
| 198 | # else |
212 | # else |
| 199 | # *.${EPATCH_SUFFIX} |
213 | # *.${EPATCH_SUFFIX} |
| 200 | # @CODE |
214 | # @CODE |
| 201 | # The leading ?? are typically numbers used to force consistent patch ordering. |
215 | # The leading ?? are typically numbers used to force consistent patch ordering. |
| … | |
… | |
| 240 | local EPATCH_SUFFIX=$1 |
254 | local EPATCH_SUFFIX=$1 |
| 241 | |
255 | |
| 242 | elif [[ -d $1 ]] ; then |
256 | elif [[ -d $1 ]] ; then |
| 243 | # Some people like to make dirs of patches w/out suffixes (vim) |
257 | # Some people like to make dirs of patches w/out suffixes (vim) |
| 244 | set -- "$1"/*${EPATCH_SUFFIX:+."${EPATCH_SUFFIX}"} |
258 | set -- "$1"/*${EPATCH_SUFFIX:+."${EPATCH_SUFFIX}"} |
|
|
259 | |
|
|
260 | elif [[ -f ${EPATCH_SOURCE}/$1 ]] ; then |
|
|
261 | # Re-use EPATCH_SOURCE as a search dir |
|
|
262 | epatch "${EPATCH_SOURCE}/$1" |
|
|
263 | return $? |
| 245 | |
264 | |
| 246 | else |
265 | else |
| 247 | # sanity check ... if it isn't a dir or file, wtf man ? |
266 | # sanity check ... if it isn't a dir or file, wtf man ? |
| 248 | [[ $# -ne 0 ]] && EPATCH_SOURCE=$1 |
267 | [[ $# -ne 0 ]] && EPATCH_SOURCE=$1 |
| 249 | echo |
268 | echo |
| … | |
… | |
| 280 | # ???_arch_foo.patch |
299 | # ???_arch_foo.patch |
| 281 | # Else, skip this input altogether |
300 | # Else, skip this input altogether |
| 282 | local a=${patchname#*_} # strip the ???_ |
301 | local a=${patchname#*_} # strip the ???_ |
| 283 | a=${a%%_*} # strip the _foo.patch |
302 | a=${a%%_*} # strip the _foo.patch |
| 284 | if ! [[ ${SINGLE_PATCH} == "yes" || \ |
303 | if ! [[ ${SINGLE_PATCH} == "yes" || \ |
| 285 | ${EPATCH_FORCE} == "yes" || \ |
304 | ${EPATCH_FORCE} == "yes" || \ |
| 286 | ${a} == all || \ |
305 | ${a} == all || \ |
| 287 | ${a} == ${ARCH} ]] |
306 | ${a} == ${ARCH} ]] |
| 288 | then |
307 | then |
| 289 | continue |
308 | continue |
| 290 | fi |
309 | fi |
| 291 | |
310 | |
| 292 | # Let people filter things dynamically |
311 | # Let people filter things dynamically |
| … | |
… | |
| 320 | local STDERR_TARGET="${T}/${patchname}.out" |
339 | local STDERR_TARGET="${T}/${patchname}.out" |
| 321 | if [[ -e ${STDERR_TARGET} ]] ; then |
340 | if [[ -e ${STDERR_TARGET} ]] ; then |
| 322 | STDERR_TARGET="${T}/${patchname}-$$.out" |
341 | STDERR_TARGET="${T}/${patchname}-$$.out" |
| 323 | fi |
342 | fi |
| 324 | |
343 | |
| 325 | printf "***** %s *****\n\n" "${patchname}" > "${STDERR_TARGET}" |
344 | printf "***** %s *****\nPWD: %s\n\n" "${patchname}" "${PWD}" > "${STDERR_TARGET}" |
| 326 | |
345 | |
| 327 | # Decompress the patch if need be |
346 | # Decompress the patch if need be |
| 328 | local count=0 |
347 | local count=0 |
| 329 | local PATCH_TARGET |
348 | local PATCH_TARGET |
| 330 | if [[ -n ${PIPE_CMD} ]] ; then |
349 | if [[ -n ${PIPE_CMD} ]] ; then |
| … | |
… | |
| 349 | local abs_paths=$(egrep -n '^[-+]{3} /' "${PATCH_TARGET}" | awk '$2 != "/dev/null" { print }') |
368 | local abs_paths=$(egrep -n '^[-+]{3} /' "${PATCH_TARGET}" | awk '$2 != "/dev/null" { print }') |
| 350 | if [[ -n ${abs_paths} ]] ; then |
369 | if [[ -n ${abs_paths} ]] ; then |
| 351 | count=1 |
370 | count=1 |
| 352 | printf "NOTE: skipping -p0 due to absolute paths in patch:\n%s\n" "${abs_paths}" >> "${STDERR_TARGET}" |
371 | printf "NOTE: skipping -p0 due to absolute paths in patch:\n%s\n" "${abs_paths}" >> "${STDERR_TARGET}" |
| 353 | fi |
372 | fi |
|
|
373 | # Similar reason, but with relative paths. |
|
|
374 | local rel_paths=$(egrep -n '^[-+]{3} [^ ]*[.][.]/' "${PATCH_TARGET}") |
|
|
375 | if [[ -n ${rel_paths} ]] ; then |
|
|
376 | eqawarn "QA Notice: Your patch uses relative paths '../'." |
|
|
377 | eqawarn " In the future this will cause a failure." |
|
|
378 | eqawarn "${rel_paths}" |
|
|
379 | fi |
| 354 | |
380 | |
| 355 | # Dynamically detect the correct -p# ... i'm lazy, so shoot me :/ |
381 | # Dynamically detect the correct -p# ... i'm lazy, so shoot me :/ |
| 356 | while [[ ${count} -lt 5 ]] ; do |
382 | while [[ ${count} -lt 5 ]] ; do |
| 357 | # Generate some useful debug info ... |
383 | # Generate some useful debug info ... |
| 358 | ( |
384 | ( |
| 359 | _epatch_draw_line "***** ${patchname} *****" |
385 | _epatch_draw_line "***** ${patchname} *****" |
| 360 | echo |
386 | echo |
| 361 | echo "PATCH COMMAND: patch -p${count} ${EPATCH_OPTS} < '${PATCH_TARGET}'" |
387 | echo "PATCH COMMAND: patch -p${count} ${EPATCH_OPTS} < '${PATCH_TARGET}'" |
| 362 | echo |
388 | echo |
| 363 | _epatch_draw_line "***** ${patchname} *****" |
389 | _epatch_draw_line "***** ${patchname} *****" |
|
|
390 | patch -p${count} ${EPATCH_OPTS} --dry-run -f < "${PATCH_TARGET}" 2>&1 |
|
|
391 | ret=$? |
|
|
392 | echo |
|
|
393 | echo "patch program exited with status ${ret}" |
|
|
394 | exit ${ret} |
| 364 | ) >> "${STDERR_TARGET}" |
395 | ) >> "${STDERR_TARGET}" |
| 365 | |
396 | |
| 366 | if (patch -p${count} ${EPATCH_OPTS} --dry-run -f < "${PATCH_TARGET}") >> "${STDERR_TARGET}" 2>&1 ; then |
397 | if [ $? -eq 0 ] ; then |
| 367 | ( |
398 | ( |
| 368 | _epatch_draw_line "***** ${patchname} *****" |
399 | _epatch_draw_line "***** ${patchname} *****" |
| 369 | echo |
400 | echo |
| 370 | echo "ACTUALLY APPLYING ${patchname} ..." |
401 | echo "ACTUALLY APPLYING ${patchname} ..." |
| 371 | echo |
402 | echo |
| 372 | _epatch_draw_line "***** ${patchname} *****" |
403 | _epatch_draw_line "***** ${patchname} *****" |
| 373 | patch -p${count} ${EPATCH_OPTS} < "${PATCH_TARGET}" 2>&1 |
404 | patch -p${count} ${EPATCH_OPTS} < "${PATCH_TARGET}" 2>&1 |
|
|
405 | ret=$? |
|
|
406 | echo |
|
|
407 | echo "patch program exited with status ${ret}" |
|
|
408 | exit ${ret} |
| 374 | ) >> "${STDERR_TARGET}" |
409 | ) >> "${STDERR_TARGET}" |
| 375 | |
410 | |
| 376 | if [ $? -ne 0 ] ; then |
411 | if [ $? -ne 0 ] ; then |
| 377 | echo |
412 | echo |
| 378 | eerror "A dry-run of patch command succeeded, but actually" |
413 | eerror "A dry-run of patch command succeeded, but actually" |
| … | |
… | |
| 409 | done |
444 | done |
| 410 | |
445 | |
| 411 | [[ ${SINGLE_PATCH} == "no" ]] && einfo "Done with patching" |
446 | [[ ${SINGLE_PATCH} == "no" ]] && einfo "Done with patching" |
| 412 | : # everything worked |
447 | : # everything worked |
| 413 | } |
448 | } |
|
|
449 | |
|
|
450 | # @FUNCTION: epatch_user |
|
|
451 | # @USAGE: |
|
|
452 | # @DESCRIPTION: |
|
|
453 | # Applies user-provided patches to the source tree. The patches are |
|
|
454 | # taken from /etc/portage/patches/<CATEGORY>/<PF|P|PN>/, where the first |
|
|
455 | # of these three directories to exist will be the one to use, ignoring |
|
|
456 | # any more general directories which might exist as well. |
|
|
457 | # |
|
|
458 | # User patches are intended for quick testing of patches without ebuild |
|
|
459 | # modifications, as well as for permanent customizations a user might |
|
|
460 | # desire. Obviously, there can be no official support for arbitrarily |
|
|
461 | # patched ebuilds. So whenever a build log in a bug report mentions that |
|
|
462 | # user patches were applied, the user should be asked to reproduce the |
|
|
463 | # problem without these. |
|
|
464 | # |
|
|
465 | # Not all ebuilds do call this function, so placing patches in the |
|
|
466 | # stated directory might or might not work, depending on the package and |
|
|
467 | # the eclasses it inherits and uses. It is safe to call the function |
|
|
468 | # repeatedly, so it is always possible to add a call at the ebuild |
|
|
469 | # level. The first call is the time when the patches will be |
|
|
470 | # applied. |
|
|
471 | # |
|
|
472 | # Ideally, this function should be called after gentoo-specific patches |
|
|
473 | # have been applied, so that their code can be modified as well, but |
|
|
474 | # before calls to e.g. eautoreconf, as the user patches might affect |
|
|
475 | # autotool input files as well. |
| 414 | epatch_user() { |
476 | epatch_user() { |
| 415 | [[ $# -ne 0 ]] && die "epatch_user takes no options" |
477 | [[ $# -ne 0 ]] && die "epatch_user takes no options" |
|
|
478 | |
|
|
479 | # Allow multiple calls to this function; ignore all but the first |
|
|
480 | local applied="${T}/epatch_user.applied" |
|
|
481 | [[ -e ${applied} ]] && return 2 |
| 416 | |
482 | |
| 417 | # don't clobber any EPATCH vars that the parent might want |
483 | # don't clobber any EPATCH vars that the parent might want |
| 418 | local EPATCH_SOURCE check base=${PORTAGE_CONFIGROOT%/}/etc/portage/patches |
484 | local EPATCH_SOURCE check base=${PORTAGE_CONFIGROOT%/}/etc/portage/patches |
| 419 | for check in {${CATEGORY}/${PF},${CATEGORY}/${P},${CATEGORY}/${PN}}; do |
485 | for check in {${CATEGORY}/${PF},${CATEGORY}/${P},${CATEGORY}/${PN}}; do |
| 420 | EPATCH_SOURCE=${base}/${CTARGET}/${check} |
486 | EPATCH_SOURCE=${base}/${CTARGET}/${check} |
| … | |
… | |
| 424 | EPATCH_SOURCE=${EPATCH_SOURCE} \ |
490 | EPATCH_SOURCE=${EPATCH_SOURCE} \ |
| 425 | EPATCH_SUFFIX="patch" \ |
491 | EPATCH_SUFFIX="patch" \ |
| 426 | EPATCH_FORCE="yes" \ |
492 | EPATCH_FORCE="yes" \ |
| 427 | EPATCH_MULTI_MSG="Applying user patches from ${EPATCH_SOURCE} ..." \ |
493 | EPATCH_MULTI_MSG="Applying user patches from ${EPATCH_SOURCE} ..." \ |
| 428 | epatch |
494 | epatch |
| 429 | break |
495 | echo "${EPATCH_SOURCE}" > "${applied}" |
|
|
496 | return 0 |
| 430 | fi |
497 | fi |
| 431 | done |
498 | done |
|
|
499 | echo "none" > "${applied}" |
|
|
500 | return 1 |
| 432 | } |
501 | } |
| 433 | |
502 | |
| 434 | # @FUNCTION: emktemp |
503 | # @FUNCTION: emktemp |
| 435 | # @USAGE: [temp dir] |
504 | # @USAGE: [temp dir] |
| 436 | # @DESCRIPTION: |
505 | # @DESCRIPTION: |
| … | |
… | |
| 464 | TMPDIR="${topdir}" mktemp -dt tmp.XXXXXXXXXX |
533 | TMPDIR="${topdir}" mktemp -dt tmp.XXXXXXXXXX |
| 465 | fi |
534 | fi |
| 466 | fi |
535 | fi |
| 467 | } |
536 | } |
| 468 | |
537 | |
| 469 | # @FUNCTION: egetent |
|
|
| 470 | # @USAGE: <database> <key> |
|
|
| 471 | # @MAINTAINER: |
|
|
| 472 | # base-system@gentoo.org (Linux) |
|
|
| 473 | # Joe Jezak <josejx@gmail.com> (OS X) |
|
|
| 474 | # usata@gentoo.org (OS X) |
|
|
| 475 | # Aaron Walker <ka0ttic@gentoo.org> (FreeBSD) |
|
|
| 476 | # @DESCRIPTION: |
|
|
| 477 | # Small wrapper for getent (Linux), |
|
|
| 478 | # nidump (< Mac OS X 10.5), dscl (Mac OS X 10.5), |
|
|
| 479 | # and pw (FreeBSD) used in enewuser()/enewgroup() |
|
|
| 480 | egetent() { |
|
|
| 481 | case ${CHOST} in |
|
|
| 482 | *-darwin[678]) |
|
|
| 483 | case "$2" in |
|
|
| 484 | *[!0-9]*) # Non numeric |
|
|
| 485 | nidump $1 . | awk -F":" "{ if (\$1 ~ /^$2$/) {print \$0;exit;} }" |
|
|
| 486 | ;; |
|
|
| 487 | *) # Numeric |
|
|
| 488 | nidump $1 . | awk -F":" "{ if (\$3 == $2) {print \$0;exit;} }" |
|
|
| 489 | ;; |
|
|
| 490 | esac |
|
|
| 491 | ;; |
|
|
| 492 | *-darwin*) |
|
|
| 493 | local mytype=$1 |
|
|
| 494 | [[ "passwd" == $mytype ]] && mytype="Users" |
|
|
| 495 | [[ "group" == $mytype ]] && mytype="Groups" |
|
|
| 496 | case "$2" in |
|
|
| 497 | *[!0-9]*) # Non numeric |
|
|
| 498 | dscl . -read /$mytype/$2 2>/dev/null |grep RecordName |
|
|
| 499 | ;; |
|
|
| 500 | *) # Numeric |
|
|
| 501 | local mykey="UniqueID" |
|
|
| 502 | [[ $mytype == "Groups" ]] && mykey="PrimaryGroupID" |
|
|
| 503 | dscl . -search /$mytype $mykey $2 2>/dev/null |
|
|
| 504 | ;; |
|
|
| 505 | esac |
|
|
| 506 | ;; |
|
|
| 507 | *-freebsd*|*-dragonfly*) |
|
|
| 508 | local opts action="user" |
|
|
| 509 | [[ $1 == "passwd" ]] || action="group" |
|
|
| 510 | |
|
|
| 511 | # lookup by uid/gid |
|
|
| 512 | if [[ $2 == [[:digit:]]* ]] ; then |
|
|
| 513 | [[ ${action} == "user" ]] && opts="-u" || opts="-g" |
|
|
| 514 | fi |
|
|
| 515 | |
|
|
| 516 | pw show ${action} ${opts} "$2" -q |
|
|
| 517 | ;; |
|
|
| 518 | *-netbsd*|*-openbsd*) |
|
|
| 519 | grep "$2:\*:" /etc/$1 |
|
|
| 520 | ;; |
|
|
| 521 | *) |
|
|
| 522 | type -p nscd >& /dev/null && nscd -i "$1" |
|
|
| 523 | getent "$1" "$2" |
|
|
| 524 | ;; |
|
|
| 525 | esac |
|
|
| 526 | } |
|
|
| 527 | |
|
|
| 528 | # @FUNCTION: enewuser |
|
|
| 529 | # @USAGE: <user> [uid] [shell] [homedir] [groups] [params] |
|
|
| 530 | # @DESCRIPTION: |
|
|
| 531 | # Same as enewgroup, you are not required to understand how to properly add |
|
|
| 532 | # a user to the system. The only required parameter is the username. |
|
|
| 533 | # Default uid is (pass -1 for this) next available, default shell is |
|
|
| 534 | # /bin/false, default homedir is /dev/null, there are no default groups, |
|
|
| 535 | # and default params sets the comment as 'added by portage for ${PN}'. |
|
|
| 536 | enewuser() { |
|
|
| 537 | case ${EBUILD_PHASE} in |
|
|
| 538 | unpack|compile|test|install) |
|
|
| 539 | eerror "'enewuser()' called from '${EBUILD_PHASE}()' which is not a pkg_* function." |
|
|
| 540 | eerror "Package fails at QA and at life. Please file a bug." |
|
|
| 541 | die "Bad package! enewuser is only for use in pkg_* functions!" |
|
|
| 542 | esac |
|
|
| 543 | |
|
|
| 544 | # get the username |
|
|
| 545 | local euser=$1; shift |
|
|
| 546 | if [[ -z ${euser} ]] ; then |
|
|
| 547 | eerror "No username specified !" |
|
|
| 548 | die "Cannot call enewuser without a username" |
|
|
| 549 | fi |
|
|
| 550 | |
|
|
| 551 | # lets see if the username already exists |
|
|
| 552 | if [[ -n $(egetent passwd "${euser}") ]] ; then |
|
|
| 553 | return 0 |
|
|
| 554 | fi |
|
|
| 555 | einfo "Adding user '${euser}' to your system ..." |
|
|
| 556 | |
|
|
| 557 | # options to pass to useradd |
|
|
| 558 | local opts= |
|
|
| 559 | |
|
|
| 560 | # handle uid |
|
|
| 561 | local euid=$1; shift |
|
|
| 562 | if [[ -n ${euid} && ${euid} != -1 ]] ; then |
|
|
| 563 | if [[ ${euid} -gt 0 ]] ; then |
|
|
| 564 | if [[ -n $(egetent passwd ${euid}) ]] ; then |
|
|
| 565 | euid="next" |
|
|
| 566 | fi |
|
|
| 567 | else |
|
|
| 568 | eerror "Userid given but is not greater than 0 !" |
|
|
| 569 | die "${euid} is not a valid UID" |
|
|
| 570 | fi |
|
|
| 571 | else |
|
|
| 572 | euid="next" |
|
|
| 573 | fi |
|
|
| 574 | if [[ ${euid} == "next" ]] ; then |
|
|
| 575 | for ((euid = 101; euid <= 999; euid++)); do |
|
|
| 576 | [[ -z $(egetent passwd ${euid}) ]] && break |
|
|
| 577 | done |
|
|
| 578 | fi |
|
|
| 579 | opts="${opts} -u ${euid}" |
|
|
| 580 | einfo " - Userid: ${euid}" |
|
|
| 581 | |
|
|
| 582 | # handle shell |
|
|
| 583 | local eshell=$1; shift |
|
|
| 584 | if [[ ! -z ${eshell} ]] && [[ ${eshell} != "-1" ]] ; then |
|
|
| 585 | if [[ ! -e ${ROOT}${eshell} ]] ; then |
|
|
| 586 | eerror "A shell was specified but it does not exist !" |
|
|
| 587 | die "${eshell} does not exist in ${ROOT}" |
|
|
| 588 | fi |
|
|
| 589 | if [[ ${eshell} == */false || ${eshell} == */nologin ]] ; then |
|
|
| 590 | eerror "Do not specify ${eshell} yourself, use -1" |
|
|
| 591 | die "Pass '-1' as the shell parameter" |
|
|
| 592 | fi |
|
|
| 593 | else |
|
|
| 594 | for shell in /sbin/nologin /usr/sbin/nologin /bin/false /usr/bin/false /dev/null ; do |
|
|
| 595 | [[ -x ${ROOT}${shell} ]] && break |
|
|
| 596 | done |
|
|
| 597 | |
|
|
| 598 | if [[ ${shell} == "/dev/null" ]] ; then |
|
|
| 599 | eerror "Unable to identify the shell to use, proceeding with userland default." |
|
|
| 600 | case ${USERLAND} in |
|
|
| 601 | GNU) shell="/bin/false" ;; |
|
|
| 602 | BSD) shell="/sbin/nologin" ;; |
|
|
| 603 | Darwin) shell="/usr/sbin/nologin" ;; |
|
|
| 604 | *) die "Unable to identify the default shell for userland ${USERLAND}" |
|
|
| 605 | esac |
|
|
| 606 | fi |
|
|
| 607 | |
|
|
| 608 | eshell=${shell} |
|
|
| 609 | fi |
|
|
| 610 | einfo " - Shell: ${eshell}" |
|
|
| 611 | opts="${opts} -s ${eshell}" |
|
|
| 612 | |
|
|
| 613 | # handle homedir |
|
|
| 614 | local ehome=$1; shift |
|
|
| 615 | if [[ -z ${ehome} ]] || [[ ${ehome} == "-1" ]] ; then |
|
|
| 616 | ehome="/dev/null" |
|
|
| 617 | fi |
|
|
| 618 | einfo " - Home: ${ehome}" |
|
|
| 619 | opts="${opts} -d ${ehome}" |
|
|
| 620 | |
|
|
| 621 | # handle groups |
|
|
| 622 | local egroups=$1; shift |
|
|
| 623 | if [[ ! -z ${egroups} ]] ; then |
|
|
| 624 | local oldifs=${IFS} |
|
|
| 625 | local defgroup="" exgroups="" |
|
|
| 626 | |
|
|
| 627 | export IFS="," |
|
|
| 628 | for g in ${egroups} ; do |
|
|
| 629 | export IFS=${oldifs} |
|
|
| 630 | if [[ -z $(egetent group "${g}") ]] ; then |
|
|
| 631 | eerror "You must add group ${g} to the system first" |
|
|
| 632 | die "${g} is not a valid GID" |
|
|
| 633 | fi |
|
|
| 634 | if [[ -z ${defgroup} ]] ; then |
|
|
| 635 | defgroup=${g} |
|
|
| 636 | else |
|
|
| 637 | exgroups="${exgroups},${g}" |
|
|
| 638 | fi |
|
|
| 639 | export IFS="," |
|
|
| 640 | done |
|
|
| 641 | export IFS=${oldifs} |
|
|
| 642 | |
|
|
| 643 | opts="${opts} -g ${defgroup}" |
|
|
| 644 | if [[ ! -z ${exgroups} ]] ; then |
|
|
| 645 | opts="${opts} -G ${exgroups:1}" |
|
|
| 646 | fi |
|
|
| 647 | else |
|
|
| 648 | egroups="(none)" |
|
|
| 649 | fi |
|
|
| 650 | einfo " - Groups: ${egroups}" |
|
|
| 651 | |
|
|
| 652 | # handle extra and add the user |
|
|
| 653 | local oldsandbox=${SANDBOX_ON} |
|
|
| 654 | export SANDBOX_ON="0" |
|
|
| 655 | case ${CHOST} in |
|
|
| 656 | *-darwin*) |
|
|
| 657 | ### Make the user |
|
|
| 658 | if [[ -z $@ ]] ; then |
|
|
| 659 | dscl . create /users/${euser} uid ${euid} |
|
|
| 660 | dscl . create /users/${euser} shell ${eshell} |
|
|
| 661 | dscl . create /users/${euser} home ${ehome} |
|
|
| 662 | dscl . create /users/${euser} realname "added by portage for ${PN}" |
|
|
| 663 | ### Add the user to the groups specified |
|
|
| 664 | local oldifs=${IFS} |
|
|
| 665 | export IFS="," |
|
|
| 666 | for g in ${egroups} ; do |
|
|
| 667 | dscl . merge /groups/${g} users ${euser} |
|
|
| 668 | done |
|
|
| 669 | export IFS=${oldifs} |
|
|
| 670 | else |
|
|
| 671 | einfo "Extra options are not supported on Darwin yet" |
|
|
| 672 | einfo "Please report the ebuild along with the info below" |
|
|
| 673 | einfo "eextra: $@" |
|
|
| 674 | die "Required function missing" |
|
|
| 675 | fi |
|
|
| 676 | ;; |
|
|
| 677 | *-freebsd*|*-dragonfly*) |
|
|
| 678 | if [[ -z $@ ]] ; then |
|
|
| 679 | pw useradd ${euser} ${opts} \ |
|
|
| 680 | -c "added by portage for ${PN}" \ |
|
|
| 681 | die "enewuser failed" |
|
|
| 682 | else |
|
|
| 683 | einfo " - Extra: $@" |
|
|
| 684 | pw useradd ${euser} ${opts} \ |
|
|
| 685 | "$@" || die "enewuser failed" |
|
|
| 686 | fi |
|
|
| 687 | ;; |
|
|
| 688 | |
|
|
| 689 | *-netbsd*) |
|
|
| 690 | if [[ -z $@ ]] ; then |
|
|
| 691 | useradd ${opts} ${euser} || die "enewuser failed" |
|
|
| 692 | else |
|
|
| 693 | einfo " - Extra: $@" |
|
|
| 694 | useradd ${opts} ${euser} "$@" || die "enewuser failed" |
|
|
| 695 | fi |
|
|
| 696 | ;; |
|
|
| 697 | |
|
|
| 698 | *-openbsd*) |
|
|
| 699 | if [[ -z $@ ]] ; then |
|
|
| 700 | useradd -u ${euid} -s ${eshell} \ |
|
|
| 701 | -d ${ehome} -c "Added by portage for ${PN}" \ |
|
|
| 702 | -g ${egroups} ${euser} || die "enewuser failed" |
|
|
| 703 | else |
|
|
| 704 | einfo " - Extra: $@" |
|
|
| 705 | useradd -u ${euid} -s ${eshell} \ |
|
|
| 706 | -d ${ehome} -c "Added by portage for ${PN}" \ |
|
|
| 707 | -g ${egroups} ${euser} "$@" || die "enewuser failed" |
|
|
| 708 | fi |
|
|
| 709 | ;; |
|
|
| 710 | |
|
|
| 711 | *) |
|
|
| 712 | if [[ -z $@ ]] ; then |
|
|
| 713 | useradd ${opts} \ |
|
|
| 714 | -c "added by portage for ${PN}" \ |
|
|
| 715 | ${euser} \ |
|
|
| 716 | || die "enewuser failed" |
|
|
| 717 | else |
|
|
| 718 | einfo " - Extra: $@" |
|
|
| 719 | useradd ${opts} "$@" \ |
|
|
| 720 | ${euser} \ |
|
|
| 721 | || die "enewuser failed" |
|
|
| 722 | fi |
|
|
| 723 | ;; |
|
|
| 724 | esac |
|
|
| 725 | |
|
|
| 726 | if [[ ! -e ${ROOT}/${ehome} ]] ; then |
|
|
| 727 | einfo " - Creating ${ehome} in ${ROOT}" |
|
|
| 728 | mkdir -p "${ROOT}/${ehome}" |
|
|
| 729 | chown ${euser} "${ROOT}/${ehome}" |
|
|
| 730 | chmod 755 "${ROOT}/${ehome}" |
|
|
| 731 | fi |
|
|
| 732 | |
|
|
| 733 | export SANDBOX_ON=${oldsandbox} |
|
|
| 734 | } |
|
|
| 735 | |
|
|
| 736 | # @FUNCTION: enewgroup |
|
|
| 737 | # @USAGE: <group> [gid] |
|
|
| 738 | # @DESCRIPTION: |
|
|
| 739 | # This function does not require you to understand how to properly add a |
|
|
| 740 | # group to the system. Just give it a group name to add and enewgroup will |
|
|
| 741 | # do the rest. You may specify the gid for the group or allow the group to |
|
|
| 742 | # allocate the next available one. |
|
|
| 743 | enewgroup() { |
|
|
| 744 | case ${EBUILD_PHASE} in |
|
|
| 745 | unpack|compile|test|install) |
|
|
| 746 | eerror "'enewgroup()' called from '${EBUILD_PHASE}()' which is not a pkg_* function." |
|
|
| 747 | eerror "Package fails at QA and at life. Please file a bug." |
|
|
| 748 | die "Bad package! enewgroup is only for use in pkg_* functions!" |
|
|
| 749 | esac |
|
|
| 750 | |
|
|
| 751 | # get the group |
|
|
| 752 | local egroup="$1"; shift |
|
|
| 753 | if [ -z "${egroup}" ] |
|
|
| 754 | then |
|
|
| 755 | eerror "No group specified !" |
|
|
| 756 | die "Cannot call enewgroup without a group" |
|
|
| 757 | fi |
|
|
| 758 | |
|
|
| 759 | # see if group already exists |
|
|
| 760 | if [[ -n $(egetent group "${egroup}") ]]; then |
|
|
| 761 | return 0 |
|
|
| 762 | fi |
|
|
| 763 | einfo "Adding group '${egroup}' to your system ..." |
|
|
| 764 | |
|
|
| 765 | # options to pass to useradd |
|
|
| 766 | local opts= |
|
|
| 767 | |
|
|
| 768 | # handle gid |
|
|
| 769 | local egid="$1"; shift |
|
|
| 770 | if [ ! -z "${egid}" ] |
|
|
| 771 | then |
|
|
| 772 | if [ "${egid}" -gt 0 ] |
|
|
| 773 | then |
|
|
| 774 | if [ -z "`egetent group ${egid}`" ] |
|
|
| 775 | then |
|
|
| 776 | if [[ "${CHOST}" == *-darwin* ]]; then |
|
|
| 777 | opts="${opts} ${egid}" |
|
|
| 778 | else |
|
|
| 779 | opts="${opts} -g ${egid}" |
|
|
| 780 | fi |
|
|
| 781 | else |
|
|
| 782 | egid="next available; requested gid taken" |
|
|
| 783 | fi |
|
|
| 784 | else |
|
|
| 785 | eerror "Groupid given but is not greater than 0 !" |
|
|
| 786 | die "${egid} is not a valid GID" |
|
|
| 787 | fi |
|
|
| 788 | else |
|
|
| 789 | egid="next available" |
|
|
| 790 | fi |
|
|
| 791 | einfo " - Groupid: ${egid}" |
|
|
| 792 | |
|
|
| 793 | # handle extra |
|
|
| 794 | local eextra="$@" |
|
|
| 795 | opts="${opts} ${eextra}" |
|
|
| 796 | |
|
|
| 797 | # add the group |
|
|
| 798 | local oldsandbox="${SANDBOX_ON}" |
|
|
| 799 | export SANDBOX_ON="0" |
|
|
| 800 | case ${CHOST} in |
|
|
| 801 | *-darwin*) |
|
|
| 802 | if [ ! -z "${eextra}" ]; |
|
|
| 803 | then |
|
|
| 804 | einfo "Extra options are not supported on Darwin/OS X yet" |
|
|
| 805 | einfo "Please report the ebuild along with the info below" |
|
|
| 806 | einfo "eextra: ${eextra}" |
|
|
| 807 | die "Required function missing" |
|
|
| 808 | fi |
|
|
| 809 | |
|
|
| 810 | # If we need the next available |
|
|
| 811 | case ${egid} in |
|
|
| 812 | *[!0-9]*) # Non numeric |
|
|
| 813 | for ((egid = 101; egid <= 999; egid++)); do |
|
|
| 814 | [[ -z $(egetent group ${egid}) ]] && break |
|
|
| 815 | done |
|
|
| 816 | esac |
|
|
| 817 | dscl . create /groups/${egroup} gid ${egid} |
|
|
| 818 | dscl . create /groups/${egroup} passwd '*' |
|
|
| 819 | ;; |
|
|
| 820 | |
|
|
| 821 | *-freebsd*|*-dragonfly*) |
|
|
| 822 | case ${egid} in |
|
|
| 823 | *[!0-9]*) # Non numeric |
|
|
| 824 | for ((egid = 101; egid <= 999; egid++)); do |
|
|
| 825 | [[ -z $(egetent group ${egid}) ]] && break |
|
|
| 826 | done |
|
|
| 827 | esac |
|
|
| 828 | pw groupadd ${egroup} -g ${egid} || die "enewgroup failed" |
|
|
| 829 | ;; |
|
|
| 830 | |
|
|
| 831 | *-netbsd*) |
|
|
| 832 | case ${egid} in |
|
|
| 833 | *[!0-9]*) # Non numeric |
|
|
| 834 | for ((egid = 101; egid <= 999; egid++)); do |
|
|
| 835 | [[ -z $(egetent group ${egid}) ]] && break |
|
|
| 836 | done |
|
|
| 837 | esac |
|
|
| 838 | groupadd -g ${egid} ${egroup} || die "enewgroup failed" |
|
|
| 839 | ;; |
|
|
| 840 | |
|
|
| 841 | *) |
|
|
| 842 | groupadd ${opts} ${egroup} || die "enewgroup failed" |
|
|
| 843 | ;; |
|
|
| 844 | esac |
|
|
| 845 | export SANDBOX_ON="${oldsandbox}" |
|
|
| 846 | } |
|
|
| 847 | |
|
|
| 848 | # @FUNCTION: edos2unix |
538 | # @FUNCTION: edos2unix |
| 849 | # @USAGE: <file> [more files ...] |
539 | # @USAGE: <file> [more files ...] |
| 850 | # @DESCRIPTION: |
540 | # @DESCRIPTION: |
| 851 | # A handy replacement for dos2unix, recode, fixdos, etc... This allows you |
541 | # A handy replacement for dos2unix, recode, fixdos, etc... This allows you |
| 852 | # to remove all of these text utilities from DEPEND variables because this |
542 | # to remove all of these text utilities from DEPEND variables because this |
| 853 | # is a script based solution. Just give it a list of files to convert and |
543 | # is a script based solution. Just give it a list of files to convert and |
| 854 | # they will all be changed from the DOS CRLF format to the UNIX LF format. |
544 | # they will all be changed from the DOS CRLF format to the UNIX LF format. |
| 855 | edos2unix() { |
545 | edos2unix() { |
| 856 | echo "$@" | xargs sed -i 's/\r$//' |
546 | [[ $# -eq 0 ]] && return 0 |
|
|
547 | sed -i 's/\r$//' -- "$@" || die |
| 857 | } |
548 | } |
| 858 | |
549 | |
| 859 | # Make a desktop file ! |
550 | # Make a desktop file ! |
| 860 | # Great for making those icons in kde/gnome startmenu ! |
551 | # Great for making those icons in kde/gnome startmenu ! |
| 861 | # Amaze your friends ! Get the women ! Join today ! |
552 | # Amaze your friends ! Get the women ! Join today ! |
| 862 | # |
553 | # |
| 863 | # make_desktop_entry(<command>, [name], [icon], [type], [path]) |
554 | # make_desktop_entry(<command>, [name], [icon], [type], [fields]) |
| 864 | # |
555 | # |
| 865 | # binary: what command does the app run with ? |
556 | # binary: what command does the app run with ? |
| 866 | # name: the name that will show up in the menu |
557 | # name: the name that will show up in the menu |
| 867 | # icon: give your little like a pretty little icon ... |
558 | # icon: give your little like a pretty little icon ... |
| 868 | # this can be relative (to /usr/share/pixmaps) or |
559 | # this can be relative (to /usr/share/pixmaps) or |
| 869 | # a full path to an icon |
560 | # a full path to an icon |
| 870 | # type: what kind of application is this ? for categories: |
561 | # type: what kind of application is this ? for categories: |
| 871 | # http://standards.freedesktop.org/menu-spec/latest/apa.html |
562 | # http://standards.freedesktop.org/menu-spec/latest/apa.html |
| 872 | # path: if your app needs to startup in a specific dir |
563 | # fields: extra fields to append to the desktop file; a printf string |
| 873 | make_desktop_entry() { |
564 | make_desktop_entry() { |
| 874 | [[ -z $1 ]] && eerror "make_desktop_entry: You must specify the executable" && return 1 |
565 | [[ -z $1 ]] && die "make_desktop_entry: You must specify the executable" |
| 875 | |
566 | |
| 876 | local exec=${1} |
567 | local exec=${1} |
| 877 | local name=${2:-${PN}} |
568 | local name=${2:-${PN}} |
| 878 | local icon=${3:-${PN}} |
569 | local icon=${3:-${PN}} |
| 879 | local type=${4} |
570 | local type=${4} |
| 880 | local path=${5} |
571 | local fields=${5} |
| 881 | |
572 | |
| 882 | if [[ -z ${type} ]] ; then |
573 | if [[ -z ${type} ]] ; then |
| 883 | local catmaj=${CATEGORY%%-*} |
574 | local catmaj=${CATEGORY%%-*} |
| 884 | local catmin=${CATEGORY##*-} |
575 | local catmin=${CATEGORY##*-} |
| 885 | case ${catmaj} in |
576 | case ${catmaj} in |
| 886 | app) |
577 | app) |
| 887 | case ${catmin} in |
578 | case ${catmin} in |
| 888 | accessibility) type=Accessibility;; |
579 | accessibility) type=Accessibility;; |
| 889 | admin) type=System;; |
580 | admin) type=System;; |
| 890 | antivirus) type=System;; |
581 | antivirus) type=System;; |
| 891 | arch) type=Archiving;; |
582 | arch) type=Archiving;; |
| 892 | backup) type=Archiving;; |
583 | backup) type=Archiving;; |
| 893 | cdr) type=DiscBurning;; |
584 | cdr) type=DiscBurning;; |
| 894 | dicts) type=Dictionary;; |
585 | dicts) type=Dictionary;; |
| 895 | doc) type=Documentation;; |
586 | doc) type=Documentation;; |
| 896 | editors) type=TextEditor;; |
587 | editors) type=TextEditor;; |
| 897 | emacs) type=TextEditor;; |
588 | emacs) type=TextEditor;; |
| 898 | emulation) type=Emulator;; |
589 | emulation) type=Emulator;; |
| 899 | laptop) type=HardwareSettings;; |
590 | laptop) type=HardwareSettings;; |
| 900 | office) type=Office;; |
591 | office) type=Office;; |
| 901 | pda) type=PDA;; |
592 | pda) type=PDA;; |
| 902 | vim) type=TextEditor;; |
593 | vim) type=TextEditor;; |
| 903 | xemacs) type=TextEditor;; |
594 | xemacs) type=TextEditor;; |
| 904 | *) type=;; |
|
|
| 905 | esac |
595 | esac |
| 906 | ;; |
596 | ;; |
| 907 | |
597 | |
| 908 | dev) |
598 | dev) |
| 909 | type="Development" |
599 | type="Development" |
| 910 | ;; |
600 | ;; |
| 911 | |
601 | |
| 912 | games) |
602 | games) |
| 913 | case ${catmin} in |
603 | case ${catmin} in |
| 914 | action|fps) type=ActionGame;; |
604 | action|fps) type=ActionGame;; |
| 915 | arcade) type=ArcadeGame;; |
605 | arcade) type=ArcadeGame;; |
| 916 | board) type=BoardGame;; |
606 | board) type=BoardGame;; |
| 917 | emulation) type=Emulator;; |
607 | emulation) type=Emulator;; |
| 918 | kids) type=KidsGame;; |
608 | kids) type=KidsGame;; |
| 919 | puzzle) type=LogicGame;; |
609 | puzzle) type=LogicGame;; |
| 920 | roguelike) type=RolePlaying;; |
610 | roguelike) type=RolePlaying;; |
| 921 | rpg) type=RolePlaying;; |
611 | rpg) type=RolePlaying;; |
| 922 | simulation) type=Simulation;; |
612 | simulation) type=Simulation;; |
| 923 | sports) type=SportsGame;; |
613 | sports) type=SportsGame;; |
| 924 | strategy) type=StrategyGame;; |
614 | strategy) type=StrategyGame;; |
| 925 | *) type=;; |
|
|
| 926 | esac |
615 | esac |
| 927 | type="Game;${type}" |
616 | type="Game;${type}" |
| 928 | ;; |
617 | ;; |
| 929 | |
618 | |
| 930 | gnome) |
619 | gnome) |
| … | |
… | |
| 939 | type="Network;Email" |
628 | type="Network;Email" |
| 940 | ;; |
629 | ;; |
| 941 | |
630 | |
| 942 | media) |
631 | media) |
| 943 | case ${catmin} in |
632 | case ${catmin} in |
|
|
633 | gfx) |
| 944 | gfx) type=Graphics;; |
634 | type=Graphics |
|
|
635 | ;; |
|
|
636 | *) |
|
|
637 | case ${catmin} in |
| 945 | radio) type=Tuner;; |
638 | radio) type=Tuner;; |
| 946 | sound) type=Audio;; |
639 | sound) type=Audio;; |
| 947 | tv) type=TV;; |
640 | tv) type=TV;; |
| 948 | video) type=Video;; |
641 | video) type=Video;; |
| 949 | *) type=;; |
642 | esac |
|
|
643 | type="AudioVideo;${type}" |
|
|
644 | ;; |
| 950 | esac |
645 | esac |
| 951 | type="AudioVideo;${type}" |
|
|
| 952 | ;; |
646 | ;; |
| 953 | |
647 | |
| 954 | net) |
648 | net) |
| 955 | case ${catmin} in |
649 | case ${catmin} in |
| 956 | dialup) type=Dialup;; |
650 | dialup) type=Dialup;; |
| 957 | ftp) type=FileTransfer;; |
651 | ftp) type=FileTransfer;; |
| 958 | im) type=InstantMessaging;; |
652 | im) type=InstantMessaging;; |
| 959 | irc) type=IRCClient;; |
653 | irc) type=IRCClient;; |
| 960 | mail) type=Email;; |
654 | mail) type=Email;; |
| 961 | news) type=News;; |
655 | news) type=News;; |
| 962 | nntp) type=News;; |
656 | nntp) type=News;; |
| 963 | p2p) type=FileTransfer;; |
657 | p2p) type=FileTransfer;; |
| 964 | voip) type=Telephony;; |
658 | voip) type=Telephony;; |
| 965 | *) type=;; |
|
|
| 966 | esac |
659 | esac |
| 967 | type="Network;${type}" |
660 | type="Network;${type}" |
| 968 | ;; |
661 | ;; |
| 969 | |
662 | |
| 970 | sci) |
663 | sci) |
| 971 | case ${catmin} in |
664 | case ${catmin} in |
| 972 | astro*) type=Astronomy;; |
665 | astro*) type=Astronomy;; |
| 973 | bio*) type=Biology;; |
666 | bio*) type=Biology;; |
| 974 | calc*) type=Calculator;; |
667 | calc*) type=Calculator;; |
| 975 | chem*) type=Chemistry;; |
668 | chem*) type=Chemistry;; |
| 976 | elec*) type=Electronics;; |
669 | elec*) type=Electronics;; |
| 977 | geo*) type=Geology;; |
670 | geo*) type=Geology;; |
| 978 | math*) type=Math;; |
671 | math*) type=Math;; |
| 979 | physics) type=Physics;; |
672 | physics) type=Physics;; |
| 980 | visual*) type=DataVisualization;; |
673 | visual*) type=DataVisualization;; |
| 981 | *) type=;; |
|
|
| 982 | esac |
674 | esac |
| 983 | type="Education;Science;${type}" |
675 | type="Education;Science;${type}" |
| 984 | ;; |
676 | ;; |
| 985 | |
677 | |
| 986 | sys) |
678 | sys) |
| … | |
… | |
| 988 | ;; |
680 | ;; |
| 989 | |
681 | |
| 990 | www) |
682 | www) |
| 991 | case ${catmin} in |
683 | case ${catmin} in |
| 992 | client) type=WebBrowser;; |
684 | client) type=WebBrowser;; |
| 993 | *) type=;; |
|
|
| 994 | esac |
685 | esac |
| 995 | type="Network;${type}" |
686 | type="Network;${type}" |
| 996 | ;; |
687 | ;; |
| 997 | |
688 | |
| 998 | *) |
689 | *) |
| … | |
… | |
| 1010 | |
701 | |
| 1011 | # Don't append another ";" when a valid category value is provided. |
702 | # Don't append another ";" when a valid category value is provided. |
| 1012 | type=${type%;}${type:+;} |
703 | type=${type%;}${type:+;} |
| 1013 | |
704 | |
| 1014 | eshopts_push -s extglob |
705 | eshopts_push -s extglob |
| 1015 | if [[ -n ${icon} && ${icon} != /* && ${icon} == *.@(xpm|png|svg) ]]; then |
706 | if [[ -n ${icon} && ${icon} != /* ]] && [[ ${icon} == *.xpm || ${icon} == *.png || ${icon} == *.svg ]]; then |
| 1016 | ewarn "As described in the Icon Theme Specification, icon file extensions are not" |
707 | ewarn "As described in the Icon Theme Specification, icon file extensions are not" |
| 1017 | ewarn "allowed in .desktop files if the value is not an absolute path." |
708 | ewarn "allowed in .desktop files if the value is not an absolute path." |
| 1018 | icon=${icon%.@(xpm|png|svg)} |
709 | icon=${icon%.@(xpm|png|svg)} |
| 1019 | fi |
710 | fi |
| 1020 | eshopts_pop |
711 | eshopts_pop |
| … | |
… | |
| 1028 | TryExec=${exec%% *} |
719 | TryExec=${exec%% *} |
| 1029 | Icon=${icon} |
720 | Icon=${icon} |
| 1030 | Categories=${type} |
721 | Categories=${type} |
| 1031 | EOF |
722 | EOF |
| 1032 | |
723 | |
| 1033 | [[ ${path} ]] && echo "Path=${path}" >> "${desktop}" |
724 | if [[ ${fields:-=} != *=* ]] ; then |
|
|
725 | # 5th arg used to be value to Path= |
|
|
726 | ewarn "make_desktop_entry: update your 5th arg to read Path=${fields}" |
|
|
727 | fields="Path=${fields}" |
|
|
728 | fi |
|
|
729 | [[ -n ${fields} ]] && printf '%b\n' "${fields}" >> "${desktop}" |
| 1034 | |
730 | |
| 1035 | ( |
731 | ( |
| 1036 | # wrap the env here so that the 'insinto' call |
732 | # wrap the env here so that the 'insinto' call |
| 1037 | # doesn't corrupt the env of the caller |
733 | # doesn't corrupt the env of the caller |
| 1038 | insinto /usr/share/applications |
734 | insinto /usr/share/applications |
| 1039 | doins "${desktop}" |
735 | doins "${desktop}" |
| 1040 | ) |
736 | ) || die "installing desktop file failed" |
| 1041 | } |
737 | } |
| 1042 | |
738 | |
| 1043 | # @FUNCTION: validate_desktop_entries |
739 | # @FUNCTION: validate_desktop_entries |
| 1044 | # @USAGE: [directories] |
740 | # @USAGE: [directories] |
| 1045 | # @MAINTAINER: |
741 | # @MAINTAINER: |
| … | |
… | |
| 1324 | [[ -z ${src} ]] && die "Could not locate source for '${src_input}'" |
1020 | [[ -z ${src} ]] && die "Could not locate source for '${src_input}'" |
| 1325 | |
1021 | |
| 1326 | local shrtsrc=$(basename "${src}") |
1022 | local shrtsrc=$(basename "${src}") |
| 1327 | echo ">>> Unpacking ${shrtsrc} to ${PWD}" |
1023 | echo ">>> Unpacking ${shrtsrc} to ${PWD}" |
| 1328 | if [[ -z ${skip} ]] ; then |
1024 | if [[ -z ${skip} ]] ; then |
| 1329 | local ver=$(grep -a '#.*Makeself' "${src}" | awk '{print $NF}') |
1025 | local ver=$(grep -m1 -a '#.*Makeself' "${src}" | awk '{print $NF}') |
| 1330 | local skip=0 |
1026 | local skip=0 |
| 1331 | exe=tail |
1027 | exe=tail |
| 1332 | case ${ver} in |
1028 | case ${ver} in |
| 1333 | 1.5.*|1.6.0-nv) # tested 1.5.{3,4,5} ... guessing 1.5.x series is same |
1029 | 1.5.*|1.6.0-nv) # tested 1.5.{3,4,5} ... guessing 1.5.x series is same |
| 1334 | skip=$(grep -a ^skip= "${src}" | cut -d= -f2) |
1030 | skip=$(grep -a ^skip= "${src}" | cut -d= -f2) |
| … | |
… | |
| 1336 | 2.0|2.0.1) |
1032 | 2.0|2.0.1) |
| 1337 | skip=$(grep -a ^$'\t'tail "${src}" | awk '{print $2}' | cut -b2-) |
1033 | skip=$(grep -a ^$'\t'tail "${src}" | awk '{print $2}' | cut -b2-) |
| 1338 | ;; |
1034 | ;; |
| 1339 | 2.1.1) |
1035 | 2.1.1) |
| 1340 | skip=$(grep -a ^offset= "${src}" | awk '{print $2}' | cut -b2-) |
1036 | skip=$(grep -a ^offset= "${src}" | awk '{print $2}' | cut -b2-) |
| 1341 | let skip="skip + 1" |
1037 | (( skip++ )) |
| 1342 | ;; |
1038 | ;; |
| 1343 | 2.1.2) |
1039 | 2.1.2) |
| 1344 | skip=$(grep -a ^offset= "${src}" | awk '{print $3}' | head -n 1) |
1040 | skip=$(grep -a ^offset= "${src}" | awk '{print $3}' | head -n 1) |
| 1345 | let skip="skip + 1" |
1041 | (( skip++ )) |
| 1346 | ;; |
1042 | ;; |
| 1347 | 2.1.3) |
1043 | 2.1.3) |
| 1348 | skip=`grep -a ^offset= "${src}" | awk '{print $3}'` |
1044 | skip=`grep -a ^offset= "${src}" | awk '{print $3}'` |
| 1349 | let skip="skip + 1" |
1045 | (( skip++ )) |
| 1350 | ;; |
1046 | ;; |
| 1351 | 2.1.4|2.1.5) |
1047 | 2.1.4|2.1.5) |
| 1352 | skip=$(grep -a offset=.*head.*wc "${src}" | awk '{print $3}' | head -n 1) |
1048 | skip=$(grep -a offset=.*head.*wc "${src}" | awk '{print $3}' | head -n 1) |
| 1353 | skip=$(head -n ${skip} "${src}" | wc -c) |
1049 | skip=$(head -n ${skip} "${src}" | wc -c) |
| 1354 | exe="dd" |
1050 | exe="dd" |
| … | |
… | |
| 1363 | esac |
1059 | esac |
| 1364 | debug-print "Detected Makeself version ${ver} ... using ${skip} as offset" |
1060 | debug-print "Detected Makeself version ${ver} ... using ${skip} as offset" |
| 1365 | fi |
1061 | fi |
| 1366 | case ${exe} in |
1062 | case ${exe} in |
| 1367 | tail) exe="tail -n +${skip} '${src}'";; |
1063 | tail) exe="tail -n +${skip} '${src}'";; |
| 1368 | dd) exe="dd ibs=${skip} skip=1 obs=1024 conv=sync if='${src}'";; |
1064 | dd) exe="dd ibs=${skip} skip=1 if='${src}'";; |
| 1369 | *) die "makeself cant handle exe '${exe}'" |
1065 | *) die "makeself cant handle exe '${exe}'" |
| 1370 | esac |
1066 | esac |
| 1371 | |
1067 | |
| 1372 | # lets grab the first few bytes of the file to figure out what kind of archive it is |
1068 | # lets grab the first few bytes of the file to figure out what kind of archive it is |
| 1373 | local tmpfile=$(emktemp) |
1069 | local filetype tmpfile=$(emktemp) |
| 1374 | eval ${exe} 2>/dev/null | head -c 512 > "${tmpfile}" |
1070 | eval ${exe} 2>/dev/null | head -c 512 > "${tmpfile}" |
| 1375 | local filetype=$(file -b "${tmpfile}") |
1071 | filetype=$(file -b "${tmpfile}") || die |
| 1376 | case ${filetype} in |
1072 | case ${filetype} in |
| 1377 | *tar\ archive*) |
1073 | *tar\ archive*) |
| 1378 | eval ${exe} | tar --no-same-owner -xf - |
1074 | eval ${exe} | tar --no-same-owner -xf - |
| 1379 | ;; |
1075 | ;; |
| 1380 | bzip2*) |
1076 | bzip2*) |
| … | |
… | |
| 1506 | export CDROM_ROOT=${CD_ROOT_1:-${CD_ROOT}} |
1202 | export CDROM_ROOT=${CD_ROOT_1:-${CD_ROOT}} |
| 1507 | einfo "Found CD #${CDROM_CURRENT_CD} root at ${CDROM_ROOT}" |
1203 | einfo "Found CD #${CDROM_CURRENT_CD} root at ${CDROM_ROOT}" |
| 1508 | export CDROM_SET=-1 |
1204 | export CDROM_SET=-1 |
| 1509 | for f in ${CDROM_CHECK_1//:/ } ; do |
1205 | for f in ${CDROM_CHECK_1//:/ } ; do |
| 1510 | ((++CDROM_SET)) |
1206 | ((++CDROM_SET)) |
| 1511 | [[ -e ${CD_ROOT}/${f} ]] && break |
1207 | [[ -e ${CDROM_ROOT}/${f} ]] && break |
| 1512 | done |
1208 | done |
| 1513 | export CDROM_MATCH=${f} |
1209 | export CDROM_MATCH=${f} |
| 1514 | return |
1210 | return |
| 1515 | fi |
1211 | fi |
| 1516 | |
1212 | |
| … | |
… | |
| 1690 | else |
1386 | else |
| 1691 | newls="" |
1387 | newls="" |
| 1692 | fi |
1388 | fi |
| 1693 | for f in $(find "$d" -name '*.po' -exec basename {} .po ';') ; do |
1389 | for f in $(find "$d" -name '*.po' -exec basename {} .po ';') ; do |
| 1694 | if [[ ${op} == "-i" ]] ; then |
1390 | if [[ ${op} == "-i" ]] ; then |
| 1695 | hasq ${f} ${ls} && newls="${newls} ${f}" |
1391 | has ${f} ${ls} && newls="${newls} ${f}" |
| 1696 | else |
1392 | else |
| 1697 | hasq ${f} ${ls} || newls="${newls} ${f}" |
1393 | has ${f} ${ls} || newls="${newls} ${f}" |
| 1698 | fi |
1394 | fi |
| 1699 | done |
1395 | done |
| 1700 | ls=${newls} |
1396 | ls=${newls} |
| 1701 | done |
1397 | done |
| 1702 | else |
1398 | else |
| … | |
… | |
| 1704 | fi |
1400 | fi |
| 1705 | |
1401 | |
| 1706 | nols="" |
1402 | nols="" |
| 1707 | newls="" |
1403 | newls="" |
| 1708 | for f in ${LINGUAS} ; do |
1404 | for f in ${LINGUAS} ; do |
| 1709 | if hasq ${f} ${ls} ; then |
1405 | if has ${f} ${ls} ; then |
| 1710 | newls="${newls} ${f}" |
1406 | newls="${newls} ${f}" |
| 1711 | else |
1407 | else |
| 1712 | nols="${nols} ${f}" |
1408 | nols="${nols} ${f}" |
| 1713 | fi |
1409 | fi |
| 1714 | done |
1410 | done |
| … | |
… | |
| 1769 | ewarn "the libraries are not being removed. You need to run revdep-rebuild" |
1465 | ewarn "the libraries are not being removed. You need to run revdep-rebuild" |
| 1770 | ewarn "in order to remove these old dependencies. If you do not have this" |
1466 | ewarn "in order to remove these old dependencies. If you do not have this" |
| 1771 | ewarn "helper program, simply emerge the 'gentoolkit' package." |
1467 | ewarn "helper program, simply emerge the 'gentoolkit' package." |
| 1772 | ewarn |
1468 | ewarn |
| 1773 | fi |
1469 | fi |
|
|
1470 | # temp hack for #348634 #357225 |
|
|
1471 | [[ ${PN} == "mpfr" ]] && lib=${lib##*/} |
| 1774 | ewarn " # revdep-rebuild --library ${lib##*/}" |
1472 | ewarn " # revdep-rebuild --library '${lib}'" |
| 1775 | done |
1473 | done |
| 1776 | if [[ ${notice} -eq 1 ]] ; then |
1474 | if [[ ${notice} -eq 1 ]] ; then |
| 1777 | ewarn |
1475 | ewarn |
| 1778 | ewarn "Once you've finished running revdep-rebuild, it should be safe to" |
1476 | ewarn "Once you've finished running revdep-rebuild, it should be safe to" |
| 1779 | ewarn "delete the old libraries. Here is a copy & paste for the lazy:" |
1477 | ewarn "delete the old libraries. Here is a copy & paste for the lazy:" |
| … | |
… | |
| 1925 | else |
1623 | else |
| 1926 | newbin "${tmpwrapper}" "${wrapper}" || die |
1624 | newbin "${tmpwrapper}" "${wrapper}" || die |
| 1927 | fi |
1625 | fi |
| 1928 | } |
1626 | } |
| 1929 | |
1627 | |
| 1930 | # @FUNCTION: prepalldocs |
1628 | # @FUNCTION: path_exists |
| 1931 | # @USAGE: |
1629 | # @USAGE: [-a|-o] <paths> |
| 1932 | # @DESCRIPTION: |
1630 | # @DESCRIPTION: |
| 1933 | # Compress files in /usr/share/doc which are not already |
1631 | # Check if the specified paths exist. Works for all types of paths |
| 1934 | # compressed, excluding /usr/share/doc/${PF}/html. |
1632 | # (files/dirs/etc...). The -a and -o flags control the requirements |
| 1935 | # Uses the ecompressdir to do the compression. |
1633 | # of the paths. They correspond to "and" and "or" logic. So the -a |
| 1936 | # 2009-02-18 by betelgeuse: |
1634 | # flag means all the paths must exist while the -o flag means at least |
| 1937 | # Commented because ecompressdir is even more internal to |
1635 | # one of the paths must exist. The default behavior is "and". If no |
| 1938 | # Portage than prepalldocs (it's not even mentioned in man 5 |
1636 | # paths are specified, then the return value is "false". |
| 1939 | # ebuild). Please submit a better version for review to gentoo-dev |
1637 | path_exists() { |
| 1940 | # if you want prepalldocs here. |
1638 | local opt=$1 |
| 1941 | #prepalldocs() { |
1639 | [[ ${opt} == -[ao] ]] && shift || opt="-a" |
| 1942 | # if [[ -n $1 ]] ; then |
|
|
| 1943 | # ewarn "prepalldocs: invalid usage; takes no arguments" |
|
|
| 1944 | # fi |
|
|
| 1945 | |
1640 | |
| 1946 | # cd "${D}" |
1641 | # no paths -> return false |
| 1947 | # [[ -d usr/share/doc ]] || return 0 |
1642 | # same behavior as: [[ -e "" ]] |
|
|
1643 | [[ $# -eq 0 ]] && return 1 |
| 1948 | |
1644 | |
| 1949 | # find usr/share/doc -exec gzip {} + |
1645 | local p r=0 |
| 1950 | # ecompressdir --ignore /usr/share/doc/${PF}/html |
1646 | for p in "$@" ; do |
| 1951 | # ecompressdir --queue /usr/share/doc |
1647 | [[ -e ${p} ]] |
| 1952 | #} |
1648 | : $(( r += $? )) |
|
|
1649 | done |
|
|
1650 | |
|
|
1651 | case ${opt} in |
|
|
1652 | -a) return $(( r != 0 )) ;; |
|
|
1653 | -o) return $(( r == $# )) ;; |
|
|
1654 | esac |
|
|
1655 | } |
|
|
1656 | |
|
|
1657 | # @FUNCTION: in_iuse |
|
|
1658 | # @USAGE: <flag> |
|
|
1659 | # @DESCRIPTION: |
|
|
1660 | # Determines whether the given flag is in IUSE. Strips IUSE default prefixes |
|
|
1661 | # as necessary. |
|
|
1662 | # |
|
|
1663 | # Note that this function should not be used in the global scope. |
|
|
1664 | in_iuse() { |
|
|
1665 | debug-print-function ${FUNCNAME} "${@}" |
|
|
1666 | [[ ${#} -eq 1 ]] || die "Invalid args to ${FUNCNAME}()" |
|
|
1667 | |
|
|
1668 | local flag=${1} |
|
|
1669 | local liuse=( ${IUSE} ) |
|
|
1670 | |
|
|
1671 | has "${flag}" "${liuse[@]#[+-]}" |
|
|
1672 | } |
|
|
1673 | |
|
|
1674 | # @FUNCTION: use_if_iuse |
|
|
1675 | # @USAGE: <flag> |
|
|
1676 | # @DESCRIPTION: |
|
|
1677 | # Return true if the given flag is in USE and IUSE. |
|
|
1678 | # |
|
|
1679 | # Note that this function should not be used in the global scope. |
|
|
1680 | use_if_iuse() { |
|
|
1681 | in_iuse $1 || return 1 |
|
|
1682 | use $1 |
|
|
1683 | } |
|
|
1684 | |
|
|
1685 | # @FUNCTION: usex |
|
|
1686 | # @USAGE: <USE flag> [true output] [false output] [true suffix] [false suffix] |
|
|
1687 | # @DESCRIPTION: |
|
|
1688 | # If USE flag is set, echo [true output][true suffix] (defaults to "yes"), |
|
|
1689 | # otherwise echo [false output][false suffix] (defaults to "no"). |
|
|
1690 | usex() { use "$1" && echo "${2-yes}$4" || echo "${3-no}$5" ; } #382963 |
|
|
1691 | |
|
|
1692 | fi |