| 1 | # Copyright 1999-2004 Gentoo Foundation |
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.103 2004/09/17 10:37:58 kugelfang Exp $ |
3 | # $Header: /var/cvsroot/gentoo-x86/eclass/eutils.eclass,v 1.114 2004/10/06 04:21:08 usata 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. |
| … | |
… | |
| 112 | # to point to the latest version of the library present. |
112 | # to point to the latest version of the library present. |
| 113 | # |
113 | # |
| 114 | # <azarah@gentoo.org> (26 Oct 2002) |
114 | # <azarah@gentoo.org> (26 Oct 2002) |
| 115 | # |
115 | # |
| 116 | gen_usr_ldscript() { |
116 | gen_usr_ldscript() { |
|
|
117 | local libdir="$(get_libdir)" |
| 117 | # Just make sure it exists |
118 | # Just make sure it exists |
| 118 | dodir /usr/$(get_libdir) |
119 | dodir /usr/${libdir} |
| 119 | |
120 | |
| 120 | cat > ${D}/usr/$(get_libdir)/$1 <<"END_LDSCRIPT" |
121 | cat > "${D}/usr/${libdir}/${1}" << END_LDSCRIPT |
| 121 | /* GNU ld script |
122 | /* GNU ld script |
| 122 | Because Gentoo have critical dynamic libraries |
123 | Because Gentoo have critical dynamic libraries |
| 123 | in /lib, and the static versions in /usr/lib, we |
124 | in /lib, and the static versions in /usr/lib, we |
| 124 | need to have a "fake" dynamic lib in /usr/lib, |
125 | need to have a "fake" dynamic lib in /usr/lib, |
| 125 | otherwise we run into linking problems. |
126 | otherwise we run into linking problems. |
| 126 | See bug #4411 on http://bugs.gentoo.org/ for |
127 | See bug #4411 on http://bugs.gentoo.org/ for |
| 127 | more info. */ |
128 | more info. */ |
|
|
129 | GROUP ( /${libdir}/${1} ) |
| 128 | END_LDSCRIPT |
130 | END_LDSCRIPT |
| 129 | |
131 | fperms a+x "/usr/${libdir}/${1}" |
| 130 | echo "GROUP ( /$(get_libdir)/libxxx )" >> ${D}/usr/$(get_libdir)/$1 |
|
|
| 131 | dosed "s:libxxx:$1:" /usr/$(get_libdir)/$1 |
|
|
| 132 | |
|
|
| 133 | return 0 |
|
|
| 134 | } |
132 | } |
| 135 | |
133 | |
| 136 | # Simple function to draw a line consisting of '=' the same length as $* |
134 | # Simple function to draw a line consisting of '=' the same length as $* |
| 137 | # |
135 | # |
| 138 | # <azarah@gentoo.org> (11 Nov 2002) |
136 | # <azarah@gentoo.org> (11 Nov 2002) |
| … | |
… | |
| 558 | touch ${tmp} |
556 | touch ${tmp} |
| 559 | echo ${tmp} |
557 | echo ${tmp} |
| 560 | fi |
558 | fi |
| 561 | } |
559 | } |
| 562 | |
560 | |
| 563 | # Small wrapper for getent (Linux) and nidump (Mac OS X) |
561 | # Small wrapper for getent (Linux), nidump (Mac OS X), |
| 564 | # used in enewuser()/enewgroup() |
562 | # and pw (FreeBSD) used in enewuser()/enewgroup() |
| 565 | # Joe Jezak <josejx@gmail.com> and usata@gentoo.org |
563 | # Joe Jezak <josejx@gmail.com> and usata@gentoo.org |
|
|
564 | # FBSD stuff: Aaron Walker <ka0ttic@gentoo.org> |
| 566 | # |
565 | # |
| 567 | # egetent(database, key) |
566 | # egetent(database, key) |
| 568 | egetent() { |
567 | egetent() { |
| 569 | if use macos || use ppc-macos ; then |
568 | if useq macos || useq ppc-macos ; then |
| 570 | case "$2" in |
569 | case "$2" in |
| 571 | *[!0-9]*) # Non numeric |
570 | *[!0-9]*) # Non numeric |
| 572 | nidump $1 . | awk -F":" "{ if (\$1 ~ /^$2$/) {print \$0;exit;} }" |
571 | nidump $1 . | awk -F":" "{ if (\$1 ~ /^$2$/) {print \$0;exit;} }" |
| 573 | ;; |
572 | ;; |
| 574 | *) # Numeric |
573 | *) # Numeric |
| 575 | nidump $1 . | awk -F":" "{ if (\$3 == $2) {print \$0;exit;} }" |
574 | nidump $1 . | awk -F":" "{ if (\$3 == $2) {print \$0;exit;} }" |
| 576 | ;; |
575 | ;; |
| 577 | esac |
576 | esac |
|
|
577 | elif useq x86-fbsd ; then |
|
|
578 | local action |
|
|
579 | if [ "$1" == "passwd" ] |
|
|
580 | then |
|
|
581 | action="user" |
| 578 | else |
582 | else |
|
|
583 | action="group" |
|
|
584 | fi |
|
|
585 | pw show "${action}" "$2" -q |
|
|
586 | else |
|
|
587 | which nscd >& /dev/null && nscd -i "$1" |
| 579 | getent $1 $2 |
588 | getent "$1" "$2" |
| 580 | fi |
589 | fi |
| 581 | } |
590 | } |
| 582 | |
591 | |
| 583 | # Simplify/standardize adding users to the system |
592 | # Simplify/standardize adding users to the system |
| 584 | # vapier@gentoo.org |
593 | # vapier@gentoo.org |
| … | |
… | |
| 630 | euid="next" |
639 | euid="next" |
| 631 | fi |
640 | fi |
| 632 | if [ "${euid}" == "next" ] |
641 | if [ "${euid}" == "next" ] |
| 633 | then |
642 | then |
| 634 | local pwrange |
643 | local pwrange |
| 635 | if use macos || use ppc-macos ; then |
644 | if [ "${USERLAND}" == "BSD" ] ; then |
| 636 | pwrange="`jot 898 101`" |
645 | pwrange="`jot 898 101`" |
| 637 | else |
646 | else |
| 638 | pwrange="`seq 101 999`" |
647 | pwrange="`seq 101 999`" |
| 639 | fi |
648 | fi |
| 640 | for euid in ${pwrange} ; do |
649 | for euid in ${pwrange} ; do |
| … | |
… | |
| 652 | then |
661 | then |
| 653 | eerror "A shell was specified but it does not exist !" |
662 | eerror "A shell was specified but it does not exist !" |
| 654 | die "${eshell} does not exist" |
663 | die "${eshell} does not exist" |
| 655 | fi |
664 | fi |
| 656 | else |
665 | else |
|
|
666 | if [ "${USERLAND}" == "BSD" ] |
|
|
667 | then |
|
|
668 | eshell="/usr/bin/false" |
|
|
669 | else |
| 657 | eshell="/bin/false" |
670 | eshell="/bin/false" |
|
|
671 | fi |
| 658 | fi |
672 | fi |
| 659 | einfo " - Shell: ${eshell}" |
673 | einfo " - Shell: ${eshell}" |
| 660 | opts="${opts} -s ${eshell}" |
674 | opts="${opts} -s ${eshell}" |
| 661 | |
675 | |
| 662 | # handle homedir |
676 | # handle homedir |
| … | |
… | |
| 671 | # handle groups |
685 | # handle groups |
| 672 | local egroups="$1"; shift |
686 | local egroups="$1"; shift |
| 673 | if [ ! -z "${egroups}" ] |
687 | if [ ! -z "${egroups}" ] |
| 674 | then |
688 | then |
| 675 | local oldifs="${IFS}" |
689 | local oldifs="${IFS}" |
|
|
690 | local defgroup="" exgroups="" |
|
|
691 | |
| 676 | export IFS="," |
692 | export IFS="," |
| 677 | for g in ${egroups} |
693 | for g in ${egroups} |
| 678 | do |
694 | do |
| 679 | if [ -z "`egetent group \"${g}\"`" ] |
695 | if [ -z "`egetent group \"${g}\"`" ] |
| 680 | then |
696 | then |
| 681 | eerror "You must add group ${g} to the system first" |
697 | eerror "You must add group ${g} to the system first" |
| 682 | die "${g} is not a valid GID" |
698 | die "${g} is not a valid GID" |
| 683 | fi |
699 | fi |
|
|
700 | if [ -z "${defgroup}" ] |
|
|
701 | then |
|
|
702 | defgroup="${g}" |
|
|
703 | else |
|
|
704 | exgroups="${exgroups},${g}" |
|
|
705 | fi |
| 684 | done |
706 | done |
| 685 | export IFS="${oldifs}" |
707 | export IFS="${oldifs}" |
|
|
708 | |
| 686 | opts="${opts} -g ${egroups}" |
709 | opts="${opts} -g ${defgroup}" |
|
|
710 | if [ ! -z "${exgroups}" ] |
|
|
711 | then |
|
|
712 | opts="${opts} -G ${exgroups:1}" |
|
|
713 | fi |
| 687 | else |
714 | else |
| 688 | egroups="(none)" |
715 | egroups="(none)" |
| 689 | fi |
716 | fi |
| 690 | einfo " - Groups: ${egroups}" |
717 | einfo " - Groups: ${egroups}" |
| 691 | |
718 | |
| 692 | # handle extra and add the user |
719 | # handle extra and add the user |
| 693 | local eextra="$@" |
720 | local eextra="$@" |
| 694 | local oldsandbox="${SANDBOX_ON}" |
721 | local oldsandbox="${SANDBOX_ON}" |
| 695 | export SANDBOX_ON="0" |
722 | export SANDBOX_ON="0" |
| 696 | if use macos || use ppc-macos ; |
723 | if useq macos || useq ppc-macos ; |
| 697 | then |
724 | then |
| 698 | ### Make the user |
725 | ### Make the user |
| 699 | if [ -z "${eextra}" ] |
726 | if [ -z "${eextra}" ] |
| 700 | then |
727 | then |
| 701 | dscl . create /users/${euser} uid ${euid} |
728 | dscl . create /users/${euser} uid ${euid} |
| … | |
… | |
| 703 | dscl . create /users/${euser} home ${ehome} |
730 | dscl . create /users/${euser} home ${ehome} |
| 704 | dscl . create /users/${euser} realname "added by portage for ${PN}" |
731 | dscl . create /users/${euser} realname "added by portage for ${PN}" |
| 705 | ### Add the user to the groups specified |
732 | ### Add the user to the groups specified |
| 706 | for g in ${egroups} |
733 | for g in ${egroups} |
| 707 | do |
734 | do |
|
|
735 | # $egroups is , delimited, not space |
|
|
736 | ewarn "This is code is wrong; someone on the OS X team should fix it" |
| 708 | dscl . merge /groups/${g} users ${euser} |
737 | dscl . merge /groups/${g} users ${euser} |
| 709 | done |
738 | done |
| 710 | else |
739 | else |
| 711 | einfo "Extra options are not supported on macos yet" |
740 | einfo "Extra options are not supported on macos yet" |
| 712 | einfo "Please report the ebuild along with the info below" |
741 | einfo "Please report the ebuild along with the info below" |
| 713 | einfo "eextra: ${eextra}" |
742 | einfo "eextra: ${eextra}" |
| 714 | die "Required function missing" |
743 | die "Required function missing" |
|
|
744 | fi |
|
|
745 | elif use x86-fbsd ; then |
|
|
746 | if [ -z "${eextra}" ] |
|
|
747 | then |
|
|
748 | pw useradd ${euser} ${opts} \ |
|
|
749 | -c "added by portage for ${PN}" \ |
|
|
750 | die "enewuser failed" |
|
|
751 | else |
|
|
752 | einfo " - Extra: ${eextra}" |
|
|
753 | pw useradd ${euser} ${opts} \ |
|
|
754 | -c ${eextra} || die "enewuser failed" |
| 715 | fi |
755 | fi |
| 716 | else |
756 | else |
| 717 | if [ -z "${eextra}" ] |
757 | if [ -z "${eextra}" ] |
| 718 | then |
758 | then |
| 719 | useradd ${opts} ${euser} \ |
759 | useradd ${opts} ${euser} \ |
| … | |
… | |
| 770 | then |
810 | then |
| 771 | if [ "${egid}" -gt 0 ] |
811 | if [ "${egid}" -gt 0 ] |
| 772 | then |
812 | then |
| 773 | if [ -z "`egetent group ${egid}`" ] |
813 | if [ -z "`egetent group ${egid}`" ] |
| 774 | then |
814 | then |
| 775 | if use macos || use ppc-macos ; then |
815 | if useq macos || useq ppc-macos ; then |
| 776 | opts="${opts} ${egid}" |
816 | opts="${opts} ${egid}" |
| 777 | else |
817 | else |
| 778 | opts="${opts} -g ${egid}" |
818 | opts="${opts} -g ${egid}" |
| 779 | fi |
819 | fi |
| 780 | else |
820 | else |
| … | |
… | |
| 794 | opts="${opts} ${eextra}" |
834 | opts="${opts} ${eextra}" |
| 795 | |
835 | |
| 796 | # add the group |
836 | # add the group |
| 797 | local oldsandbox="${SANDBOX_ON}" |
837 | local oldsandbox="${SANDBOX_ON}" |
| 798 | export SANDBOX_ON="0" |
838 | export SANDBOX_ON="0" |
| 799 | if use macos || use ppc-macos ; |
839 | if useq macos || useq ppc-macos ; |
| 800 | then |
840 | then |
| 801 | if [ ! -z "${eextra}" ]; |
841 | if [ ! -z "${eextra}" ]; |
| 802 | then |
842 | then |
| 803 | einfo "Extra options are not supported on macos yet" |
843 | einfo "Extra options are not supported on macos yet" |
| 804 | einfo "Please report the ebuild along with the info below" |
844 | einfo "Please report the ebuild along with the info below" |
| … | |
… | |
| 813 | [ -z "`egetent group ${egid}`" ] && break |
853 | [ -z "`egetent group ${egid}`" ] && break |
| 814 | done |
854 | done |
| 815 | esac |
855 | esac |
| 816 | dscl . create /groups/${egroup} gid ${egid} |
856 | dscl . create /groups/${egroup} gid ${egid} |
| 817 | dscl . create /groups/${egroup} passwd '*' |
857 | dscl . create /groups/${egroup} passwd '*' |
|
|
858 | elif use x86-fbsd ; then |
|
|
859 | case ${egid} in |
|
|
860 | *[!0-9]*) # Non numeric |
|
|
861 | for egid in `jot 898 101`; do |
|
|
862 | [ -z "`egetent group ${egid}`" ] && break |
|
|
863 | done |
|
|
864 | esac |
|
|
865 | pw groupadd ${egroup} -g ${egid} || die "enewgroup failed" |
| 818 | else |
866 | else |
| 819 | groupadd ${opts} ${egroup} || die "enewgroup failed" |
867 | groupadd ${opts} ${egroup} || die "enewgroup failed" |
| 820 | fi |
868 | fi |
| 821 | export SANDBOX_ON="${oldsandbox}" |
869 | export SANDBOX_ON="${oldsandbox}" |
| 822 | } |
870 | } |
| … | |
… | |
| 1038 | # Unpack those pesky makeself generated files ... |
1086 | # Unpack those pesky makeself generated files ... |
| 1039 | # They're shell scripts with the binary package tagged onto |
1087 | # They're shell scripts with the binary package tagged onto |
| 1040 | # the end of the archive. Loki utilized the format as does |
1088 | # the end of the archive. Loki utilized the format as does |
| 1041 | # many other game companies. |
1089 | # many other game companies. |
| 1042 | # |
1090 | # |
| 1043 | # Usage: unpack_makeself [file to unpack] [offset] |
1091 | # Usage: unpack_makeself [file to unpack] [offset] [tail|dd] |
| 1044 | # - If the file is not specified then unpack will utilize ${A}. |
1092 | # - If the file is not specified then unpack will utilize ${A}. |
| 1045 | # - If the offset is not specified then we will attempt to extract |
1093 | # - If the offset is not specified then we will attempt to extract |
| 1046 | # the proper offset from the script itself. |
1094 | # the proper offset from the script itself. |
| 1047 | unpack_makeself() { |
1095 | unpack_makeself() { |
| 1048 | local src="`find_unpackable_file $1`" |
1096 | local src="$(find_unpackable_file "$1")" |
| 1049 | local skip="$2" |
1097 | local skip="$2" |
|
|
1098 | local exe="$3" |
| 1050 | |
1099 | |
| 1051 | local shrtsrc="`basename ${src}`" |
1100 | local shrtsrc="$(basename "${src}")" |
| 1052 | echo ">>> Unpacking ${shrtsrc} to ${PWD}" |
1101 | echo ">>> Unpacking ${shrtsrc} to ${PWD}" |
| 1053 | if [ -z "${skip}" ] |
1102 | if [ -z "${skip}" ] |
| 1054 | then |
1103 | then |
| 1055 | local ver="`grep -a '#.*Makeself' ${src} | awk '{print $NF}'`" |
1104 | local ver="`grep -a '#.*Makeself' ${src} | awk '{print $NF}'`" |
| 1056 | local skip=0 |
1105 | local skip=0 |
|
|
1106 | exe=tail |
| 1057 | case ${ver} in |
1107 | case ${ver} in |
| 1058 | 1.5.*) # tested 1.5.{3,4,5} ... guessing 1.5.x series is same |
1108 | 1.5.*) # tested 1.5.{3,4,5} ... guessing 1.5.x series is same |
| 1059 | skip=`grep -a ^skip= ${src} | cut -d= -f2` |
1109 | skip=$(grep -a ^skip= "${src}" | cut -d= -f2) |
| 1060 | ;; |
1110 | ;; |
| 1061 | 2.0|2.0.1) |
1111 | 2.0|2.0.1) |
| 1062 | skip=`grep -a ^$'\t'tail ${src} | awk '{print $2}' | cut -b2-` |
1112 | skip=$(grep -a ^$'\t'tail "${src}" | awk '{print $2}' | cut -b2-) |
| 1063 | ;; |
1113 | ;; |
| 1064 | 2.1.1) |
1114 | 2.1.1) |
| 1065 | skip=`grep -a ^offset= ${src} | awk '{print $2}' | cut -b2-` |
1115 | skip=$(grep -a ^offset= "${src}" | awk '{print $2}' | cut -b2-) |
| 1066 | let skip="skip + 1" |
1116 | let skip="skip + 1" |
| 1067 | ;; |
1117 | ;; |
| 1068 | 2.1.2) |
1118 | 2.1.2) |
| 1069 | skip=`grep -a ^offset= ${src} | awk '{print $3}' | head -n 1` |
1119 | skip=$(grep -a ^offset= "${src}" | awk '{print $3}' | head -n 1) |
| 1070 | let skip="skip + 1" |
1120 | let skip="skip + 1" |
| 1071 | ;; |
1121 | ;; |
| 1072 | 2.1.3) |
1122 | 2.1.3) |
| 1073 | skip=`grep -a ^offset= ${src} | awk '{print $3}'` |
1123 | skip=`grep -a ^offset= "${src}" | awk '{print $3}'` |
| 1074 | let skip="skip + 1" |
1124 | let skip="skip + 1" |
|
|
1125 | ;; |
|
|
1126 | 2.1.4) |
|
|
1127 | skip=$(grep -a offset=.*head.*wc "${src}" | awk '{print $3}' | head -n 1) |
|
|
1128 | skip=$(head -n ${skip} "${src}" | wc -c) |
|
|
1129 | exe="dd" |
| 1075 | ;; |
1130 | ;; |
| 1076 | *) |
1131 | *) |
| 1077 | eerror "I'm sorry, but I was unable to support the Makeself file." |
1132 | eerror "I'm sorry, but I was unable to support the Makeself file." |
| 1078 | eerror "The version I detected was '${ver}'." |
1133 | eerror "The version I detected was '${ver}'." |
| 1079 | eerror "Please file a bug about the file ${shrtsrc} at" |
1134 | eerror "Please file a bug about the file ${shrtsrc} at" |
| … | |
… | |
| 1081 | die "makeself version '${ver}' not supported" |
1136 | die "makeself version '${ver}' not supported" |
| 1082 | ;; |
1137 | ;; |
| 1083 | esac |
1138 | esac |
| 1084 | debug-print "Detected Makeself version ${ver} ... using ${skip} as offset" |
1139 | debug-print "Detected Makeself version ${ver} ... using ${skip} as offset" |
| 1085 | fi |
1140 | fi |
|
|
1141 | case ${exe} in |
|
|
1142 | tail) exe="tail -n +${skip} '${src}'";; |
|
|
1143 | dd) exe="dd ibs=${skip} skip=1 obs=1024 conv=sync if='${src}'";; |
|
|
1144 | *) die "makeself cant handle exe '${exe}'" |
|
|
1145 | esac |
| 1086 | |
1146 | |
| 1087 | # lets grab the first few bytes of the file to figure out what kind of archive it is |
1147 | # lets grab the first few bytes of the file to figure out what kind of archive it is |
| 1088 | local tmpfile="`mymktemp ${T}`" |
1148 | local tmpfile="$(mymktemp "${T}")" |
| 1089 | tail -n +${skip} ${src} 2>/dev/null | head -c 512 > ${tmpfile} |
1149 | eval ${exe} 2>/dev/null | head -c 512 > "${tmpfile}" |
| 1090 | local filetype="`file -b ${tmpfile}`" |
1150 | local filetype="$(file -b "${tmpfile}")" |
| 1091 | case ${filetype} in |
1151 | case ${filetype} in |
| 1092 | *tar\ archive) |
1152 | *tar\ archive) |
| 1093 | tail -n +${skip} ${src} | tar --no-same-owner -xf - |
1153 | eval ${exe} | tar --no-same-owner -xf - |
| 1094 | ;; |
1154 | ;; |
| 1095 | bzip2*) |
1155 | bzip2*) |
| 1096 | tail -n +${skip} ${src} | bzip2 -dc | tar --no-same-owner -xf - |
1156 | eval ${exe} | bzip2 -dc | tar --no-same-owner -xf - |
| 1097 | ;; |
1157 | ;; |
| 1098 | gzip*) |
1158 | gzip*) |
| 1099 | tail -n +${skip} ${src} | tar --no-same-owner -xzf - |
1159 | eval ${exe} | tar --no-same-owner -xzf - |
| 1100 | ;; |
1160 | ;; |
| 1101 | compress*) |
1161 | compress*) |
| 1102 | tail -n +${skip} ${src} | gunzip | tar --no-same-owner -xf - |
1162 | eval ${exe} | gunzip | tar --no-same-owner -xf - |
| 1103 | ;; |
1163 | ;; |
| 1104 | *) |
1164 | *) |
| 1105 | eerror "Unknown filetype \"${filetype}\" ?" |
1165 | eerror "Unknown filetype \"${filetype}\" ?" |
| 1106 | false |
1166 | false |
| 1107 | ;; |
1167 | ;; |
| … | |
… | |
| 1129 | [ ! -f "${lic}" ] && die "Could not find requested license ${src}" |
1189 | [ ! -f "${lic}" ] && die "Could not find requested license ${src}" |
| 1130 | local l="`basename ${lic}`" |
1190 | local l="`basename ${lic}`" |
| 1131 | |
1191 | |
| 1132 | # here is where we check for the licenses the user already |
1192 | # here is where we check for the licenses the user already |
| 1133 | # accepted ... if we don't find a match, we make the user accept |
1193 | # accepted ... if we don't find a match, we make the user accept |
|
|
1194 | local shopts=$- |
| 1134 | local alic |
1195 | local alic |
|
|
1196 | set -o noglob #so that bash doesn't expand "*" |
| 1135 | for alic in "${ACCEPT_LICENSE}" ; do |
1197 | for alic in ${ACCEPT_LICENSE} ; do |
| 1136 | [ "${alic}" == "*" ] && return 0 |
1198 | if [[ ${alic} == * || ${alic} == ${l} ]]; then |
| 1137 | [ "${alic}" == "${l}" ] && return 0 |
1199 | set +o noglob; set -${shopts} #reset old shell opts |
|
|
1200 | return 0 |
|
|
1201 | fi |
| 1138 | done |
1202 | done |
|
|
1203 | set +o noglob; set -$shopts #reset old shell opts |
| 1139 | |
1204 | |
| 1140 | local licmsg="`mymktemp ${T}`" |
1205 | local licmsg="`mymktemp ${T}`" |
| 1141 | cat << EOF > ${licmsg} |
1206 | cat << EOF > ${licmsg} |
| 1142 | ********************************************************** |
1207 | ********************************************************** |
| 1143 | The following license outlines the terms of use of this |
1208 | The following license outlines the terms of use of this |
| … | |
… | |
| 1384 | unset LINGUAS |
1449 | unset LINGUAS |
| 1385 | else |
1450 | else |
| 1386 | export LINGUAS="${newls}" |
1451 | export LINGUAS="${newls}" |
| 1387 | fi |
1452 | fi |
| 1388 | } |
1453 | } |
|
|
1454 | |
|
|
1455 | # moved from kernel.eclass since they are generally useful outside of |
|
|
1456 | # kernel.eclass -iggy (20041002) |
|
|
1457 | |
|
|
1458 | # the following functions are useful in kernel module ebuilds, etc. |
|
|
1459 | # for an example see ivtv or drbd ebuilds |
|
|
1460 | |
|
|
1461 | # set's ARCH to match what the kernel expects |
|
|
1462 | set_arch_to_kernel() { |
|
|
1463 | export EUTILS_ECLASS_PORTAGE_ARCH="${ARCH}" |
|
|
1464 | case ${ARCH} in |
|
|
1465 | x86) export ARCH="i386";; |
|
|
1466 | amd64) export ARCH="x86_64";; |
|
|
1467 | hppa) export ARCH="parisc";; |
|
|
1468 | mips) export ARCH="mips";; |
|
|
1469 | *) export ARCH="${ARCH}";; |
|
|
1470 | esac |
|
|
1471 | } |
|
|
1472 | |
|
|
1473 | # set's ARCH back to what portage expects |
|
|
1474 | set_arch_to_portage() { |
|
|
1475 | export ARCH="${EUTILS_ECLASS_PORTAGE_ARCH}" |
|
|
1476 | } |
|
|
1477 | |
|
|
1478 | # Jeremy Huddleston <eradicator@gentoo.org>: |
|
|
1479 | # preserve_old_lib /path/to/libblah.so.0 |
|
|
1480 | # preserve_old_lib_notify /path/to/libblah.so.0 |
|
|
1481 | # |
|
|
1482 | # These functions are useful when a lib in your package changes --soname. Such |
|
|
1483 | # an example might be from libogg.so.0 to libogg.so.1. Removing libogg.so.0 |
|
|
1484 | # would break packages that link against it. Most people get around this |
|
|
1485 | # by using the portage SLOT mechanism, but that is not always a relevant |
|
|
1486 | # solution, so instead you can add the following to your ebuilds: |
|
|
1487 | # |
|
|
1488 | # src_install() { |
|
|
1489 | # ... |
|
|
1490 | # preserve_old_lib /usr/$(get_libdir)/libogg.so.0 |
|
|
1491 | # ... |
|
|
1492 | # } |
|
|
1493 | # |
|
|
1494 | # pkg_postinst() { |
|
|
1495 | # ... |
|
|
1496 | # preserve_old_lib_notify /usr/$(get_libdir)/libogg.so.0 |
|
|
1497 | # ... |
|
|
1498 | # } |
|
|
1499 | |
|
|
1500 | preserve_old_lib() { |
|
|
1501 | LIB=$1 |
|
|
1502 | |
|
|
1503 | if [ -n "${LIB}" -a -f "${ROOT}${LIB}" ]; then |
|
|
1504 | SONAME=`basename ${LIB}` |
|
|
1505 | DIRNAME=`dirname ${LIB}` |
|
|
1506 | |
|
|
1507 | dodir ${DIRNAME} |
|
|
1508 | cp ${ROOT}${LIB} ${D}${DIRNAME} |
|
|
1509 | touch ${D}${LIB} |
|
|
1510 | fi |
|
|
1511 | } |
|
|
1512 | |
|
|
1513 | preserve_old_lib_notify() { |
|
|
1514 | LIB=$1 |
|
|
1515 | |
|
|
1516 | if [ -n "${LIB}" -a -f "${ROOT}${LIB}" ]; then |
|
|
1517 | SONAME=`basename ${LIB}` |
|
|
1518 | |
|
|
1519 | einfo "An old version of an installed library was detected on your system." |
|
|
1520 | einfo "In order to avoid breaking packages that link against is, this older version" |
|
|
1521 | einfo "is not being removed. In order to make full use of this newer version," |
|
|
1522 | einfo "you will need to execute the following command:" |
|
|
1523 | einfo " revdep-rebuild --soname ${SONAME}" |
|
|
1524 | einfo |
|
|
1525 | einfo "After doing that, you can safely remove ${LIB}" |
|
|
1526 | fi |
|
|
1527 | } |