| 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.73 2003/12/01 20:13:00 vapier Exp $ |
3 | # $Header: /var/cvsroot/gentoo-x86/eclass/eutils.eclass,v 1.83 2004/02/27 20:39:19 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 |
| … | |
… | |
| 422 | jobs="$((`grep "^cpus active" /proc/cpuinfo | sed -e "s/^.*: //"` * 2))" |
422 | jobs="$((`grep "^cpus active" /proc/cpuinfo | sed -e "s/^.*: //"` * 2))" |
| 423 | else |
423 | else |
| 424 | jobs=2 |
424 | jobs=2 |
| 425 | fi |
425 | fi |
| 426 | |
426 | |
| 427 | elif [ "${ARCH}" = "ppc" ] |
427 | elif [ "${ARCH}" = "ppc" -o "${ARCH}" = "ppc64" ] |
| 428 | then |
428 | then |
| 429 | # ppc has "processor", but only when compiled with SMP |
429 | # ppc has "processor", but only when compiled with SMP |
| 430 | if [ "`grep -c "^processor" /proc/cpuinfo`" -eq 1 ] |
430 | if [ "`grep -c "^processor" /proc/cpuinfo`" -eq 1 ] |
| 431 | then |
431 | then |
| 432 | jobs="$((`grep -c ^processor /proc/cpuinfo` * 2))" |
432 | jobs="$((`grep -c ^processor /proc/cpuinfo` * 2))" |
| … | |
… | |
| 456 | fi |
456 | fi |
| 457 | fi |
457 | fi |
| 458 | } |
458 | } |
| 459 | |
459 | |
| 460 | # Cheap replacement for when debianutils (and thus mktemp) |
460 | # Cheap replacement for when debianutils (and thus mktemp) |
| 461 | # do not exist on the users system |
461 | # does 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" |
| … | |
… | |
| 517 | local euid="$1"; shift |
517 | local euid="$1"; shift |
| 518 | if [ ! -z "${euid}" ] && [ "${euid}" != "-1" ] |
518 | if [ ! -z "${euid}" ] && [ "${euid}" != "-1" ] |
| 519 | then |
519 | then |
| 520 | if [ "${euid}" -gt 0 ] |
520 | if [ "${euid}" -gt 0 ] |
| 521 | then |
521 | then |
|
|
522 | chown ${euid} ${tmpfile} >& /dev/null |
|
|
523 | realuser="`ls -l ${tmpfile} | awk '{print $3}'`" |
|
|
524 | if [ "${realuser//[0-9]}" != "" ] |
|
|
525 | then |
|
|
526 | euid="uid is taken; using next available" |
|
|
527 | else |
| 522 | opts="${opts} -u ${euid}" |
528 | opts="${opts} -u ${euid}" |
|
|
529 | fi |
| 523 | else |
530 | else |
| 524 | eerror "Userid given but is not greater than 0 !" |
531 | eerror "Userid given but is not greater than 0 !" |
| 525 | die "${euid} is not a valid UID" |
532 | die "${euid} is not a valid UID" |
| 526 | fi |
533 | fi |
| 527 | else |
534 | else |
| … | |
… | |
| 639 | local egid="$1"; shift |
646 | local egid="$1"; shift |
| 640 | if [ ! -z "${egid}" ] |
647 | if [ ! -z "${egid}" ] |
| 641 | then |
648 | then |
| 642 | if [ "${egid}" -gt 0 ] |
649 | if [ "${egid}" -gt 0 ] |
| 643 | then |
650 | then |
|
|
651 | chgrp ${egid} ${tmpfile} >& /dev/null |
|
|
652 | realuser="`ls -l ${tmpfile} | awk '{print $3}'`" |
|
|
653 | if [ "${realuser//[0-9]}" != "" ] |
|
|
654 | then |
|
|
655 | euid="gid is taken; using next available" |
|
|
656 | else |
| 644 | opts="${opts} -g ${egid}" |
657 | opts="${opts} -g ${egid}" |
|
|
658 | fi |
| 645 | else |
659 | else |
| 646 | eerror "Groupid given but is not greater than 0 !" |
660 | eerror "Groupid given but is not greater than 0 !" |
| 647 | die "${egid} is not a valid GID" |
661 | die "${egid} is not a valid GID" |
| 648 | fi |
662 | fi |
| 649 | else |
663 | else |
| … | |
… | |
| 696 | |
710 | |
| 697 | local exec="${1}" |
711 | local exec="${1}" |
| 698 | local name="${2:-${PN}}" |
712 | local name="${2:-${PN}}" |
| 699 | local icon="${3:-${PN}.png}" |
713 | local icon="${3:-${PN}.png}" |
| 700 | local type="${4}" |
714 | local type="${4}" |
|
|
715 | local subdir="${6}" |
| 701 | local path="${5:-${GAMES_PREFIX}}" |
716 | local path="${5:-${GAMES_PREFIX}}" |
| 702 | if [ -z "${type}" ] |
717 | if [ -z "${type}" ] |
| 703 | then |
718 | then |
| 704 | case ${CATEGORY} in |
719 | case ${CATEGORY} in |
| 705 | "app-emulation") |
720 | "app-emulation") |
| 706 | type=Emulator |
721 | type=Emulator |
|
|
722 | subdir="Games" |
| 707 | ;; |
723 | ;; |
| 708 | "games-"*) |
724 | "games-"*) |
| 709 | type=Game |
725 | type=Game |
|
|
726 | subdir="Games" |
| 710 | ;; |
727 | ;; |
| 711 | "net-"*) |
728 | "net-"*) |
| 712 | type=Network; |
729 | type=Network |
|
|
730 | subdir="${type}" |
| 713 | ;; |
731 | ;; |
| 714 | *) |
732 | *) |
| 715 | type= |
733 | type= |
|
|
734 | subdir= |
| 716 | ;; |
735 | ;; |
| 717 | esac |
736 | esac |
| 718 | fi |
737 | fi |
| 719 | local desktop="${T}/${exec}.desktop" |
738 | local desktop="${T}/${exec}.desktop" |
| 720 | |
739 | |
| … | |
… | |
| 750 | # done |
769 | # done |
| 751 | #fi |
770 | #fi |
| 752 | |
771 | |
| 753 | if [ -d "/usr/share/applnk" ] |
772 | if [ -d "/usr/share/applnk" ] |
| 754 | then |
773 | then |
| 755 | insinto /usr/share/applnk/${type} |
774 | insinto /usr/share/applnk/${subdir} |
| 756 | doins ${desktop} |
775 | doins ${desktop} |
| 757 | fi |
776 | fi |
| 758 | |
777 | |
| 759 | return 0 |
778 | return 0 |
| 760 | } |
|
|
| 761 | |
|
|
| 762 | # new convenience patch wrapper function to eventually replace epatch(), |
|
|
| 763 | # $PATCHES, $PATCHES1, src_unpack:patch, src_unpack:autopatch and |
|
|
| 764 | # /usr/bin/patch |
|
|
| 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}" ] |
|
|
| 799 | then |
|
|
| 800 | list="${list} ${x}" |
|
|
| 801 | elif [ -d "${x}" ] |
|
|
| 802 | then |
|
|
| 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 |
|
|
| 812 | list2="${list2} ${x}/${file}" |
|
|
| 813 | fi |
|
|
| 814 | done |
|
|
| 815 | list="`echo ${list2} | sort` ${list}" |
|
|
| 816 | else |
|
|
| 817 | die "Couldn't find ${x}" |
|
|
| 818 | fi |
|
|
| 819 | done |
|
|
| 820 | |
|
|
| 821 | debug-print "${FUNCNAME}: final list of patches: ${list}" |
|
|
| 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 | } |
779 | } |
| 900 | |
780 | |
| 901 | # for internal use only (unpack_pdv and unpack_makeself) |
781 | # for internal use only (unpack_pdv and unpack_makeself) |
| 902 | find_unpackable_file() { |
782 | find_unpackable_file() { |
| 903 | local src="$1" |
783 | local src="$1" |
| … | |
… | |
| 1101 | local l="`basename ${lic}`" |
981 | local l="`basename ${lic}`" |
| 1102 | |
982 | |
| 1103 | # here is where we check for the licenses the user already |
983 | # 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 |
984 | # accepted ... if we don't find a match, we make the user accept |
| 1105 | local alic |
985 | local alic |
| 1106 | for alic in ${ACCEPT_LICENSE} ; do |
986 | for alic in "${ACCEPT_LICENSE}" ; do |
| 1107 | [ "${alic}" == "*" ] && return 0 |
987 | [ "${alic}" == "*" ] && return 0 |
| 1108 | [ "${alic}" == "${l}" ] && return 0 |
988 | [ "${alic}" == "${l}" ] && return 0 |
| 1109 | done |
989 | done |
| 1110 | |
990 | |
| 1111 | local licmsg="`mymktemp ${T}`" |
991 | local licmsg="`mymktemp ${T}`" |
| … | |
… | |
| 1131 | eerror "You MUST accept the license to continue! Exiting!" |
1011 | eerror "You MUST accept the license to continue! Exiting!" |
| 1132 | die "Failed to accept license" |
1012 | die "Failed to accept license" |
| 1133 | ;; |
1013 | ;; |
| 1134 | esac |
1014 | esac |
| 1135 | } |
1015 | } |
|
|
1016 | |
|
|
1017 | # Aquire cd(s) for those lovely cd-based emerges. Yes, this violates |
|
|
1018 | # the whole 'non-interactive' policy, but damnit I want CD support ! |
|
|
1019 | # |
|
|
1020 | # with these cdrom functions we handle all the user interaction and |
|
|
1021 | # standardize everything. all you have to do is call cdrom_get_cds() |
|
|
1022 | # and when the function returns, you can assume that the cd has been |
|
|
1023 | # found at CDROM_ROOT. |
|
|
1024 | # |
|
|
1025 | # normally the cdrom functions will refer to the cds as 'cd #1', 'cd #2', |
|
|
1026 | # etc... if you want to give the cds better names, then just export |
|
|
1027 | # the CDROM_NAME_X variables before calling cdrom_get_cds(). |
|
|
1028 | # |
|
|
1029 | # for those multi cd ebuilds, see the cdrom_load_next_cd() below. |
|
|
1030 | # |
|
|
1031 | # Usage: cdrom_get_cds <file on cd1> [file on cd2] [file on cd3] [...] |
|
|
1032 | # - this will attempt to locate a cd based upon a file that is on |
|
|
1033 | # the cd ... the more files you give this function, the more cds |
|
|
1034 | # the cdrom functions will handle |
|
|
1035 | cdrom_get_cds() { |
|
|
1036 | # first we figure out how many cds we're dealing with by |
|
|
1037 | # the # of files they gave us |
|
|
1038 | local cdcnt=0 |
|
|
1039 | local f= |
|
|
1040 | for f in "$@" ; do |
|
|
1041 | cdcnt=$((cdcnt + 1)) |
|
|
1042 | export CDROM_CHECK_${cdcnt}="$f" |
|
|
1043 | done |
|
|
1044 | export CDROM_TOTAL_CDS=${cdcnt} |
|
|
1045 | export CDROM_CURRENT_CD=1 |
|
|
1046 | |
|
|
1047 | # now we see if the user gave use CD_ROOT ... |
|
|
1048 | # if they did, let's just believe them that it's correct |
|
|
1049 | if [ ! -z "${CD_ROOT}" ] ; then |
|
|
1050 | export CDROM_ROOT="${CD_ROOT}" |
|
|
1051 | einfo "Found CD #${CDROM_CURRENT_CD} root at ${CDROM_ROOT}" |
|
|
1052 | return |
|
|
1053 | fi |
|
|
1054 | # do the same for CD_ROOT_X |
|
|
1055 | if [ ! -z "${CD_ROOT_1}" ] ; then |
|
|
1056 | local var= |
|
|
1057 | cdcnt=0 |
|
|
1058 | while [ ${cdcnt} -lt ${CDROM_TOTAL_CDS} ] ; do |
|
|
1059 | cdcnt=$((cdcnt + 1)) |
|
|
1060 | var="CD_ROOT_${cdcnt}" |
|
|
1061 | if [ -z "${!var}" ] ; then |
|
|
1062 | eerror "You must either use just the CD_ROOT" |
|
|
1063 | eerror "or specify ALL the CD_ROOT_X variables." |
|
|
1064 | eerror "In this case, you will need ${CDROM_TOTAL_CDS} CD_ROOT_X variables." |
|
|
1065 | die "could not locate CD_ROOT_${cdcnt}" |
|
|
1066 | fi |
|
|
1067 | export CDROM_ROOTS_${cdcnt}="${!var}" |
|
|
1068 | done |
|
|
1069 | export CDROM_ROOT=${CDROM_ROOTS_1} |
|
|
1070 | einfo "Found CD #${CDROM_CURRENT_CD} root at ${CDROM_ROOT}" |
|
|
1071 | return |
|
|
1072 | fi |
|
|
1073 | |
|
|
1074 | if [ ${CDROM_TOTAL_CDS} -eq 1 ] ; then |
|
|
1075 | einfon "This ebuild will need the " |
|
|
1076 | if [ -z "${CDROM_NAME}" ] ; then |
|
|
1077 | echo "cdrom for ${PN}." |
|
|
1078 | else |
|
|
1079 | echo "${CDROM_NAME}." |
|
|
1080 | fi |
|
|
1081 | echo |
|
|
1082 | einfo "If you do not have the CD, but have the data files" |
|
|
1083 | einfo "mounted somewhere on your filesystem, just export" |
|
|
1084 | einfo "the variable CD_ROOT so that it points to the" |
|
|
1085 | einfo "directory containing the files." |
|
|
1086 | echo |
|
|
1087 | else |
|
|
1088 | einfo "This package will need access to ${CDROM_TOTAL_CDS} cds." |
|
|
1089 | cdcnt=0 |
|
|
1090 | while [ ${cdcnt} -lt ${CDROM_TOTAL_CDS} ] ; do |
|
|
1091 | cdcnt=$((cdcnt + 1)) |
|
|
1092 | var="CDROM_NAME_${cdcnt}" |
|
|
1093 | [ ! -z "${!var}" ] && einfo " CD ${cdcnt}: ${!var}" |
|
|
1094 | done |
|
|
1095 | echo |
|
|
1096 | einfo "If you do not have the CDs, but have the data files" |
|
|
1097 | einfo "mounted somewhere on your filesystem, just export" |
|
|
1098 | einfo "the following variables so they point to the right place:" |
|
|
1099 | einfon "" |
|
|
1100 | cdcnt=0 |
|
|
1101 | while [ ${cdcnt} -lt ${CDROM_TOTAL_CDS} ] ; do |
|
|
1102 | cdcnt=$((cdcnt + 1)) |
|
|
1103 | echo -n " CD_ROOT_${cdcnt}" |
|
|
1104 | done |
|
|
1105 | echo |
|
|
1106 | einfo "Or, if you have all the files in the same place, or" |
|
|
1107 | einfo "you only have one cdrom, you can export CD_ROOT" |
|
|
1108 | einfo "and that place will be used as the same data source" |
|
|
1109 | einfo "for all the CDs." |
|
|
1110 | echo |
|
|
1111 | fi |
|
|
1112 | export CDROM_CURRENT_CD=0 |
|
|
1113 | cdrom_load_next_cd |
|
|
1114 | } |
|
|
1115 | |
|
|
1116 | # this is only used when you need access to more than one cd. |
|
|
1117 | # when you have finished using the first cd, just call this function. |
|
|
1118 | # when it returns, CDROM_ROOT will be pointing to the second cd. |
|
|
1119 | # remember, you can only go forward in the cd chain, you can't go back. |
|
|
1120 | cdrom_load_next_cd() { |
|
|
1121 | export CDROM_CURRENT_CD=$((CDROM_CURRENT_CD + 1)) |
|
|
1122 | local var= |
|
|
1123 | |
|
|
1124 | if [ ! -z "${CD_ROOT}" ] ; then |
|
|
1125 | einfo "Using same root as before for CD #${CDROM_CURRENT_CD}" |
|
|
1126 | return |
|
|
1127 | fi |
|
|
1128 | |
|
|
1129 | unset CDROM_ROOT |
|
|
1130 | var=CDROM_ROOTS_${CDROM_CURRENT_CD} |
|
|
1131 | if [ -z "${!var}" ] ; then |
|
|
1132 | var="CDROM_CHECK_${CDROM_CURRENT_CD}" |
|
|
1133 | cdrom_locate_file_on_cd ${!var} |
|
|
1134 | else |
|
|
1135 | export CDROM_ROOT="${!var}" |
|
|
1136 | fi |
|
|
1137 | |
|
|
1138 | einfo "Found CD #${CDROM_CURRENT_CD} root at ${CDROM_ROOT}" |
|
|
1139 | } |
|
|
1140 | |
|
|
1141 | # this is used internally by the cdrom_get_cds() and cdrom_load_next_cd() |
|
|
1142 | # functions. this should *never* be called from an ebuild. |
|
|
1143 | # all it does is try to locate a give file on a cd ... if the cd isn't |
|
|
1144 | # found, then a message asking for the user to insert the cdrom will be |
|
|
1145 | # displayed and we'll hang out here until: |
|
|
1146 | # (1) the file is found on a mounted cdrom |
|
|
1147 | # (2) the user hits CTRL+C |
|
|
1148 | cdrom_locate_file_on_cd() { |
|
|
1149 | while [ -z "${CDROM_ROOT}" ] ; do |
|
|
1150 | local dir="$(dirname ${@})" |
|
|
1151 | local file="$(basename ${@})" |
|
|
1152 | local mline="" |
|
|
1153 | local showedmsg=0 |
|
|
1154 | |
|
|
1155 | for mline in `mount | egrep -e '(iso|cdrom)' | awk '{print $3}'` ; do |
|
|
1156 | [ -d "${mline}/${dir}" ] || continue |
|
|
1157 | [ ! -z "$(find ${mline}/${dir} -iname ${file} -maxdepth 1)" ] \ |
|
|
1158 | && export CDROM_ROOT=${mline} |
|
|
1159 | done |
|
|
1160 | |
|
|
1161 | if [ -z "${CDROM_ROOT}" ] ; then |
|
|
1162 | echo |
|
|
1163 | if [ ${showedmsg} -eq 0 ] ; then |
|
|
1164 | if [ ${CDROM_TOTAL_CDS} -eq 1 ] ; then |
|
|
1165 | if [ -z "${CDROM_NAME}" ] ; then |
|
|
1166 | einfo "Please insert the cdrom for ${PN} now !" |
|
|
1167 | else |
|
|
1168 | einfo "Please insert the ${CDROM_NAME} cdrom now !" |
|
|
1169 | fi |
|
|
1170 | else |
|
|
1171 | if [ -z "${CDROM_NAME_1}" ] ; then |
|
|
1172 | einfo "Please insert cd #${CDROM_CURRENT_CD} for ${PN} now !" |
|
|
1173 | else |
|
|
1174 | local var="CDROM_NAME_${CDROM_CURRENT_CD}" |
|
|
1175 | einfo "Please insert+mount the ${!var} cdrom now !" |
|
|
1176 | fi |
|
|
1177 | fi |
|
|
1178 | showedmsg=1 |
|
|
1179 | fi |
|
|
1180 | einfo "Press return to scan for the cd again" |
|
|
1181 | einfo "or hit CTRL+C to abort the emerge." |
|
|
1182 | read |
|
|
1183 | fi |
|
|
1184 | done |
|
|
1185 | } |