| 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.105 2004/09/19 21:36:46 vapier Exp $ |
3 | # $Header: /var/cvsroot/gentoo-x86/eclass/eutils.eclass,v 1.118 2004/10/13 14:33:01 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. |
| … | |
… | |
| 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. */ |
| 128 | GROUP ( /$(get_libdir)/$1 ) |
129 | GROUP ( /${libdir}/${1} ) |
| 129 | END_LDSCRIPT |
130 | END_LDSCRIPT |
|
|
131 | fperms a+x "/usr/${libdir}/${1}" |
| 130 | } |
132 | } |
| 131 | |
133 | |
| 132 | # 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 $* |
| 133 | # |
135 | # |
| 134 | # <azarah@gentoo.org> (11 Nov 2002) |
136 | # <azarah@gentoo.org> (11 Nov 2002) |
| … | |
… | |
| 539 | |
541 | |
| 540 | # Cheap replacement for when debianutils (and thus mktemp) |
542 | # Cheap replacement for when debianutils (and thus mktemp) |
| 541 | # does not exist on the users system |
543 | # does not exist on the users system |
| 542 | # vapier@gentoo.org |
544 | # vapier@gentoo.org |
| 543 | # |
545 | # |
| 544 | # Takes just 1 parameter (the directory to create tmpfile in) |
546 | # Takes just 1 optional parameter (the directory to create tmpfile in) |
| 545 | mymktemp() { |
547 | emktemp() { |
| 546 | local topdir="$1" |
548 | local topdir="$1" |
| 547 | |
549 | |
| 548 | [ -z "${topdir}" ] && topdir=/tmp |
550 | if [ -z "${topdir}" ] |
| 549 | if [ "`which mktemp 2>/dev/null`" ] |
|
|
| 550 | then |
551 | then |
|
|
552 | [ -z "${T}" ] \ |
|
|
553 | && topdir="/tmp" \ |
|
|
554 | || topdir="${T}" |
|
|
555 | fi |
|
|
556 | |
|
|
557 | if [ -z "$(type -p mktemp)" ] |
|
|
558 | then |
|
|
559 | local tmp=/ |
|
|
560 | while [ -e "${tmp}" ] ; do |
|
|
561 | tmp="${topdir}/tmp.${RANDOM}.${RANDOM}.${RANDOM}" |
|
|
562 | done |
|
|
563 | touch "${tmp}" |
|
|
564 | echo "${tmp}" |
|
|
565 | else |
| 551 | mktemp -p ${topdir} |
566 | mktemp -p "${topdir}" |
| 552 | else |
|
|
| 553 | local tmp="${topdir}/tmp.${RANDOM}.${RANDOM}.${RANDOM}" |
|
|
| 554 | touch ${tmp} |
|
|
| 555 | echo ${tmp} |
|
|
| 556 | fi |
567 | fi |
| 557 | } |
568 | } |
| 558 | |
569 | |
| 559 | # Small wrapper for getent (Linux) and nidump (Mac OS X) |
570 | # Small wrapper for getent (Linux), nidump (Mac OS X), |
| 560 | # used in enewuser()/enewgroup() |
571 | # and pw (FreeBSD) used in enewuser()/enewgroup() |
| 561 | # Joe Jezak <josejx@gmail.com> and usata@gentoo.org |
572 | # Joe Jezak <josejx@gmail.com> and usata@gentoo.org |
|
|
573 | # FBSD stuff: Aaron Walker <ka0ttic@gentoo.org> |
| 562 | # |
574 | # |
| 563 | # egetent(database, key) |
575 | # egetent(database, key) |
| 564 | egetent() { |
576 | egetent() { |
| 565 | if use macos || use ppc-macos ; then |
577 | if useq macos || useq ppc-macos ; then |
| 566 | case "$2" in |
578 | case "$2" in |
| 567 | *[!0-9]*) # Non numeric |
579 | *[!0-9]*) # Non numeric |
| 568 | nidump $1 . | awk -F":" "{ if (\$1 ~ /^$2$/) {print \$0;exit;} }" |
580 | nidump $1 . | awk -F":" "{ if (\$1 ~ /^$2$/) {print \$0;exit;} }" |
| 569 | ;; |
581 | ;; |
| 570 | *) # Numeric |
582 | *) # Numeric |
| 571 | nidump $1 . | awk -F":" "{ if (\$3 == $2) {print \$0;exit;} }" |
583 | nidump $1 . | awk -F":" "{ if (\$3 == $2) {print \$0;exit;} }" |
| 572 | ;; |
584 | ;; |
| 573 | esac |
585 | esac |
|
|
586 | elif useq x86-fbsd ; then |
|
|
587 | local action |
|
|
588 | if [ "$1" == "passwd" ] |
|
|
589 | then |
|
|
590 | action="user" |
| 574 | else |
591 | else |
|
|
592 | action="group" |
|
|
593 | fi |
|
|
594 | pw show "${action}" "$2" -q |
|
|
595 | else |
|
|
596 | which nscd >& /dev/null && nscd -i "$1" |
| 575 | getent $1 $2 |
597 | getent "$1" "$2" |
| 576 | fi |
598 | fi |
| 577 | } |
599 | } |
| 578 | |
600 | |
| 579 | # Simplify/standardize adding users to the system |
601 | # Simplify/standardize adding users to the system |
| 580 | # vapier@gentoo.org |
602 | # vapier@gentoo.org |
| … | |
… | |
| 626 | euid="next" |
648 | euid="next" |
| 627 | fi |
649 | fi |
| 628 | if [ "${euid}" == "next" ] |
650 | if [ "${euid}" == "next" ] |
| 629 | then |
651 | then |
| 630 | local pwrange |
652 | local pwrange |
| 631 | if use macos || use ppc-macos ; then |
653 | if [ "${USERLAND}" == "BSD" ] ; then |
| 632 | pwrange="`jot 898 101`" |
654 | pwrange="`jot 898 101`" |
| 633 | else |
655 | else |
| 634 | pwrange="`seq 101 999`" |
656 | pwrange="`seq 101 999`" |
| 635 | fi |
657 | fi |
| 636 | for euid in ${pwrange} ; do |
658 | for euid in ${pwrange} ; do |
| … | |
… | |
| 648 | then |
670 | then |
| 649 | eerror "A shell was specified but it does not exist !" |
671 | eerror "A shell was specified but it does not exist !" |
| 650 | die "${eshell} does not exist" |
672 | die "${eshell} does not exist" |
| 651 | fi |
673 | fi |
| 652 | else |
674 | else |
|
|
675 | if [ "${USERLAND}" == "BSD" ] |
|
|
676 | then |
|
|
677 | eshell="/usr/bin/false" |
|
|
678 | else |
| 653 | eshell="/bin/false" |
679 | eshell="/bin/false" |
|
|
680 | fi |
| 654 | fi |
681 | fi |
| 655 | einfo " - Shell: ${eshell}" |
682 | einfo " - Shell: ${eshell}" |
| 656 | opts="${opts} -s ${eshell}" |
683 | opts="${opts} -s ${eshell}" |
| 657 | |
684 | |
| 658 | # handle homedir |
685 | # handle homedir |
| … | |
… | |
| 667 | # handle groups |
694 | # handle groups |
| 668 | local egroups="$1"; shift |
695 | local egroups="$1"; shift |
| 669 | if [ ! -z "${egroups}" ] |
696 | if [ ! -z "${egroups}" ] |
| 670 | then |
697 | then |
| 671 | local oldifs="${IFS}" |
698 | local oldifs="${IFS}" |
|
|
699 | local defgroup="" exgroups="" |
|
|
700 | |
| 672 | export IFS="," |
701 | export IFS="," |
| 673 | for g in ${egroups} |
702 | for g in ${egroups} |
| 674 | do |
703 | do |
|
|
704 | export IFS="${oldifs}" |
| 675 | if [ -z "`egetent group \"${g}\"`" ] |
705 | if [ -z "`egetent group \"${g}\"`" ] |
| 676 | then |
706 | then |
| 677 | eerror "You must add group ${g} to the system first" |
707 | eerror "You must add group ${g} to the system first" |
| 678 | die "${g} is not a valid GID" |
708 | die "${g} is not a valid GID" |
| 679 | fi |
709 | fi |
|
|
710 | if [ -z "${defgroup}" ] |
|
|
711 | then |
|
|
712 | defgroup="${g}" |
|
|
713 | else |
|
|
714 | exgroups="${exgroups},${g}" |
|
|
715 | fi |
|
|
716 | export IFS="," |
| 680 | done |
717 | done |
| 681 | export IFS="${oldifs}" |
718 | export IFS="${oldifs}" |
|
|
719 | |
| 682 | opts="${opts} -g ${egroups}" |
720 | opts="${opts} -g ${defgroup}" |
|
|
721 | if [ ! -z "${exgroups}" ] |
|
|
722 | then |
|
|
723 | opts="${opts} -G ${exgroups:1}" |
|
|
724 | fi |
| 683 | else |
725 | else |
| 684 | egroups="(none)" |
726 | egroups="(none)" |
| 685 | fi |
727 | fi |
| 686 | einfo " - Groups: ${egroups}" |
728 | einfo " - Groups: ${egroups}" |
| 687 | |
729 | |
| 688 | # handle extra and add the user |
730 | # handle extra and add the user |
| 689 | local eextra="$@" |
731 | local eextra="$@" |
| 690 | local oldsandbox="${SANDBOX_ON}" |
732 | local oldsandbox="${SANDBOX_ON}" |
| 691 | export SANDBOX_ON="0" |
733 | export SANDBOX_ON="0" |
| 692 | if use macos || use ppc-macos ; |
734 | if useq macos || useq ppc-macos ; |
| 693 | then |
735 | then |
| 694 | ### Make the user |
736 | ### Make the user |
| 695 | if [ -z "${eextra}" ] |
737 | if [ -z "${eextra}" ] |
| 696 | then |
738 | then |
| 697 | dscl . create /users/${euser} uid ${euid} |
739 | dscl . create /users/${euser} uid ${euid} |
| 698 | dscl . create /users/${euser} shell ${eshell} |
740 | dscl . create /users/${euser} shell ${eshell} |
| 699 | dscl . create /users/${euser} home ${ehome} |
741 | dscl . create /users/${euser} home ${ehome} |
| 700 | dscl . create /users/${euser} realname "added by portage for ${PN}" |
742 | dscl . create /users/${euser} realname "added by portage for ${PN}" |
| 701 | ### Add the user to the groups specified |
743 | ### Add the user to the groups specified |
|
|
744 | local oldifs="${IFS}" |
|
|
745 | export IFS="," |
| 702 | for g in ${egroups} |
746 | for g in ${egroups} |
| 703 | do |
747 | do |
| 704 | dscl . merge /groups/${g} users ${euser} |
748 | dscl . merge /groups/${g} users ${euser} |
| 705 | done |
749 | done |
|
|
750 | export IFS="${oldifs}" |
| 706 | else |
751 | else |
| 707 | einfo "Extra options are not supported on macos yet" |
752 | einfo "Extra options are not supported on macos yet" |
| 708 | einfo "Please report the ebuild along with the info below" |
753 | einfo "Please report the ebuild along with the info below" |
| 709 | einfo "eextra: ${eextra}" |
754 | einfo "eextra: ${eextra}" |
| 710 | die "Required function missing" |
755 | die "Required function missing" |
|
|
756 | fi |
|
|
757 | elif use x86-fbsd ; then |
|
|
758 | if [ -z "${eextra}" ] |
|
|
759 | then |
|
|
760 | pw useradd ${euser} ${opts} \ |
|
|
761 | -c "added by portage for ${PN}" \ |
|
|
762 | die "enewuser failed" |
|
|
763 | else |
|
|
764 | einfo " - Extra: ${eextra}" |
|
|
765 | pw useradd ${euser} ${opts} \ |
|
|
766 | -c ${eextra} || die "enewuser failed" |
| 711 | fi |
767 | fi |
| 712 | else |
768 | else |
| 713 | if [ -z "${eextra}" ] |
769 | if [ -z "${eextra}" ] |
| 714 | then |
770 | then |
| 715 | useradd ${opts} ${euser} \ |
771 | useradd ${opts} ${euser} \ |
| … | |
… | |
| 766 | then |
822 | then |
| 767 | if [ "${egid}" -gt 0 ] |
823 | if [ "${egid}" -gt 0 ] |
| 768 | then |
824 | then |
| 769 | if [ -z "`egetent group ${egid}`" ] |
825 | if [ -z "`egetent group ${egid}`" ] |
| 770 | then |
826 | then |
| 771 | if use macos || use ppc-macos ; then |
827 | if useq macos || useq ppc-macos ; then |
| 772 | opts="${opts} ${egid}" |
828 | opts="${opts} ${egid}" |
| 773 | else |
829 | else |
| 774 | opts="${opts} -g ${egid}" |
830 | opts="${opts} -g ${egid}" |
| 775 | fi |
831 | fi |
| 776 | else |
832 | else |
| … | |
… | |
| 790 | opts="${opts} ${eextra}" |
846 | opts="${opts} ${eextra}" |
| 791 | |
847 | |
| 792 | # add the group |
848 | # add the group |
| 793 | local oldsandbox="${SANDBOX_ON}" |
849 | local oldsandbox="${SANDBOX_ON}" |
| 794 | export SANDBOX_ON="0" |
850 | export SANDBOX_ON="0" |
| 795 | if use macos || use ppc-macos ; |
851 | if useq macos || useq ppc-macos ; |
| 796 | then |
852 | then |
| 797 | if [ ! -z "${eextra}" ]; |
853 | if [ ! -z "${eextra}" ]; |
| 798 | then |
854 | then |
| 799 | einfo "Extra options are not supported on macos yet" |
855 | einfo "Extra options are not supported on macos yet" |
| 800 | einfo "Please report the ebuild along with the info below" |
856 | einfo "Please report the ebuild along with the info below" |
| … | |
… | |
| 809 | [ -z "`egetent group ${egid}`" ] && break |
865 | [ -z "`egetent group ${egid}`" ] && break |
| 810 | done |
866 | done |
| 811 | esac |
867 | esac |
| 812 | dscl . create /groups/${egroup} gid ${egid} |
868 | dscl . create /groups/${egroup} gid ${egid} |
| 813 | dscl . create /groups/${egroup} passwd '*' |
869 | dscl . create /groups/${egroup} passwd '*' |
|
|
870 | elif use x86-fbsd ; then |
|
|
871 | case ${egid} in |
|
|
872 | *[!0-9]*) # Non numeric |
|
|
873 | for egid in `jot 898 101`; do |
|
|
874 | [ -z "`egetent group ${egid}`" ] && break |
|
|
875 | done |
|
|
876 | esac |
|
|
877 | pw groupadd ${egroup} -g ${egid} || die "enewgroup failed" |
| 814 | else |
878 | else |
| 815 | groupadd ${opts} ${egroup} || die "enewgroup failed" |
879 | groupadd ${opts} ${egroup} || die "enewgroup failed" |
| 816 | fi |
880 | fi |
| 817 | export SANDBOX_ON="${oldsandbox}" |
881 | export SANDBOX_ON="${oldsandbox}" |
| 818 | } |
882 | } |
| … | |
… | |
| 830 | } |
894 | } |
| 831 | |
895 | |
| 832 | # Make a desktop file ! |
896 | # Make a desktop file ! |
| 833 | # Great for making those icons in kde/gnome startmenu ! |
897 | # Great for making those icons in kde/gnome startmenu ! |
| 834 | # Amaze your friends ! Get the women ! Join today ! |
898 | # Amaze your friends ! Get the women ! Join today ! |
| 835 | # gnome2 /usr/share/applications |
|
|
| 836 | # gnome1 /usr/share/gnome/apps/ |
|
|
| 837 | # KDE ${KDEDIR}/share/applnk /usr/share/applnk |
|
|
| 838 | # |
899 | # |
| 839 | # make_desktop_entry(<binary>, [name], [icon], [type], [path]) |
900 | # make_desktop_entry(<binary>, [name], [icon], [type], [path]) |
| 840 | # |
901 | # |
| 841 | # binary: what binary does the app run with ? |
902 | # binary: what binary does the app run with ? |
| 842 | # name: the name that will show up in the menu |
903 | # name: the name that will show up in the menu |
| 843 | # icon: give your little like a pretty little icon ... |
904 | # icon: give your little like a pretty little icon ... |
| 844 | # this can be relative (to /usr/share/pixmaps) or |
905 | # this can be relative (to /usr/share/pixmaps) or |
| 845 | # a full path to an icon |
906 | # a full path to an icon |
| 846 | # type: what kind of application is this ? for categories: |
907 | # type: what kind of application is this ? for categories: |
| 847 | # http://www.freedesktop.org/standards/menu-spec/ |
908 | # http://www.freedesktop.org/standards/menu-spec/ |
| 848 | # path: if your app needs to startup in a specific dir |
909 | # path: if your app needs to startup in a specific dir |
| 849 | make_desktop_entry() { |
910 | make_desktop_entry() { |
| 850 | [ -z "$1" ] && eerror "You must specify the executable" && return 1 |
911 | [ -z "$1" ] && eerror "make_desktop_entry: You must specify the executable" && return 1 |
| 851 | |
912 | |
| 852 | local exec="${1}" |
913 | local exec="${1}" |
| 853 | local name="${2:-${PN}}" |
914 | local name="${2:-${PN}}" |
| 854 | local icon="${3:-${PN}.png}" |
915 | local icon="${3:-${PN}.png}" |
| 855 | local type="${4}" |
916 | local type="${4}" |
| … | |
… | |
| 887 | Exec=${exec} |
948 | Exec=${exec} |
| 888 | Path=${path} |
949 | Path=${path} |
| 889 | Icon=${icon} |
950 | Icon=${icon} |
| 890 | Categories=Application;${type};" > "${desktop}" |
951 | Categories=Application;${type};" > "${desktop}" |
| 891 | |
952 | |
| 892 | if [ -d "/usr/share/applications" ] |
|
|
| 893 | then |
|
|
| 894 | insinto /usr/share/applications |
953 | insinto /usr/share/applications |
| 895 | doins "${desktop}" |
954 | doins "${desktop}" |
| 896 | fi |
|
|
| 897 | |
|
|
| 898 | #if [ -d "/usr/share/gnome/apps" ] |
|
|
| 899 | #then |
|
|
| 900 | # insinto /usr/share/gnome/apps/Games |
|
|
| 901 | # doins ${desktop} |
|
|
| 902 | #fi |
|
|
| 903 | |
|
|
| 904 | #if [ ! -z "`ls /usr/kde/* 2>/dev/null`" ] |
|
|
| 905 | #then |
|
|
| 906 | # for ver in /usr/kde/* |
|
|
| 907 | # do |
|
|
| 908 | # insinto ${ver}/share/applnk/Games |
|
|
| 909 | # doins ${desktop} |
|
|
| 910 | # done |
|
|
| 911 | #fi |
|
|
| 912 | |
|
|
| 913 | if [ -d "/usr/share/applnk" ] |
|
|
| 914 | then |
|
|
| 915 | insinto /usr/share/applnk/${subdir} |
|
|
| 916 | doins "${desktop}" |
|
|
| 917 | fi |
|
|
| 918 | |
955 | |
| 919 | return 0 |
956 | return 0 |
| 920 | } |
957 | } |
| 921 | |
958 | |
| 922 | # for internal use only (unpack_pdv and unpack_makeself) |
959 | # for internal use only (unpack_pdv and unpack_makeself) |
| … | |
… | |
| 971 | echo ">>> Unpacking ${shrtsrc} to ${PWD}" |
1008 | echo ">>> Unpacking ${shrtsrc} to ${PWD}" |
| 972 | local metaskip=`tail -c ${sizeoff_t} ${src} | hexdump -e \"%i\"` |
1009 | local metaskip=`tail -c ${sizeoff_t} ${src} | hexdump -e \"%i\"` |
| 973 | local tailskip=`tail -c $((${sizeoff_t}*2)) ${src} | head -c ${sizeoff_t} | hexdump -e \"%i\"` |
1010 | local tailskip=`tail -c $((${sizeoff_t}*2)) ${src} | head -c ${sizeoff_t} | hexdump -e \"%i\"` |
| 974 | |
1011 | |
| 975 | # grab metadata for debug reasons |
1012 | # grab metadata for debug reasons |
| 976 | local metafile="`mymktemp ${T}`" |
1013 | local metafile="$(emktemp)" |
| 977 | tail -c +$((${metaskip}+1)) ${src} > ${metafile} |
1014 | tail -c +$((${metaskip}+1)) ${src} > ${metafile} |
| 978 | |
1015 | |
| 979 | # rip out the final file name from the metadata |
1016 | # rip out the final file name from the metadata |
| 980 | local datafile="`tail -c +$((${metaskip}+1)) ${src} | strings | head -n 1`" |
1017 | local datafile="`tail -c +$((${metaskip}+1)) ${src} | strings | head -n 1`" |
| 981 | datafile="`basename ${datafile}`" |
1018 | datafile="`basename ${datafile}`" |
| 982 | |
1019 | |
| 983 | # now lets uncompress/untar the file if need be |
1020 | # now lets uncompress/untar the file if need be |
| 984 | local tmpfile="`mymktemp ${T}`" |
1021 | local tmpfile="$(emktemp)" |
| 985 | tail -c +$((${tailskip}+1)) ${src} 2>/dev/null | head -c 512 > ${tmpfile} |
1022 | tail -c +$((${tailskip}+1)) ${src} 2>/dev/null | head -c 512 > ${tmpfile} |
| 986 | |
1023 | |
| 987 | local iscompressed="`file -b ${tmpfile}`" |
1024 | local iscompressed="`file -b ${tmpfile}`" |
| 988 | if [ "${iscompressed:0:8}" == "compress" ] ; then |
1025 | if [ "${iscompressed:0:8}" == "compress" ] ; then |
| 989 | iscompressed=1 |
1026 | iscompressed=1 |
| … | |
… | |
| 1034 | # Unpack those pesky makeself generated files ... |
1071 | # Unpack those pesky makeself generated files ... |
| 1035 | # They're shell scripts with the binary package tagged onto |
1072 | # They're shell scripts with the binary package tagged onto |
| 1036 | # the end of the archive. Loki utilized the format as does |
1073 | # the end of the archive. Loki utilized the format as does |
| 1037 | # many other game companies. |
1074 | # many other game companies. |
| 1038 | # |
1075 | # |
| 1039 | # Usage: unpack_makeself [file to unpack] [offset] |
1076 | # Usage: unpack_makeself [file to unpack] [offset] [tail|dd] |
| 1040 | # - If the file is not specified then unpack will utilize ${A}. |
1077 | # - If the file is not specified then unpack will utilize ${A}. |
| 1041 | # - If the offset is not specified then we will attempt to extract |
1078 | # - If the offset is not specified then we will attempt to extract |
| 1042 | # the proper offset from the script itself. |
1079 | # the proper offset from the script itself. |
| 1043 | unpack_makeself() { |
1080 | unpack_makeself() { |
| 1044 | local src="`find_unpackable_file $1`" |
1081 | local src="$(find_unpackable_file "$1")" |
| 1045 | local skip="$2" |
1082 | local skip="$2" |
|
|
1083 | local exe="$3" |
| 1046 | |
1084 | |
| 1047 | local shrtsrc="`basename ${src}`" |
1085 | local shrtsrc="$(basename "${src}")" |
| 1048 | echo ">>> Unpacking ${shrtsrc} to ${PWD}" |
1086 | echo ">>> Unpacking ${shrtsrc} to ${PWD}" |
| 1049 | if [ -z "${skip}" ] |
1087 | if [ -z "${skip}" ] |
| 1050 | then |
1088 | then |
| 1051 | local ver="`grep -a '#.*Makeself' ${src} | awk '{print $NF}'`" |
1089 | local ver="`grep -a '#.*Makeself' ${src} | awk '{print $NF}'`" |
| 1052 | local skip=0 |
1090 | local skip=0 |
|
|
1091 | exe=tail |
| 1053 | case ${ver} in |
1092 | case ${ver} in |
| 1054 | 1.5.*) # tested 1.5.{3,4,5} ... guessing 1.5.x series is same |
1093 | 1.5.*) # tested 1.5.{3,4,5} ... guessing 1.5.x series is same |
| 1055 | skip=`grep -a ^skip= ${src} | cut -d= -f2` |
1094 | skip=$(grep -a ^skip= "${src}" | cut -d= -f2) |
| 1056 | ;; |
1095 | ;; |
| 1057 | 2.0|2.0.1) |
1096 | 2.0|2.0.1) |
| 1058 | skip=`grep -a ^$'\t'tail ${src} | awk '{print $2}' | cut -b2-` |
1097 | skip=$(grep -a ^$'\t'tail "${src}" | awk '{print $2}' | cut -b2-) |
| 1059 | ;; |
1098 | ;; |
| 1060 | 2.1.1) |
1099 | 2.1.1) |
| 1061 | skip=`grep -a ^offset= ${src} | awk '{print $2}' | cut -b2-` |
1100 | skip=$(grep -a ^offset= "${src}" | awk '{print $2}' | cut -b2-) |
| 1062 | let skip="skip + 1" |
1101 | let skip="skip + 1" |
| 1063 | ;; |
1102 | ;; |
| 1064 | 2.1.2) |
1103 | 2.1.2) |
| 1065 | skip=`grep -a ^offset= ${src} | awk '{print $3}' | head -n 1` |
1104 | skip=$(grep -a ^offset= "${src}" | awk '{print $3}' | head -n 1) |
| 1066 | let skip="skip + 1" |
1105 | let skip="skip + 1" |
| 1067 | ;; |
1106 | ;; |
| 1068 | 2.1.3) |
1107 | 2.1.3) |
| 1069 | skip=`grep -a ^offset= ${src} | awk '{print $3}'` |
1108 | skip=`grep -a ^offset= "${src}" | awk '{print $3}'` |
| 1070 | let skip="skip + 1" |
1109 | let skip="skip + 1" |
|
|
1110 | ;; |
|
|
1111 | 2.1.4) |
|
|
1112 | skip=$(grep -a offset=.*head.*wc "${src}" | awk '{print $3}' | head -n 1) |
|
|
1113 | skip=$(head -n ${skip} "${src}" | wc -c) |
|
|
1114 | exe="dd" |
| 1071 | ;; |
1115 | ;; |
| 1072 | *) |
1116 | *) |
| 1073 | eerror "I'm sorry, but I was unable to support the Makeself file." |
1117 | eerror "I'm sorry, but I was unable to support the Makeself file." |
| 1074 | eerror "The version I detected was '${ver}'." |
1118 | eerror "The version I detected was '${ver}'." |
| 1075 | eerror "Please file a bug about the file ${shrtsrc} at" |
1119 | eerror "Please file a bug about the file ${shrtsrc} at" |
| … | |
… | |
| 1077 | die "makeself version '${ver}' not supported" |
1121 | die "makeself version '${ver}' not supported" |
| 1078 | ;; |
1122 | ;; |
| 1079 | esac |
1123 | esac |
| 1080 | debug-print "Detected Makeself version ${ver} ... using ${skip} as offset" |
1124 | debug-print "Detected Makeself version ${ver} ... using ${skip} as offset" |
| 1081 | fi |
1125 | fi |
|
|
1126 | case ${exe} in |
|
|
1127 | tail) exe="tail -n +${skip} '${src}'";; |
|
|
1128 | dd) exe="dd ibs=${skip} skip=1 obs=1024 conv=sync if='${src}'";; |
|
|
1129 | *) die "makeself cant handle exe '${exe}'" |
|
|
1130 | esac |
| 1082 | |
1131 | |
| 1083 | # lets grab the first few bytes of the file to figure out what kind of archive it is |
1132 | # lets grab the first few bytes of the file to figure out what kind of archive it is |
| 1084 | local tmpfile="`mymktemp ${T}`" |
1133 | local tmpfile="$(emktemp)" |
| 1085 | tail -n +${skip} ${src} 2>/dev/null | head -c 512 > ${tmpfile} |
1134 | eval ${exe} 2>/dev/null | head -c 512 > "${tmpfile}" |
| 1086 | local filetype="`file -b ${tmpfile}`" |
1135 | local filetype="$(file -b "${tmpfile}")" |
| 1087 | case ${filetype} in |
1136 | case ${filetype} in |
| 1088 | *tar\ archive) |
1137 | *tar\ archive) |
| 1089 | tail -n +${skip} ${src} | tar --no-same-owner -xf - |
1138 | eval ${exe} | tar --no-same-owner -xf - |
| 1090 | ;; |
1139 | ;; |
| 1091 | bzip2*) |
1140 | bzip2*) |
| 1092 | tail -n +${skip} ${src} | bzip2 -dc | tar --no-same-owner -xf - |
1141 | eval ${exe} | bzip2 -dc | tar --no-same-owner -xf - |
| 1093 | ;; |
1142 | ;; |
| 1094 | gzip*) |
1143 | gzip*) |
| 1095 | tail -n +${skip} ${src} | tar --no-same-owner -xzf - |
1144 | eval ${exe} | tar --no-same-owner -xzf - |
| 1096 | ;; |
1145 | ;; |
| 1097 | compress*) |
1146 | compress*) |
| 1098 | tail -n +${skip} ${src} | gunzip | tar --no-same-owner -xf - |
1147 | eval ${exe} | gunzip | tar --no-same-owner -xf - |
| 1099 | ;; |
1148 | ;; |
| 1100 | *) |
1149 | *) |
| 1101 | eerror "Unknown filetype \"${filetype}\" ?" |
1150 | eerror "Unknown filetype \"${filetype}\" ?" |
| 1102 | false |
1151 | false |
| 1103 | ;; |
1152 | ;; |
| … | |
… | |
| 1125 | [ ! -f "${lic}" ] && die "Could not find requested license ${src}" |
1174 | [ ! -f "${lic}" ] && die "Could not find requested license ${src}" |
| 1126 | local l="`basename ${lic}`" |
1175 | local l="`basename ${lic}`" |
| 1127 | |
1176 | |
| 1128 | # here is where we check for the licenses the user already |
1177 | # here is where we check for the licenses the user already |
| 1129 | # accepted ... if we don't find a match, we make the user accept |
1178 | # accepted ... if we don't find a match, we make the user accept |
|
|
1179 | local shopts=$- |
| 1130 | local alic |
1180 | local alic |
|
|
1181 | set -o noglob #so that bash doesn't expand "*" |
| 1131 | for alic in ${ACCEPT_LICENSE} ; do |
1182 | for alic in ${ACCEPT_LICENSE} ; do |
| 1132 | [ "${alic}" == "*" ] && return 0 |
1183 | if [[ ${alic} == * || ${alic} == ${l} ]]; then |
| 1133 | [ "${alic}" == "${l}" ] && return 0 |
1184 | set +o noglob; set -${shopts} #reset old shell opts |
|
|
1185 | return 0 |
|
|
1186 | fi |
| 1134 | done |
1187 | done |
|
|
1188 | set +o noglob; set -$shopts #reset old shell opts |
| 1135 | |
1189 | |
| 1136 | local licmsg="`mymktemp ${T}`" |
1190 | local licmsg="$(emktemp)" |
| 1137 | cat << EOF > ${licmsg} |
1191 | cat << EOF > ${licmsg} |
| 1138 | ********************************************************** |
1192 | ********************************************************** |
| 1139 | The following license outlines the terms of use of this |
1193 | The following license outlines the terms of use of this |
| 1140 | package. You MUST accept this license for installation to |
1194 | package. You MUST accept this license for installation to |
| 1141 | continue. When you are done viewing, hit 'q'. If you |
1195 | continue. When you are done viewing, hit 'q'. If you |
| … | |
… | |
| 1380 | unset LINGUAS |
1434 | unset LINGUAS |
| 1381 | else |
1435 | else |
| 1382 | export LINGUAS="${newls}" |
1436 | export LINGUAS="${newls}" |
| 1383 | fi |
1437 | fi |
| 1384 | } |
1438 | } |
|
|
1439 | |
|
|
1440 | # moved from kernel.eclass since they are generally useful outside of |
|
|
1441 | # kernel.eclass -iggy (20041002) |
|
|
1442 | |
|
|
1443 | # the following functions are useful in kernel module ebuilds, etc. |
|
|
1444 | # for an example see ivtv or drbd ebuilds |
|
|
1445 | |
|
|
1446 | # set's ARCH to match what the kernel expects |
|
|
1447 | set_arch_to_kernel() { |
|
|
1448 | export EUTILS_ECLASS_PORTAGE_ARCH="${ARCH}" |
|
|
1449 | case ${ARCH} in |
|
|
1450 | x86) export ARCH="i386";; |
|
|
1451 | amd64) export ARCH="x86_64";; |
|
|
1452 | hppa) export ARCH="parisc";; |
|
|
1453 | mips) export ARCH="mips";; |
|
|
1454 | *) export ARCH="${ARCH}";; |
|
|
1455 | esac |
|
|
1456 | } |
|
|
1457 | |
|
|
1458 | # set's ARCH back to what portage expects |
|
|
1459 | set_arch_to_portage() { |
|
|
1460 | export ARCH="${EUTILS_ECLASS_PORTAGE_ARCH}" |
|
|
1461 | } |
|
|
1462 | |
|
|
1463 | # Jeremy Huddleston <eradicator@gentoo.org>: |
|
|
1464 | # preserve_old_lib /path/to/libblah.so.0 |
|
|
1465 | # preserve_old_lib_notify /path/to/libblah.so.0 |
|
|
1466 | # |
|
|
1467 | # These functions are useful when a lib in your package changes --soname. Such |
|
|
1468 | # an example might be from libogg.so.0 to libogg.so.1. Removing libogg.so.0 |
|
|
1469 | # would break packages that link against it. Most people get around this |
|
|
1470 | # by using the portage SLOT mechanism, but that is not always a relevant |
|
|
1471 | # solution, so instead you can add the following to your ebuilds: |
|
|
1472 | # |
|
|
1473 | # src_install() { |
|
|
1474 | # ... |
|
|
1475 | # preserve_old_lib /usr/$(get_libdir)/libogg.so.0 |
|
|
1476 | # ... |
|
|
1477 | # } |
|
|
1478 | # |
|
|
1479 | # pkg_postinst() { |
|
|
1480 | # ... |
|
|
1481 | # preserve_old_lib_notify /usr/$(get_libdir)/libogg.so.0 |
|
|
1482 | # ... |
|
|
1483 | # } |
|
|
1484 | |
|
|
1485 | preserve_old_lib() { |
|
|
1486 | LIB=$1 |
|
|
1487 | |
|
|
1488 | if [ -n "${LIB}" -a -f "${ROOT}${LIB}" ]; then |
|
|
1489 | SONAME=`basename ${LIB}` |
|
|
1490 | DIRNAME=`dirname ${LIB}` |
|
|
1491 | |
|
|
1492 | dodir ${DIRNAME} |
|
|
1493 | cp ${ROOT}${LIB} ${D}${DIRNAME} |
|
|
1494 | touch ${D}${LIB} |
|
|
1495 | fi |
|
|
1496 | } |
|
|
1497 | |
|
|
1498 | preserve_old_lib_notify() { |
|
|
1499 | LIB=$1 |
|
|
1500 | |
|
|
1501 | if [ -n "${LIB}" -a -f "${ROOT}${LIB}" ]; then |
|
|
1502 | SONAME=`basename ${LIB}` |
|
|
1503 | |
|
|
1504 | einfo "An old version of an installed library was detected on your system." |
|
|
1505 | einfo "In order to avoid breaking packages that link against is, this older version" |
|
|
1506 | einfo "is not being removed. In order to make full use of this newer version," |
|
|
1507 | einfo "you will need to execute the following command:" |
|
|
1508 | einfo " revdep-rebuild --soname ${SONAME}" |
|
|
1509 | einfo |
|
|
1510 | einfo "After doing that, you can safely remove ${LIB}" |
|
|
1511 | einfo "Note: 'emerge gentoolkit' to get revdep-rebuild" |
|
|
1512 | fi |
|
|
1513 | } |