| 1 | # Copyright 1999-2003 Gentoo Technologies, Inc. |
1 | # Copyright 1999-2004 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.60 2003/09/23 01:26:58 vapier Exp $ |
3 | # $Header: /var/cvsroot/gentoo-x86/eclass/eutils.eclass,v 1.95 2004/08/15 03:25:19 lv 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. |
| … | |
… | |
| 10 | # NB: If you add anything, please comment it! |
10 | # NB: If you add anything, please comment it! |
| 11 | |
11 | |
| 12 | ECLASS=eutils |
12 | ECLASS=eutils |
| 13 | INHERITED="$INHERITED $ECLASS" |
13 | INHERITED="$INHERITED $ECLASS" |
| 14 | |
14 | |
| 15 | newdepend "!bootstrap? ( sys-devel/patch )" |
15 | DEPEND="!bootstrap? ( sys-devel/patch )" |
| 16 | |
16 | |
| 17 | DESCRIPTION="Based on the ${ECLASS} eclass" |
17 | DESCRIPTION="Based on the ${ECLASS} eclass" |
| 18 | |
18 | |
| 19 | # This function generate linker scripts in /usr/lib for dynamic |
19 | # This function generate linker scripts in /usr/lib for dynamic |
| 20 | # libs in /lib. This is to fix linking problems when you have |
20 | # libs in /lib. This is to fix linking problems when you have |
| … | |
… | |
| 33 | # to point to the latest version of the library present. |
33 | # to point to the latest version of the library present. |
| 34 | # |
34 | # |
| 35 | # <azarah@gentoo.org> (26 Oct 2002) |
35 | # <azarah@gentoo.org> (26 Oct 2002) |
| 36 | # |
36 | # |
| 37 | gen_usr_ldscript() { |
37 | gen_usr_ldscript() { |
|
|
38 | # this adds support for installing to lib64/lib32. since only portage |
|
|
39 | # 2.0.51 will have this functionality supported in dolib and friends, |
|
|
40 | # and since it isnt expected that many profiles will define it, we need |
|
|
41 | # to make this variable default to lib. |
|
|
42 | [ -z "${CONF_LIBDIR}" ] && CONF_LIBDIR="lib" |
| 38 | |
43 | |
| 39 | # Just make sure it exists |
44 | # Just make sure it exists |
| 40 | dodir /usr/lib |
45 | dodir /usr/${CONF_LIBDIR} |
| 41 | |
46 | |
| 42 | cat > ${D}/usr/lib/$1 <<"END_LDSCRIPT" |
47 | cat > ${D}/usr/${CONF_LIBDIR}/$1 <<"END_LDSCRIPT" |
| 43 | /* GNU ld script |
48 | /* GNU ld script |
| 44 | Because Gentoo have critical dynamic libraries |
49 | Because Gentoo have critical dynamic libraries |
| 45 | in /lib, and the static versions in /usr/lib, we |
50 | in /lib, and the static versions in /usr/lib, we |
| 46 | need to have a "fake" dynamic lib in /usr/lib, |
51 | need to have a "fake" dynamic lib in /usr/lib, |
| 47 | otherwise we run into linking problems. |
52 | otherwise we run into linking problems. |
| 48 | See bug #4411 on http://bugs.gentoo.org/ for |
53 | See bug #4411 on http://bugs.gentoo.org/ for |
| 49 | more info. */ |
54 | more info. */ |
| 50 | GROUP ( /lib/libxxx ) |
|
|
| 51 | END_LDSCRIPT |
55 | END_LDSCRIPT |
| 52 | |
56 | |
|
|
57 | echo "GROUP ( /${CONF_LIBDIR}/libxxx )" >> ${D}/usr/${CONF_LIBDIR}/$1 |
| 53 | dosed "s:libxxx:$1:" /usr/lib/$1 |
58 | dosed "s:libxxx:$1:" /usr/${CONF_LIBDIR}/$1 |
| 54 | |
59 | |
| 55 | return 0 |
60 | return 0 |
| 56 | } |
61 | } |
| 57 | |
62 | |
| 58 | # Simple function to draw a line consisting of '=' the same length as $* |
63 | # Simple function to draw a line consisting of '=' the same length as $* |
| … | |
… | |
| 144 | local SINGLE_PATCH="no" |
149 | local SINGLE_PATCH="no" |
| 145 | local x="" |
150 | local x="" |
| 146 | |
151 | |
| 147 | if [ "$#" -gt 1 ] |
152 | if [ "$#" -gt 1 ] |
| 148 | then |
153 | then |
| 149 | eerror "Invalid arguments to epatch()" |
154 | local m="" |
| 150 | die "Invalid arguments to epatch()" |
155 | einfo "${#} patches to apply..." |
|
|
156 | for m in "$@" ; do |
|
|
157 | epatch "${m}" |
|
|
158 | done |
|
|
159 | return 0 |
| 151 | fi |
160 | fi |
| 152 | |
161 | |
| 153 | if [ -n "$1" -a -f "$1" ] |
162 | if [ -n "$1" -a -f "$1" ] |
| 154 | then |
163 | then |
| 155 | SINGLE_PATCH="yes" |
164 | SINGLE_PATCH="yes" |
| … | |
… | |
| 258 | else |
267 | else |
| 259 | PATCH_TARGET="${x}" |
268 | PATCH_TARGET="${x}" |
| 260 | fi |
269 | fi |
| 261 | |
270 | |
| 262 | echo -n "PATCH COMMAND: " >> ${STDERR_TARGET%/*}/${x##*/}-${STDERR_TARGET##*/} |
271 | echo -n "PATCH COMMAND: " >> ${STDERR_TARGET%/*}/${x##*/}-${STDERR_TARGET##*/} |
| 263 | echo "patch ${popts} -p${count} < ${PATCH_TARGET}" >> ${STDERR_TARGET%/*}/${x##*/}-${STDERR_TARGET##*/} |
272 | echo "patch -p${count} ${popts} < ${PATCH_TARGET}" >> ${STDERR_TARGET%/*}/${x##*/}-${STDERR_TARGET##*/} |
| 264 | |
273 | |
| 265 | echo >> ${STDERR_TARGET%/*}/${x##*/}-${STDERR_TARGET##*/} |
274 | echo >> ${STDERR_TARGET%/*}/${x##*/}-${STDERR_TARGET##*/} |
| 266 | draw_line "***** ${x##*/} *****" >> ${STDERR_TARGET%/*}/${x##*/}-${STDERR_TARGET##*/} |
275 | draw_line "***** ${x##*/} *****" >> ${STDERR_TARGET%/*}/${x##*/}-${STDERR_TARGET##*/} |
| 267 | |
276 | |
| 268 | if [ "${PATCH_SUFFIX}" != "patch" ] |
277 | if [ "${PATCH_SUFFIX}" != "patch" ] |
| … | |
… | |
| 275 | count=5 |
284 | count=5 |
| 276 | break |
285 | break |
| 277 | fi |
286 | fi |
| 278 | fi |
287 | fi |
| 279 | |
288 | |
| 280 | if (cat ${PATCH_TARGET} | patch ${popts} --dry-run -f -p${count}) >> ${STDERR_TARGET%/*}/${x##*/}-${STDERR_TARGET##*/} 2>&1 |
289 | if (cat ${PATCH_TARGET} | patch -p${count} ${popts} --dry-run -f) >> ${STDERR_TARGET%/*}/${x##*/}-${STDERR_TARGET##*/} 2>&1 |
| 281 | then |
290 | then |
| 282 | draw_line "***** ${x##*/} *****" > ${STDERR_TARGET%/*}/${x##*/}-${STDERR_TARGET##*/}.real |
291 | draw_line "***** ${x##*/} *****" > ${STDERR_TARGET%/*}/${x##*/}-${STDERR_TARGET##*/}.real |
| 283 | echo >> ${STDERR_TARGET%/*}/${x##*/}-${STDERR_TARGET##*/}.real |
292 | echo >> ${STDERR_TARGET%/*}/${x##*/}-${STDERR_TARGET##*/}.real |
| 284 | echo "ACTUALLY APPLYING ${x##*/}..." >> ${STDERR_TARGET%/*}/${x##*/}-${STDERR_TARGET##*/}.real |
293 | echo "ACTUALLY APPLYING ${x##*/}..." >> ${STDERR_TARGET%/*}/${x##*/}-${STDERR_TARGET##*/}.real |
| 285 | echo >> ${STDERR_TARGET%/*}/${x##*/}-${STDERR_TARGET##*/}.real |
294 | echo >> ${STDERR_TARGET%/*}/${x##*/}-${STDERR_TARGET##*/}.real |
| 286 | draw_line "***** ${x##*/} *****" >> ${STDERR_TARGET%/*}/${x##*/}-${STDERR_TARGET##*/}.real |
295 | draw_line "***** ${x##*/} *****" >> ${STDERR_TARGET%/*}/${x##*/}-${STDERR_TARGET##*/}.real |
| 287 | |
296 | |
| 288 | cat ${PATCH_TARGET} | patch ${popts} -p${count} >> ${STDERR_TARGET%/*}/${x##*/}-${STDERR_TARGET##*/}.real 2>&1 |
297 | cat ${PATCH_TARGET} | patch -p${count} ${popts} >> ${STDERR_TARGET%/*}/${x##*/}-${STDERR_TARGET##*/}.real 2>&1 |
| 289 | |
298 | |
| 290 | if [ "$?" -ne 0 ] |
299 | if [ "$?" -ne 0 ] |
| 291 | then |
300 | then |
| 292 | cat ${STDERR_TARGET%/*}/${x##*/}-${STDERR_TARGET##*/}.real >> ${STDERR_TARGET%/*}/${x##*/}-${STDERR_TARGET##*/} |
301 | cat ${STDERR_TARGET%/*}/${x##*/}-${STDERR_TARGET##*/}.real >> ${STDERR_TARGET%/*}/${x##*/}-${STDERR_TARGET##*/} |
| 293 | echo |
302 | echo |
| … | |
… | |
| 422 | jobs="$((`grep "^cpus active" /proc/cpuinfo | sed -e "s/^.*: //"` * 2))" |
431 | jobs="$((`grep "^cpus active" /proc/cpuinfo | sed -e "s/^.*: //"` * 2))" |
| 423 | else |
432 | else |
| 424 | jobs=2 |
433 | jobs=2 |
| 425 | fi |
434 | fi |
| 426 | |
435 | |
| 427 | elif [ "${ARCH}" = "ppc" ] |
436 | elif [ "${ARCH}" = "ppc" -o "${ARCH}" = "ppc64" ] |
| 428 | then |
437 | then |
| 429 | # ppc has "processor", but only when compiled with SMP |
438 | # ppc has "processor", but only when compiled with SMP |
| 430 | if [ "`grep -c "^processor" /proc/cpuinfo`" -eq 1 ] |
439 | if [ "`grep -c "^processor" /proc/cpuinfo`" -eq 1 ] |
| 431 | then |
440 | then |
| 432 | jobs="$((`grep -c ^processor /proc/cpuinfo` * 2))" |
441 | jobs="$((`grep -c ^processor /proc/cpuinfo` * 2))" |
| 433 | else |
442 | else |
| 434 | jobs=2 |
443 | jobs=2 |
| 435 | fi |
444 | fi |
|
|
445 | elif [ "${ARCH}" = "s390" ] |
|
|
446 | then |
|
|
447 | # s390 has "# processors : " |
|
|
448 | jobs="$((`grep "^\# processors" /proc/cpuinfo | sed -e "s/^.*: //"` * 2))" |
| 436 | else |
449 | else |
| 437 | jobs="$((`grep -c ^cpu /proc/cpuinfo` * 2))" |
450 | jobs="$((`grep -c ^cpu /proc/cpuinfo` * 2))" |
| 438 | die "Unknown ARCH -- ${ARCH}!" |
451 | die "Unknown ARCH -- ${ARCH}!" |
| 439 | fi |
452 | fi |
| 440 | |
453 | |
| … | |
… | |
| 456 | fi |
469 | fi |
| 457 | fi |
470 | fi |
| 458 | } |
471 | } |
| 459 | |
472 | |
| 460 | # Cheap replacement for when debianutils (and thus mktemp) |
473 | # Cheap replacement for when debianutils (and thus mktemp) |
| 461 | # do not exist on the users system |
474 | # does not exist on the users system |
| 462 | # vapier@gentoo.org |
475 | # vapier@gentoo.org |
| 463 | # |
476 | # |
| 464 | # Takes just 1 parameter (the directory to create tmpfile in) |
477 | # Takes just 1 parameter (the directory to create tmpfile in) |
| 465 | mymktemp() { |
478 | mymktemp() { |
| 466 | local topdir="$1" |
479 | local topdir="$1" |
| … | |
… | |
| 471 | mktemp -p ${topdir} |
484 | mktemp -p ${topdir} |
| 472 | else |
485 | else |
| 473 | local tmp="${topdir}/tmp.${RANDOM}.${RANDOM}.${RANDOM}" |
486 | local tmp="${topdir}/tmp.${RANDOM}.${RANDOM}.${RANDOM}" |
| 474 | touch ${tmp} |
487 | touch ${tmp} |
| 475 | echo ${tmp} |
488 | echo ${tmp} |
|
|
489 | fi |
|
|
490 | } |
|
|
491 | |
|
|
492 | # Small wrapper for getent (Linux) and nidump (Mac OS X) |
|
|
493 | # used in enewuser()/enewgroup() |
|
|
494 | # Joe Jezak <josejx@gmail.com> and usata@gentoo.org |
|
|
495 | # |
|
|
496 | # egetent(database, key) |
|
|
497 | egetent() { |
|
|
498 | if [ "${ARCH}" == "macos" ] ; then |
|
|
499 | case "$2" in |
|
|
500 | *[!0-9]*) # Non numeric |
|
|
501 | nidump $1 . | awk -F":" "{ if (\$1 ~ /^$2$/) {print \$0;exit;} }" |
|
|
502 | ;; |
|
|
503 | *) # Numeric |
|
|
504 | nidump $1 . | awk -F":" "{ if (\$3 == $2) {print \$0;exit;} }" |
|
|
505 | ;; |
|
|
506 | esac |
|
|
507 | else |
|
|
508 | getent $1 $2 |
| 476 | fi |
509 | fi |
| 477 | } |
510 | } |
| 478 | |
511 | |
| 479 | # Simplify/standardize adding users to the system |
512 | # Simplify/standardize adding users to the system |
| 480 | # vapier@gentoo.org |
513 | # vapier@gentoo.org |
| … | |
… | |
| 496 | then |
529 | then |
| 497 | eerror "No username specified !" |
530 | eerror "No username specified !" |
| 498 | die "Cannot call enewuser without a username" |
531 | die "Cannot call enewuser without a username" |
| 499 | fi |
532 | fi |
| 500 | |
533 | |
| 501 | # setup a file for testing usernames/groups |
|
|
| 502 | local tmpfile="`mymktemp ${T}`" |
|
|
| 503 | chown ${euser} ${tmpfile} >& /dev/null |
|
|
| 504 | local realuser="`ls -l ${tmpfile} | awk '{print $3}'`" |
|
|
| 505 | |
|
|
| 506 | # see if user already exists |
534 | # lets see if the username already exists |
| 507 | if [ "${euser}" == "${realuser}" ] |
535 | if [ "${euser}" == "`egetent passwd \"${euser}\" | cut -d: -f1`" ] |
| 508 | then |
536 | then |
| 509 | return 0 |
537 | return 0 |
| 510 | fi |
538 | fi |
| 511 | einfo "Adding user '${euser}' to your system ..." |
539 | einfo "Adding user '${euser}' to your system ..." |
| 512 | |
540 | |
| … | |
… | |
| 517 | local euid="$1"; shift |
545 | local euid="$1"; shift |
| 518 | if [ ! -z "${euid}" ] && [ "${euid}" != "-1" ] |
546 | if [ ! -z "${euid}" ] && [ "${euid}" != "-1" ] |
| 519 | then |
547 | then |
| 520 | if [ "${euid}" -gt 0 ] |
548 | if [ "${euid}" -gt 0 ] |
| 521 | then |
549 | then |
| 522 | opts="${opts} -u ${euid}" |
550 | if [ ! -z "`egetent passwd ${euid}`" ] |
|
|
551 | then |
|
|
552 | euid="next" |
|
|
553 | fi |
| 523 | else |
554 | else |
| 524 | eerror "Userid given but is not greater than 0 !" |
555 | eerror "Userid given but is not greater than 0 !" |
| 525 | die "${euid} is not a valid UID" |
556 | die "${euid} is not a valid UID" |
| 526 | fi |
557 | fi |
| 527 | else |
558 | else |
| 528 | euid="next available" |
559 | euid="next" |
|
|
560 | fi |
|
|
561 | if [ "${euid}" == "next" ] |
|
|
562 | then |
|
|
563 | local pwrange |
|
|
564 | if [ "${ARCH}" == "macos" ] ; then |
|
|
565 | pwrange="`jot 898 101`" |
|
|
566 | else |
|
|
567 | pwrange="`seq 101 999`" |
| 529 | fi |
568 | fi |
|
|
569 | for euid in ${pwrange} ; do |
|
|
570 | [ -z "`egetent passwd ${euid}`" ] && break |
|
|
571 | done |
|
|
572 | fi |
|
|
573 | opts="${opts} -u ${euid}" |
| 530 | einfo " - Userid: ${euid}" |
574 | einfo " - Userid: ${euid}" |
| 531 | |
575 | |
| 532 | # handle shell |
576 | # handle shell |
| 533 | local eshell="$1"; shift |
577 | local eshell="$1"; shift |
| 534 | if [ ! -z "${eshell}" ] |
578 | if [ ! -z "${eshell}" ] && [ "${eshell}" != "-1" ] |
| 535 | then |
579 | then |
| 536 | if [ ! -e "${eshell}" ] |
580 | if [ ! -e "${eshell}" ] |
| 537 | then |
581 | then |
| 538 | eerror "A shell was specified but it does not exist !" |
582 | eerror "A shell was specified but it does not exist !" |
| 539 | die "${eshell} does not exist" |
583 | die "${eshell} does not exist" |
| … | |
… | |
| 544 | einfo " - Shell: ${eshell}" |
588 | einfo " - Shell: ${eshell}" |
| 545 | opts="${opts} -s ${eshell}" |
589 | opts="${opts} -s ${eshell}" |
| 546 | |
590 | |
| 547 | # handle homedir |
591 | # handle homedir |
| 548 | local ehome="$1"; shift |
592 | local ehome="$1"; shift |
| 549 | if [ -z "${ehome}" ] |
593 | if [ -z "${ehome}" ] && [ "${eshell}" != "-1" ] |
| 550 | then |
594 | then |
| 551 | ehome="/dev/null" |
595 | ehome="/dev/null" |
| 552 | fi |
596 | fi |
| 553 | einfo " - Home: ${ehome}" |
597 | einfo " - Home: ${ehome}" |
| 554 | opts="${opts} -d ${ehome}" |
598 | opts="${opts} -d ${ehome}" |
| 555 | |
599 | |
| 556 | # handle groups |
600 | # handle groups |
| 557 | local egroups="$1"; shift |
601 | local egroups="$1"; shift |
| 558 | if [ ! -z "${egroups}" ] |
602 | if [ ! -z "${egroups}" ] |
| 559 | then |
603 | then |
| 560 | local realgroup= |
|
|
| 561 | local oldifs="${IFS}" |
604 | local oldifs="${IFS}" |
| 562 | export IFS="," |
605 | export IFS="," |
| 563 | for g in ${egroups} |
606 | for g in ${egroups} |
| 564 | do |
607 | do |
| 565 | chgrp ${g} ${tmpfile} >& /dev/null |
608 | if [ -z "`egetent group \"${g}\"`" ] |
| 566 | realgroup="`ls -l ${tmpfile} | awk '{print $4}'`" |
|
|
| 567 | if [ "${g}" != "${realgroup}" ] |
|
|
| 568 | then |
609 | then |
| 569 | eerror "You must add ${g} to the system first" |
610 | eerror "You must add group ${g} to the system first" |
| 570 | die "${g} is not a valid GID" |
611 | die "${g} is not a valid GID" |
| 571 | fi |
612 | fi |
| 572 | done |
613 | done |
| 573 | export IFS="${oldifs}" |
614 | export IFS="${oldifs}" |
| 574 | opts="${opts} -g ${egroups}" |
615 | opts="${opts} -g ${egroups}" |
| … | |
… | |
| 579 | |
620 | |
| 580 | # handle extra and add the user |
621 | # handle extra and add the user |
| 581 | local eextra="$@" |
622 | local eextra="$@" |
| 582 | local oldsandbox="${SANDBOX_ON}" |
623 | local oldsandbox="${SANDBOX_ON}" |
| 583 | export SANDBOX_ON="0" |
624 | export SANDBOX_ON="0" |
|
|
625 | if [ "${ARCH}" == "macos" ]; |
|
|
626 | then |
|
|
627 | ### Make the user |
| 584 | if [ -z "${eextra}" ] |
628 | if [ -z "${eextra}" ] |
| 585 | then |
629 | then |
|
|
630 | dscl . create /users/${euser} uid ${euid} |
|
|
631 | dscl . create /users/${euser} shell ${eshell} |
|
|
632 | dscl . create /users/${euser} home ${ehome} |
|
|
633 | dscl . create /users/${euser} realname "added by portage for ${PN}" |
|
|
634 | ### Add the user to the groups specified |
|
|
635 | for g in ${egroups} |
|
|
636 | do |
|
|
637 | dscl . merge /groups/${g} users ${euser} |
|
|
638 | done |
|
|
639 | else |
|
|
640 | einfo "Extra options are not supported on macos yet" |
|
|
641 | einfo "Please report the ebuild along with the info below" |
|
|
642 | einfo "eextra: ${eextra}" |
|
|
643 | die "Required function missing" |
|
|
644 | fi |
|
|
645 | else |
|
|
646 | if [ -z "${eextra}" ] |
|
|
647 | then |
| 586 | useradd ${opts} ${euser} \ |
648 | useradd ${opts} ${euser} \ |
| 587 | -c "added by portage for ${PN}" \ |
649 | -c "added by portage for ${PN}" \ |
| 588 | || die "enewuser failed" |
650 | || die "enewuser failed" |
| 589 | else |
651 | else |
| 590 | einfo " - Extra: ${eextra}" |
652 | einfo " - Extra: ${eextra}" |
| 591 | useradd ${opts} ${euser} ${eextra} \ |
653 | useradd ${opts} ${euser} ${eextra} \ |
| 592 | || die "enewuser failed" |
654 | || die "enewuser failed" |
|
|
655 | fi |
| 593 | fi |
656 | fi |
| 594 | export SANDBOX_ON="${oldsandbox}" |
657 | export SANDBOX_ON="${oldsandbox}" |
| 595 | |
658 | |
| 596 | if [ ! -e "${ehome}" ] && [ ! -e "${D}/${ehome}" ] |
659 | if [ ! -e "${ehome}" ] && [ ! -e "${D}/${ehome}" ] |
| 597 | then |
660 | then |
| … | |
… | |
| 618 | then |
681 | then |
| 619 | eerror "No group specified !" |
682 | eerror "No group specified !" |
| 620 | die "Cannot call enewgroup without a group" |
683 | die "Cannot call enewgroup without a group" |
| 621 | fi |
684 | fi |
| 622 | |
685 | |
| 623 | # setup a file for testing groupname |
|
|
| 624 | local tmpfile="`mymktemp ${T}`" |
|
|
| 625 | chgrp ${egroup} ${tmpfile} >& /dev/null |
|
|
| 626 | local realgroup="`ls -l ${tmpfile} | awk '{print $4}'`" |
|
|
| 627 | |
|
|
| 628 | # see if group already exists |
686 | # see if group already exists |
| 629 | if [ "${egroup}" == "${realgroup}" ] |
687 | if [ "${egroup}" == "`egetent group \"${egroup}\" | cut -d: -f1`" ] |
| 630 | then |
688 | then |
| 631 | return 0 |
689 | return 0 |
| 632 | fi |
690 | fi |
| 633 | einfo "Adding group '${egroup}' to your system ..." |
691 | einfo "Adding group '${egroup}' to your system ..." |
| 634 | |
692 | |
| … | |
… | |
| 639 | local egid="$1"; shift |
697 | local egid="$1"; shift |
| 640 | if [ ! -z "${egid}" ] |
698 | if [ ! -z "${egid}" ] |
| 641 | then |
699 | then |
| 642 | if [ "${egid}" -gt 0 ] |
700 | if [ "${egid}" -gt 0 ] |
| 643 | then |
701 | then |
|
|
702 | if [ -z "`egetent group ${egid}`" ] |
|
|
703 | then |
|
|
704 | if [ "${ARCH}" == "macos" ] ; then |
|
|
705 | opts="${opts} ${egid}" |
|
|
706 | else |
| 644 | opts="${opts} -g ${egid}" |
707 | opts="${opts} -g ${egid}" |
|
|
708 | fi |
|
|
709 | else |
|
|
710 | egid="next available; requested gid taken" |
|
|
711 | fi |
| 645 | else |
712 | else |
| 646 | eerror "Groupid given but is not greater than 0 !" |
713 | eerror "Groupid given but is not greater than 0 !" |
| 647 | die "${egid} is not a valid GID" |
714 | die "${egid} is not a valid GID" |
| 648 | fi |
715 | fi |
| 649 | else |
716 | else |
| … | |
… | |
| 656 | opts="${opts} ${eextra}" |
723 | opts="${opts} ${eextra}" |
| 657 | |
724 | |
| 658 | # add the group |
725 | # add the group |
| 659 | local oldsandbox="${SANDBOX_ON}" |
726 | local oldsandbox="${SANDBOX_ON}" |
| 660 | export SANDBOX_ON="0" |
727 | export SANDBOX_ON="0" |
|
|
728 | if [ "${ARCH}" == "macos" ]; |
|
|
729 | then |
|
|
730 | if [ ! -z "${eextra}" ]; |
|
|
731 | then |
|
|
732 | einfo "Extra options are not supported on macos yet" |
|
|
733 | einfo "Please report the ebuild along with the info below" |
|
|
734 | einfo "eextra: ${eextra}" |
|
|
735 | die "Required function missing" |
|
|
736 | fi |
|
|
737 | |
|
|
738 | # If we need the next available |
|
|
739 | case ${egid} in |
|
|
740 | *[!0-9]*) # Non numeric |
|
|
741 | for egid in `jot 898 101`; do |
|
|
742 | [ -z "`egetent group ${egid}`" ] && break |
|
|
743 | done |
|
|
744 | esac |
|
|
745 | dscl . create /groups/${egroup} gid ${egid} |
|
|
746 | dscl . create /groups/${egroup} passwd '*' |
|
|
747 | else |
| 661 | groupadd ${opts} ${egroup} || die "enewgroup failed" |
748 | groupadd ${opts} ${egroup} || die "enewgroup failed" |
|
|
749 | fi |
| 662 | export SANDBOX_ON="${oldsandbox}" |
750 | export SANDBOX_ON="${oldsandbox}" |
| 663 | } |
751 | } |
| 664 | |
752 | |
| 665 | # Simple script to replace 'dos2unix' binaries |
753 | # Simple script to replace 'dos2unix' binaries |
| 666 | # vapier@gentoo.org |
754 | # vapier@gentoo.org |
| 667 | # |
755 | # |
| 668 | # edos2unix(file, <more files>...) |
756 | # edos2unix(file, <more files>...) |
| 669 | edos2unix() { |
757 | edos2unix() { |
| 670 | for f in $@ |
758 | for f in "$@" |
| 671 | do |
759 | do |
| 672 | cp ${f} ${T}/edos2unix |
760 | cp "${f}" ${T}/edos2unix |
| 673 | sed 's/\r$//' ${T}/edos2unix > ${f} |
761 | sed 's/\r$//' ${T}/edos2unix > "${f}" |
| 674 | done |
762 | done |
| 675 | } |
763 | } |
| 676 | |
764 | |
| 677 | # Make a desktop file ! |
765 | # Make a desktop file ! |
| 678 | # Great for making those icons in kde/gnome startmenu ! |
766 | # Great for making those icons in kde/gnome startmenu ! |
| … | |
… | |
| 687 | # name: the name that will show up in the menu |
775 | # name: the name that will show up in the menu |
| 688 | # icon: give your little like a pretty little icon ... |
776 | # icon: give your little like a pretty little icon ... |
| 689 | # this can be relative (to /usr/share/pixmaps) or |
777 | # this can be relative (to /usr/share/pixmaps) or |
| 690 | # a full path to an icon |
778 | # a full path to an icon |
| 691 | # type: what kind of application is this ? for categories: |
779 | # type: what kind of application is this ? for categories: |
| 692 | # http://www.freedesktop.org/standards/menu/draft/menu-spec/menu-spec.html |
780 | # http://www.freedesktop.org/standards/menu-spec/ |
| 693 | # path: if your app needs to startup in a specific dir |
781 | # path: if your app needs to startup in a specific dir |
| 694 | make_desktop_entry() { |
782 | make_desktop_entry() { |
| 695 | [ -z "$1" ] && eerror "You must specify the executable" && return 1 |
783 | [ -z "$1" ] && eerror "You must specify the executable" && return 1 |
| 696 | |
784 | |
| 697 | local exec="${1}" |
785 | local exec="${1}" |
| 698 | local name="${2:-${PN}}" |
786 | local name="${2:-${PN}}" |
| 699 | local icon="${3:-${PN}.png}" |
787 | local icon="${3:-${PN}.png}" |
| 700 | local type="${4}" |
788 | local type="${4}" |
|
|
789 | local subdir="${6}" |
| 701 | local path="${5:-${GAMES_PREFIX}}" |
790 | local path="${5:-${GAMES_PREFIX}}" |
| 702 | if [ -z "${type}" ] |
791 | if [ -z "${type}" ] |
| 703 | then |
792 | then |
| 704 | case ${CATEGORY} in |
793 | case ${CATEGORY} in |
| 705 | "app-emulation") |
794 | "app-emulation") |
| 706 | type=Emulator |
795 | type=Emulator |
|
|
796 | subdir="Emulation" |
| 707 | ;; |
797 | ;; |
| 708 | "games-"*) |
798 | "games-"*) |
| 709 | type=Game |
799 | type=Game |
|
|
800 | subdir="Games" |
|
|
801 | ;; |
|
|
802 | "net-"*) |
|
|
803 | type=Network |
|
|
804 | subdir="${type}" |
| 710 | ;; |
805 | ;; |
| 711 | *) |
806 | *) |
| 712 | type= |
807 | type= |
|
|
808 | subdir= |
| 713 | ;; |
809 | ;; |
| 714 | esac |
810 | esac |
| 715 | fi |
811 | fi |
| 716 | local desktop="${T}/${exec}.desktop" |
812 | local desktop="${T}/${exec}.desktop" |
| 717 | |
813 | |
| … | |
… | |
| 747 | # done |
843 | # done |
| 748 | #fi |
844 | #fi |
| 749 | |
845 | |
| 750 | if [ -d "/usr/share/applnk" ] |
846 | if [ -d "/usr/share/applnk" ] |
| 751 | then |
847 | then |
| 752 | insinto /usr/share/applnk/${type} |
848 | insinto /usr/share/applnk/${subdir} |
| 753 | doins ${desktop} |
849 | doins ${desktop} |
| 754 | fi |
850 | fi |
| 755 | |
851 | |
| 756 | return 0 |
852 | return 0 |
| 757 | } |
853 | } |
| 758 | |
854 | |
| 759 | # new convenience patch wrapper function to eventually replace epatch(), |
855 | # for internal use only (unpack_pdv and unpack_makeself) |
| 760 | # $PATCHES, $PATCHES1, src_unpack:patch, src_unpack:autopatch and |
856 | find_unpackable_file() { |
| 761 | # /usr/bin/patch |
857 | local src="$1" |
| 762 | # Features: |
|
|
| 763 | # - bulk patch handling similar to epatch()'s |
|
|
| 764 | # - automatic patch level detection like epatch()'s |
|
|
| 765 | # - automatic patch uncompression like epatch()'s |
|
|
| 766 | # - doesn't have the --dry-run overhead of epatch() - inspects patchfiles |
|
|
| 767 | # manually instead |
|
|
| 768 | # - once I decide it's production-ready, it'll be called from base_src_unpack |
|
|
| 769 | # to handle $PATCHES to avoid defining src_unpack just to use xpatch |
|
|
| 770 | |
|
|
| 771 | # accepts zero or more parameters specifying patchfiles and/or patchdirs |
|
|
| 772 | |
|
|
| 773 | # known issues: |
|
|
| 774 | # - only supports unified style patches (does anyone _really_ use anything |
|
|
| 775 | # else?) |
|
|
| 776 | # - because it doesn't use --dry-run there is a risk of it failing |
|
|
| 777 | # to find the files to patch, ie detect the patchlevel, properly. It doesn't use |
|
|
| 778 | # any of the backup heuristics that patch employs to discover a filename. |
|
|
| 779 | # however, this isn't dangerous because if it works for the developer who's |
|
|
| 780 | # writing the ebuild, it'll always work for the users, and if it doesn't, |
|
|
| 781 | # then we'll fix it :-) |
|
|
| 782 | # - no support as yet for patches applying outside $S (and not directly in $WORKDIR). |
|
|
| 783 | xpatch() { |
|
|
| 784 | |
|
|
| 785 | debug-print-function ${FUNCNAME} $* |
|
|
| 786 | |
|
|
| 787 | local list= |
|
|
| 788 | local list2= |
|
|
| 789 | declare -i plevel |
|
|
| 790 | |
|
|
| 791 | # parse patch sources |
|
|
| 792 | for x in $* |
|
|
| 793 | do |
|
|
| 794 | debug-print "${FUNCNAME}: parsing parameter ${x}" |
|
|
| 795 | if [ -f "${x}" ] |
858 | if [ -z "${src}" ] |
| 796 | then |
859 | then |
| 797 | list="${list} ${x}" |
860 | src="${DISTDIR}/${A}" |
| 798 | elif [ -d "${x}" ] |
861 | else |
| 799 | then |
862 | if [ -e "${DISTDIR}/${src}" ] |
| 800 | # handles patchdirs like epatch() for now: no recursion. |
|
|
| 801 | # patches are sorted by filename, so with an xy_foo naming scheme you'll get the right order. |
|
|
| 802 | # only patches with _$ARCH_ or _all_ in their filenames are applied. |
|
|
| 803 | for file in `ls -A ${x}` |
|
|
| 804 | do |
|
|
| 805 | debug-print "${FUNCNAME}: parsing in subdir: file ${file}" |
|
|
| 806 | if [ -f "${x}/${file}" -a "${file}" != "${file/_all_}" -o \ |
|
|
| 807 | "${file}" != "${file/_$ARCH_}" ] |
|
|
| 808 | then |
863 | then |
| 809 | list2="${list2} ${x}/${file}" |
864 | src="${DISTDIR}/${src}" |
|
|
865 | elif [ -e "${PWD}/${src}" ] |
|
|
866 | then |
|
|
867 | src="${PWD}/${src}" |
|
|
868 | elif [ -e "${src}" ] |
|
|
869 | then |
|
|
870 | src="${src}" |
| 810 | fi |
871 | fi |
| 811 | done |
872 | fi |
| 812 | list="`echo ${list2} | sort` ${list}" |
873 | [ ! -e "${src}" ] && die "Could not find requested archive ${src}" |
|
|
874 | echo "${src}" |
|
|
875 | } |
|
|
876 | |
|
|
877 | # Unpack those pesky pdv generated files ... |
|
|
878 | # They're self-unpacking programs with the binary package stuffed in |
|
|
879 | # the middle of the archive. Valve seems to use it a lot ... too bad |
|
|
880 | # it seems to like to segfault a lot :(. So lets take it apart ourselves. |
|
|
881 | # |
|
|
882 | # Usage: unpack_pdv [file to unpack] [size of off_t] |
|
|
883 | # - you have to specify the off_t size ... i have no idea how to extract that |
|
|
884 | # information out of the binary executable myself. basically you pass in |
|
|
885 | # the size of the off_t type (in bytes) on the machine that built the pdv |
|
|
886 | # archive. one way to determine this is by running the following commands: |
|
|
887 | # strings <pdv archive> | grep lseek |
|
|
888 | # strace -elseek <pdv archive> |
|
|
889 | # basically look for the first lseek command (we do the strings/grep because |
|
|
890 | # sometimes the function call is _llseek or something) and steal the 2nd |
|
|
891 | # parameter. here is an example: |
|
|
892 | # root@vapier 0 pdv_unpack # strings hldsupdatetool.bin | grep lseek |
|
|
893 | # lseek |
|
|
894 | # root@vapier 0 pdv_unpack # strace -elseek ./hldsupdatetool.bin |
|
|
895 | # lseek(3, -4, SEEK_END) = 2981250 |
|
|
896 | # thus we would pass in the value of '4' as the second parameter. |
|
|
897 | unpack_pdv() { |
|
|
898 | local src="`find_unpackable_file $1`" |
|
|
899 | local sizeoff_t="$2" |
|
|
900 | |
|
|
901 | [ -z "${sizeoff_t}" ] && die "No idea what off_t size was used for this pdv :(" |
|
|
902 | |
|
|
903 | local shrtsrc="`basename ${src}`" |
|
|
904 | echo ">>> Unpacking ${shrtsrc} to ${PWD}" |
|
|
905 | local metaskip=`tail -c ${sizeoff_t} ${src} | hexdump -e \"%i\"` |
|
|
906 | local tailskip=`tail -c $((${sizeoff_t}*2)) ${src} | head -c ${sizeoff_t} | hexdump -e \"%i\"` |
|
|
907 | |
|
|
908 | # grab metadata for debug reasons |
|
|
909 | local metafile="`mymktemp ${T}`" |
|
|
910 | tail -c +$((${metaskip}+1)) ${src} > ${metafile} |
|
|
911 | |
|
|
912 | # rip out the final file name from the metadata |
|
|
913 | local datafile="`tail -c +$((${metaskip}+1)) ${src} | strings | head -n 1`" |
|
|
914 | datafile="`basename ${datafile}`" |
|
|
915 | |
|
|
916 | # now lets uncompress/untar the file if need be |
|
|
917 | local tmpfile="`mymktemp ${T}`" |
|
|
918 | tail -c +$((${tailskip}+1)) ${src} 2>/dev/null | head -c 512 > ${tmpfile} |
|
|
919 | |
|
|
920 | local iscompressed="`file -b ${tmpfile}`" |
|
|
921 | if [ "${iscompressed:0:8}" == "compress" ] ; then |
|
|
922 | iscompressed=1 |
|
|
923 | mv ${tmpfile}{,.Z} |
|
|
924 | gunzip ${tmpfile} |
|
|
925 | else |
|
|
926 | iscompressed=0 |
|
|
927 | fi |
|
|
928 | local istar="`file -b ${tmpfile}`" |
|
|
929 | if [ "${istar:0:9}" == "POSIX tar" ] ; then |
|
|
930 | istar=1 |
|
|
931 | else |
|
|
932 | istar=0 |
|
|
933 | fi |
|
|
934 | |
|
|
935 | #for some reason gzip dies with this ... dd cant provide buffer fast enough ? |
|
|
936 | #dd if=${src} ibs=${metaskip} count=1 \ |
|
|
937 | # | dd ibs=${tailskip} skip=1 \ |
|
|
938 | # | gzip -dc \ |
|
|
939 | # > ${datafile} |
|
|
940 | if [ ${iscompressed} -eq 1 ] ; then |
|
|
941 | if [ ${istar} -eq 1 ] ; then |
|
|
942 | tail -c +$((${tailskip}+1)) ${src} 2>/dev/null \ |
|
|
943 | | head -c $((${metaskip}-${tailskip})) \ |
|
|
944 | | tar -xzf - |
| 813 | else |
945 | else |
| 814 | die "Couldn't find ${x}" |
946 | tail -c +$((${tailskip}+1)) ${src} 2>/dev/null \ |
|
|
947 | | head -c $((${metaskip}-${tailskip})) \ |
|
|
948 | | gzip -dc \ |
|
|
949 | > ${datafile} |
|
|
950 | fi |
|
|
951 | else |
|
|
952 | if [ ${istar} -eq 1 ] ; then |
|
|
953 | tail -c +$((${tailskip}+1)) ${src} 2>/dev/null \ |
|
|
954 | | head -c $((${metaskip}-${tailskip})) \ |
|
|
955 | | tar --no-same-owner -xf - |
|
|
956 | else |
|
|
957 | tail -c +$((${tailskip}+1)) ${src} 2>/dev/null \ |
|
|
958 | | head -c $((${metaskip}-${tailskip})) \ |
|
|
959 | > ${datafile} |
|
|
960 | fi |
| 815 | fi |
961 | fi |
| 816 | done |
962 | true |
| 817 | |
963 | #[ -s "${datafile}" ] || die "failure unpacking pdv ('${metaskip}' '${tailskip}' '${datafile}')" |
| 818 | debug-print "${FUNCNAME}: final list of patches: ${list}" |
964 | #assert "failure unpacking pdv ('${metaskip}' '${tailskip}' '${datafile}')" |
| 819 | |
|
|
| 820 | for x in ${list}; |
|
|
| 821 | do |
|
|
| 822 | debug-print "${FUNCNAME}: processing ${x}" |
|
|
| 823 | # deal with compressed files. /usr/bin/file is in the system profile, or should be. |
|
|
| 824 | case "`/usr/bin/file -b ${x}`" in |
|
|
| 825 | *gzip*) |
|
|
| 826 | patchfile="${T}/current.patch" |
|
|
| 827 | ungzip -c "${x}" > "${patchfile}" |
|
|
| 828 | ;; |
|
|
| 829 | *bzip2*) |
|
|
| 830 | patchfile="${T}/current.patch" |
|
|
| 831 | bunzip2 -c "${x}" > "${patchfile}" |
|
|
| 832 | ;; |
|
|
| 833 | *text*) |
|
|
| 834 | patchfile="${x}" |
|
|
| 835 | ;; |
|
|
| 836 | *) |
|
|
| 837 | die "Could not determine filetype of patch ${x}" |
|
|
| 838 | ;; |
|
|
| 839 | esac |
|
|
| 840 | debug-print "${FUNCNAME}: patchfile=${patchfile}" |
|
|
| 841 | |
|
|
| 842 | # determine patchlevel. supports p0 and higher with either $S or $WORKDIR as base. |
|
|
| 843 | target="`/bin/grep -m 1 '^+++ ' ${patchfile}`" |
|
|
| 844 | debug-print "${FUNCNAME}: raw target=${target}" |
|
|
| 845 | # strip target down to the path/filename, remove leading +++ |
|
|
| 846 | target="${target/+++ }"; target="${target%% *}" |
|
|
| 847 | # duplicate slashes are discarded by patch wrt the patchlevel. therefore we need |
|
|
| 848 | # to discard them as well to calculate the correct patchlevel. |
|
|
| 849 | target="${target//\/\//\/}" |
|
|
| 850 | debug-print "${FUNCNAME}: stripped target=${target}" |
|
|
| 851 | |
|
|
| 852 | # look for target |
|
|
| 853 | for basedir in "${S}" "${WORKDIR}" "${PWD}"; do |
|
|
| 854 | debug-print "${FUNCNAME}: looking in basedir=${basedir}" |
|
|
| 855 | cd "${basedir}" |
|
|
| 856 | |
|
|
| 857 | # try stripping leading directories |
|
|
| 858 | target2="${target}" |
|
|
| 859 | plevel=0 |
|
|
| 860 | debug-print "${FUNCNAME}: trying target2=${target2}, plevel=${plevel}" |
|
|
| 861 | while [ ! -f "${target2}" ] |
|
|
| 862 | do |
|
|
| 863 | target2="${target2#*/}" # removes piece of target2 upto the first occurence of / |
|
|
| 864 | plevel=$((plevel+1)) |
|
|
| 865 | debug-print "${FUNCNAME}: trying target2=${target2}, plevel=${plevel}" |
|
|
| 866 | [ "${target2}" == "${target2/\/}" ] && break |
|
|
| 867 | done |
|
|
| 868 | test -f "${target2}" && break |
|
|
| 869 | |
|
|
| 870 | # try stripping filename - needed to support patches creating new files |
|
|
| 871 | target2="${target%/*}" |
|
|
| 872 | plevel=0 |
|
|
| 873 | debug-print "${FUNCNAME}: trying target2=${target2}, plevel=${plevel}" |
|
|
| 874 | while [ ! -d "${target2}" ] |
|
|
| 875 | do |
|
|
| 876 | target2="${target2#*/}" # removes piece of target2 upto the first occurence of / |
|
|
| 877 | plevel=$((plevel+1)) |
|
|
| 878 | debug-print "${FUNCNAME}: trying target2=${target2}, plevel=${plevel}" |
|
|
| 879 | [ "${target2}" == "${target2/\/}" ] && break |
|
|
| 880 | done |
|
|
| 881 | test -d "${target2}" && break |
|
|
| 882 | |
|
|
| 883 | done |
|
|
| 884 | |
|
|
| 885 | test -f "${basedir}/${target2}" || test -d "${basedir}/${target2}" \ |
|
|
| 886 | || die "Could not determine patchlevel for ${x}" |
|
|
| 887 | debug-print "${FUNCNAME}: determined plevel=${plevel}" |
|
|
| 888 | # do the patching |
|
|
| 889 | ebegin "Applying patch ${x##*/}..." |
|
|
| 890 | /usr/bin/patch -p${plevel} < "${patchfile}" > /dev/null \ |
|
|
| 891 | || die "Failed to apply patch ${x}" |
|
|
| 892 | eend $? |
|
|
| 893 | |
|
|
| 894 | done |
|
|
| 895 | |
|
|
| 896 | } |
965 | } |
| 897 | |
966 | |
| 898 | # Unpack those pesky makeself generated files ... |
967 | # Unpack those pesky makeself generated files ... |
| 899 | # They're shell scripts with the binary package tagged onto |
968 | # They're shell scripts with the binary package tagged onto |
| 900 | # the end of the archive. Loki utilized the format as does |
969 | # the end of the archive. Loki utilized the format as does |
| … | |
… | |
| 903 | # Usage: unpack_makeself [file to unpack] [offset] |
972 | # Usage: unpack_makeself [file to unpack] [offset] |
| 904 | # - If the file is not specified then unpack will utilize ${A}. |
973 | # - If the file is not specified then unpack will utilize ${A}. |
| 905 | # - If the offset is not specified then we will attempt to extract |
974 | # - If the offset is not specified then we will attempt to extract |
| 906 | # the proper offset from the script itself. |
975 | # the proper offset from the script itself. |
| 907 | unpack_makeself() { |
976 | unpack_makeself() { |
| 908 | local src="$1" |
977 | local src="`find_unpackable_file $1`" |
| 909 | local skip="$2" |
978 | local skip="$2" |
| 910 | |
|
|
| 911 | if [ -z "${src}" ] |
|
|
| 912 | then |
|
|
| 913 | src="${DISTDIR}/${A}" |
|
|
| 914 | else |
|
|
| 915 | if [ -e "${DISTDIR}/${src}" ] |
|
|
| 916 | then |
|
|
| 917 | src="${DISTDIR}/${src}" |
|
|
| 918 | elif [ -e "${PWD}/${src}" ] |
|
|
| 919 | then |
|
|
| 920 | src="${PWD}/${src}" |
|
|
| 921 | elif [ -e "${src}" ] |
|
|
| 922 | then |
|
|
| 923 | src="${src}" |
|
|
| 924 | fi |
|
|
| 925 | fi |
|
|
| 926 | [ ! -e "${src}" ] && die "Could not find requested makeself archive ${src}" |
|
|
| 927 | |
979 | |
| 928 | local shrtsrc="`basename ${src}`" |
980 | local shrtsrc="`basename ${src}`" |
| 929 | echo ">>> Unpacking ${shrtsrc} to ${PWD}" |
981 | echo ">>> Unpacking ${shrtsrc} to ${PWD}" |
| 930 | if [ -z "${skip}" ] |
982 | if [ -z "${skip}" ] |
| 931 | then |
983 | then |
| … | |
… | |
| 959 | ;; |
1011 | ;; |
| 960 | esac |
1012 | esac |
| 961 | debug-print "Detected Makeself version ${ver} ... using ${skip} as offset" |
1013 | debug-print "Detected Makeself version ${ver} ... using ${skip} as offset" |
| 962 | fi |
1014 | fi |
| 963 | |
1015 | |
| 964 | # we do this because otherwise a failure in gzip will cause 0 bytes to be sent |
1016 | # lets grab the first few bytes of the file to figure out what kind of archive it is |
| 965 | # to tar which will make tar not extract anything and exit with 0 |
1017 | local tmpfile="`mymktemp ${T}`" |
| 966 | tail -n +${skip} ${src} | gzip -cd | tar -x --no-same-owner -f - 2>/dev/null |
1018 | tail -n +${skip} ${src} 2>/dev/null | head -c 512 > ${tmpfile} |
| 967 | local pipestatus="${PIPESTATUS[*]}" |
1019 | local filetype="`file -b ${tmpfile}`" |
| 968 | pipestatus="${pipestatus// }" |
1020 | case ${filetype} in |
| 969 | if [ "${pipestatus//0}" != "" ] |
1021 | *tar\ archive) |
| 970 | then |
|
|
| 971 | # maybe it isnt gzipped ... they usually are, but not always ... |
|
|
| 972 | tail -n +${skip} ${src} | tar -x --no-same-owner -f - \ |
1022 | tail -n +${skip} ${src} | tar --no-same-owner -xf - |
|
|
1023 | ;; |
|
|
1024 | bzip2*) |
|
|
1025 | tail -n +${skip} ${src} | bzip2 -dc | tar --no-same-owner -xf - |
|
|
1026 | ;; |
|
|
1027 | gzip*) |
|
|
1028 | tail -n +${skip} ${src} | tar --no-same-owner -xzf - |
|
|
1029 | ;; |
|
|
1030 | compress*) |
|
|
1031 | tail -n +${skip} ${src} | gunzip | tar --no-same-owner -xf - |
|
|
1032 | ;; |
|
|
1033 | *) |
|
|
1034 | eerror "Unknown filetype \"${filetype}\" ?" |
|
|
1035 | false |
|
|
1036 | ;; |
|
|
1037 | esac |
| 973 | || die "failure unpacking makeself ${shrtsrc} ('${ver}' +${skip})" |
1038 | assert "failure unpacking (${filetype}) makeself ${shrtsrc} ('${ver}' +${skip})" |
| 974 | fi |
|
|
| 975 | } |
1039 | } |
| 976 | |
1040 | |
| 977 | # Display a license for user to accept. |
1041 | # Display a license for user to accept. |
| 978 | # |
1042 | # |
| 979 | # Usage: check_license [license] |
1043 | # Usage: check_license [license] |
| … | |
… | |
| 990 | elif [ -e "${src}" ] ; then |
1054 | elif [ -e "${src}" ] ; then |
| 991 | lic="${src}" |
1055 | lic="${src}" |
| 992 | fi |
1056 | fi |
| 993 | fi |
1057 | fi |
| 994 | [ ! -f "${lic}" ] && die "Could not find requested license ${src}" |
1058 | [ ! -f "${lic}" ] && die "Could not find requested license ${src}" |
|
|
1059 | local l="`basename ${lic}`" |
| 995 | |
1060 | |
| 996 | # here is where we check for the licenses the user already |
1061 | # here is where we check for the licenses the user already |
| 997 | # accepted ... if we don't find a match, we make the user accept |
1062 | # accepted ... if we don't find a match, we make the user accept |
| 998 | local alic |
1063 | local alic |
| 999 | for alic in ${ACCEPT_LICENSE} ; do |
1064 | for alic in "${ACCEPT_LICENSE}" ; do |
| 1000 | [ "${alic}" == "*" ] && return 0 |
1065 | [ "${alic}" == "*" ] && return 0 |
| 1001 | [ "${alic}" == "${lic}" ] && return 0 |
1066 | [ "${alic}" == "${l}" ] && return 0 |
| 1002 | done |
1067 | done |
| 1003 | |
1068 | |
| 1004 | local licmsg="`mymktemp ${T}`" |
1069 | local licmsg="`mymktemp ${T}`" |
| 1005 | cat << EOF > ${licmsg} |
1070 | cat << EOF > ${licmsg} |
| 1006 | ********************************************************** |
1071 | ********************************************************** |
| … | |
… | |
| 1011 | ********************************************************** |
1076 | ********************************************************** |
| 1012 | |
1077 | |
| 1013 | EOF |
1078 | EOF |
| 1014 | cat ${lic} >> ${licmsg} |
1079 | cat ${lic} >> ${licmsg} |
| 1015 | ${PAGER:-less} ${licmsg} || die "Could not execute pager (${PAGER}) to accept ${lic}" |
1080 | ${PAGER:-less} ${licmsg} || die "Could not execute pager (${PAGER}) to accept ${lic}" |
| 1016 | einfon "Do you accept the terms of this license? [yes/no] " |
1081 | einfon "Do you accept the terms of this license (${l})? [yes/no] " |
| 1017 | read alic |
1082 | read alic |
| 1018 | case ${alic} in |
1083 | case ${alic} in |
| 1019 | yes|Yes|y|Y) |
1084 | yes|Yes|y|Y) |
| 1020 | return 0 |
1085 | return 0 |
| 1021 | ;; |
1086 | ;; |
| … | |
… | |
| 1024 | eerror "You MUST accept the license to continue! Exiting!" |
1089 | eerror "You MUST accept the license to continue! Exiting!" |
| 1025 | die "Failed to accept license" |
1090 | die "Failed to accept license" |
| 1026 | ;; |
1091 | ;; |
| 1027 | esac |
1092 | esac |
| 1028 | } |
1093 | } |
|
|
1094 | |
|
|
1095 | # Aquire cd(s) for those lovely cd-based emerges. Yes, this violates |
|
|
1096 | # the whole 'non-interactive' policy, but damnit I want CD support ! |
|
|
1097 | # |
|
|
1098 | # with these cdrom functions we handle all the user interaction and |
|
|
1099 | # standardize everything. all you have to do is call cdrom_get_cds() |
|
|
1100 | # and when the function returns, you can assume that the cd has been |
|
|
1101 | # found at CDROM_ROOT. |
|
|
1102 | # |
|
|
1103 | # normally the cdrom functions will refer to the cds as 'cd #1', 'cd #2', |
|
|
1104 | # etc... if you want to give the cds better names, then just export |
|
|
1105 | # the CDROM_NAME_X variables before calling cdrom_get_cds(). |
|
|
1106 | # |
|
|
1107 | # for those multi cd ebuilds, see the cdrom_load_next_cd() below. |
|
|
1108 | # |
|
|
1109 | # Usage: cdrom_get_cds <file on cd1> [file on cd2] [file on cd3] [...] |
|
|
1110 | # - this will attempt to locate a cd based upon a file that is on |
|
|
1111 | # the cd ... the more files you give this function, the more cds |
|
|
1112 | # the cdrom functions will handle |
|
|
1113 | cdrom_get_cds() { |
|
|
1114 | # first we figure out how many cds we're dealing with by |
|
|
1115 | # the # of files they gave us |
|
|
1116 | local cdcnt=0 |
|
|
1117 | local f= |
|
|
1118 | for f in "$@" ; do |
|
|
1119 | cdcnt=$((cdcnt + 1)) |
|
|
1120 | export CDROM_CHECK_${cdcnt}="$f" |
|
|
1121 | done |
|
|
1122 | export CDROM_TOTAL_CDS=${cdcnt} |
|
|
1123 | export CDROM_CURRENT_CD=1 |
|
|
1124 | |
|
|
1125 | # now we see if the user gave use CD_ROOT ... |
|
|
1126 | # if they did, let's just believe them that it's correct |
|
|
1127 | if [ ! -z "${CD_ROOT}" ] ; then |
|
|
1128 | export CDROM_ROOT="${CD_ROOT}" |
|
|
1129 | einfo "Found CD #${CDROM_CURRENT_CD} root at ${CDROM_ROOT}" |
|
|
1130 | return |
|
|
1131 | fi |
|
|
1132 | # do the same for CD_ROOT_X |
|
|
1133 | if [ ! -z "${CD_ROOT_1}" ] ; then |
|
|
1134 | local var= |
|
|
1135 | cdcnt=0 |
|
|
1136 | while [ ${cdcnt} -lt ${CDROM_TOTAL_CDS} ] ; do |
|
|
1137 | cdcnt=$((cdcnt + 1)) |
|
|
1138 | var="CD_ROOT_${cdcnt}" |
|
|
1139 | if [ -z "${!var}" ] ; then |
|
|
1140 | eerror "You must either use just the CD_ROOT" |
|
|
1141 | eerror "or specify ALL the CD_ROOT_X variables." |
|
|
1142 | eerror "In this case, you will need ${CDROM_TOTAL_CDS} CD_ROOT_X variables." |
|
|
1143 | die "could not locate CD_ROOT_${cdcnt}" |
|
|
1144 | fi |
|
|
1145 | export CDROM_ROOTS_${cdcnt}="${!var}" |
|
|
1146 | done |
|
|
1147 | export CDROM_ROOT=${CDROM_ROOTS_1} |
|
|
1148 | einfo "Found CD #${CDROM_CURRENT_CD} root at ${CDROM_ROOT}" |
|
|
1149 | return |
|
|
1150 | fi |
|
|
1151 | |
|
|
1152 | if [ ${CDROM_TOTAL_CDS} -eq 1 ] ; then |
|
|
1153 | einfon "This ebuild will need the " |
|
|
1154 | if [ -z "${CDROM_NAME}" ] ; then |
|
|
1155 | echo "cdrom for ${PN}." |
|
|
1156 | else |
|
|
1157 | echo "${CDROM_NAME}." |
|
|
1158 | fi |
|
|
1159 | echo |
|
|
1160 | einfo "If you do not have the CD, but have the data files" |
|
|
1161 | einfo "mounted somewhere on your filesystem, just export" |
|
|
1162 | einfo "the variable CD_ROOT so that it points to the" |
|
|
1163 | einfo "directory containing the files." |
|
|
1164 | echo |
|
|
1165 | else |
|
|
1166 | einfo "This package will need access to ${CDROM_TOTAL_CDS} cds." |
|
|
1167 | cdcnt=0 |
|
|
1168 | while [ ${cdcnt} -lt ${CDROM_TOTAL_CDS} ] ; do |
|
|
1169 | cdcnt=$((cdcnt + 1)) |
|
|
1170 | var="CDROM_NAME_${cdcnt}" |
|
|
1171 | [ ! -z "${!var}" ] && einfo " CD ${cdcnt}: ${!var}" |
|
|
1172 | done |
|
|
1173 | echo |
|
|
1174 | einfo "If you do not have the CDs, but have the data files" |
|
|
1175 | einfo "mounted somewhere on your filesystem, just export" |
|
|
1176 | einfo "the following variables so they point to the right place:" |
|
|
1177 | einfon "" |
|
|
1178 | cdcnt=0 |
|
|
1179 | while [ ${cdcnt} -lt ${CDROM_TOTAL_CDS} ] ; do |
|
|
1180 | cdcnt=$((cdcnt + 1)) |
|
|
1181 | echo -n " CD_ROOT_${cdcnt}" |
|
|
1182 | done |
|
|
1183 | echo |
|
|
1184 | einfo "Or, if you have all the files in the same place, or" |
|
|
1185 | einfo "you only have one cdrom, you can export CD_ROOT" |
|
|
1186 | einfo "and that place will be used as the same data source" |
|
|
1187 | einfo "for all the CDs." |
|
|
1188 | echo |
|
|
1189 | fi |
|
|
1190 | export CDROM_CURRENT_CD=0 |
|
|
1191 | cdrom_load_next_cd |
|
|
1192 | } |
|
|
1193 | |
|
|
1194 | # this is only used when you need access to more than one cd. |
|
|
1195 | # when you have finished using the first cd, just call this function. |
|
|
1196 | # when it returns, CDROM_ROOT will be pointing to the second cd. |
|
|
1197 | # remember, you can only go forward in the cd chain, you can't go back. |
|
|
1198 | cdrom_load_next_cd() { |
|
|
1199 | export CDROM_CURRENT_CD=$((CDROM_CURRENT_CD + 1)) |
|
|
1200 | local var= |
|
|
1201 | |
|
|
1202 | if [ ! -z "${CD_ROOT}" ] ; then |
|
|
1203 | einfo "Using same root as before for CD #${CDROM_CURRENT_CD}" |
|
|
1204 | return |
|
|
1205 | fi |
|
|
1206 | |
|
|
1207 | unset CDROM_ROOT |
|
|
1208 | var=CDROM_ROOTS_${CDROM_CURRENT_CD} |
|
|
1209 | if [ -z "${!var}" ] ; then |
|
|
1210 | var="CDROM_CHECK_${CDROM_CURRENT_CD}" |
|
|
1211 | cdrom_locate_file_on_cd ${!var} |
|
|
1212 | else |
|
|
1213 | export CDROM_ROOT="${!var}" |
|
|
1214 | fi |
|
|
1215 | |
|
|
1216 | einfo "Found CD #${CDROM_CURRENT_CD} root at ${CDROM_ROOT}" |
|
|
1217 | } |
|
|
1218 | |
|
|
1219 | # this is used internally by the cdrom_get_cds() and cdrom_load_next_cd() |
|
|
1220 | # functions. this should *never* be called from an ebuild. |
|
|
1221 | # all it does is try to locate a give file on a cd ... if the cd isn't |
|
|
1222 | # found, then a message asking for the user to insert the cdrom will be |
|
|
1223 | # displayed and we'll hang out here until: |
|
|
1224 | # (1) the file is found on a mounted cdrom |
|
|
1225 | # (2) the user hits CTRL+C |
|
|
1226 | cdrom_locate_file_on_cd() { |
|
|
1227 | while [ -z "${CDROM_ROOT}" ] ; do |
|
|
1228 | local dir="$(dirname ${@})" |
|
|
1229 | local file="$(basename ${@})" |
|
|
1230 | local mline="" |
|
|
1231 | local showedmsg=0 |
|
|
1232 | |
|
|
1233 | for mline in `mount | egrep -e '(iso|cdrom)' | awk '{print $3}'` ; do |
|
|
1234 | [ -d "${mline}/${dir}" ] || continue |
|
|
1235 | [ ! -z "$(find ${mline}/${dir} -iname ${file} -maxdepth 1)" ] \ |
|
|
1236 | && export CDROM_ROOT=${mline} |
|
|
1237 | done |
|
|
1238 | |
|
|
1239 | if [ -z "${CDROM_ROOT}" ] ; then |
|
|
1240 | echo |
|
|
1241 | if [ ${showedmsg} -eq 0 ] ; then |
|
|
1242 | if [ ${CDROM_TOTAL_CDS} -eq 1 ] ; then |
|
|
1243 | if [ -z "${CDROM_NAME}" ] ; then |
|
|
1244 | einfo "Please insert the cdrom for ${PN} now !" |
|
|
1245 | else |
|
|
1246 | einfo "Please insert the ${CDROM_NAME} cdrom now !" |
|
|
1247 | fi |
|
|
1248 | else |
|
|
1249 | if [ -z "${CDROM_NAME_1}" ] ; then |
|
|
1250 | einfo "Please insert cd #${CDROM_CURRENT_CD} for ${PN} now !" |
|
|
1251 | else |
|
|
1252 | local var="CDROM_NAME_${CDROM_CURRENT_CD}" |
|
|
1253 | einfo "Please insert+mount the ${!var} cdrom now !" |
|
|
1254 | fi |
|
|
1255 | fi |
|
|
1256 | showedmsg=1 |
|
|
1257 | fi |
|
|
1258 | einfo "Press return to scan for the cd again" |
|
|
1259 | einfo "or hit CTRL+C to abort the emerge." |
|
|
1260 | read |
|
|
1261 | fi |
|
|
1262 | done |
|
|
1263 | } |
|
|
1264 | |
|
|
1265 | # Make sure that LINGUAS only contains languages that |
|
|
1266 | # a package can support |
|
|
1267 | # |
|
|
1268 | # usage: strip-linguas <allow LINGUAS> |
|
|
1269 | # strip-linguas -i <directories of .po files> |
|
|
1270 | # strip-linguas -u <directories of .po files> |
|
|
1271 | # |
|
|
1272 | # The first form allows you to specify a list of LINGUAS. |
|
|
1273 | # The -i builds a list of po files found in all the |
|
|
1274 | # directories and uses the intersection of the lists. |
|
|
1275 | # The -u builds a list of po files found in all the |
|
|
1276 | # directories and uses the union of the lists. |
|
|
1277 | strip-linguas() { |
|
|
1278 | local ls newls |
|
|
1279 | if [ "$1" == "-i" ] || [ "$1" == "-u" ] ; then |
|
|
1280 | local op="$1"; shift |
|
|
1281 | ls=" $(find "$1" -name '*.po' -printf '%f ') "; shift |
|
|
1282 | local d f |
|
|
1283 | for d in "$@" ; do |
|
|
1284 | if [ "${op}" == "-u" ] ; then |
|
|
1285 | newls="${ls}" |
|
|
1286 | else |
|
|
1287 | newls="" |
|
|
1288 | fi |
|
|
1289 | for f in $(find "$d" -name '*.po' -printf '%f ') ; do |
|
|
1290 | if [ "${op}" == "-i" ] ; then |
|
|
1291 | [ "${ls/ ${f} /}" != "${ls}" ] && newls="${newls} ${f}" |
|
|
1292 | else |
|
|
1293 | [ "${ls/ ${f} /}" == "${ls}" ] && newls="${newls} ${f}" |
|
|
1294 | fi |
|
|
1295 | done |
|
|
1296 | ls="${newls}" |
|
|
1297 | done |
|
|
1298 | ls="${ls//.po}" |
|
|
1299 | else |
|
|
1300 | ls="$@" |
|
|
1301 | fi |
|
|
1302 | |
|
|
1303 | ls=" ${ls} " |
|
|
1304 | newls="" |
|
|
1305 | for f in ${LINGUAS} ; do |
|
|
1306 | if [ "${ls/ ${f} /}" != "${ls}" ] ; then |
|
|
1307 | nl="${newls} ${f}" |
|
|
1308 | else |
|
|
1309 | ewarn "Sorry, but ${PN} does not support the ${f} LINGUA" |
|
|
1310 | fi |
|
|
1311 | done |
|
|
1312 | if [ -z "${newls}" ] ; then |
|
|
1313 | unset LINGUAS |
|
|
1314 | else |
|
|
1315 | export LINGUAS="${newls}" |
|
|
1316 | fi |
|
|
1317 | } |