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