| 1 | # Copyright 1999-2003 Gentoo Technologies, Inc. |
1 | # Copyright 1999-2003 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.41 2003/07/14 04:47:17 vapier Exp $ |
3 | # $Header: /var/cvsroot/gentoo-x86/eclass/eutils.eclass,v 1.73 2003/12/01 20:13:00 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. |
| … | |
… | |
| 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 | DEPEND="$DEPEND !bootstrap? ( sys-devel/patch )" |
15 | newdepend "!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 |
| … | |
… | |
| 88 | # Default directory where patches are located |
88 | # Default directory where patches are located |
| 89 | EPATCH_SOURCE="${WORKDIR}/patch" |
89 | EPATCH_SOURCE="${WORKDIR}/patch" |
| 90 | # Default extension for patches |
90 | # Default extension for patches |
| 91 | EPATCH_SUFFIX="patch.bz2" |
91 | EPATCH_SUFFIX="patch.bz2" |
| 92 | # Default options for patch |
92 | # Default options for patch |
|
|
93 | # Set -g0 to keep RCS, ClearCase, Perforce and SCCS happy. Bug #24571 |
| 93 | EPATCH_OPTS="" |
94 | EPATCH_OPTS="-g0" |
| 94 | # List of patches not to apply. Not this is only file names, |
95 | # List of patches not to apply. Not this is only file names, |
| 95 | # and not the full path .. |
96 | # and not the full path .. |
| 96 | EPATCH_EXCLUDE="" |
97 | EPATCH_EXCLUDE="" |
| 97 | # Change the printed message for a single patch. |
98 | # Change the printed message for a single patch. |
| 98 | EPATCH_SINGLE_MSG="" |
99 | EPATCH_SINGLE_MSG="" |
| … | |
… | |
| 401 | fi |
402 | fi |
| 402 | |
403 | |
| 403 | export MAKEOPTS="`echo ${MAKEOPTS} | sed -e 's:-j *[0-9]*::g'`" |
404 | export MAKEOPTS="`echo ${MAKEOPTS} | sed -e 's:-j *[0-9]*::g'`" |
| 404 | |
405 | |
| 405 | if [ "${ARCH}" = "amd64" -o "${ARCH}" = "x86" -o "${ARCH}" = "hppa" -o \ |
406 | if [ "${ARCH}" = "amd64" -o "${ARCH}" = "x86" -o "${ARCH}" = "hppa" -o \ |
| 406 | "${ARCH}" = "arm" -o "${ARCH}" = "mips" ] |
407 | "${ARCH}" = "arm" -o "${ARCH}" = "mips" -o "${ARCH}" = "ia64" ] |
| 407 | then |
408 | then |
| 408 | # these archs will always have "[Pp]rocessor" |
409 | # these archs will always have "[Pp]rocessor" |
| 409 | jobs="$((`grep -c ^[Pp]rocessor /proc/cpuinfo` * 2))" |
410 | jobs="$((`grep -c ^[Pp]rocessor /proc/cpuinfo` * 2))" |
| 410 | |
411 | |
| 411 | elif [ "${ARCH}" = "sparc" -o "${ARCH}" = "sparc64" ] |
412 | elif [ "${ARCH}" = "sparc" -o "${ARCH}" = "sparc64" ] |
| … | |
… | |
| 451 | export MAKEOPTS="${MAKEOPTS} -j${ADMINPARAM}" |
452 | export MAKEOPTS="${MAKEOPTS} -j${ADMINPARAM}" |
| 452 | else |
453 | else |
| 453 | einfo "Setting make jobs to \"-j${jobs}\" to ensure successful merge..." |
454 | einfo "Setting make jobs to \"-j${jobs}\" to ensure successful merge..." |
| 454 | export MAKEOPTS="${MAKEOPTS} -j${jobs}" |
455 | export MAKEOPTS="${MAKEOPTS} -j${jobs}" |
| 455 | fi |
456 | fi |
|
|
457 | fi |
|
|
458 | } |
|
|
459 | |
|
|
460 | # Cheap replacement for when debianutils (and thus mktemp) |
|
|
461 | # do not exist on the users system |
|
|
462 | # vapier@gentoo.org |
|
|
463 | # |
|
|
464 | # Takes just 1 parameter (the directory to create tmpfile in) |
|
|
465 | mymktemp() { |
|
|
466 | local topdir="$1" |
|
|
467 | |
|
|
468 | [ -z "${topdir}" ] && topdir=/tmp |
|
|
469 | if [ "`which mktemp 2>/dev/null`" ] |
|
|
470 | then |
|
|
471 | mktemp -p ${topdir} |
|
|
472 | else |
|
|
473 | local tmp="${topdir}/tmp.${RANDOM}.${RANDOM}.${RANDOM}" |
|
|
474 | touch ${tmp} |
|
|
475 | echo ${tmp} |
| 456 | fi |
476 | fi |
| 457 | } |
477 | } |
| 458 | |
478 | |
| 459 | # Simplify/standardize adding users to the system |
479 | # Simplify/standardize adding users to the system |
| 460 | # vapier@gentoo.org |
480 | # vapier@gentoo.org |
| … | |
… | |
| 470 | # groups: none |
490 | # groups: none |
| 471 | # extra: comment of 'added by portage for ${PN}' |
491 | # extra: comment of 'added by portage for ${PN}' |
| 472 | enewuser() { |
492 | enewuser() { |
| 473 | # get the username |
493 | # get the username |
| 474 | local euser="$1"; shift |
494 | local euser="$1"; shift |
| 475 | if [ -z "${euser}" ] ; then |
495 | if [ -z "${euser}" ] |
|
|
496 | then |
| 476 | eerror "No username specified !" |
497 | eerror "No username specified !" |
| 477 | die "Cannot call enewuser without a username" |
498 | die "Cannot call enewuser without a username" |
| 478 | fi |
499 | fi |
| 479 | einfo "Adding user '${euser}' to your system ..." |
|
|
| 480 | |
500 | |
| 481 | # setup a file for testing usernames/groups |
501 | # setup a file for testing usernames/groups |
| 482 | local tmpfile="`mktemp -p ${T}`" |
502 | local tmpfile="`mymktemp ${T}`" |
| 483 | touch ${tmpfile} |
|
|
| 484 | chown ${euser} ${tmpfile} >& /dev/null |
503 | chown ${euser} ${tmpfile} >& /dev/null |
| 485 | local realuser="`ls -l ${tmpfile} | awk '{print $3}'`" |
504 | local realuser="`ls -l ${tmpfile} | awk '{print $3}'`" |
| 486 | |
505 | |
| 487 | # see if user already exists |
506 | # see if user already exists |
| 488 | if [ "${euser}" == "${realuser}" ] ; then |
507 | if [ "${euser}" == "${realuser}" ] |
| 489 | einfo "${euser} already exists on your system :)" |
508 | then |
| 490 | return 0 |
509 | return 0 |
| 491 | fi |
510 | fi |
|
|
511 | einfo "Adding user '${euser}' to your system ..." |
| 492 | |
512 | |
| 493 | # options to pass to useradd |
513 | # options to pass to useradd |
| 494 | local opts="" |
514 | local opts= |
| 495 | |
515 | |
| 496 | # handle uid |
516 | # handle uid |
| 497 | local euid="$1"; shift |
517 | local euid="$1"; shift |
| 498 | if [ ! -z "${euid}" ] && [ "${euid}" != "-1" ] ; then |
518 | if [ ! -z "${euid}" ] && [ "${euid}" != "-1" ] |
|
|
519 | then |
| 499 | if [ ${euid} -gt 0 ] ; then |
520 | if [ "${euid}" -gt 0 ] |
|
|
521 | then |
| 500 | opts="${opts} -u ${euid}" |
522 | opts="${opts} -u ${euid}" |
| 501 | else |
523 | else |
| 502 | eerror "Userid given but is not greater than 0 !" |
524 | eerror "Userid given but is not greater than 0 !" |
| 503 | die "${euid} is not a valid UID" |
525 | die "${euid} is not a valid UID" |
| 504 | fi |
526 | fi |
| … | |
… | |
| 507 | fi |
529 | fi |
| 508 | einfo " - Userid: ${euid}" |
530 | einfo " - Userid: ${euid}" |
| 509 | |
531 | |
| 510 | # handle shell |
532 | # handle shell |
| 511 | local eshell="$1"; shift |
533 | local eshell="$1"; shift |
| 512 | if [ ! -z "${eshell}" ] ; then |
534 | if [ ! -z "${eshell}" ] && [ "${eshell}" != "-1" ] |
|
|
535 | then |
| 513 | if [ ! -e ${eshell} ] ; then |
536 | if [ ! -e "${eshell}" ] |
|
|
537 | then |
| 514 | eerror "A shell was specified but it does not exist !" |
538 | eerror "A shell was specified but it does not exist !" |
| 515 | die "${eshell} does not exist" |
539 | die "${eshell} does not exist" |
| 516 | fi |
540 | fi |
| 517 | else |
541 | else |
| 518 | eshell=/bin/false |
542 | eshell="/bin/false" |
| 519 | fi |
543 | fi |
| 520 | einfo " - Shell: ${eshell}" |
544 | einfo " - Shell: ${eshell}" |
| 521 | opts="${opts} -s ${eshell}" |
545 | opts="${opts} -s ${eshell}" |
| 522 | |
546 | |
| 523 | # handle homedir |
547 | # handle homedir |
| 524 | local ehome="$1"; shift |
548 | local ehome="$1"; shift |
| 525 | if [ -z "${ehome}" ] ; then |
549 | if [ -z "${ehome}" ] && [ "${eshell}" != "-1" ] |
|
|
550 | then |
| 526 | ehome=/dev/null |
551 | ehome="/dev/null" |
| 527 | fi |
552 | fi |
| 528 | einfo " - Home: ${ehome}" |
553 | einfo " - Home: ${ehome}" |
| 529 | opts="${opts} -d ${ehome}" |
554 | opts="${opts} -d ${ehome}" |
| 530 | |
555 | |
| 531 | # handle groups |
556 | # handle groups |
| 532 | local egroups="$1"; shift |
557 | local egroups="$1"; shift |
| 533 | if [ ! -z "${egroups}" ] ; then |
558 | if [ ! -z "${egroups}" ] |
|
|
559 | then |
| 534 | local realgroup |
560 | local realgroup= |
| 535 | local oldifs="${IFS}" |
561 | local oldifs="${IFS}" |
| 536 | export IFS="," |
562 | export IFS="," |
| 537 | for g in ${egroups} ; do |
563 | for g in ${egroups} |
|
|
564 | do |
| 538 | chgrp ${g} ${tmpfile} >& /dev/null |
565 | chgrp ${g} ${tmpfile} >& /dev/null |
| 539 | realgroup="`ls -l ${tmpfile} | awk '{print $4}'`" |
566 | realgroup="`ls -l ${tmpfile} | awk '{print $4}'`" |
| 540 | if [ "${g}" != "${realgroup}" ] ; then |
567 | if [ "${g}" != "${realgroup}" ] |
|
|
568 | then |
| 541 | eerror "You must add ${g} to the system first" |
569 | eerror "You must add ${g} to the system first" |
| 542 | die "${g} is not a valid GID" |
570 | die "${g} is not a valid GID" |
| 543 | fi |
571 | fi |
| 544 | done |
572 | done |
| 545 | export IFS="${oldifs}" |
573 | export IFS="${oldifs}" |
| … | |
… | |
| 549 | fi |
577 | fi |
| 550 | einfo " - Groups: ${egroups}" |
578 | einfo " - Groups: ${egroups}" |
| 551 | |
579 | |
| 552 | # handle extra and add the user |
580 | # handle extra and add the user |
| 553 | local eextra="$@" |
581 | local eextra="$@" |
| 554 | local oldsandbox=${SANDBOX_ON} |
582 | local oldsandbox="${SANDBOX_ON}" |
| 555 | export SANDBOX_ON="0" |
583 | export SANDBOX_ON="0" |
| 556 | if [ -z "${eextra}" ] ; then |
584 | if [ -z "${eextra}" ] |
|
|
585 | then |
| 557 | useradd ${opts} ${euser} \ |
586 | useradd ${opts} ${euser} \ |
| 558 | -c "added by portage for ${PN}" \ |
587 | -c "added by portage for ${PN}" \ |
| 559 | || die "enewuser failed" |
588 | || die "enewuser failed" |
| 560 | else |
589 | else |
| 561 | einfo " - Extra: ${eextra}" |
590 | einfo " - Extra: ${eextra}" |
| 562 | useradd ${opts} ${euser} ${eextra} \ |
591 | useradd ${opts} ${euser} ${eextra} \ |
| 563 | || die "enewuser failed" |
592 | || die "enewuser failed" |
| 564 | fi |
593 | fi |
| 565 | export SANDBOX_ON="${oldsandbox}" |
594 | export SANDBOX_ON="${oldsandbox}" |
| 566 | |
595 | |
| 567 | if [ ! -e ${ehome} ] && [ ! -e ${D}/${ehome} ] ; then |
596 | if [ ! -e "${ehome}" ] && [ ! -e "${D}/${ehome}" ] |
|
|
597 | then |
| 568 | einfo " - Creating ${ehome} in ${D}" |
598 | einfo " - Creating ${ehome} in ${D}" |
| 569 | dodir ${ehome} |
599 | dodir ${ehome} |
| 570 | fowners ${euser} ${ehome} |
600 | fowners ${euser} ${ehome} |
| 571 | fperms 755 ${ehome} |
601 | fperms 755 ${ehome} |
| 572 | fi |
602 | fi |
| … | |
… | |
| 582 | # gid: next available (see groupadd(8)) |
612 | # gid: next available (see groupadd(8)) |
| 583 | # extra: none |
613 | # extra: none |
| 584 | enewgroup() { |
614 | enewgroup() { |
| 585 | # get the group |
615 | # get the group |
| 586 | local egroup="$1"; shift |
616 | local egroup="$1"; shift |
| 587 | if [ -z "${egroup}" ] ; then |
617 | if [ -z "${egroup}" ] |
|
|
618 | then |
| 588 | eerror "No group specified !" |
619 | eerror "No group specified !" |
| 589 | die "Cannot call enewgroup without a group" |
620 | die "Cannot call enewgroup without a group" |
| 590 | fi |
621 | fi |
| 591 | einfo "Adding group '${egroup}' to your system ..." |
|
|
| 592 | |
622 | |
| 593 | # setup a file for testing groupname |
623 | # setup a file for testing groupname |
| 594 | local tmpfile="`mktemp -p ${T}`" |
624 | local tmpfile="`mymktemp ${T}`" |
| 595 | touch ${tmpfile} |
|
|
| 596 | chgrp ${egroup} ${tmpfile} >& /dev/null |
625 | chgrp ${egroup} ${tmpfile} >& /dev/null |
| 597 | local realgroup="`ls -l ${tmpfile} | awk '{print $4}'`" |
626 | local realgroup="`ls -l ${tmpfile} | awk '{print $4}'`" |
| 598 | |
627 | |
| 599 | # see if group already exists |
628 | # see if group already exists |
| 600 | if [ "${egroup}" == "${realgroup}" ] ; then |
629 | if [ "${egroup}" == "${realgroup}" ] |
| 601 | einfo "${egroup} already exists on your system :)" |
630 | then |
| 602 | return 0 |
631 | return 0 |
| 603 | fi |
632 | fi |
|
|
633 | einfo "Adding group '${egroup}' to your system ..." |
| 604 | |
634 | |
| 605 | # options to pass to useradd |
635 | # options to pass to useradd |
| 606 | local opts="" |
636 | local opts= |
| 607 | |
637 | |
| 608 | # handle gid |
638 | # handle gid |
| 609 | local egid="$1"; shift |
639 | local egid="$1"; shift |
| 610 | if [ ! -z "${egid}" ] ; then |
640 | if [ ! -z "${egid}" ] |
|
|
641 | then |
| 611 | if [ ${egid} -gt 0 ] ; then |
642 | if [ "${egid}" -gt 0 ] |
|
|
643 | then |
| 612 | opts="${opts} -g ${egid}" |
644 | opts="${opts} -g ${egid}" |
| 613 | else |
645 | else |
| 614 | eerror "Groupid given but is not greater than 0 !" |
646 | eerror "Groupid given but is not greater than 0 !" |
| 615 | die "${egid} is not a valid GID" |
647 | die "${egid} is not a valid GID" |
| 616 | fi |
648 | fi |
| … | |
… | |
| 622 | # handle extra |
654 | # handle extra |
| 623 | local eextra="$@" |
655 | local eextra="$@" |
| 624 | opts="${opts} ${eextra}" |
656 | opts="${opts} ${eextra}" |
| 625 | |
657 | |
| 626 | # add the group |
658 | # add the group |
| 627 | local oldsandbox=${SANDBOX_ON} |
659 | local oldsandbox="${SANDBOX_ON}" |
| 628 | export SANDBOX_ON="0" |
660 | export SANDBOX_ON="0" |
| 629 | groupadd ${opts} ${egroup} || die "enewgroup failed" |
661 | groupadd ${opts} ${egroup} || die "enewgroup failed" |
| 630 | export SANDBOX_ON="${oldsandbox}" |
662 | export SANDBOX_ON="${oldsandbox}" |
| 631 | } |
663 | } |
| 632 | |
664 | |
| 633 | # Simple script to replace 'dos2unix' binaries |
665 | # Simple script to replace 'dos2unix' binaries |
| 634 | # vapier@gentoo.org |
666 | # vapier@gentoo.org |
| 635 | # |
667 | # |
| 636 | # edos2unix(file, <more files>...) |
668 | # edos2unix(file, <more files>...) |
| 637 | edos2unix() { |
669 | edos2unix() { |
| 638 | for f in $@ ; do |
670 | for f in "$@" |
|
|
671 | do |
| 639 | cp ${f} ${T}/edos2unix |
672 | cp "${f}" ${T}/edos2unix |
| 640 | sed 's/\r$//' ${T}/edos2unix > ${f} |
673 | sed 's/\r$//' ${T}/edos2unix > "${f}" |
| 641 | done |
674 | done |
| 642 | } |
675 | } |
| 643 | |
676 | |
| 644 | # Make a desktop file ! |
677 | # Make a desktop file ! |
| 645 | # Great for making those icons in kde/gnome startmenu ! |
678 | # Great for making those icons in kde/gnome startmenu ! |
| … | |
… | |
| 659 | # 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 |
| 660 | # path: if your app needs to startup in a specific dir |
693 | # path: if your app needs to startup in a specific dir |
| 661 | make_desktop_entry() { |
694 | make_desktop_entry() { |
| 662 | [ -z "$1" ] && eerror "You must specify the executable" && return 1 |
695 | [ -z "$1" ] && eerror "You must specify the executable" && return 1 |
| 663 | |
696 | |
| 664 | local exec=${1} |
697 | local exec="${1}" |
| 665 | local name=${2:-${PN}} |
698 | local name="${2:-${PN}}" |
| 666 | local icon=${3:-${PN}.png} |
699 | local icon="${3:-${PN}.png}" |
| 667 | local type=${4} |
700 | local type="${4}" |
| 668 | local path=${5:-${GAMES_PREFIX}} |
701 | local path="${5:-${GAMES_PREFIX}}" |
| 669 | if [ -z "${type}" ] ; then |
702 | if [ -z "${type}" ] |
|
|
703 | then |
| 670 | case ${CATEGORY} in |
704 | case ${CATEGORY} in |
| 671 | app-emulation) type=Emulator ;; |
705 | "app-emulation") |
| 672 | app-games) type=Game ;; |
706 | type=Emulator |
| 673 | *) type="" ;; |
707 | ;; |
|
|
708 | "games-"*) |
|
|
709 | type=Game |
|
|
710 | ;; |
|
|
711 | "net-"*) |
|
|
712 | type=Network; |
|
|
713 | ;; |
|
|
714 | *) |
|
|
715 | type= |
|
|
716 | ;; |
| 674 | esac |
717 | esac |
| 675 | fi |
718 | fi |
| 676 | local desktop=${T}/${exec}.desktop |
719 | local desktop="${T}/${exec}.desktop" |
| 677 | |
720 | |
| 678 | echo "[Desktop Entry] |
721 | echo "[Desktop Entry] |
| 679 | Encoding=UTF-8 |
722 | Encoding=UTF-8 |
| 680 | Version=0.9.2 |
723 | Version=0.9.2 |
| 681 | Name=${name} |
724 | Name=${name} |
| … | |
… | |
| 684 | Exec=${exec} |
727 | Exec=${exec} |
| 685 | Path=${path} |
728 | Path=${path} |
| 686 | Icon=${icon} |
729 | Icon=${icon} |
| 687 | Categories=Application;${type};" > ${desktop} |
730 | Categories=Application;${type};" > ${desktop} |
| 688 | |
731 | |
| 689 | if [ -d /usr/share/applications ] ; then |
732 | if [ -d "/usr/share/applications" ] |
|
|
733 | then |
| 690 | insinto /usr/share/applications |
734 | insinto /usr/share/applications |
| 691 | doins ${desktop} |
735 | doins ${desktop} |
| 692 | fi |
736 | fi |
| 693 | |
737 | |
| 694 | #if [ -d /usr/share/gnome/apps ] ; then |
738 | #if [ -d "/usr/share/gnome/apps" ] |
|
|
739 | #then |
| 695 | # insinto /usr/share/gnome/apps/Games |
740 | # insinto /usr/share/gnome/apps/Games |
| 696 | # doins ${desktop} |
741 | # doins ${desktop} |
| 697 | #fi |
742 | #fi |
| 698 | |
743 | |
| 699 | #if [ ! -z "`ls /usr/kde/* 2>/dev/null`" ] ; then |
744 | #if [ ! -z "`ls /usr/kde/* 2>/dev/null`" ] |
|
|
745 | #then |
| 700 | # for ver in /usr/kde/* ; do |
746 | # for ver in /usr/kde/* |
|
|
747 | # do |
| 701 | # insinto ${ver}/share/applnk/Games |
748 | # insinto ${ver}/share/applnk/Games |
| 702 | # doins ${desktop} |
749 | # doins ${desktop} |
| 703 | # done |
750 | # done |
| 704 | #fi |
751 | #fi |
| 705 | |
752 | |
| 706 | if [ -d /usr/share/applnk ] ; then |
753 | if [ -d "/usr/share/applnk" ] |
|
|
754 | then |
| 707 | insinto /usr/share/applnk/${type} |
755 | insinto /usr/share/applnk/${type} |
| 708 | doins ${desktop} |
756 | doins ${desktop} |
| 709 | fi |
757 | fi |
| 710 | |
758 | |
| 711 | return 0 |
759 | return 0 |
| … | |
… | |
| 735 | # writing the ebuild, it'll always work for the users, and if it doesn't, |
783 | # writing the ebuild, it'll always work for the users, and if it doesn't, |
| 736 | # then we'll fix it :-) |
784 | # then we'll fix it :-) |
| 737 | # - no support as yet for patches applying outside $S (and not directly in $WORKDIR). |
785 | # - no support as yet for patches applying outside $S (and not directly in $WORKDIR). |
| 738 | xpatch() { |
786 | xpatch() { |
| 739 | |
787 | |
| 740 | debug-print-function $FUNCNAME $* |
788 | debug-print-function ${FUNCNAME} $* |
| 741 | |
789 | |
| 742 | local list="" |
790 | local list= |
| 743 | local list2="" |
791 | local list2= |
| 744 | declare -i plevel |
792 | declare -i plevel |
| 745 | |
793 | |
| 746 | # parse patch sources |
794 | # parse patch sources |
| 747 | for x in $*; do |
795 | for x in $* |
|
|
796 | do |
| 748 | debug-print "$FUNCNAME: parsing parameter $x" |
797 | debug-print "${FUNCNAME}: parsing parameter ${x}" |
| 749 | if [ -f "$x" ]; then |
798 | if [ -f "${x}" ] |
|
|
799 | then |
| 750 | list="$list $x" |
800 | list="${list} ${x}" |
| 751 | elif [ -d "$x" ]; then |
801 | elif [ -d "${x}" ] |
|
|
802 | then |
| 752 | # handles patchdirs like epatch() for now: no recursion. |
803 | # handles patchdirs like epatch() for now: no recursion. |
| 753 | # patches are sorted by filename, so with an xy_foo naming scheme you'll get the right order. |
804 | # patches are sorted by filename, so with an xy_foo naming scheme you'll get the right order. |
| 754 | # only patches with _$ARCH_ or _all_ in their filenames are applied. |
805 | # only patches with _$ARCH_ or _all_ in their filenames are applied. |
| 755 | for file in `ls -A $x`; do |
806 | for file in `ls -A ${x}` |
|
|
807 | do |
| 756 | debug-print "$FUNCNAME: parsing in subdir: file $file" |
808 | debug-print "${FUNCNAME}: parsing in subdir: file ${file}" |
| 757 | if [ -f "$x/$file" ] && [ "${file}" != "${file/_all_}" -o "${file}" != "${file/_$ARCH_}" ]; then |
809 | if [ -f "${x}/${file}" -a "${file}" != "${file/_all_}" -o \ |
|
|
810 | "${file}" != "${file/_$ARCH_}" ] |
|
|
811 | then |
| 758 | list2="$list2 $x/$file" |
812 | list2="${list2} ${x}/${file}" |
| 759 | fi |
813 | fi |
| 760 | done |
814 | done |
| 761 | list="`echo $list2 | sort` $list" |
815 | list="`echo ${list2} | sort` ${list}" |
| 762 | else |
816 | else |
| 763 | die "Couldn't find $x" |
817 | die "Couldn't find ${x}" |
| 764 | fi |
818 | fi |
| 765 | done |
819 | done |
| 766 | |
820 | |
| 767 | debug-print "$FUNCNAME: final list of patches: $list" |
821 | debug-print "${FUNCNAME}: final list of patches: ${list}" |
| 768 | |
822 | |
| 769 | for x in $list; do |
823 | for x in ${list}; |
|
|
824 | do |
| 770 | debug-print "$FUNCNAME: processing $x" |
825 | debug-print "${FUNCNAME}: processing ${x}" |
| 771 | # deal with compressed files. /usr/bin/file is in the system profile, or should be. |
826 | # deal with compressed files. /usr/bin/file is in the system profile, or should be. |
| 772 | case "`/usr/bin/file -b $x`" in |
827 | case "`/usr/bin/file -b ${x}`" in |
| 773 | *gzip*) patchfile="${T}/current.patch"; ungzip -c "$x" > "${patchfile}";; |
828 | *gzip*) |
| 774 | *bzip2*) patchfile="${T}/current.patch"; bunzip2 -c "$x" > "${patchfile}";; |
829 | patchfile="${T}/current.patch" |
| 775 | *text*) patchfile="$x";; |
830 | ungzip -c "${x}" > "${patchfile}" |
|
|
831 | ;; |
|
|
832 | *bzip2*) |
|
|
833 | patchfile="${T}/current.patch" |
|
|
834 | bunzip2 -c "${x}" > "${patchfile}" |
|
|
835 | ;; |
|
|
836 | *text*) |
|
|
837 | patchfile="${x}" |
|
|
838 | ;; |
|
|
839 | *) |
| 776 | *) die "Could not determine filetype of patch $x";; |
840 | die "Could not determine filetype of patch ${x}" |
|
|
841 | ;; |
| 777 | esac |
842 | esac |
| 778 | debug-print "$FUNCNAME: patchfile=$patchfile" |
843 | debug-print "${FUNCNAME}: patchfile=${patchfile}" |
| 779 | |
844 | |
| 780 | # determine patchlevel. supports p0 and higher with either $S or $WORKDIR as base. |
845 | # determine patchlevel. supports p0 and higher with either $S or $WORKDIR as base. |
| 781 | target="`/bin/grep -m 1 '^+++ ' $patchfile`" |
846 | target="`/bin/grep -m 1 '^+++ ' ${patchfile}`" |
| 782 | debug-print "$FUNCNAME: raw target=$target" |
847 | debug-print "${FUNCNAME}: raw target=${target}" |
| 783 | # strip target down to the path/filename, remove leading +++ |
848 | # strip target down to the path/filename, remove leading +++ |
| 784 | target="${target/+++ }"; target="${target%% *}" |
849 | target="${target/+++ }"; target="${target%% *}" |
| 785 | # duplicate slashes are discarded by patch wrt the patchlevel. therefore we need |
850 | # duplicate slashes are discarded by patch wrt the patchlevel. therefore we need |
| 786 | # to discard them as well to calculate the correct patchlevel. |
851 | # to discard them as well to calculate the correct patchlevel. |
| 787 | target="${target//\/\//\/}" |
852 | target="${target//\/\//\/}" |
| 788 | debug-print "$FUNCNAME: stripped target=$target" |
853 | debug-print "${FUNCNAME}: stripped target=${target}" |
| 789 | |
854 | |
| 790 | # look for target |
855 | # look for target |
| 791 | for basedir in "$S" "$WORKDIR" "${PWD}"; do |
856 | for basedir in "${S}" "${WORKDIR}" "${PWD}"; do |
| 792 | debug-print "$FUNCNAME: looking in basedir=$basedir" |
857 | debug-print "${FUNCNAME}: looking in basedir=${basedir}" |
| 793 | cd "$basedir" |
858 | cd "${basedir}" |
| 794 | |
859 | |
| 795 | # try stripping leading directories |
860 | # try stripping leading directories |
| 796 | target2="$target" |
861 | target2="${target}" |
| 797 | plevel=0 |
862 | plevel=0 |
| 798 | debug-print "$FUNCNAME: trying target2=$target2, plevel=$plevel" |
863 | debug-print "${FUNCNAME}: trying target2=${target2}, plevel=${plevel}" |
| 799 | while [ ! -f "$target2" ]; do |
864 | while [ ! -f "${target2}" ] |
|
|
865 | do |
| 800 | target2="${target2#*/}" # removes piece of target2 upto the first occurence of / |
866 | target2="${target2#*/}" # removes piece of target2 upto the first occurence of / |
| 801 | plevel=plevel+1 |
867 | plevel=$((plevel+1)) |
| 802 | debug-print "$FUNCNAME: trying target2=$target2, plevel=$plevel" |
868 | debug-print "${FUNCNAME}: trying target2=${target2}, plevel=${plevel}" |
| 803 | [ "$target2" == "${target2/\/}" ] && break |
869 | [ "${target2}" == "${target2/\/}" ] && break |
| 804 | done |
870 | done |
| 805 | test -f "$target2" && break |
871 | test -f "${target2}" && break |
| 806 | |
872 | |
| 807 | # try stripping filename - needed to support patches creating new files |
873 | # try stripping filename - needed to support patches creating new files |
| 808 | target2="${target%/*}" |
874 | target2="${target%/*}" |
| 809 | plevel=0 |
875 | plevel=0 |
| 810 | debug-print "$FUNCNAME: trying target2=$target2, plevel=$plevel" |
876 | debug-print "${FUNCNAME}: trying target2=${target2}, plevel=${plevel}" |
| 811 | while [ ! -d "$target2" ]; do |
877 | while [ ! -d "${target2}" ] |
|
|
878 | do |
| 812 | target2="${target2#*/}" # removes piece of target2 upto the first occurence of / |
879 | target2="${target2#*/}" # removes piece of target2 upto the first occurence of / |
| 813 | plevel=plevel+1 |
880 | plevel=$((plevel+1)) |
| 814 | debug-print "$FUNCNAME: trying target2=$target2, plevel=$plevel" |
881 | debug-print "${FUNCNAME}: trying target2=${target2}, plevel=${plevel}" |
| 815 | [ "$target2" == "${target2/\/}" ] && break |
882 | [ "${target2}" == "${target2/\/}" ] && break |
| 816 | done |
883 | done |
| 817 | test -d "$target2" && break |
884 | test -d "${target2}" && break |
| 818 | |
885 | |
| 819 | done |
886 | done |
| 820 | |
887 | |
| 821 | test -f "${basedir}/${target2}" || test -d "${basedir}/${target2}" || die "Could not determine patchlevel for $x" |
888 | test -f "${basedir}/${target2}" || test -d "${basedir}/${target2}" \ |
|
|
889 | || die "Could not determine patchlevel for ${x}" |
| 822 | debug-print "$FUNCNAME: determined plevel=$plevel" |
890 | debug-print "${FUNCNAME}: determined plevel=${plevel}" |
| 823 | # do the patching |
891 | # do the patching |
| 824 | ebegin "Applying patch ${x##*/}..." |
892 | ebegin "Applying patch ${x##*/}..." |
| 825 | /usr/bin/patch -p$plevel < "$patchfile" > /dev/null || die "Failed to apply patch $x" |
893 | /usr/bin/patch -p${plevel} < "${patchfile}" > /dev/null \ |
|
|
894 | || die "Failed to apply patch ${x}" |
| 826 | eend $? |
895 | eend $? |
| 827 | |
896 | |
| 828 | done |
897 | done |
| 829 | |
898 | |
|
|
899 | } |
|
|
900 | |
|
|
901 | # for internal use only (unpack_pdv and unpack_makeself) |
|
|
902 | find_unpackable_file() { |
|
|
903 | local src="$1" |
|
|
904 | if [ -z "${src}" ] |
|
|
905 | then |
|
|
906 | src="${DISTDIR}/${A}" |
|
|
907 | else |
|
|
908 | if [ -e "${DISTDIR}/${src}" ] |
|
|
909 | then |
|
|
910 | src="${DISTDIR}/${src}" |
|
|
911 | elif [ -e "${PWD}/${src}" ] |
|
|
912 | then |
|
|
913 | src="${PWD}/${src}" |
|
|
914 | elif [ -e "${src}" ] |
|
|
915 | then |
|
|
916 | src="${src}" |
|
|
917 | fi |
|
|
918 | fi |
|
|
919 | [ ! -e "${src}" ] && die "Could not find requested archive ${src}" |
|
|
920 | echo "${src}" |
|
|
921 | } |
|
|
922 | |
|
|
923 | # Unpack those pesky pdv generated files ... |
|
|
924 | # They're self-unpacking programs with the binary package stuffed in |
|
|
925 | # the middle of the archive. Valve seems to use it a lot ... too bad |
|
|
926 | # it seems to like to segfault a lot :(. So lets take it apart ourselves. |
|
|
927 | # |
|
|
928 | # Usage: unpack_pdv [file to unpack] [size of off_t] |
|
|
929 | # - you have to specify the off_t size ... i have no idea how to extract that |
|
|
930 | # information out of the binary executable myself. basically you pass in |
|
|
931 | # the size of the off_t type (in bytes) on the machine that built the pdv |
|
|
932 | # archive. one way to determine this is by running the following commands: |
|
|
933 | # strings <pdv archive> | grep lseek |
|
|
934 | # strace -elseek <pdv archive> |
|
|
935 | # basically look for the first lseek command (we do the strings/grep because |
|
|
936 | # sometimes the function call is _llseek or something) and steal the 2nd |
|
|
937 | # parameter. here is an example: |
|
|
938 | # root@vapier 0 pdv_unpack # strings hldsupdatetool.bin | grep lseek |
|
|
939 | # lseek |
|
|
940 | # root@vapier 0 pdv_unpack # strace -elseek ./hldsupdatetool.bin |
|
|
941 | # lseek(3, -4, SEEK_END) = 2981250 |
|
|
942 | # thus we would pass in the value of '4' as the second parameter. |
|
|
943 | unpack_pdv() { |
|
|
944 | local src="`find_unpackable_file $1`" |
|
|
945 | local sizeoff_t="$2" |
|
|
946 | |
|
|
947 | [ -z "${sizeoff_t}" ] && die "No idea what off_t size was used for this pdv :(" |
|
|
948 | |
|
|
949 | local shrtsrc="`basename ${src}`" |
|
|
950 | echo ">>> Unpacking ${shrtsrc} to ${PWD}" |
|
|
951 | local metaskip=`tail -c ${sizeoff_t} ${src} | hexdump -e \"%i\"` |
|
|
952 | local tailskip=`tail -c $((${sizeoff_t}*2)) ${src} | head -c ${sizeoff_t} | hexdump -e \"%i\"` |
|
|
953 | |
|
|
954 | # grab metadata for debug reasons |
|
|
955 | local metafile="`mymktemp ${T}`" |
|
|
956 | tail -c +$((${metaskip}+1)) ${src} > ${metafile} |
|
|
957 | |
|
|
958 | # rip out the final file name from the metadata |
|
|
959 | local datafile="`tail -c +$((${metaskip}+1)) ${src} | strings | head -n 1`" |
|
|
960 | datafile="`basename ${datafile}`" |
|
|
961 | |
|
|
962 | # now lets uncompress/untar the file if need be |
|
|
963 | local tmpfile="`mymktemp ${T}`" |
|
|
964 | tail -c +$((${tailskip}+1)) ${src} 2>/dev/null | head -c 512 > ${tmpfile} |
|
|
965 | |
|
|
966 | local iscompressed="`file -b ${tmpfile}`" |
|
|
967 | if [ "${iscompressed:0:8}" == "compress" ] ; then |
|
|
968 | iscompressed=1 |
|
|
969 | mv ${tmpfile}{,.Z} |
|
|
970 | gunzip ${tmpfile} |
|
|
971 | else |
|
|
972 | iscompressed=0 |
|
|
973 | fi |
|
|
974 | local istar="`file -b ${tmpfile}`" |
|
|
975 | if [ "${istar:0:9}" == "POSIX tar" ] ; then |
|
|
976 | istar=1 |
|
|
977 | else |
|
|
978 | istar=0 |
|
|
979 | fi |
|
|
980 | |
|
|
981 | #for some reason gzip dies with this ... dd cant provide buffer fast enough ? |
|
|
982 | #dd if=${src} ibs=${metaskip} count=1 \ |
|
|
983 | # | dd ibs=${tailskip} skip=1 \ |
|
|
984 | # | gzip -dc \ |
|
|
985 | # > ${datafile} |
|
|
986 | if [ ${iscompressed} -eq 1 ] ; then |
|
|
987 | if [ ${istar} -eq 1 ] ; then |
|
|
988 | tail -c +$((${tailskip}+1)) ${src} 2>/dev/null \ |
|
|
989 | | head -c $((${metaskip}-${tailskip})) \ |
|
|
990 | | tar -xzf - |
|
|
991 | else |
|
|
992 | tail -c +$((${tailskip}+1)) ${src} 2>/dev/null \ |
|
|
993 | | head -c $((${metaskip}-${tailskip})) \ |
|
|
994 | | gzip -dc \ |
|
|
995 | > ${datafile} |
|
|
996 | fi |
|
|
997 | else |
|
|
998 | if [ ${istar} -eq 1 ] ; then |
|
|
999 | tail -c +$((${tailskip}+1)) ${src} 2>/dev/null \ |
|
|
1000 | | head -c $((${metaskip}-${tailskip})) \ |
|
|
1001 | | tar --no-same-owner -xf - |
|
|
1002 | else |
|
|
1003 | tail -c +$((${tailskip}+1)) ${src} 2>/dev/null \ |
|
|
1004 | | head -c $((${metaskip}-${tailskip})) \ |
|
|
1005 | > ${datafile} |
|
|
1006 | fi |
|
|
1007 | fi |
|
|
1008 | true |
|
|
1009 | #[ -s "${datafile}" ] || die "failure unpacking pdv ('${metaskip}' '${tailskip}' '${datafile}')" |
|
|
1010 | #assert "failure unpacking pdv ('${metaskip}' '${tailskip}' '${datafile}')" |
| 830 | } |
1011 | } |
| 831 | |
1012 | |
| 832 | # Unpack those pesky makeself generated files ... |
1013 | # Unpack those pesky makeself generated files ... |
| 833 | # They're shell scripts with the binary package tagged onto |
1014 | # They're shell scripts with the binary package tagged onto |
| 834 | # the end of the archive. Loki utilized the format as does |
1015 | # the end of the archive. Loki utilized the format as does |
| … | |
… | |
| 837 | # Usage: unpack_makeself [file to unpack] [offset] |
1018 | # Usage: unpack_makeself [file to unpack] [offset] |
| 838 | # - If the file is not specified then unpack will utilize ${A}. |
1019 | # - If the file is not specified then unpack will utilize ${A}. |
| 839 | # - If the offset is not specified then we will attempt to extract |
1020 | # - If the offset is not specified then we will attempt to extract |
| 840 | # the proper offset from the script itself. |
1021 | # the proper offset from the script itself. |
| 841 | unpack_makeself() { |
1022 | unpack_makeself() { |
| 842 | local src=$1 |
1023 | local src="`find_unpackable_file $1`" |
| 843 | local skip=$2 |
1024 | local skip="$2" |
| 844 | |
1025 | |
| 845 | [ -z "${src}" ] && src=${A} |
|
|
| 846 | [ -e ./${src} ] \ |
|
|
| 847 | && src=${PWD}/${src} \ |
|
|
| 848 | || src=${DISTDIR}/${src} |
|
|
| 849 | local shrtsrc=`basename ${src}` |
1026 | local shrtsrc="`basename ${src}`" |
| 850 | echo ">>> Unpacking ${shrtsrc} to ${PWD}" |
1027 | echo ">>> Unpacking ${shrtsrc} to ${PWD}" |
| 851 | if [ -z "${skip}" ] ; then |
1028 | if [ -z "${skip}" ] |
|
|
1029 | then |
| 852 | local ver="`grep -a '#.*Makeself' ${src} | awk '{print $NF}'`" |
1030 | local ver="`grep -a '#.*Makeself' ${src} | awk '{print $NF}'`" |
| 853 | local skip=0 |
1031 | local skip=0 |
| 854 | case ${ver} in |
1032 | case ${ver} in |
| 855 | 1.5.*) # tested 1.5.{3,4,5} ... guessing 1.5.x series is same |
1033 | 1.5.*) # tested 1.5.{3,4,5} ... guessing 1.5.x series is same |
| 856 | skip=`grep -a ^skip= ${src} | cut -d= -f2` |
1034 | skip=`grep -a ^skip= ${src} | cut -d= -f2` |
| … | |
… | |
| 858 | 2.0|2.0.1) |
1036 | 2.0|2.0.1) |
| 859 | skip=`grep -a ^$'\t'tail ${src} | awk '{print $2}' | cut -b2-` |
1037 | skip=`grep -a ^$'\t'tail ${src} | awk '{print $2}' | cut -b2-` |
| 860 | ;; |
1038 | ;; |
| 861 | 2.1.1) |
1039 | 2.1.1) |
| 862 | skip=`grep -a ^offset= ${src} | awk '{print $2}' | cut -b2-` |
1040 | skip=`grep -a ^offset= ${src} | awk '{print $2}' | cut -b2-` |
|
|
1041 | let skip="skip + 1" |
|
|
1042 | ;; |
|
|
1043 | 2.1.2) |
|
|
1044 | skip=`grep -a ^offset= ${src} | awk '{print $3}' | head -n 1` |
|
|
1045 | let skip="skip + 1" |
|
|
1046 | ;; |
|
|
1047 | 2.1.3) |
|
|
1048 | skip=`grep -a ^offset= ${src} | awk '{print $3}'` |
| 863 | let skip="skip + 1" |
1049 | let skip="skip + 1" |
| 864 | ;; |
1050 | ;; |
| 865 | *) |
1051 | *) |
| 866 | eerror "I'm sorry, but I was unable to support the Makeself file." |
1052 | eerror "I'm sorry, but I was unable to support the Makeself file." |
| 867 | eerror "The version I detected was '${ver}'." |
1053 | eerror "The version I detected was '${ver}'." |
| … | |
… | |
| 871 | ;; |
1057 | ;; |
| 872 | esac |
1058 | esac |
| 873 | debug-print "Detected Makeself version ${ver} ... using ${skip} as offset" |
1059 | debug-print "Detected Makeself version ${ver} ... using ${skip} as offset" |
| 874 | fi |
1060 | fi |
| 875 | |
1061 | |
| 876 | # we do this because otherwise a failure in gzip will cause 0 bytes to be sent |
1062 | # lets grab the first few bytes of the file to figure out what kind of archive it is |
| 877 | # to tar which will make tar not extract anything and exit with 0 |
1063 | local tmpfile="`mymktemp ${T}`" |
|
|
1064 | tail -n +${skip} ${src} 2>/dev/null | head -c 512 > ${tmpfile} |
|
|
1065 | local filetype="`file -b ${tmpfile}`" |
|
|
1066 | case ${filetype} in |
|
|
1067 | *tar\ archive) |
|
|
1068 | tail -n +${skip} ${src} | tar --no-same-owner -xf - |
|
|
1069 | ;; |
|
|
1070 | bzip2*) |
| 878 | local out="`tail +${skip} ${src} | gzip -cd | tar -x --no-same-owner -v -f -`" |
1071 | tail -n +${skip} ${src} | bzip2 -dc | tar --no-same-owner -xf - |
|
|
1072 | ;; |
|
|
1073 | gzip*) |
|
|
1074 | tail -n +${skip} ${src} | tar --no-same-owner -xzf - |
|
|
1075 | ;; |
|
|
1076 | *) |
|
|
1077 | false |
|
|
1078 | ;; |
|
|
1079 | esac |
| 879 | [ -z "${out}" ] && die "failure unpacking makeself ${shrtsrc} ('${ver}' +${skip})" |
1080 | assert "failure unpacking (${filetype}) makeself ${shrtsrc} ('${ver}' +${skip})" |
| 880 | } |
1081 | } |
|
|
1082 | |
|
|
1083 | # Display a license for user to accept. |
|
|
1084 | # |
|
|
1085 | # Usage: check_license [license] |
|
|
1086 | # - If the file is not specified then ${LICENSE} is used. |
|
|
1087 | check_license() { |
|
|
1088 | local lic=$1 |
|
|
1089 | if [ -z "${lic}" ] ; then |
|
|
1090 | lic="${PORTDIR}/licenses/${LICENSE}" |
|
|
1091 | else |
|
|
1092 | if [ -e "${PORTDIR}/licenses/${src}" ] ; then |
|
|
1093 | lic="${PORTDIR}/licenses/${src}" |
|
|
1094 | elif [ -e "${PWD}/${src}" ] ; then |
|
|
1095 | lic="${PWD}/${src}" |
|
|
1096 | elif [ -e "${src}" ] ; then |
|
|
1097 | lic="${src}" |
|
|
1098 | fi |
|
|
1099 | fi |
|
|
1100 | [ ! -f "${lic}" ] && die "Could not find requested license ${src}" |
|
|
1101 | local l="`basename ${lic}`" |
|
|
1102 | |
|
|
1103 | # here is where we check for the licenses the user already |
|
|
1104 | # accepted ... if we don't find a match, we make the user accept |
|
|
1105 | local alic |
|
|
1106 | for alic in ${ACCEPT_LICENSE} ; do |
|
|
1107 | [ "${alic}" == "*" ] && return 0 |
|
|
1108 | [ "${alic}" == "${l}" ] && return 0 |
|
|
1109 | done |
|
|
1110 | |
|
|
1111 | local licmsg="`mymktemp ${T}`" |
|
|
1112 | cat << EOF > ${licmsg} |
|
|
1113 | ********************************************************** |
|
|
1114 | The following license outlines the terms of use of this |
|
|
1115 | package. You MUST accept this license for installation to |
|
|
1116 | continue. When you are done viewing, hit 'q'. If you |
|
|
1117 | CTRL+C out of this, the install will not run! |
|
|
1118 | ********************************************************** |
|
|
1119 | |
|
|
1120 | EOF |
|
|
1121 | cat ${lic} >> ${licmsg} |
|
|
1122 | ${PAGER:-less} ${licmsg} || die "Could not execute pager (${PAGER}) to accept ${lic}" |
|
|
1123 | einfon "Do you accept the terms of this license (${l})? [yes/no] " |
|
|
1124 | read alic |
|
|
1125 | case ${alic} in |
|
|
1126 | yes|Yes|y|Y) |
|
|
1127 | return 0 |
|
|
1128 | ;; |
|
|
1129 | *) |
|
|
1130 | echo;echo;echo |
|
|
1131 | eerror "You MUST accept the license to continue! Exiting!" |
|
|
1132 | die "Failed to accept license" |
|
|
1133 | ;; |
|
|
1134 | esac |
|
|
1135 | } |