| 1 | # Copyright 1999-2003 Gentoo Technologies, Inc. |
1 | # Copyright 1999-2004 Gentoo Technologies, Inc. |
| 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.56 2003/09/22 21:08:27 wolf31o2 Exp $ |
3 | # $Header: /var/cvsroot/gentoo-x86/eclass/eutils.eclass,v 1.77 2004/01/29 08:38:11 vapier 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. |
| … | |
… | |
| 461 | # do not exist on the users system |
461 | # do not exist on the users system |
| 462 | # vapier@gentoo.org |
462 | # vapier@gentoo.org |
| 463 | # |
463 | # |
| 464 | # Takes just 1 parameter (the directory to create tmpfile in) |
464 | # Takes just 1 parameter (the directory to create tmpfile in) |
| 465 | mymktemp() { |
465 | mymktemp() { |
| 466 | local topdir=$1 |
466 | local topdir="$1" |
|
|
467 | |
| 467 | [ -z "${topdir}" ] && topdir=/tmp |
468 | [ -z "${topdir}" ] && topdir=/tmp |
| 468 | if [ `which mktemp 2>/dev/null` ] ; then |
469 | if [ "`which mktemp 2>/dev/null`" ] |
|
|
470 | then |
| 469 | mktemp -p ${topdir} |
471 | mktemp -p ${topdir} |
| 470 | else |
472 | else |
| 471 | local tmp="${topdir}/tmp.${RANDOM}.${RANDOM}.${RANDOM}" |
473 | local tmp="${topdir}/tmp.${RANDOM}.${RANDOM}.${RANDOM}" |
| 472 | touch ${tmp} |
474 | touch ${tmp} |
| 473 | echo ${tmp} |
475 | echo ${tmp} |
| … | |
… | |
| 488 | # groups: none |
490 | # groups: none |
| 489 | # extra: comment of 'added by portage for ${PN}' |
491 | # extra: comment of 'added by portage for ${PN}' |
| 490 | enewuser() { |
492 | enewuser() { |
| 491 | # get the username |
493 | # get the username |
| 492 | local euser="$1"; shift |
494 | local euser="$1"; shift |
| 493 | if [ -z "${euser}" ] ; then |
495 | if [ -z "${euser}" ] |
|
|
496 | then |
| 494 | eerror "No username specified !" |
497 | eerror "No username specified !" |
| 495 | die "Cannot call enewuser without a username" |
498 | die "Cannot call enewuser without a username" |
| 496 | fi |
499 | fi |
| 497 | |
500 | |
| 498 | # setup a file for testing usernames/groups |
501 | # setup a file for testing usernames/groups |
| 499 | local tmpfile="`mymktemp ${T}`" |
502 | local tmpfile="`mymktemp ${T}`" |
| 500 | chown ${euser} ${tmpfile} >& /dev/null |
503 | chown ${euser} ${tmpfile} >& /dev/null |
| 501 | local realuser="`ls -l ${tmpfile} | awk '{print $3}'`" |
504 | local realuser="`ls -l ${tmpfile} | awk '{print $3}'`" |
| 502 | |
505 | |
| 503 | # see if user already exists |
506 | # see if user already exists |
| 504 | if [ "${euser}" == "${realuser}" ] ; then |
507 | if [ "${euser}" == "${realuser}" ] |
|
|
508 | then |
| 505 | return 0 |
509 | return 0 |
| 506 | fi |
510 | fi |
| 507 | einfo "Adding user '${euser}' to your system ..." |
511 | einfo "Adding user '${euser}' to your system ..." |
| 508 | |
512 | |
| 509 | # options to pass to useradd |
513 | # options to pass to useradd |
| 510 | local opts="" |
514 | local opts= |
| 511 | |
515 | |
| 512 | # handle uid |
516 | # handle uid |
| 513 | local euid="$1"; shift |
517 | local euid="$1"; shift |
| 514 | if [ ! -z "${euid}" ] && [ "${euid}" != "-1" ] ; then |
518 | if [ ! -z "${euid}" ] && [ "${euid}" != "-1" ] |
|
|
519 | then |
| 515 | if [ ${euid} -gt 0 ] ; then |
520 | if [ "${euid}" -gt 0 ] |
|
|
521 | then |
| 516 | opts="${opts} -u ${euid}" |
522 | opts="${opts} -u ${euid}" |
| 517 | else |
523 | else |
| 518 | eerror "Userid given but is not greater than 0 !" |
524 | eerror "Userid given but is not greater than 0 !" |
| 519 | die "${euid} is not a valid UID" |
525 | die "${euid} is not a valid UID" |
| 520 | fi |
526 | fi |
| … | |
… | |
| 523 | fi |
529 | fi |
| 524 | einfo " - Userid: ${euid}" |
530 | einfo " - Userid: ${euid}" |
| 525 | |
531 | |
| 526 | # handle shell |
532 | # handle shell |
| 527 | local eshell="$1"; shift |
533 | local eshell="$1"; shift |
| 528 | if [ ! -z "${eshell}" ] ; then |
534 | if [ ! -z "${eshell}" ] && [ "${eshell}" != "-1" ] |
|
|
535 | then |
| 529 | if [ ! -e ${eshell} ] ; then |
536 | if [ ! -e "${eshell}" ] |
|
|
537 | then |
| 530 | eerror "A shell was specified but it does not exist !" |
538 | eerror "A shell was specified but it does not exist !" |
| 531 | die "${eshell} does not exist" |
539 | die "${eshell} does not exist" |
| 532 | fi |
540 | fi |
| 533 | else |
541 | else |
| 534 | eshell=/bin/false |
542 | eshell="/bin/false" |
| 535 | fi |
543 | fi |
| 536 | einfo " - Shell: ${eshell}" |
544 | einfo " - Shell: ${eshell}" |
| 537 | opts="${opts} -s ${eshell}" |
545 | opts="${opts} -s ${eshell}" |
| 538 | |
546 | |
| 539 | # handle homedir |
547 | # handle homedir |
| 540 | local ehome="$1"; shift |
548 | local ehome="$1"; shift |
| 541 | if [ -z "${ehome}" ] ; then |
549 | if [ -z "${ehome}" ] && [ "${eshell}" != "-1" ] |
|
|
550 | then |
| 542 | ehome=/dev/null |
551 | ehome="/dev/null" |
| 543 | fi |
552 | fi |
| 544 | einfo " - Home: ${ehome}" |
553 | einfo " - Home: ${ehome}" |
| 545 | opts="${opts} -d ${ehome}" |
554 | opts="${opts} -d ${ehome}" |
| 546 | |
555 | |
| 547 | # handle groups |
556 | # handle groups |
| 548 | local egroups="$1"; shift |
557 | local egroups="$1"; shift |
| 549 | if [ ! -z "${egroups}" ] ; then |
558 | if [ ! -z "${egroups}" ] |
|
|
559 | then |
| 550 | local realgroup |
560 | local realgroup= |
| 551 | local oldifs="${IFS}" |
561 | local oldifs="${IFS}" |
| 552 | export IFS="," |
562 | export IFS="," |
| 553 | for g in ${egroups} ; do |
563 | for g in ${egroups} |
|
|
564 | do |
| 554 | chgrp ${g} ${tmpfile} >& /dev/null |
565 | chgrp ${g} ${tmpfile} >& /dev/null |
| 555 | realgroup="`ls -l ${tmpfile} | awk '{print $4}'`" |
566 | realgroup="`ls -l ${tmpfile} | awk '{print $4}'`" |
| 556 | if [ "${g}" != "${realgroup}" ] ; then |
567 | if [ "${g}" != "${realgroup}" ] |
|
|
568 | then |
| 557 | eerror "You must add ${g} to the system first" |
569 | eerror "You must add ${g} to the system first" |
| 558 | die "${g} is not a valid GID" |
570 | die "${g} is not a valid GID" |
| 559 | fi |
571 | fi |
| 560 | done |
572 | done |
| 561 | export IFS="${oldifs}" |
573 | export IFS="${oldifs}" |
| … | |
… | |
| 565 | fi |
577 | fi |
| 566 | einfo " - Groups: ${egroups}" |
578 | einfo " - Groups: ${egroups}" |
| 567 | |
579 | |
| 568 | # handle extra and add the user |
580 | # handle extra and add the user |
| 569 | local eextra="$@" |
581 | local eextra="$@" |
| 570 | local oldsandbox=${SANDBOX_ON} |
582 | local oldsandbox="${SANDBOX_ON}" |
| 571 | export SANDBOX_ON="0" |
583 | export SANDBOX_ON="0" |
| 572 | if [ -z "${eextra}" ] ; then |
584 | if [ -z "${eextra}" ] |
|
|
585 | then |
| 573 | useradd ${opts} ${euser} \ |
586 | useradd ${opts} ${euser} \ |
| 574 | -c "added by portage for ${PN}" \ |
587 | -c "added by portage for ${PN}" \ |
| 575 | || die "enewuser failed" |
588 | || die "enewuser failed" |
| 576 | else |
589 | else |
| 577 | einfo " - Extra: ${eextra}" |
590 | einfo " - Extra: ${eextra}" |
| 578 | useradd ${opts} ${euser} ${eextra} \ |
591 | useradd ${opts} ${euser} ${eextra} \ |
| 579 | || die "enewuser failed" |
592 | || die "enewuser failed" |
| 580 | fi |
593 | fi |
| 581 | export SANDBOX_ON="${oldsandbox}" |
594 | export SANDBOX_ON="${oldsandbox}" |
| 582 | |
595 | |
| 583 | if [ ! -e ${ehome} ] && [ ! -e ${D}/${ehome} ] ; then |
596 | if [ ! -e "${ehome}" ] && [ ! -e "${D}/${ehome}" ] |
|
|
597 | then |
| 584 | einfo " - Creating ${ehome} in ${D}" |
598 | einfo " - Creating ${ehome} in ${D}" |
| 585 | dodir ${ehome} |
599 | dodir ${ehome} |
| 586 | fowners ${euser} ${ehome} |
600 | fowners ${euser} ${ehome} |
| 587 | fperms 755 ${ehome} |
601 | fperms 755 ${ehome} |
| 588 | fi |
602 | fi |
| … | |
… | |
| 598 | # gid: next available (see groupadd(8)) |
612 | # gid: next available (see groupadd(8)) |
| 599 | # extra: none |
613 | # extra: none |
| 600 | enewgroup() { |
614 | enewgroup() { |
| 601 | # get the group |
615 | # get the group |
| 602 | local egroup="$1"; shift |
616 | local egroup="$1"; shift |
| 603 | if [ -z "${egroup}" ] ; then |
617 | if [ -z "${egroup}" ] |
|
|
618 | then |
| 604 | eerror "No group specified !" |
619 | eerror "No group specified !" |
| 605 | die "Cannot call enewgroup without a group" |
620 | die "Cannot call enewgroup without a group" |
| 606 | fi |
621 | fi |
| 607 | |
622 | |
| 608 | # setup a file for testing groupname |
623 | # setup a file for testing groupname |
| 609 | local tmpfile="`mymktemp ${T}`" |
624 | local tmpfile="`mymktemp ${T}`" |
| 610 | chgrp ${egroup} ${tmpfile} >& /dev/null |
625 | chgrp ${egroup} ${tmpfile} >& /dev/null |
| 611 | local realgroup="`ls -l ${tmpfile} | awk '{print $4}'`" |
626 | local realgroup="`ls -l ${tmpfile} | awk '{print $4}'`" |
| 612 | |
627 | |
| 613 | # see if group already exists |
628 | # see if group already exists |
| 614 | if [ "${egroup}" == "${realgroup}" ] ; then |
629 | if [ "${egroup}" == "${realgroup}" ] |
|
|
630 | then |
| 615 | return 0 |
631 | return 0 |
| 616 | fi |
632 | fi |
| 617 | einfo "Adding group '${egroup}' to your system ..." |
633 | einfo "Adding group '${egroup}' to your system ..." |
| 618 | |
634 | |
| 619 | # options to pass to useradd |
635 | # options to pass to useradd |
| 620 | local opts="" |
636 | local opts= |
| 621 | |
637 | |
| 622 | # handle gid |
638 | # handle gid |
| 623 | local egid="$1"; shift |
639 | local egid="$1"; shift |
| 624 | if [ ! -z "${egid}" ] ; then |
640 | if [ ! -z "${egid}" ] |
|
|
641 | then |
| 625 | if [ ${egid} -gt 0 ] ; then |
642 | if [ "${egid}" -gt 0 ] |
|
|
643 | then |
| 626 | opts="${opts} -g ${egid}" |
644 | opts="${opts} -g ${egid}" |
| 627 | else |
645 | else |
| 628 | eerror "Groupid given but is not greater than 0 !" |
646 | eerror "Groupid given but is not greater than 0 !" |
| 629 | die "${egid} is not a valid GID" |
647 | die "${egid} is not a valid GID" |
| 630 | fi |
648 | fi |
| … | |
… | |
| 636 | # handle extra |
654 | # handle extra |
| 637 | local eextra="$@" |
655 | local eextra="$@" |
| 638 | opts="${opts} ${eextra}" |
656 | opts="${opts} ${eextra}" |
| 639 | |
657 | |
| 640 | # add the group |
658 | # add the group |
| 641 | local oldsandbox=${SANDBOX_ON} |
659 | local oldsandbox="${SANDBOX_ON}" |
| 642 | export SANDBOX_ON="0" |
660 | export SANDBOX_ON="0" |
| 643 | groupadd ${opts} ${egroup} || die "enewgroup failed" |
661 | groupadd ${opts} ${egroup} || die "enewgroup failed" |
| 644 | export SANDBOX_ON="${oldsandbox}" |
662 | export SANDBOX_ON="${oldsandbox}" |
| 645 | } |
663 | } |
| 646 | |
664 | |
| 647 | # Simple script to replace 'dos2unix' binaries |
665 | # Simple script to replace 'dos2unix' binaries |
| 648 | # vapier@gentoo.org |
666 | # vapier@gentoo.org |
| 649 | # |
667 | # |
| 650 | # edos2unix(file, <more files>...) |
668 | # edos2unix(file, <more files>...) |
| 651 | edos2unix() { |
669 | edos2unix() { |
| 652 | for f in $@ ; do |
670 | for f in "$@" |
|
|
671 | do |
| 653 | cp ${f} ${T}/edos2unix |
672 | cp "${f}" ${T}/edos2unix |
| 654 | sed 's/\r$//' ${T}/edos2unix > ${f} |
673 | sed 's/\r$//' ${T}/edos2unix > "${f}" |
| 655 | done |
674 | done |
| 656 | } |
675 | } |
| 657 | |
676 | |
| 658 | # Make a desktop file ! |
677 | # Make a desktop file ! |
| 659 | # Great for making those icons in kde/gnome startmenu ! |
678 | # Great for making those icons in kde/gnome startmenu ! |
| … | |
… | |
| 673 | # http://www.freedesktop.org/standards/menu/draft/menu-spec/menu-spec.html |
692 | # http://www.freedesktop.org/standards/menu/draft/menu-spec/menu-spec.html |
| 674 | # path: if your app needs to startup in a specific dir |
693 | # path: if your app needs to startup in a specific dir |
| 675 | make_desktop_entry() { |
694 | make_desktop_entry() { |
| 676 | [ -z "$1" ] && eerror "You must specify the executable" && return 1 |
695 | [ -z "$1" ] && eerror "You must specify the executable" && return 1 |
| 677 | |
696 | |
| 678 | local exec=${1} |
697 | local exec="${1}" |
| 679 | local name=${2:-${PN}} |
698 | local name="${2:-${PN}}" |
| 680 | local icon=${3:-${PN}.png} |
699 | local icon="${3:-${PN}.png}" |
| 681 | local type=${4} |
700 | local type="${4}" |
| 682 | local path=${5:-${GAMES_PREFIX}} |
701 | local path="${5:-${GAMES_PREFIX}}" |
| 683 | if [ -z "${type}" ] ; then |
702 | if [ -z "${type}" ] |
|
|
703 | then |
| 684 | case ${CATEGORY} in |
704 | case ${CATEGORY} in |
| 685 | app-emulation) type=Emulator ;; |
705 | "app-emulation") |
| 686 | games-*) type=Game ;; |
706 | type=Emulator |
| 687 | *) type="" ;; |
707 | ;; |
|
|
708 | "games-"*) |
|
|
709 | type=Game |
|
|
710 | ;; |
|
|
711 | "net-"*) |
|
|
712 | type=Network; |
|
|
713 | ;; |
|
|
714 | *) |
|
|
715 | type= |
|
|
716 | ;; |
| 688 | esac |
717 | esac |
| 689 | fi |
718 | fi |
| 690 | local desktop=${T}/${exec}.desktop |
719 | local desktop="${T}/${exec}.desktop" |
| 691 | |
720 | |
| 692 | echo "[Desktop Entry] |
721 | echo "[Desktop Entry] |
| 693 | Encoding=UTF-8 |
722 | Encoding=UTF-8 |
| 694 | Version=0.9.2 |
723 | Version=0.9.2 |
| 695 | Name=${name} |
724 | Name=${name} |
| … | |
… | |
| 698 | Exec=${exec} |
727 | Exec=${exec} |
| 699 | Path=${path} |
728 | Path=${path} |
| 700 | Icon=${icon} |
729 | Icon=${icon} |
| 701 | Categories=Application;${type};" > ${desktop} |
730 | Categories=Application;${type};" > ${desktop} |
| 702 | |
731 | |
| 703 | if [ -d /usr/share/applications ] ; then |
732 | if [ -d "/usr/share/applications" ] |
|
|
733 | then |
| 704 | insinto /usr/share/applications |
734 | insinto /usr/share/applications |
| 705 | doins ${desktop} |
735 | doins ${desktop} |
| 706 | fi |
736 | fi |
| 707 | |
737 | |
| 708 | #if [ -d /usr/share/gnome/apps ] ; then |
738 | #if [ -d "/usr/share/gnome/apps" ] |
|
|
739 | #then |
| 709 | # insinto /usr/share/gnome/apps/Games |
740 | # insinto /usr/share/gnome/apps/Games |
| 710 | # doins ${desktop} |
741 | # doins ${desktop} |
| 711 | #fi |
742 | #fi |
| 712 | |
743 | |
| 713 | #if [ ! -z "`ls /usr/kde/* 2>/dev/null`" ] ; then |
744 | #if [ ! -z "`ls /usr/kde/* 2>/dev/null`" ] |
|
|
745 | #then |
| 714 | # for ver in /usr/kde/* ; do |
746 | # for ver in /usr/kde/* |
|
|
747 | # do |
| 715 | # insinto ${ver}/share/applnk/Games |
748 | # insinto ${ver}/share/applnk/Games |
| 716 | # doins ${desktop} |
749 | # doins ${desktop} |
| 717 | # done |
750 | # done |
| 718 | #fi |
751 | #fi |
| 719 | |
752 | |
| 720 | if [ -d /usr/share/applnk ] ; then |
753 | if [ -d "/usr/share/applnk" ] |
|
|
754 | then |
| 721 | insinto /usr/share/applnk/${type} |
755 | insinto /usr/share/applnk/${type} |
| 722 | doins ${desktop} |
756 | doins ${desktop} |
| 723 | fi |
757 | fi |
| 724 | |
758 | |
| 725 | return 0 |
759 | return 0 |
| 726 | } |
760 | } |
| 727 | |
761 | |
| 728 | # new convenience patch wrapper function to eventually replace epatch(), |
762 | # for internal use only (unpack_pdv and unpack_makeself) |
| 729 | # $PATCHES, $PATCHES1, src_unpack:patch, src_unpack:autopatch and |
763 | find_unpackable_file() { |
| 730 | # /usr/bin/patch |
|
|
| 731 | # Features: |
|
|
| 732 | # - bulk patch handling similar to epatch()'s |
|
|
| 733 | # - automatic patch level detection like epatch()'s |
|
|
| 734 | # - automatic patch uncompression like epatch()'s |
|
|
| 735 | # - doesn't have the --dry-run overhead of epatch() - inspects patchfiles |
|
|
| 736 | # manually instead |
|
|
| 737 | # - once I decide it's production-ready, it'll be called from base_src_unpack |
|
|
| 738 | # to handle $PATCHES to avoid defining src_unpack just to use xpatch |
|
|
| 739 | |
|
|
| 740 | # accepts zero or more parameters specifying patchfiles and/or patchdirs |
|
|
| 741 | |
|
|
| 742 | # known issues: |
|
|
| 743 | # - only supports unified style patches (does anyone _really_ use anything |
|
|
| 744 | # else?) |
|
|
| 745 | # - because it doesn't use --dry-run there is a risk of it failing |
|
|
| 746 | # to find the files to patch, ie detect the patchlevel, properly. It doesn't use |
|
|
| 747 | # any of the backup heuristics that patch employs to discover a filename. |
|
|
| 748 | # however, this isn't dangerous because if it works for the developer who's |
|
|
| 749 | # writing the ebuild, it'll always work for the users, and if it doesn't, |
|
|
| 750 | # then we'll fix it :-) |
|
|
| 751 | # - no support as yet for patches applying outside $S (and not directly in $WORKDIR). |
|
|
| 752 | xpatch() { |
|
|
| 753 | |
|
|
| 754 | debug-print-function $FUNCNAME $* |
|
|
| 755 | |
|
|
| 756 | local list="" |
764 | local src="$1" |
| 757 | local list2="" |
765 | if [ -z "${src}" ] |
| 758 | declare -i plevel |
766 | then |
| 759 | |
767 | src="${DISTDIR}/${A}" |
| 760 | # parse patch sources |
768 | else |
| 761 | for x in $*; do |
769 | if [ -e "${DISTDIR}/${src}" ] |
| 762 | debug-print "$FUNCNAME: parsing parameter $x" |
770 | then |
| 763 | if [ -f "$x" ]; then |
771 | src="${DISTDIR}/${src}" |
| 764 | list="$list $x" |
772 | elif [ -e "${PWD}/${src}" ] |
| 765 | elif [ -d "$x" ]; then |
773 | then |
| 766 | # handles patchdirs like epatch() for now: no recursion. |
774 | src="${PWD}/${src}" |
| 767 | # patches are sorted by filename, so with an xy_foo naming scheme you'll get the right order. |
775 | elif [ -e "${src}" ] |
| 768 | # only patches with _$ARCH_ or _all_ in their filenames are applied. |
776 | then |
| 769 | for file in `ls -A $x`; do |
777 | src="${src}" |
| 770 | debug-print "$FUNCNAME: parsing in subdir: file $file" |
|
|
| 771 | if [ -f "$x/$file" ] && [ "${file}" != "${file/_all_}" -o "${file}" != "${file/_$ARCH_}" ]; then |
|
|
| 772 | list2="$list2 $x/$file" |
|
|
| 773 | fi |
778 | fi |
| 774 | done |
779 | fi |
| 775 | list="`echo $list2 | sort` $list" |
780 | [ ! -e "${src}" ] && die "Could not find requested archive ${src}" |
|
|
781 | echo "${src}" |
|
|
782 | } |
|
|
783 | |
|
|
784 | # Unpack those pesky pdv generated files ... |
|
|
785 | # They're self-unpacking programs with the binary package stuffed in |
|
|
786 | # the middle of the archive. Valve seems to use it a lot ... too bad |
|
|
787 | # it seems to like to segfault a lot :(. So lets take it apart ourselves. |
|
|
788 | # |
|
|
789 | # Usage: unpack_pdv [file to unpack] [size of off_t] |
|
|
790 | # - you have to specify the off_t size ... i have no idea how to extract that |
|
|
791 | # information out of the binary executable myself. basically you pass in |
|
|
792 | # the size of the off_t type (in bytes) on the machine that built the pdv |
|
|
793 | # archive. one way to determine this is by running the following commands: |
|
|
794 | # strings <pdv archive> | grep lseek |
|
|
795 | # strace -elseek <pdv archive> |
|
|
796 | # basically look for the first lseek command (we do the strings/grep because |
|
|
797 | # sometimes the function call is _llseek or something) and steal the 2nd |
|
|
798 | # parameter. here is an example: |
|
|
799 | # root@vapier 0 pdv_unpack # strings hldsupdatetool.bin | grep lseek |
|
|
800 | # lseek |
|
|
801 | # root@vapier 0 pdv_unpack # strace -elseek ./hldsupdatetool.bin |
|
|
802 | # lseek(3, -4, SEEK_END) = 2981250 |
|
|
803 | # thus we would pass in the value of '4' as the second parameter. |
|
|
804 | unpack_pdv() { |
|
|
805 | local src="`find_unpackable_file $1`" |
|
|
806 | local sizeoff_t="$2" |
|
|
807 | |
|
|
808 | [ -z "${sizeoff_t}" ] && die "No idea what off_t size was used for this pdv :(" |
|
|
809 | |
|
|
810 | local shrtsrc="`basename ${src}`" |
|
|
811 | echo ">>> Unpacking ${shrtsrc} to ${PWD}" |
|
|
812 | local metaskip=`tail -c ${sizeoff_t} ${src} | hexdump -e \"%i\"` |
|
|
813 | local tailskip=`tail -c $((${sizeoff_t}*2)) ${src} | head -c ${sizeoff_t} | hexdump -e \"%i\"` |
|
|
814 | |
|
|
815 | # grab metadata for debug reasons |
|
|
816 | local metafile="`mymktemp ${T}`" |
|
|
817 | tail -c +$((${metaskip}+1)) ${src} > ${metafile} |
|
|
818 | |
|
|
819 | # rip out the final file name from the metadata |
|
|
820 | local datafile="`tail -c +$((${metaskip}+1)) ${src} | strings | head -n 1`" |
|
|
821 | datafile="`basename ${datafile}`" |
|
|
822 | |
|
|
823 | # now lets uncompress/untar the file if need be |
|
|
824 | local tmpfile="`mymktemp ${T}`" |
|
|
825 | tail -c +$((${tailskip}+1)) ${src} 2>/dev/null | head -c 512 > ${tmpfile} |
|
|
826 | |
|
|
827 | local iscompressed="`file -b ${tmpfile}`" |
|
|
828 | if [ "${iscompressed:0:8}" == "compress" ] ; then |
|
|
829 | iscompressed=1 |
|
|
830 | mv ${tmpfile}{,.Z} |
|
|
831 | gunzip ${tmpfile} |
|
|
832 | else |
|
|
833 | iscompressed=0 |
|
|
834 | fi |
|
|
835 | local istar="`file -b ${tmpfile}`" |
|
|
836 | if [ "${istar:0:9}" == "POSIX tar" ] ; then |
|
|
837 | istar=1 |
|
|
838 | else |
|
|
839 | istar=0 |
|
|
840 | fi |
|
|
841 | |
|
|
842 | #for some reason gzip dies with this ... dd cant provide buffer fast enough ? |
|
|
843 | #dd if=${src} ibs=${metaskip} count=1 \ |
|
|
844 | # | dd ibs=${tailskip} skip=1 \ |
|
|
845 | # | gzip -dc \ |
|
|
846 | # > ${datafile} |
|
|
847 | if [ ${iscompressed} -eq 1 ] ; then |
|
|
848 | if [ ${istar} -eq 1 ] ; then |
|
|
849 | tail -c +$((${tailskip}+1)) ${src} 2>/dev/null \ |
|
|
850 | | head -c $((${metaskip}-${tailskip})) \ |
|
|
851 | | tar -xzf - |
| 776 | else |
852 | else |
| 777 | die "Couldn't find $x" |
853 | tail -c +$((${tailskip}+1)) ${src} 2>/dev/null \ |
|
|
854 | | head -c $((${metaskip}-${tailskip})) \ |
|
|
855 | | gzip -dc \ |
|
|
856 | > ${datafile} |
|
|
857 | fi |
|
|
858 | else |
|
|
859 | if [ ${istar} -eq 1 ] ; then |
|
|
860 | tail -c +$((${tailskip}+1)) ${src} 2>/dev/null \ |
|
|
861 | | head -c $((${metaskip}-${tailskip})) \ |
|
|
862 | | tar --no-same-owner -xf - |
|
|
863 | else |
|
|
864 | tail -c +$((${tailskip}+1)) ${src} 2>/dev/null \ |
|
|
865 | | head -c $((${metaskip}-${tailskip})) \ |
|
|
866 | > ${datafile} |
|
|
867 | fi |
| 778 | fi |
868 | fi |
| 779 | done |
869 | true |
| 780 | |
870 | #[ -s "${datafile}" ] || die "failure unpacking pdv ('${metaskip}' '${tailskip}' '${datafile}')" |
| 781 | debug-print "$FUNCNAME: final list of patches: $list" |
871 | #assert "failure unpacking pdv ('${metaskip}' '${tailskip}' '${datafile}')" |
| 782 | |
|
|
| 783 | for x in $list; do |
|
|
| 784 | debug-print "$FUNCNAME: processing $x" |
|
|
| 785 | # deal with compressed files. /usr/bin/file is in the system profile, or should be. |
|
|
| 786 | case "`/usr/bin/file -b $x`" in |
|
|
| 787 | *gzip*) patchfile="${T}/current.patch"; ungzip -c "$x" > "${patchfile}";; |
|
|
| 788 | *bzip2*) patchfile="${T}/current.patch"; bunzip2 -c "$x" > "${patchfile}";; |
|
|
| 789 | *text*) patchfile="$x";; |
|
|
| 790 | *) die "Could not determine filetype of patch $x";; |
|
|
| 791 | esac |
|
|
| 792 | debug-print "$FUNCNAME: patchfile=$patchfile" |
|
|
| 793 | |
|
|
| 794 | # determine patchlevel. supports p0 and higher with either $S or $WORKDIR as base. |
|
|
| 795 | target="`/bin/grep -m 1 '^+++ ' $patchfile`" |
|
|
| 796 | debug-print "$FUNCNAME: raw target=$target" |
|
|
| 797 | # strip target down to the path/filename, remove leading +++ |
|
|
| 798 | target="${target/+++ }"; target="${target%% *}" |
|
|
| 799 | # duplicate slashes are discarded by patch wrt the patchlevel. therefore we need |
|
|
| 800 | # to discard them as well to calculate the correct patchlevel. |
|
|
| 801 | target="${target//\/\//\/}" |
|
|
| 802 | debug-print "$FUNCNAME: stripped target=$target" |
|
|
| 803 | |
|
|
| 804 | # look for target |
|
|
| 805 | for basedir in "$S" "$WORKDIR" "${PWD}"; do |
|
|
| 806 | debug-print "$FUNCNAME: looking in basedir=$basedir" |
|
|
| 807 | cd "$basedir" |
|
|
| 808 | |
|
|
| 809 | # try stripping leading directories |
|
|
| 810 | target2="$target" |
|
|
| 811 | plevel=0 |
|
|
| 812 | debug-print "$FUNCNAME: trying target2=$target2, plevel=$plevel" |
|
|
| 813 | while [ ! -f "$target2" ]; do |
|
|
| 814 | target2="${target2#*/}" # removes piece of target2 upto the first occurence of / |
|
|
| 815 | plevel=plevel+1 |
|
|
| 816 | debug-print "$FUNCNAME: trying target2=$target2, plevel=$plevel" |
|
|
| 817 | [ "$target2" == "${target2/\/}" ] && break |
|
|
| 818 | done |
|
|
| 819 | test -f "$target2" && break |
|
|
| 820 | |
|
|
| 821 | # try stripping filename - needed to support patches creating new files |
|
|
| 822 | target2="${target%/*}" |
|
|
| 823 | plevel=0 |
|
|
| 824 | debug-print "$FUNCNAME: trying target2=$target2, plevel=$plevel" |
|
|
| 825 | while [ ! -d "$target2" ]; do |
|
|
| 826 | target2="${target2#*/}" # removes piece of target2 upto the first occurence of / |
|
|
| 827 | plevel=plevel+1 |
|
|
| 828 | debug-print "$FUNCNAME: trying target2=$target2, plevel=$plevel" |
|
|
| 829 | [ "$target2" == "${target2/\/}" ] && break |
|
|
| 830 | done |
|
|
| 831 | test -d "$target2" && break |
|
|
| 832 | |
|
|
| 833 | done |
|
|
| 834 | |
|
|
| 835 | test -f "${basedir}/${target2}" || test -d "${basedir}/${target2}" || die "Could not determine patchlevel for $x" |
|
|
| 836 | debug-print "$FUNCNAME: determined plevel=$plevel" |
|
|
| 837 | # do the patching |
|
|
| 838 | ebegin "Applying patch ${x##*/}..." |
|
|
| 839 | /usr/bin/patch -p$plevel < "$patchfile" > /dev/null || die "Failed to apply patch $x" |
|
|
| 840 | eend $? |
|
|
| 841 | |
|
|
| 842 | done |
|
|
| 843 | |
|
|
| 844 | } |
872 | } |
| 845 | |
873 | |
| 846 | # Unpack those pesky makeself generated files ... |
874 | # Unpack those pesky makeself generated files ... |
| 847 | # They're shell scripts with the binary package tagged onto |
875 | # They're shell scripts with the binary package tagged onto |
| 848 | # the end of the archive. Loki utilized the format as does |
876 | # the end of the archive. Loki utilized the format as does |
| … | |
… | |
| 851 | # Usage: unpack_makeself [file to unpack] [offset] |
879 | # Usage: unpack_makeself [file to unpack] [offset] |
| 852 | # - If the file is not specified then unpack will utilize ${A}. |
880 | # - If the file is not specified then unpack will utilize ${A}. |
| 853 | # - If the offset is not specified then we will attempt to extract |
881 | # - If the offset is not specified then we will attempt to extract |
| 854 | # the proper offset from the script itself. |
882 | # the proper offset from the script itself. |
| 855 | unpack_makeself() { |
883 | unpack_makeself() { |
| 856 | local src=$1 |
884 | local src="`find_unpackable_file $1`" |
| 857 | local skip=$2 |
885 | local skip="$2" |
| 858 | |
886 | |
| 859 | if [ -z "${src}" ] ; then |
|
|
| 860 | src="${DISTDIR}/${A}" |
|
|
| 861 | else |
|
|
| 862 | if [ -e "${DISTDIR}/${src}" ] ; then |
|
|
| 863 | src="${DISTDIR}/${src}" |
|
|
| 864 | elif [ -e "${PWD}/${src}" ] ; then |
|
|
| 865 | src="${PWD}/${src}" |
|
|
| 866 | elif [ -e "${src}" ] ; then |
|
|
| 867 | src="${src}" |
|
|
| 868 | fi |
|
|
| 869 | fi |
|
|
| 870 | [ ! -e "${src}" ] && die "Could not find requested makeself archive ${src}" |
|
|
| 871 | |
|
|
| 872 | local shrtsrc=`basename ${src}` |
887 | local shrtsrc="`basename ${src}`" |
| 873 | echo ">>> Unpacking ${shrtsrc} to ${PWD}" |
888 | echo ">>> Unpacking ${shrtsrc} to ${PWD}" |
| 874 | if [ -z "${skip}" ] ; then |
889 | if [ -z "${skip}" ] |
|
|
890 | then |
| 875 | local ver="`grep -a '#.*Makeself' ${src} | awk '{print $NF}'`" |
891 | local ver="`grep -a '#.*Makeself' ${src} | awk '{print $NF}'`" |
| 876 | local skip=0 |
892 | local skip=0 |
| 877 | case ${ver} in |
893 | case ${ver} in |
| 878 | 1.5.*) # tested 1.5.{3,4,5} ... guessing 1.5.x series is same |
894 | 1.5.*) # tested 1.5.{3,4,5} ... guessing 1.5.x series is same |
| 879 | skip=`grep -a ^skip= ${src} | cut -d= -f2` |
895 | skip=`grep -a ^skip= ${src} | cut -d= -f2` |
| … | |
… | |
| 902 | ;; |
918 | ;; |
| 903 | esac |
919 | esac |
| 904 | debug-print "Detected Makeself version ${ver} ... using ${skip} as offset" |
920 | debug-print "Detected Makeself version ${ver} ... using ${skip} as offset" |
| 905 | fi |
921 | fi |
| 906 | |
922 | |
| 907 | # we do this because otherwise a failure in gzip will cause 0 bytes to be sent |
923 | # lets grab the first few bytes of the file to figure out what kind of archive it is |
| 908 | # to tar which will make tar not extract anything and exit with 0 |
924 | local tmpfile="`mymktemp ${T}`" |
| 909 | tail -n +${skip} ${src} | gzip -cd | tar -x --no-same-owner -f - 2>/dev/null |
925 | tail -n +${skip} ${src} 2>/dev/null | head -c 512 > ${tmpfile} |
| 910 | local pipestatus="${PIPESTATUS[*]}" |
926 | local filetype="`file -b ${tmpfile}`" |
| 911 | pipestatus="${pipestatus// }" |
927 | case ${filetype} in |
| 912 | if [ "${pipestatus//0}" != "" ] ; then |
928 | *tar\ archive) |
| 913 | # maybe it isnt gzipped ... they usually are, but not always ... |
|
|
| 914 | tail -n +${skip} ${src} | tar -x --no-same-owner -f - \ |
929 | tail -n +${skip} ${src} | tar --no-same-owner -xf - |
|
|
930 | ;; |
|
|
931 | bzip2*) |
|
|
932 | tail -n +${skip} ${src} | bzip2 -dc | tar --no-same-owner -xf - |
|
|
933 | ;; |
|
|
934 | gzip*) |
|
|
935 | tail -n +${skip} ${src} | tar --no-same-owner -xzf - |
|
|
936 | ;; |
|
|
937 | *) |
|
|
938 | false |
|
|
939 | ;; |
|
|
940 | esac |
| 915 | || die "failure unpacking makeself ${shrtsrc} ('${ver}' +${skip})" |
941 | assert "failure unpacking (${filetype}) makeself ${shrtsrc} ('${ver}' +${skip})" |
| 916 | fi |
|
|
| 917 | } |
942 | } |
| 918 | |
943 | |
| 919 | # Display a license for user to accept. |
944 | # Display a license for user to accept. |
| 920 | # |
945 | # |
| 921 | # Usage: check_license [license] |
946 | # Usage: check_license [license] |
| 922 | # - If the file is not specified then ${LICENSE} is used. |
947 | # - If the file is not specified then ${LICENSE} is used. |
| 923 | check_license() { |
948 | check_license() { |
| 924 | local src=$1 |
949 | local lic=$1 |
| 925 | if [ -z "${src}" ] ; then |
950 | if [ -z "${lic}" ] ; then |
| 926 | src="${PORTDIR}/licenses/${LICENSE}" |
951 | lic="${PORTDIR}/licenses/${LICENSE}" |
| 927 | else |
952 | else |
| 928 | if [ -e "${PORTDIR}/licenses/${src}" ] ; then |
953 | if [ -e "${PORTDIR}/licenses/${src}" ] ; then |
| 929 | src="${PORTDIR}/licenses/${src}" |
954 | lic="${PORTDIR}/licenses/${src}" |
| 930 | elif [ -e "${PWD}/${src}" ] ; then |
955 | elif [ -e "${PWD}/${src}" ] ; then |
| 931 | src="${PWD}/${src}" |
956 | lic="${PWD}/${src}" |
| 932 | elif [ -e "${src}" ] ; then |
957 | elif [ -e "${src}" ] ; then |
| 933 | src="${src}" |
958 | lic="${src}" |
| 934 | fi |
|
|
| 935 | fi |
959 | fi |
|
|
960 | fi |
| 936 | [ ! -e "${src}" ] && die "Could not find requested license ${src}" |
961 | [ ! -f "${lic}" ] && die "Could not find requested license ${src}" |
|
|
962 | local l="`basename ${lic}`" |
| 937 | |
963 | |
| 938 | # here is where we check for the license... |
964 | # here is where we check for the licenses the user already |
| 939 | # if we don't find one, we ask the user for it |
965 | # accepted ... if we don't find a match, we make the user accept |
| 940 | if [ -f /usr/share/licenses/${LICENSE} ]; then |
966 | local alic |
| 941 | einfo "The license for this application has already been accepted." |
967 | for alic in "${ACCEPT_LICENSE}" ; do |
|
|
968 | [ "${alic}" == "*" ] && return 0 |
|
|
969 | [ "${alic}" == "${l}" ] && return 0 |
|
|
970 | done |
|
|
971 | |
|
|
972 | local licmsg="`mymktemp ${T}`" |
|
|
973 | cat << EOF > ${licmsg} |
|
|
974 | ********************************************************** |
|
|
975 | The following license outlines the terms of use of this |
|
|
976 | package. You MUST accept this license for installation to |
|
|
977 | continue. When you are done viewing, hit 'q'. If you |
|
|
978 | CTRL+C out of this, the install will not run! |
|
|
979 | ********************************************************** |
|
|
980 | |
|
|
981 | EOF |
|
|
982 | cat ${lic} >> ${licmsg} |
|
|
983 | ${PAGER:-less} ${licmsg} || die "Could not execute pager (${PAGER}) to accept ${lic}" |
|
|
984 | einfon "Do you accept the terms of this license (${l})? [yes/no] " |
|
|
985 | read alic |
|
|
986 | case ${alic} in |
|
|
987 | yes|Yes|y|Y) |
|
|
988 | return 0 |
|
|
989 | ;; |
|
|
990 | *) |
|
|
991 | echo;echo;echo |
|
|
992 | eerror "You MUST accept the license to continue! Exiting!" |
|
|
993 | die "Failed to accept license" |
|
|
994 | ;; |
|
|
995 | esac |
|
|
996 | } |
|
|
997 | |
|
|
998 | # Aquire cd(s) for those lovely cd-based emerges. Yes, this violates |
|
|
999 | # the whole 'non-interactive' policy, but damnit I want CD support ! |
|
|
1000 | # |
|
|
1001 | # with these cdrom functions we handle all the user interaction and |
|
|
1002 | # standardize everything. all you have to do is call cdrom_get_cds() |
|
|
1003 | # and when the function returns, you can assume that the cd has been |
|
|
1004 | # found at CDROM_ROOT. |
|
|
1005 | # |
|
|
1006 | # normally the cdrom functions will refer to the cds as 'cd #1', 'cd #2', |
|
|
1007 | # etc... if you want to give the cds better names, then just export |
|
|
1008 | # the CDROM_NAME_X variables before calling cdrom_get_cds(). |
|
|
1009 | # |
|
|
1010 | # for those multi cd ebuilds, see the cdrom_load_next_cd() below. |
|
|
1011 | # |
|
|
1012 | # Usage: cdrom_get_cds <file on cd1> [file on cd2] [file on cd3] [...] |
|
|
1013 | # - this will attempt to locate a cd based upon a file that is on |
|
|
1014 | # the cd ... the more files you give this function, the more cds |
|
|
1015 | # the cdrom functions will handle |
|
|
1016 | cdrom_get_cds() { |
|
|
1017 | # first we figure out how many cds we're dealing with by |
|
|
1018 | # the # of files they gave us |
|
|
1019 | local cdcnt=0 |
|
|
1020 | local f= |
|
|
1021 | for f in "$@" ; do |
|
|
1022 | cdcnt=$((cdcnt + 1)) |
|
|
1023 | export CDROM_CHECK_${cdcnt}="$f" |
|
|
1024 | done |
|
|
1025 | export CDROM_TOTAL_CDS=${cdcnt} |
|
|
1026 | export CDROM_CURRENT_CD=1 |
|
|
1027 | |
|
|
1028 | # now we see if the user gave use CD_ROOT ... |
|
|
1029 | # if they did, let's just believe them that it's correct |
|
|
1030 | if [ ! -z "${CD_ROOT}" ] ; then |
|
|
1031 | export CDROM_ROOT="${CD_ROOT}" |
|
|
1032 | einfo "Found CD #${CDROM_CURRENT_CD} root at ${CDROM_ROOT}" |
|
|
1033 | return |
|
|
1034 | fi |
|
|
1035 | # do the same for CD_ROOT_X |
|
|
1036 | if [ ! -z "${CD_ROOT_1}" ] ; then |
|
|
1037 | local var= |
|
|
1038 | cdcnt=0 |
|
|
1039 | while [ ${cdcnt} -lt ${CDROM_TOTAL_CDS} ] ; do |
|
|
1040 | cdcnt=$((cdcnt + 1)) |
|
|
1041 | var="CD_ROOT_${cdcnt}" |
|
|
1042 | if [ -z "${!var}" ] ; then |
|
|
1043 | eerror "You must either use just the CD_ROOT" |
|
|
1044 | eerror "or specify ALL the CD_ROOT_X variables." |
|
|
1045 | eerror "In this case, you will need ${CDROM_TOTAL_CDS} CD_ROOT_X variables." |
|
|
1046 | die "could not locate CD_ROOT_${cdcnt}" |
|
|
1047 | fi |
|
|
1048 | export CDROM_ROOTS_${cdcnt}="${!var}" |
|
|
1049 | done |
|
|
1050 | export CDROM_ROOT=${CDROM_ROOTS_1} |
|
|
1051 | einfo "Found CD #${CDROM_CURRENT_CD} root at ${CDROM_ROOT}" |
|
|
1052 | return |
|
|
1053 | fi |
|
|
1054 | |
|
|
1055 | if [ ${CDROM_TOTAL_CDS} -eq 1 ] ; then |
|
|
1056 | einfon "This ebuild will need the " |
|
|
1057 | if [ -z "${CDROM_NAME}" ] ; then |
|
|
1058 | echo "cdrom for ${PN}." |
| 942 | else |
1059 | else |
| 943 | ewarn "You MUST accept this license for installation to continue." |
1060 | echo "${CDROM_NAME}." |
| 944 | eerror "If you CTRL+C out of this, the install will not run!" |
1061 | fi |
| 945 | echo |
1062 | echo |
|
|
1063 | einfo "If you do not have the CD, but have the data files" |
|
|
1064 | einfo "mounted somewhere on your filesystem, just export" |
|
|
1065 | einfo "the variable CD_ROOT so that it points to the" |
|
|
1066 | einfo "directory containing the files." |
|
|
1067 | echo |
|
|
1068 | else |
|
|
1069 | einfo "This package will need access to ${CDROM_TOTAL_CDS} cds." |
|
|
1070 | cdcnt=0 |
|
|
1071 | while [ ${cdcnt} -lt ${CDROM_TOTAL_CDS} ] ; do |
|
|
1072 | cdcnt=$((cdcnt + 1)) |
|
|
1073 | var="CDROM_NAME_${cdcnt}" |
|
|
1074 | [ ! -z "${!var}" ] && einfo " CD ${cdcnt}: ${!var}" |
|
|
1075 | done |
|
|
1076 | echo |
|
|
1077 | einfo "If you do not have the CDs, but have the data files" |
|
|
1078 | einfo "mounted somewhere on your filesystem, just export" |
|
|
1079 | einfo "the following variables so they point to the right place:" |
|
|
1080 | einfon "" |
|
|
1081 | cdcnt=0 |
|
|
1082 | while [ ${cdcnt} -lt ${CDROM_TOTAL_CDS} ] ; do |
|
|
1083 | cdcnt=$((cdcnt + 1)) |
|
|
1084 | echo -n " CD_ROOT_${cdcnt}" |
|
|
1085 | done |
|
|
1086 | echo |
|
|
1087 | einfo "Or, if you have all the files in the same place, or" |
|
|
1088 | einfo "you only have one cdrom, you can export CD_ROOT" |
|
|
1089 | einfo "and that place will be used as the same data source" |
|
|
1090 | einfo "for all the CDs." |
|
|
1091 | echo |
|
|
1092 | fi |
|
|
1093 | export CDROM_CURRENT_CD=0 |
|
|
1094 | cdrom_load_next_cd |
|
|
1095 | } |
| 946 | |
1096 | |
| 947 | ${PAGER} ${src} || die "Could not execute ${PAGER} ${src} |
1097 | # this is only used when you need access to more than one cd. |
| 948 | einfo "Do you accept the terms of this license? [yes/no]" |
1098 | # when you have finished using the first cd, just call this function. |
| 949 | read ACCEPT_TERMS |
1099 | # when it returns, CDROM_ROOT will be pointing to the second cd. |
| 950 | case ${ACCEPT_TERMS} in |
1100 | # remember, you can only go forward in the cd chain, you can't go back. |
| 951 | yes|Yes|y|Y) |
1101 | cdrom_load_next_cd() { |
| 952 | cp ${src} /usr/share/licenses |
1102 | export CDROM_CURRENT_CD=$((CDROM_CURRENT_CD + 1)) |
| 953 | exit 0 |
1103 | local var= |
| 954 | ;; |
1104 | |
| 955 | *) |
1105 | unset CDROM_ROOT |
| 956 | eerror "You MUST accept the license to continue! Exiting!" |
1106 | var=CDROM_ROOTS_${CDROM_CURRENT_CD} |
| 957 | die "Failed to accept license" |
1107 | if [ -z "${!var}" ] ; then |
| 958 | ;; |
1108 | var="CDROM_CHECK_${CDROM_CURRENT_CD}" |
| 959 | esac |
1109 | cdrom_locate_file_on_cd ${!var} |
|
|
1110 | else |
|
|
1111 | export CDROM_ROOT="${!var}" |
|
|
1112 | fi |
|
|
1113 | |
|
|
1114 | einfo "Found CD #${CDROM_CURRENT_CD} root at ${CDROM_ROOT}" |
|
|
1115 | } |
|
|
1116 | |
|
|
1117 | # this is used internally by the cdrom_get_cds() and cdrom_load_next_cd() |
|
|
1118 | # functions. this should *never* be called from an ebuild. |
|
|
1119 | # all it does is try to locate a give file on a cd ... if the cd isn't |
|
|
1120 | # found, then a message asking for the user to insert the cdrom will be |
|
|
1121 | # displayed and we'll hang out here until: |
|
|
1122 | # (1) the file is found on a mounted cdrom |
|
|
1123 | # (2) the user hits CTRL+C |
|
|
1124 | cdrom_locate_file_on_cd() { |
|
|
1125 | while [ -z "${CDROM_ROOT}" ] ; do |
|
|
1126 | local dir="$(dirname ${@})" |
|
|
1127 | local file="$(basename ${@})" |
|
|
1128 | local mline="" |
|
|
1129 | local showedmsg=0 |
|
|
1130 | |
|
|
1131 | for mline in `mount | egrep -e '(iso|cdrom)' | awk '{print $3}'` ; do |
|
|
1132 | [ -d "${mline}/${dir}" ] || continue |
|
|
1133 | [ ! -z "$(find ${mline}/${dir} -iname ${file} -maxdepth 1)" ] \ |
|
|
1134 | && export CDROM_ROOT=${mline} |
|
|
1135 | done |
|
|
1136 | |
|
|
1137 | if [ -z "${CDROM_ROOT}" ] ; then |
|
|
1138 | echo |
|
|
1139 | if [ ${showedmsg} -eq 0 ] ; then |
|
|
1140 | if [ ${CDROM_TOTAL_CDS} -eq 1 ] ; then |
|
|
1141 | if [ -z "${CDROM_NAME}" ] ; then |
|
|
1142 | einfo "Please insert the cdrom for ${PN} now !" |
|
|
1143 | else |
|
|
1144 | einfo "Please insert the ${CDROM_NAME} cdrom now !" |
|
|
1145 | fi |
|
|
1146 | else |
|
|
1147 | if [ -z "${CDROM_NAME_1}" ] ; then |
|
|
1148 | einfo "Please insert cd #${CDROM_CURRENT_CD} for ${PN} now !" |
|
|
1149 | else |
|
|
1150 | local var="CDROM_NAME_${CDROM_CURRENT_CD}" |
|
|
1151 | einfo "Please insert+mount the ${!var} cdrom now !" |
|
|
1152 | fi |
|
|
1153 | fi |
|
|
1154 | showedmsg=1 |
|
|
1155 | fi |
|
|
1156 | einfo "Press return to scan for the cd again" |
|
|
1157 | einfo "or hit CTRL+C to abort the emerge." |
|
|
1158 | read |
| 960 | fi |
1159 | fi |
|
|
1160 | done |
| 961 | } |
1161 | } |