| 1 | # Copyright 1999-2006 Gentoo Foundation |
1 | # Copyright 1999-2007 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.280 2007/05/05 07:52:26 vapier Exp $ |
3 | # $Header: /var/cvsroot/gentoo-x86/eclass/eutils.eclass,v 1.296 2008/02/13 20:50:06 wolf31o2 Exp $ |
|
|
4 | |
|
|
5 | # @ECLASS: eutils.eclass |
|
|
6 | # @MAINTAINER: |
|
|
7 | # base-system@gentoo.org |
|
|
8 | # @BLURB: many extra (but common) functions that are used in ebuilds |
|
|
9 | # @DESCRIPTION: |
|
|
10 | # The eutils eclass contains a suite of functions that complement |
|
|
11 | # the ones that ebuild.sh already contain. The idea is that the functions |
|
|
12 | # are not required in all ebuilds but enough utilize them to have a common |
|
|
13 | # home rather than having multiple ebuilds implementing the same thing. |
| 4 | # |
14 | # |
| 5 | # This eclass is for general purpose functions that most ebuilds |
15 | # Due to the nature of this eclass, some functions may have maintainers |
| 6 | # have to implement themselves. |
16 | # different from the overall eclass! |
| 7 | # |
|
|
| 8 | # NB: If you add anything, please comment it! |
|
|
| 9 | # |
|
|
| 10 | # Maintainer: see each individual function, base-system@gentoo.org as default |
|
|
| 11 | |
17 | |
| 12 | inherit multilib portability |
18 | inherit multilib portability |
| 13 | |
19 | |
| 14 | DESCRIPTION="Based on the ${ECLASS} eclass" |
20 | DESCRIPTION="Based on the ${ECLASS} eclass" |
| 15 | |
21 | |
| 16 | # Wait for the supplied number of seconds. If no argument is supplied, defaults |
22 | # @FUNCTION: epause |
| 17 | # to five seconds. If the EPAUSE_IGNORE env var is set, don't wait. If we're not |
23 | # @USAGE: [seconds] |
| 18 | # outputting to a terminal, don't wait. For compatability purposes, the argument |
24 | # @DESCRIPTION: |
| 19 | # must be an integer greater than zero. |
25 | # Sleep for the specified number of seconds (default of 5 seconds). Useful when |
| 20 | # Bug 62950, Ciaran McCreesh <ciaranm@gentoo.org> (05 Sep 2004) |
26 | # printing a message the user should probably be reading and often used in |
|
|
27 | # conjunction with the ebeep function. If the EPAUSE_IGNORE env var is set, |
|
|
28 | # don't wait at all. |
| 21 | epause() { |
29 | epause() { |
| 22 | [[ -z ${EPAUSE_IGNORE} ]] && sleep ${1:-5} |
30 | [[ -z ${EPAUSE_IGNORE} ]] && sleep ${1:-5} |
| 23 | } |
31 | } |
| 24 | |
32 | |
| 25 | # Beep the specified number of times (defaults to five). If our output |
33 | # @FUNCTION: ebeep |
| 26 | # is not a terminal, don't beep. If the EBEEP_IGNORE env var is set, |
34 | # @USAGE: [number of beeps] |
|
|
35 | # @DESCRIPTION: |
|
|
36 | # Issue the specified number of beeps (default of 5 beeps). Useful when |
|
|
37 | # printing a message the user should probably be reading and often used in |
|
|
38 | # conjunction with the epause function. If the EBEEP_IGNORE env var is set, |
| 27 | # don't beep. |
39 | # don't beep at all. |
| 28 | # Bug 62950, Ciaran McCreesh <ciaranm@gentoo.org> (05 Sep 2004) |
|
|
| 29 | ebeep() { |
40 | ebeep() { |
| 30 | local n |
41 | local n |
| 31 | if [[ -z ${EBEEP_IGNORE} ]] ; then |
42 | if [[ -z ${EBEEP_IGNORE} ]] ; then |
| 32 | for ((n=1 ; n <= ${1:-5} ; n++)) ; do |
43 | for ((n=1 ; n <= ${1:-5} ; n++)) ; do |
| 33 | echo -ne "\a" |
44 | echo -ne "\a" |
| … | |
… | |
| 35 | echo -ne "\a" |
46 | echo -ne "\a" |
| 36 | sleep 1 |
47 | sleep 1 |
| 37 | done |
48 | done |
| 38 | fi |
49 | fi |
| 39 | } |
50 | } |
| 40 | |
|
|
| 41 | # This function generate linker scripts in /usr/lib for dynamic |
|
|
| 42 | # libs in /lib. This is to fix linking problems when you have |
|
|
| 43 | # the .so in /lib, and the .a in /usr/lib. What happens is that |
|
|
| 44 | # in some cases when linking dynamic, the .a in /usr/lib is used |
|
|
| 45 | # instead of the .so in /lib due to gcc/libtool tweaking ld's |
|
|
| 46 | # library search path. This cause many builds to fail. |
|
|
| 47 | # See bug #4411 for more info. |
|
|
| 48 | # |
|
|
| 49 | # To use, simply call: |
|
|
| 50 | # |
|
|
| 51 | # gen_usr_ldscript libfoo.so |
|
|
| 52 | # |
|
|
| 53 | # Note that you should in general use the unversioned name of |
|
|
| 54 | # the library, as ldconfig should usually update it correctly |
|
|
| 55 | # to point to the latest version of the library present. |
|
|
| 56 | # |
|
|
| 57 | # <azarah@gentoo.org> (26 Oct 2002) |
|
|
| 58 | # |
|
|
| 59 | gen_usr_ldscript() { |
|
|
| 60 | if [[ $(type -t _tc_gen_usr_ldscript) == "function" ]] ; then |
|
|
| 61 | _tc_gen_usr_ldscript "$@" |
|
|
| 62 | return $? |
|
|
| 63 | fi |
|
|
| 64 | |
|
|
| 65 | ewarn "QA Notice: Please upgrade your ebuild to use toolchain-funcs" |
|
|
| 66 | ewarn "QA Notice: rather than gen_usr_ldscript() from eutils" |
|
|
| 67 | |
|
|
| 68 | local lib libdir=$(get_libdir) |
|
|
| 69 | # Just make sure it exists |
|
|
| 70 | dodir /usr/${libdir} |
|
|
| 71 | |
|
|
| 72 | for lib in "${@}" ; do |
|
|
| 73 | cat > "${D}/usr/${libdir}/${lib}" <<-END_LDSCRIPT |
|
|
| 74 | /* GNU ld script |
|
|
| 75 | Since Gentoo has critical dynamic libraries |
|
|
| 76 | in /lib, and the static versions in /usr/lib, |
|
|
| 77 | we need to have a "fake" dynamic lib in /usr/lib, |
|
|
| 78 | otherwise we run into linking problems. |
|
|
| 79 | |
|
|
| 80 | See bug http://bugs.gentoo.org/4411 for more info. |
|
|
| 81 | */ |
|
|
| 82 | GROUP ( /${libdir}/${lib} ) |
|
|
| 83 | END_LDSCRIPT |
|
|
| 84 | fperms a+x "/usr/${libdir}/${lib}" || die "could not change perms on ${lib}" |
|
|
| 85 | done |
|
|
| 86 | } |
|
|
| 87 | |
|
|
| 88 | |
51 | |
| 89 | # Default directory where patches are located |
52 | # Default directory where patches are located |
| 90 | EPATCH_SOURCE="${WORKDIR}/patch" |
53 | EPATCH_SOURCE="${WORKDIR}/patch" |
| 91 | # Default extension for patches |
54 | # Default extension for patches |
| 92 | EPATCH_SUFFIX="patch.bz2" |
55 | EPATCH_SUFFIX="patch.bz2" |
| … | |
… | |
| 180 | local EPATCH_SOURCE="$1/*" |
143 | local EPATCH_SOURCE="$1/*" |
| 181 | else |
144 | else |
| 182 | local EPATCH_SOURCE="$1/*.${EPATCH_SUFFIX}" |
145 | local EPATCH_SOURCE="$1/*.${EPATCH_SUFFIX}" |
| 183 | fi |
146 | fi |
| 184 | else |
147 | else |
| 185 | if [ ! -d ${EPATCH_SOURCE} ] || [ -n "$1" ] |
148 | if [[ ! -d ${EPATCH_SOURCE} ]] || [[ -n $1 ]] ; then |
| 186 | then |
|
|
| 187 | if [ -n "$1" -a "${EPATCH_SOURCE}" = "${WORKDIR}/patch" ] |
149 | if [ -n "$1" -a "${EPATCH_SOURCE}" = "${WORKDIR}/patch" ] |
| 188 | then |
150 | then |
| 189 | EPATCH_SOURCE="$1" |
151 | EPATCH_SOURCE="$1" |
| 190 | fi |
152 | fi |
| 191 | |
153 | |
| … | |
… | |
| 350 | then |
312 | then |
| 351 | einfo "Done with patching" |
313 | einfo "Done with patching" |
| 352 | fi |
314 | fi |
| 353 | } |
315 | } |
| 354 | |
316 | |
|
|
317 | # @FUNCTION: emktemp |
|
|
318 | # @USAGE: [temp dir] |
|
|
319 | # @DESCRIPTION: |
| 355 | # Cheap replacement for when debianutils (and thus mktemp) |
320 | # Cheap replacement for when debianutils (and thus mktemp) |
| 356 | # does not exist on the users system |
321 | # does not exist on the users system. |
| 357 | # vapier@gentoo.org |
|
|
| 358 | # |
|
|
| 359 | # Takes just 1 optional parameter (the directory to create tmpfile in) |
|
|
| 360 | emktemp() { |
322 | emktemp() { |
| 361 | local exe="touch" |
323 | local exe="touch" |
| 362 | [[ $1 == -d ]] && exe="mkdir" && shift |
324 | [[ $1 == -d ]] && exe="mkdir" && shift |
| 363 | local topdir=$1 |
325 | local topdir=$1 |
| 364 | |
326 | |
| … | |
… | |
| 385 | TMPDIR="${topdir}" mktemp -dt tmp.XXXXXXXXXX |
347 | TMPDIR="${topdir}" mktemp -dt tmp.XXXXXXXXXX |
| 386 | fi |
348 | fi |
| 387 | fi |
349 | fi |
| 388 | } |
350 | } |
| 389 | |
351 | |
|
|
352 | # @FUNCTION: egetent |
|
|
353 | # @USAGE: <database> <key> |
|
|
354 | # @MAINTAINER: |
|
|
355 | # base-system@gentoo.org (Linux) |
|
|
356 | # Joe Jezak <josejx@gmail.com> (OS X) |
|
|
357 | # usata@gentoo.org (OS X) |
|
|
358 | # Aaron Walker <ka0ttic@gentoo.org> (FreeBSD) |
|
|
359 | # @DESCRIPTION: |
| 390 | # Small wrapper for getent (Linux), nidump (Mac OS X), |
360 | # Small wrapper for getent (Linux), nidump (Mac OS X), |
| 391 | # and pw (FreeBSD) used in enewuser()/enewgroup() |
361 | # and pw (FreeBSD) used in enewuser()/enewgroup() |
| 392 | # Joe Jezak <josejx@gmail.com> and usata@gentoo.org |
|
|
| 393 | # FBSD stuff: Aaron Walker <ka0ttic@gentoo.org> |
|
|
| 394 | # |
|
|
| 395 | # egetent(database, key) |
|
|
| 396 | egetent() { |
362 | egetent() { |
| 397 | case ${CHOST} in |
363 | case ${CHOST} in |
| 398 | *-darwin*) |
364 | *-darwin*) |
| 399 | case "$2" in |
365 | case "$2" in |
| 400 | *[!0-9]*) # Non numeric |
366 | *[!0-9]*) # Non numeric |
| … | |
… | |
| 424 | getent "$1" "$2" |
390 | getent "$1" "$2" |
| 425 | ;; |
391 | ;; |
| 426 | esac |
392 | esac |
| 427 | } |
393 | } |
| 428 | |
394 | |
| 429 | # Simplify/standardize adding users to the system |
395 | # @FUNCTION: enewuser |
| 430 | # vapier@gentoo.org |
396 | # @USAGE: <user> [uid] [shell] [homedir] [groups] [params] |
| 431 | # |
397 | # @DESCRIPTION: |
| 432 | # enewuser(username, uid, shell, homedir, groups, extra options) |
398 | # Same as enewgroup, you are not required to understand how to properly add |
| 433 | # |
399 | # a user to the system. The only required parameter is the username. |
| 434 | # Default values if you do not specify any: |
400 | # Default uid is (pass -1 for this) next available, default shell is |
| 435 | # username: REQUIRED ! |
401 | # /bin/false, default homedir is /dev/null, there are no default groups, |
| 436 | # uid: next available (see useradd(8)) |
402 | # and default params sets the comment as 'added by portage for ${PN}'. |
| 437 | # note: pass -1 to get default behavior |
|
|
| 438 | # shell: /bin/false |
|
|
| 439 | # homedir: /dev/null |
|
|
| 440 | # groups: none |
|
|
| 441 | # extra: comment of 'added by portage for ${PN}' |
|
|
| 442 | enewuser() { |
403 | enewuser() { |
| 443 | case ${EBUILD_PHASE} in |
404 | case ${EBUILD_PHASE} in |
| 444 | unpack|compile|test|install) |
405 | unpack|compile|test|install) |
| 445 | eerror "'enewuser()' called from '${EBUILD_PHASE}()' which is not a pkg_* function." |
406 | eerror "'enewuser()' called from '${EBUILD_PHASE}()' which is not a pkg_* function." |
| 446 | eerror "Package fails at QA and at life. Please file a bug." |
407 | eerror "Package fails at QA and at life. Please file a bug." |
| … | |
… | |
| 635 | fi |
596 | fi |
| 636 | |
597 | |
| 637 | export SANDBOX_ON=${oldsandbox} |
598 | export SANDBOX_ON=${oldsandbox} |
| 638 | } |
599 | } |
| 639 | |
600 | |
| 640 | # Simplify/standardize adding groups to the system |
601 | # @FUNCTION: enewgroup |
| 641 | # vapier@gentoo.org |
602 | # @USAGE: <group> [gid] |
| 642 | # |
603 | # @DESCRIPTION: |
| 643 | # enewgroup(group, gid) |
604 | # This function does not require you to understand how to properly add a |
| 644 | # |
605 | # group to the system. Just give it a group name to add and enewgroup will |
| 645 | # Default values if you do not specify any: |
606 | # do the rest. You may specify the gid for the group or allow the group to |
| 646 | # groupname: REQUIRED ! |
607 | # allocate the next available one. |
| 647 | # gid: next available (see groupadd(8)) |
|
|
| 648 | # extra: none |
|
|
| 649 | enewgroup() { |
608 | enewgroup() { |
| 650 | case ${EBUILD_PHASE} in |
609 | case ${EBUILD_PHASE} in |
| 651 | unpack|compile|test|install) |
610 | unpack|compile|test|install) |
| 652 | eerror "'enewgroup()' called from '${EBUILD_PHASE}()' which is not a pkg_* function." |
611 | eerror "'enewgroup()' called from '${EBUILD_PHASE}()' which is not a pkg_* function." |
| 653 | eerror "Package fails at QA and at life. Please file a bug." |
612 | eerror "Package fails at QA and at life. Please file a bug." |
| … | |
… | |
| 749 | ;; |
708 | ;; |
| 750 | esac |
709 | esac |
| 751 | export SANDBOX_ON="${oldsandbox}" |
710 | export SANDBOX_ON="${oldsandbox}" |
| 752 | } |
711 | } |
| 753 | |
712 | |
| 754 | # Simple script to replace 'dos2unix' binaries |
713 | # @FUNCTION: edos2unix |
| 755 | # vapier@gentoo.org |
714 | # @USAGE: <file> [more files ...] |
| 756 | # |
715 | # @DESCRIPTION: |
| 757 | # edos2unix(file, <more files> ...) |
716 | # A handy replacement for dos2unix, recode, fixdos, etc... This allows you |
|
|
717 | # to remove all of these text utilities from DEPEND variables because this |
|
|
718 | # is a script based solution. Just give it a list of files to convert and |
|
|
719 | # they will all be changed from the DOS CRLF format to the UNIX LF format. |
| 758 | edos2unix() { |
720 | edos2unix() { |
| 759 | echo "$@" | xargs sed -i 's/\r$//' |
721 | echo "$@" | xargs sed -i 's/\r$//' |
| 760 | } |
722 | } |
| 761 | |
|
|
| 762 | |
|
|
| 763 | ############################################################## |
|
|
| 764 | # START: Handle .desktop files and menu entries # |
|
|
| 765 | # maybe this should be separated into a new eclass some time # |
|
|
| 766 | # lanius@gentoo.org # |
|
|
| 767 | ############################################################## |
|
|
| 768 | |
723 | |
| 769 | # Make a desktop file ! |
724 | # Make a desktop file ! |
| 770 | # Great for making those icons in kde/gnome startmenu ! |
725 | # Great for making those icons in kde/gnome startmenu ! |
| 771 | # Amaze your friends ! Get the women ! Join today ! |
726 | # Amaze your friends ! Get the women ! Join today ! |
| 772 | # |
727 | # |
| … | |
… | |
| 776 | # name: the name that will show up in the menu |
731 | # name: the name that will show up in the menu |
| 777 | # icon: give your little like a pretty little icon ... |
732 | # icon: give your little like a pretty little icon ... |
| 778 | # this can be relative (to /usr/share/pixmaps) or |
733 | # this can be relative (to /usr/share/pixmaps) or |
| 779 | # a full path to an icon |
734 | # a full path to an icon |
| 780 | # type: what kind of application is this ? for categories: |
735 | # type: what kind of application is this ? for categories: |
| 781 | # http://www.freedesktop.org/Standards/desktop-entry-spec |
736 | # http://standards.freedesktop.org/menu-spec/latest/apa.html |
| 782 | # path: if your app needs to startup in a specific dir |
737 | # path: if your app needs to startup in a specific dir |
| 783 | make_desktop_entry() { |
738 | make_desktop_entry() { |
| 784 | [[ -z $1 ]] && eerror "make_desktop_entry: You must specify the executable" && return 1 |
739 | [[ -z $1 ]] && eerror "make_desktop_entry: You must specify the executable" && return 1 |
| 785 | |
740 | |
| 786 | local exec=${1} |
741 | local exec=${1} |
| 787 | local name=${2:-${PN}} |
742 | local name=${2:-${PN}} |
| 788 | local icon=${3:-${PN}.png} |
743 | local icon=${3:-${PN}} |
| 789 | local type=${4} |
744 | local type=${4} |
| 790 | local path=${5} |
745 | local path=${5} |
| 791 | |
746 | |
| 792 | if [[ -z ${type} ]] ; then |
747 | if [[ -z ${type} ]] ; then |
| 793 | local catmaj=${CATEGORY%%-*} |
748 | local catmaj=${CATEGORY%%-*} |
| 794 | local catmin=${CATEGORY##*-} |
749 | local catmin=${CATEGORY##*-} |
| 795 | case ${catmaj} in |
750 | case ${catmaj} in |
| 796 | app) |
751 | app) |
| 797 | case ${catmin} in |
752 | case ${catmin} in |
|
|
753 | accessibility) type=Accessibility;; |
| 798 | admin) type=System;; |
754 | admin) type=System;; |
|
|
755 | antivirus) type=System;; |
|
|
756 | arch) type=Archiving;; |
|
|
757 | backup) type=Archiving;; |
| 799 | cdr) type=DiscBurning;; |
758 | cdr) type=DiscBurning;; |
| 800 | dicts) type=Dictionary;; |
759 | dicts) type=Dictionary;; |
|
|
760 | doc) type=Documentation;; |
| 801 | editors) type=TextEditor;; |
761 | editors) type=TextEditor;; |
| 802 | emacs) type=TextEditor;; |
762 | emacs) type=TextEditor;; |
| 803 | emulation) type=Emulator;; |
763 | emulation) type=Emulator;; |
| 804 | laptop) type=HardwareSettings;; |
764 | laptop) type=HardwareSettings;; |
| 805 | office) type=Office;; |
765 | office) type=Office;; |
|
|
766 | pda) type=PDA;; |
| 806 | vim) type=TextEditor;; |
767 | vim) type=TextEditor;; |
| 807 | xemacs) type=TextEditor;; |
768 | xemacs) type=TextEditor;; |
| 808 | *) type=;; |
769 | *) type=;; |
| 809 | esac |
770 | esac |
| 810 | ;; |
771 | ;; |
| … | |
… | |
| 816 | games) |
777 | games) |
| 817 | case ${catmin} in |
778 | case ${catmin} in |
| 818 | action|fps) type=ActionGame;; |
779 | action|fps) type=ActionGame;; |
| 819 | arcade) type=ArcadeGame;; |
780 | arcade) type=ArcadeGame;; |
| 820 | board) type=BoardGame;; |
781 | board) type=BoardGame;; |
|
|
782 | emulation) type=Emulator;; |
| 821 | kids) type=KidsGame;; |
783 | kids) type=KidsGame;; |
| 822 | emulation) type=Emulator;; |
|
|
| 823 | puzzle) type=LogicGame;; |
784 | puzzle) type=LogicGame;; |
|
|
785 | roguelike) type=RolePlaying;; |
| 824 | rpg) type=RolePlaying;; |
786 | rpg) type=RolePlaying;; |
| 825 | roguelike) type=RolePlaying;; |
|
|
| 826 | simulation) type=Simulation;; |
787 | simulation) type=Simulation;; |
| 827 | sports) type=SportsGame;; |
788 | sports) type=SportsGame;; |
| 828 | strategy) type=StrategyGame;; |
789 | strategy) type=StrategyGame;; |
| 829 | *) type=;; |
790 | *) type=;; |
| 830 | esac |
791 | esac |
| 831 | type="Game;${type}" |
792 | type="Game;${type}" |
|
|
793 | ;; |
|
|
794 | |
|
|
795 | gnome) |
|
|
796 | type="Gnome;GTK" |
|
|
797 | ;; |
|
|
798 | |
|
|
799 | kde) |
|
|
800 | type="KDE;Qt" |
| 832 | ;; |
801 | ;; |
| 833 | |
802 | |
| 834 | mail) |
803 | mail) |
| 835 | type="Network;Email" |
804 | type="Network;Email" |
| 836 | ;; |
805 | ;; |
| … | |
… | |
| 862 | type="Network;${type}" |
831 | type="Network;${type}" |
| 863 | ;; |
832 | ;; |
| 864 | |
833 | |
| 865 | sci) |
834 | sci) |
| 866 | case ${catmin} in |
835 | case ${catmin} in |
| 867 | astro*) type=Astronomy;; |
836 | astro*) type=Astronomy;; |
| 868 | bio*) type=Biology;; |
837 | bio*) type=Biology;; |
| 869 | calc*) type=Calculator;; |
838 | calc*) type=Calculator;; |
| 870 | chem*) type=Chemistry;; |
839 | chem*) type=Chemistry;; |
|
|
840 | elec*) type=Electronics;; |
| 871 | geo*) type=Geology;; |
841 | geo*) type=Geology;; |
| 872 | math*) type=Math;; |
842 | math*) type=Math;; |
|
|
843 | physics) type=Physics;; |
|
|
844 | visual*) type=DataVisualization;; |
| 873 | *) type=;; |
845 | *) type=;; |
| 874 | esac |
846 | esac |
| 875 | type="Science;${type}" |
847 | type="Science;${type}" |
|
|
848 | ;; |
|
|
849 | |
|
|
850 | sys) |
|
|
851 | type="System" |
| 876 | ;; |
852 | ;; |
| 877 | |
853 | |
| 878 | www) |
854 | www) |
| 879 | case ${catmin} in |
855 | case ${catmin} in |
| 880 | client) type=WebBrowser;; |
856 | client) type=WebBrowser;; |
| … | |
… | |
| 896 | local desktop="${T}/$(echo ${exec} | sed 's:[[:space:]/:]:_:g')-${desktop_name}.desktop" |
872 | local desktop="${T}/$(echo ${exec} | sed 's:[[:space:]/:]:_:g')-${desktop_name}.desktop" |
| 897 | #local desktop=${T}/${exec%% *:-${desktop_name}}.desktop |
873 | #local desktop=${T}/${exec%% *:-${desktop_name}}.desktop |
| 898 | |
874 | |
| 899 | cat <<-EOF > "${desktop}" |
875 | cat <<-EOF > "${desktop}" |
| 900 | [Desktop Entry] |
876 | [Desktop Entry] |
| 901 | Encoding=UTF-8 |
|
|
| 902 | Version=0.9.2 |
877 | Version=1.0 |
| 903 | Name=${name} |
878 | Name=${name} |
| 904 | Type=Application |
879 | Type=Application |
| 905 | Comment=${DESCRIPTION} |
880 | Comment=${DESCRIPTION} |
| 906 | Exec=${exec} |
881 | Exec=${exec} |
| 907 | TryExec=${exec%% *} |
882 | TryExec=${exec%% *} |
| 908 | Path=${path} |
|
|
| 909 | Icon=${icon} |
883 | Icon=${icon} |
| 910 | Categories=Application;${type}; |
884 | Categories=${type}; |
| 911 | EOF |
885 | EOF |
|
|
886 | |
|
|
887 | [[ ${path} ]] && echo "Path=${path}" >> "${desktop}" |
| 912 | |
888 | |
| 913 | ( |
889 | ( |
| 914 | # wrap the env here so that the 'insinto' call |
890 | # wrap the env here so that the 'insinto' call |
| 915 | # doesn't corrupt the env of the caller |
891 | # doesn't corrupt the env of the caller |
| 916 | insinto /usr/share/applications |
892 | insinto /usr/share/applications |
| 917 | doins "${desktop}" |
893 | doins "${desktop}" |
| 918 | ) |
894 | ) |
| 919 | } |
895 | } |
| 920 | |
896 | |
| 921 | |
897 | # @FUNCTION: validate_desktop_entries |
|
|
898 | # @USAGE: [directories] |
|
|
899 | # @MAINTAINER: |
|
|
900 | # Carsten Lohrke <carlo@gentoo.org> |
|
|
901 | # @DESCRIPTION: |
| 922 | # Validate desktop entries using desktop-file-utils |
902 | # Validate desktop entries using desktop-file-utils |
| 923 | # Carsten Lohrke <carlo@gentoo.org> |
|
|
| 924 | # |
|
|
| 925 | # Usage: validate_desktop_entries [directory ...] |
|
|
| 926 | |
|
|
| 927 | validate_desktop_entries() { |
903 | validate_desktop_entries() { |
| 928 | if [[ -x /usr/bin/desktop-file-validate ]] ; then |
904 | if [[ -x /usr/bin/desktop-file-validate ]] ; then |
| 929 | einfo "Checking desktop entry validity" |
905 | einfo "Checking desktop entry validity" |
| 930 | local directories="" |
906 | local directories="" |
| 931 | for d in /usr/share/applications $@ ; do |
907 | for d in /usr/share/applications $@ ; do |
| … | |
… | |
| 944 | else |
920 | else |
| 945 | einfo "Passing desktop entry validity check. Install dev-util/desktop-file-utils, if you want to help to improve Gentoo." |
921 | einfo "Passing desktop entry validity check. Install dev-util/desktop-file-utils, if you want to help to improve Gentoo." |
| 946 | fi |
922 | fi |
| 947 | } |
923 | } |
| 948 | |
924 | |
| 949 | |
925 | # @FUNCTION: make_session_desktop |
| 950 | # Make a GDM/KDM Session file |
926 | # @USAGE: <title> <command> |
| 951 | # |
927 | # @DESCRIPTION: |
| 952 | # make_session_desktop(<title>, <command>) |
928 | # Make a GDM/KDM Session file. The title is the file to execute to start the |
| 953 | # title: File to execute to start the Window Manager |
929 | # Window Manager. The command is the name of the Window Manager. |
| 954 | # command: Name of the Window Manager |
|
|
| 955 | |
|
|
| 956 | make_session_desktop() { |
930 | make_session_desktop() { |
| 957 | [[ -z $1 ]] && eerror "make_session_desktop: You must specify the title" && return 1 |
931 | [[ -z $1 ]] && eerror "make_session_desktop: You must specify the title" && return 1 |
| 958 | [[ -z $2 ]] && eerror "make_session_desktop: You must specify the command" && return 1 |
932 | [[ -z $2 ]] && eerror "make_session_desktop: You must specify the command" && return 1 |
| 959 | |
933 | |
| 960 | local title=$1 |
934 | local title=$1 |
| 961 | local command=$2 |
935 | local command=$2 |
| 962 | local desktop=${T}/${wm}.desktop |
936 | local desktop=${T}/${wm}.desktop |
| 963 | |
937 | |
| 964 | cat <<-EOF > "${desktop}" |
938 | cat <<-EOF > "${desktop}" |
| 965 | [Desktop Entry] |
939 | [Desktop Entry] |
| 966 | Encoding=UTF-8 |
|
|
| 967 | Name=${title} |
940 | Name=${title} |
| 968 | Comment=This session logs you into ${title} |
941 | Comment=This session logs you into ${title} |
| 969 | Exec=${command} |
942 | Exec=${command} |
| 970 | TryExec=${command} |
943 | TryExec=${command} |
| 971 | Type=Application |
944 | Type=Application |
| … | |
… | |
| 977 | insinto /usr/share/xsessions |
950 | insinto /usr/share/xsessions |
| 978 | doins "${desktop}" |
951 | doins "${desktop}" |
| 979 | ) |
952 | ) |
| 980 | } |
953 | } |
| 981 | |
954 | |
|
|
955 | # @FUNCTION: domenu |
|
|
956 | # @USAGE: <menus> |
|
|
957 | # @DESCRIPTION: |
|
|
958 | # Install the list of .desktop menu files into the appropriate directory |
|
|
959 | # (/usr/share/applications). |
| 982 | domenu() { |
960 | domenu() { |
| 983 | ( |
961 | ( |
| 984 | # wrap the env here so that the 'insinto' call |
962 | # wrap the env here so that the 'insinto' call |
| 985 | # doesn't corrupt the env of the caller |
963 | # doesn't corrupt the env of the caller |
| 986 | local i j ret=0 |
964 | local i j ret=0 |
| … | |
… | |
| 992 | elif [[ -d ${i} ]] ; then |
970 | elif [[ -d ${i} ]] ; then |
| 993 | for j in "${i}"/*.desktop ; do |
971 | for j in "${i}"/*.desktop ; do |
| 994 | doins "${j}" |
972 | doins "${j}" |
| 995 | ((ret+=$?)) |
973 | ((ret+=$?)) |
| 996 | done |
974 | done |
|
|
975 | else |
|
|
976 | ((++ret)) |
| 997 | fi |
977 | fi |
| 998 | done |
978 | done |
| 999 | exit ${ret} |
979 | exit ${ret} |
| 1000 | ) |
980 | ) |
| 1001 | } |
981 | } |
|
|
982 | |
|
|
983 | # @FUNCTION: newmenu |
|
|
984 | # @USAGE: <menu> <newname> |
|
|
985 | # @DESCRIPTION: |
|
|
986 | # Like all other new* functions, install the specified menu as newname. |
| 1002 | newmenu() { |
987 | newmenu() { |
| 1003 | ( |
988 | ( |
| 1004 | # wrap the env here so that the 'insinto' call |
989 | # wrap the env here so that the 'insinto' call |
| 1005 | # doesn't corrupt the env of the caller |
990 | # doesn't corrupt the env of the caller |
| 1006 | insinto /usr/share/applications |
991 | insinto /usr/share/applications |
| 1007 | newins "$@" |
992 | newins "$@" |
| 1008 | ) |
993 | ) |
| 1009 | } |
994 | } |
| 1010 | |
995 | |
|
|
996 | # @FUNCTION: doicon |
|
|
997 | # @USAGE: <list of icons> |
|
|
998 | # @DESCRIPTION: |
|
|
999 | # Install the list of icons into the icon directory (/usr/share/pixmaps). |
|
|
1000 | # This is useful in conjunction with creating desktop/menu files. |
| 1011 | doicon() { |
1001 | doicon() { |
| 1012 | ( |
1002 | ( |
| 1013 | # wrap the env here so that the 'insinto' call |
1003 | # wrap the env here so that the 'insinto' call |
| 1014 | # doesn't corrupt the env of the caller |
1004 | # doesn't corrupt the env of the caller |
| 1015 | local i j ret |
1005 | local i j ret |
| … | |
… | |
| 1021 | elif [[ -d ${i} ]] ; then |
1011 | elif [[ -d ${i} ]] ; then |
| 1022 | for j in "${i}"/*.png ; do |
1012 | for j in "${i}"/*.png ; do |
| 1023 | doins "${j}" |
1013 | doins "${j}" |
| 1024 | ((ret+=$?)) |
1014 | ((ret+=$?)) |
| 1025 | done |
1015 | done |
|
|
1016 | else |
|
|
1017 | ((++ret)) |
| 1026 | fi |
1018 | fi |
| 1027 | done |
1019 | done |
| 1028 | exit ${ret} |
1020 | exit ${ret} |
| 1029 | ) |
1021 | ) |
| 1030 | } |
1022 | } |
|
|
1023 | |
|
|
1024 | # @FUNCTION: newicon |
|
|
1025 | # @USAGE: <icon> <newname> |
|
|
1026 | # @DESCRIPTION: |
|
|
1027 | # Like all other new* functions, install the specified icon as newname. |
| 1031 | newicon() { |
1028 | newicon() { |
| 1032 | ( |
1029 | ( |
| 1033 | # wrap the env here so that the 'insinto' call |
1030 | # wrap the env here so that the 'insinto' call |
| 1034 | # doesn't corrupt the env of the caller |
1031 | # doesn't corrupt the env of the caller |
| 1035 | insinto /usr/share/pixmaps |
1032 | insinto /usr/share/pixmaps |
| 1036 | newins "$@" |
1033 | newins "$@" |
| 1037 | ) |
1034 | ) |
| 1038 | } |
1035 | } |
| 1039 | |
|
|
| 1040 | ############################################################## |
|
|
| 1041 | # END: Handle .desktop files and menu entries # |
|
|
| 1042 | ############################################################## |
|
|
| 1043 | |
|
|
| 1044 | |
1036 | |
| 1045 | # for internal use only (unpack_pdv and unpack_makeself) |
1037 | # for internal use only (unpack_pdv and unpack_makeself) |
| 1046 | find_unpackable_file() { |
1038 | find_unpackable_file() { |
| 1047 | local src=$1 |
1039 | local src=$1 |
| 1048 | if [[ -z ${src} ]] ; then |
1040 | if [[ -z ${src} ]] ; then |
| … | |
… | |
| 1058 | fi |
1050 | fi |
| 1059 | [[ ! -e ${src} ]] && return 1 |
1051 | [[ ! -e ${src} ]] && return 1 |
| 1060 | echo "${src}" |
1052 | echo "${src}" |
| 1061 | } |
1053 | } |
| 1062 | |
1054 | |
|
|
1055 | # @FUNCTION: unpack_pdv |
|
|
1056 | # @USAGE: <file to unpack> <size of off_t> |
|
|
1057 | # @DESCRIPTION: |
| 1063 | # Unpack those pesky pdv generated files ... |
1058 | # Unpack those pesky pdv generated files ... |
| 1064 | # They're self-unpacking programs with the binary package stuffed in |
1059 | # They're self-unpacking programs with the binary package stuffed in |
| 1065 | # the middle of the archive. Valve seems to use it a lot ... too bad |
1060 | # the middle of the archive. Valve seems to use it a lot ... too bad |
| 1066 | # it seems to like to segfault a lot :(. So lets take it apart ourselves. |
1061 | # it seems to like to segfault a lot :(. So lets take it apart ourselves. |
| 1067 | # |
1062 | # |
| 1068 | # Usage: unpack_pdv [file to unpack] [size of off_t] |
|
|
| 1069 | # - you have to specify the off_t size ... i have no idea how to extract that |
1063 | # You have to specify the off_t size ... I have no idea how to extract that |
| 1070 | # information out of the binary executable myself. basically you pass in |
1064 | # information out of the binary executable myself. Basically you pass in |
| 1071 | # the size of the off_t type (in bytes) on the machine that built the pdv |
1065 | # the size of the off_t type (in bytes) on the machine that built the pdv |
|
|
1066 | # archive. |
|
|
1067 | # |
| 1072 | # archive. one way to determine this is by running the following commands: |
1068 | # One way to determine this is by running the following commands: |
|
|
1069 | # |
|
|
1070 | # @CODE |
| 1073 | # strings <pdv archive> | grep lseek |
1071 | # strings <pdv archive> | grep lseek |
| 1074 | # strace -elseek <pdv archive> |
1072 | # strace -elseek <pdv archive> |
|
|
1073 | # @CODE |
|
|
1074 | # |
| 1075 | # basically look for the first lseek command (we do the strings/grep because |
1075 | # Basically look for the first lseek command (we do the strings/grep because |
| 1076 | # sometimes the function call is _llseek or something) and steal the 2nd |
1076 | # sometimes the function call is _llseek or something) and steal the 2nd |
| 1077 | # parameter. here is an example: |
1077 | # parameter. Here is an example: |
|
|
1078 | # |
|
|
1079 | # @CODE |
| 1078 | # root@vapier 0 pdv_unpack # strings hldsupdatetool.bin | grep lseek |
1080 | # vapier@vapier 0 pdv_unpack # strings hldsupdatetool.bin | grep lseek |
| 1079 | # lseek |
1081 | # lseek |
| 1080 | # root@vapier 0 pdv_unpack # strace -elseek ./hldsupdatetool.bin |
1082 | # vapier@vapier 0 pdv_unpack # strace -elseek ./hldsupdatetool.bin |
| 1081 | # lseek(3, -4, SEEK_END) = 2981250 |
1083 | # lseek(3, -4, SEEK_END) = 2981250 |
|
|
1084 | # @CODE |
|
|
1085 | # |
| 1082 | # thus we would pass in the value of '4' as the second parameter. |
1086 | # Thus we would pass in the value of '4' as the second parameter. |
| 1083 | unpack_pdv() { |
1087 | unpack_pdv() { |
| 1084 | local src=$(find_unpackable_file "$1") |
1088 | local src=$(find_unpackable_file "$1") |
| 1085 | local sizeoff_t=$2 |
1089 | local sizeoff_t=$2 |
| 1086 | |
1090 | |
| 1087 | [[ -z ${src} ]] && die "Could not locate source for '$1'" |
1091 | [[ -z ${src} ]] && die "Could not locate source for '$1'" |
| … | |
… | |
| 1149 | true |
1153 | true |
| 1150 | #[ -s "${datafile}" ] || die "failure unpacking pdv ('${metaskip}' '${tailskip}' '${datafile}')" |
1154 | #[ -s "${datafile}" ] || die "failure unpacking pdv ('${metaskip}' '${tailskip}' '${datafile}')" |
| 1151 | #assert "failure unpacking pdv ('${metaskip}' '${tailskip}' '${datafile}')" |
1155 | #assert "failure unpacking pdv ('${metaskip}' '${tailskip}' '${datafile}')" |
| 1152 | } |
1156 | } |
| 1153 | |
1157 | |
|
|
1158 | # @FUNCTION: unpack_makeself |
|
|
1159 | # @USAGE: [file to unpack] [offset] [tail|dd] |
|
|
1160 | # @DESCRIPTION: |
| 1154 | # Unpack those pesky makeself generated files ... |
1161 | # Unpack those pesky makeself generated files ... |
| 1155 | # They're shell scripts with the binary package tagged onto |
1162 | # They're shell scripts with the binary package tagged onto |
| 1156 | # the end of the archive. Loki utilized the format as does |
1163 | # the end of the archive. Loki utilized the format as does |
| 1157 | # many other game companies. |
1164 | # many other game companies. |
| 1158 | # |
1165 | # |
| 1159 | # Usage: unpack_makeself [file to unpack] [offset] [tail|dd] |
1166 | # If the file is not specified, then ${A} is used. If the |
| 1160 | # - If the file is not specified then unpack will utilize ${A}. |
|
|
| 1161 | # - If the offset is not specified then we will attempt to extract |
1167 | # offset is not specified then we will attempt to extract |
| 1162 | # the proper offset from the script itself. |
1168 | # the proper offset from the script itself. |
| 1163 | unpack_makeself() { |
1169 | unpack_makeself() { |
| 1164 | local src_input=${1:-${A}} |
1170 | local src_input=${1:-${A}} |
| 1165 | local src=$(find_unpackable_file "${src_input}") |
1171 | local src=$(find_unpackable_file "${src_input}") |
| 1166 | local skip=$2 |
1172 | local skip=$2 |
| 1167 | local exe=$3 |
1173 | local exe=$3 |
| … | |
… | |
| 1237 | ;; |
1243 | ;; |
| 1238 | esac |
1244 | esac |
| 1239 | assert "failure unpacking (${filetype}) makeself ${shrtsrc} ('${ver}' +${skip})" |
1245 | assert "failure unpacking (${filetype}) makeself ${shrtsrc} ('${ver}' +${skip})" |
| 1240 | } |
1246 | } |
| 1241 | |
1247 | |
|
|
1248 | # @FUNCTION: check_license |
|
|
1249 | # @USAGE: [license] |
|
|
1250 | # @DESCRIPTION: |
| 1242 | # Display a license for user to accept. |
1251 | # Display a license for user to accept. If no license is |
| 1243 | # |
|
|
| 1244 | # Usage: check_license [license] |
|
|
| 1245 | # - If the file is not specified then ${LICENSE} is used. |
1252 | # specified, then ${LICENSE} is used. |
| 1246 | check_license() { |
1253 | check_license() { |
| 1247 | local lic=$1 |
1254 | local lic=$1 |
| 1248 | if [ -z "${lic}" ] ; then |
1255 | if [ -z "${lic}" ] ; then |
| 1249 | lic="${PORTDIR}/licenses/${LICENSE}" |
1256 | lic="${PORTDIR}/licenses/${LICENSE}" |
| 1250 | else |
1257 | else |
| … | |
… | |
| 1278 | The following license outlines the terms of use of this |
1285 | The following license outlines the terms of use of this |
| 1279 | package. You MUST accept this license for installation to |
1286 | package. You MUST accept this license for installation to |
| 1280 | continue. When you are done viewing, hit 'q'. If you |
1287 | continue. When you are done viewing, hit 'q'. If you |
| 1281 | CTRL+C out of this, the install will not run! |
1288 | CTRL+C out of this, the install will not run! |
| 1282 | ********************************************************** |
1289 | ********************************************************** |
| 1283 | |
1290 | |
| 1284 | EOF |
1291 | EOF |
| 1285 | cat ${lic} >> ${licmsg} |
1292 | cat ${lic} >> ${licmsg} |
| 1286 | ${PAGER:-less} ${licmsg} || die "Could not execute pager (${PAGER}) to accept ${lic}" |
1293 | ${PAGER:-less} ${licmsg} || die "Could not execute pager (${PAGER}) to accept ${lic}" |
| 1287 | einfon "Do you accept the terms of this license (${l})? [yes/no] " |
1294 | einfon "Do you accept the terms of this license (${l})? [yes/no] " |
| 1288 | read alic |
1295 | read alic |
| … | |
… | |
| 1296 | die "Failed to accept license" |
1303 | die "Failed to accept license" |
| 1297 | ;; |
1304 | ;; |
| 1298 | esac |
1305 | esac |
| 1299 | } |
1306 | } |
| 1300 | |
1307 | |
|
|
1308 | # @FUNCTION: cdrom_get_cds |
|
|
1309 | # @USAGE: <file on cd1> [file on cd2] [file on cd3] [...] |
|
|
1310 | # @DESCRIPTION: |
| 1301 | # Aquire cd(s) for those lovely cd-based emerges. Yes, this violates |
1311 | # Aquire cd(s) for those lovely cd-based emerges. Yes, this violates |
| 1302 | # the whole 'non-interactive' policy, but damnit I want CD support ! |
1312 | # the whole 'non-interactive' policy, but damnit I want CD support ! |
| 1303 | # |
1313 | # |
| 1304 | # with these cdrom functions we handle all the user interaction and |
1314 | # With these cdrom functions we handle all the user interaction and |
| 1305 | # standardize everything. all you have to do is call cdrom_get_cds() |
1315 | # standardize everything. All you have to do is call cdrom_get_cds() |
| 1306 | # and when the function returns, you can assume that the cd has been |
1316 | # and when the function returns, you can assume that the cd has been |
| 1307 | # found at CDROM_ROOT. |
1317 | # found at CDROM_ROOT. |
| 1308 | # |
1318 | # |
|
|
1319 | # The function will attempt to locate a cd based upon a file that is on |
|
|
1320 | # the cd. The more files you give this function, the more cds |
|
|
1321 | # the cdrom functions will handle. |
|
|
1322 | # |
| 1309 | # normally the cdrom functions will refer to the cds as 'cd #1', 'cd #2', |
1323 | # Normally the cdrom functions will refer to the cds as 'cd #1', 'cd #2', |
| 1310 | # etc... if you want to give the cds better names, then just export |
1324 | # etc... If you want to give the cds better names, then just export |
| 1311 | # the appropriate CDROM_NAME variable before calling cdrom_get_cds(). |
1325 | # the appropriate CDROM_NAME variable before calling cdrom_get_cds(). |
| 1312 | # - CDROM_NAME="fooie cd" - for when you only want 1 cd |
1326 | # Use CDROM_NAME for one cd, or CDROM_NAME_# for multiple cds. You can |
| 1313 | # - CDROM_NAME_1="install cd" - for when you want more than 1 cd |
1327 | # also use the CDROM_NAME_SET bash array. |
| 1314 | # CDROM_NAME_2="data cd" |
|
|
| 1315 | # - CDROM_NAME_SET=( "install cd" "data cd" ) - short hand for CDROM_NAME_# |
|
|
| 1316 | # |
1328 | # |
| 1317 | # for those multi cd ebuilds, see the cdrom_load_next_cd() below. |
1329 | # For those multi cd ebuilds, see the cdrom_load_next_cd() function. |
| 1318 | # |
|
|
| 1319 | # Usage: cdrom_get_cds <file on cd1> [file on cd2] [file on cd3] [...] |
|
|
| 1320 | # - this will attempt to locate a cd based upon a file that is on |
|
|
| 1321 | # the cd ... the more files you give this function, the more cds |
|
|
| 1322 | # the cdrom functions will handle |
|
|
| 1323 | cdrom_get_cds() { |
1330 | cdrom_get_cds() { |
| 1324 | # first we figure out how many cds we're dealing with by |
1331 | # first we figure out how many cds we're dealing with by |
| 1325 | # the # of files they gave us |
1332 | # the # of files they gave us |
| 1326 | local cdcnt=0 |
1333 | local cdcnt=0 |
| 1327 | local f= |
1334 | local f= |
| … | |
… | |
| 1413 | export CDROM_SET="" |
1420 | export CDROM_SET="" |
| 1414 | export CDROM_CURRENT_CD=0 |
1421 | export CDROM_CURRENT_CD=0 |
| 1415 | cdrom_load_next_cd |
1422 | cdrom_load_next_cd |
| 1416 | } |
1423 | } |
| 1417 | |
1424 | |
| 1418 | # this is only used when you need access to more than one cd. |
1425 | # @FUNCTION: cdrom_load_next_cd |
| 1419 | # when you have finished using the first cd, just call this function. |
1426 | # @DESCRIPTION: |
| 1420 | # when it returns, CDROM_ROOT will be pointing to the second cd. |
1427 | # Some packages are so big they come on multiple CDs. When you're done reading |
| 1421 | # remember, you can only go forward in the cd chain, you can't go back. |
1428 | # files off a CD and want access to the next one, just call this function. |
|
|
1429 | # Again, all the messy details of user interaction are taken care of for you. |
|
|
1430 | # Once this returns, just read the variable CDROM_ROOT for the location of the |
|
|
1431 | # mounted CD. Note that you can only go forward in the CD list, so make sure |
|
|
1432 | # you only call this function when you're done using the current CD. |
| 1422 | cdrom_load_next_cd() { |
1433 | cdrom_load_next_cd() { |
| 1423 | local var |
1434 | local var |
| 1424 | ((++CDROM_CURRENT_CD)) |
1435 | ((++CDROM_CURRENT_CD)) |
| 1425 | |
1436 | |
| 1426 | unset CDROM_ROOT |
1437 | unset CDROM_ROOT |
| … | |
… | |
| 1443 | # displayed and we'll hang out here until: |
1454 | # displayed and we'll hang out here until: |
| 1444 | # (1) the file is found on a mounted cdrom |
1455 | # (1) the file is found on a mounted cdrom |
| 1445 | # (2) the user hits CTRL+C |
1456 | # (2) the user hits CTRL+C |
| 1446 | _cdrom_locate_file_on_cd() { |
1457 | _cdrom_locate_file_on_cd() { |
| 1447 | local mline="" |
1458 | local mline="" |
| 1448 | local showedmsg=0 |
1459 | local showedmsg=0 showjolietmsg=0 |
| 1449 | |
1460 | |
| 1450 | while [[ -z ${CDROM_ROOT} ]] ; do |
1461 | while [[ -z ${CDROM_ROOT} ]] ; do |
| 1451 | local i=0 |
1462 | local i=0 |
| 1452 | local -a cdset=(${*//:/ }) |
1463 | local -a cdset=(${*//:/ }) |
| 1453 | if [[ -n ${CDROM_SET} ]] ; then |
1464 | if [[ -n ${CDROM_SET} ]] ; then |
| … | |
… | |
| 1458 | local dir=$(dirname ${cdset[${i}]}) |
1469 | local dir=$(dirname ${cdset[${i}]}) |
| 1459 | local file=$(basename ${cdset[${i}]}) |
1470 | local file=$(basename ${cdset[${i}]}) |
| 1460 | |
1471 | |
| 1461 | local point= node= fs= foo= |
1472 | local point= node= fs= foo= |
| 1462 | while read point node fs foo ; do |
1473 | while read point node fs foo ; do |
| 1463 | [[ " cd9660 iso9660 " != *" ${fs} "* ]] && \ |
1474 | [[ " cd9660 iso9660 udf " != *" ${fs} "* ]] && \ |
| 1464 | ! [[ ${fs} == "subfs" && ",${opts}," == *",fs=cdfss,"* ]] \ |
1475 | ! [[ ${fs} == "subfs" && ",${opts}," == *",fs=cdfss,"* ]] \ |
| 1465 | && continue |
1476 | && continue |
| 1466 | point=${point//\040/ } |
1477 | point=${point//\040/ } |
|
|
1478 | [[ ! -d ${point}/${dir} ]] && continue |
| 1467 | [[ -z $(find "${point}/${dir}" -maxdepth 1 -iname "${file}") ]] && continue |
1479 | [[ -z $(find "${point}/${dir}" -maxdepth 1 -iname "${file}") ]] && continue |
| 1468 | export CDROM_ROOT=${point} |
1480 | export CDROM_ROOT=${point} |
| 1469 | export CDROM_SET=${i} |
1481 | export CDROM_SET=${i} |
| 1470 | export CDROM_MATCH=${cdset[${i}]} |
1482 | export CDROM_MATCH=${cdset[${i}]} |
| 1471 | return |
1483 | return |
| … | |
… | |
| 1493 | showedmsg=1 |
1505 | showedmsg=1 |
| 1494 | fi |
1506 | fi |
| 1495 | einfo "Press return to scan for the cd again" |
1507 | einfo "Press return to scan for the cd again" |
| 1496 | einfo "or hit CTRL+C to abort the emerge." |
1508 | einfo "or hit CTRL+C to abort the emerge." |
| 1497 | echo |
1509 | echo |
|
|
1510 | if [[ ${showjolietmsg} -eq 0 ]] ; then |
|
|
1511 | showjolietmsg=1 |
|
|
1512 | else |
| 1498 | einfo "If you are having trouble with the detection" |
1513 | ewarn "If you are having trouble with the detection" |
| 1499 | einfo "of your CD, it is possible that you do not have" |
1514 | ewarn "of your CD, it is possible that you do not have" |
| 1500 | einfo "Joliet support enabled in your kernel. Please" |
1515 | ewarn "Joliet support enabled in your kernel. Please" |
| 1501 | einfo "check that CONFIG_JOLIET is enabled in your kernel." |
1516 | ewarn "check that CONFIG_JOLIET is enabled in your kernel." |
|
|
1517 | ebeep 5 |
|
|
1518 | fi |
| 1502 | read || die "something is screwed with your system" |
1519 | read || die "something is screwed with your system" |
| 1503 | done |
1520 | done |
| 1504 | } |
1521 | } |
| 1505 | |
1522 | |
|
|
1523 | # @FUNCTION: strip-linguas |
|
|
1524 | # @USAGE: [<allow LINGUAS>|<-i|-u> <directories of .po files>] |
|
|
1525 | # @DESCRIPTION: |
| 1506 | # Make sure that LINGUAS only contains languages that |
1526 | # Make sure that LINGUAS only contains languages that |
| 1507 | # a package can support |
1527 | # a package can support. The first form allows you to |
| 1508 | # |
1528 | # specify a list of LINGUAS. The -i builds a list of po |
| 1509 | # usage: strip-linguas <allow LINGUAS> |
1529 | # files found in all the directories and uses the |
| 1510 | # strip-linguas -i <directories of .po files> |
1530 | # intersection of the lists. The -u builds a list of po |
| 1511 | # strip-linguas -u <directories of .po files> |
1531 | # files found in all the directories and uses the union |
| 1512 | # |
1532 | # of the lists. |
| 1513 | # The first form allows you to specify a list of LINGUAS. |
|
|
| 1514 | # The -i builds a list of po files found in all the |
|
|
| 1515 | # directories and uses the intersection of the lists. |
|
|
| 1516 | # The -u builds a list of po files found in all the |
|
|
| 1517 | # directories and uses the union of the lists. |
|
|
| 1518 | strip-linguas() { |
1533 | strip-linguas() { |
| 1519 | local ls newls nols |
1534 | local ls newls nols |
| 1520 | if [[ $1 == "-i" ]] || [[ $1 == "-u" ]] ; then |
1535 | if [[ $1 == "-i" ]] || [[ $1 == "-u" ]] ; then |
| 1521 | local op=$1; shift |
1536 | local op=$1; shift |
| 1522 | ls=$(find "$1" -name '*.po' -exec basename {} .po \;); shift |
1537 | ls=$(find "$1" -name '*.po' -exec basename {} .po \;); shift |
| … | |
… | |
| 1552 | [[ -n ${nols} ]] \ |
1567 | [[ -n ${nols} ]] \ |
| 1553 | && ewarn "Sorry, but ${PN} does not support the LINGUAs:" ${nols} |
1568 | && ewarn "Sorry, but ${PN} does not support the LINGUAs:" ${nols} |
| 1554 | export LINGUAS=${newls:1} |
1569 | export LINGUAS=${newls:1} |
| 1555 | } |
1570 | } |
| 1556 | |
1571 | |
| 1557 | # moved from kernel.eclass since they are generally useful outside of |
1572 | # @FUNCTION: preserve_old_lib |
| 1558 | # kernel.eclass -iggy (20041002) |
1573 | # @USAGE: <libs to preserve> [more libs] |
| 1559 | |
1574 | # @DESCRIPTION: |
| 1560 | # the following functions are useful in kernel module ebuilds, etc. |
|
|
| 1561 | # for an example see ivtv or drbd ebuilds |
|
|
| 1562 | |
|
|
| 1563 | # set's ARCH to match what the kernel expects |
|
|
| 1564 | set_arch_to_kernel() { |
|
|
| 1565 | i=10 |
|
|
| 1566 | while ((i--)) ; do |
|
|
| 1567 | ewarn "PLEASE UPDATE TO YOUR PACKAGE TO USE linux-info.eclass" |
|
|
| 1568 | done |
|
|
| 1569 | export EUTILS_ECLASS_PORTAGE_ARCH="${ARCH}" |
|
|
| 1570 | case ${ARCH} in |
|
|
| 1571 | x86) export ARCH="i386";; |
|
|
| 1572 | amd64) export ARCH="x86_64";; |
|
|
| 1573 | hppa) export ARCH="parisc";; |
|
|
| 1574 | mips) export ARCH="mips";; |
|
|
| 1575 | sparc) export ARCH="$(tc-arch-kernel)";; # Yeah this is ugly, but it's even WORSE if you don't do this. linux-info.eclass's set_arch_to_kernel is fixed, but won't get used over this one! |
|
|
| 1576 | *) export ARCH="${ARCH}";; |
|
|
| 1577 | esac |
|
|
| 1578 | } |
|
|
| 1579 | |
|
|
| 1580 | # set's ARCH back to what portage expects |
|
|
| 1581 | set_arch_to_portage() { |
|
|
| 1582 | i=10 |
|
|
| 1583 | while ((i--)) ; do |
|
|
| 1584 | ewarn "PLEASE UPDATE TO YOUR PACKAGE TO USE linux-info.eclass" |
|
|
| 1585 | done |
|
|
| 1586 | export ARCH="${EUTILS_ECLASS_PORTAGE_ARCH}" |
|
|
| 1587 | } |
|
|
| 1588 | |
|
|
| 1589 | # Jeremy Huddleston <eradicator@gentoo.org>: |
|
|
| 1590 | # preserve_old_lib /path/to/libblah.so.0 |
|
|
| 1591 | # preserve_old_lib_notify /path/to/libblah.so.0 |
|
|
| 1592 | # |
|
|
| 1593 | # These functions are useful when a lib in your package changes --library. Such |
1575 | # These functions are useful when a lib in your package changes ABI SONAME. |
| 1594 | # an example might be from libogg.so.0 to libogg.so.1. Removing libogg.so.0 |
1576 | # An example might be from libogg.so.0 to libogg.so.1. Removing libogg.so.0 |
| 1595 | # would break packages that link against it. Most people get around this |
1577 | # would break packages that link against it. Most people get around this |
| 1596 | # by using the portage SLOT mechanism, but that is not always a relevant |
1578 | # by using the portage SLOT mechanism, but that is not always a relevant |
| 1597 | # solution, so instead you can add the following to your ebuilds: |
1579 | # solution, so instead you can call this from pkg_preinst. See also the |
| 1598 | # |
1580 | # preserve_old_lib_notify function. |
| 1599 | # pkg_preinst() { |
|
|
| 1600 | # ... |
|
|
| 1601 | # preserve_old_lib /usr/$(get_libdir)/libogg.so.0 |
|
|
| 1602 | # ... |
|
|
| 1603 | # } |
|
|
| 1604 | # |
|
|
| 1605 | # pkg_postinst() { |
|
|
| 1606 | # ... |
|
|
| 1607 | # preserve_old_lib_notify /usr/$(get_libdir)/libogg.so.0 |
|
|
| 1608 | # ... |
|
|
| 1609 | # } |
|
|
| 1610 | |
|
|
| 1611 | preserve_old_lib() { |
1581 | preserve_old_lib() { |
| 1612 | if [[ ${EBUILD_PHASE} != "preinst" ]] ; then |
1582 | if [[ ${EBUILD_PHASE} != "preinst" ]] ; then |
| 1613 | eerror "preserve_old_lib() must be called from pkg_preinst() only" |
1583 | eerror "preserve_old_lib() must be called from pkg_preinst() only" |
| 1614 | die "Invalid preserve_old_lib() usage" |
1584 | die "Invalid preserve_old_lib() usage" |
| 1615 | fi |
1585 | fi |
| … | |
… | |
| 1623 | cp "${ROOT}"/${lib} "${D}"/${lib} || die "cp ${lib} failed" |
1593 | cp "${ROOT}"/${lib} "${D}"/${lib} || die "cp ${lib} failed" |
| 1624 | touch "${D}"/${lib} |
1594 | touch "${D}"/${lib} |
| 1625 | done |
1595 | done |
| 1626 | } |
1596 | } |
| 1627 | |
1597 | |
|
|
1598 | # @FUNCTION: preserve_old_lib_notify |
|
|
1599 | # @USAGE: <libs to notify> [more libs] |
|
|
1600 | # @DESCRIPTION: |
|
|
1601 | # Spit helpful messages about the libraries preserved by preserve_old_lib. |
| 1628 | preserve_old_lib_notify() { |
1602 | preserve_old_lib_notify() { |
| 1629 | if [[ ${EBUILD_PHASE} != "postinst" ]] ; then |
1603 | if [[ ${EBUILD_PHASE} != "postinst" ]] ; then |
| 1630 | eerror "preserve_old_lib_notify() must be called from pkg_postinst() only" |
1604 | eerror "preserve_old_lib_notify() must be called from pkg_postinst() only" |
| 1631 | die "Invalid preserve_old_lib_notify() usage" |
1605 | die "Invalid preserve_old_lib_notify() usage" |
| 1632 | fi |
1606 | fi |
| … | |
… | |
| 1643 | ewarn "helper program, simply emerge the 'gentoolkit' package." |
1617 | ewarn "helper program, simply emerge the 'gentoolkit' package." |
| 1644 | ewarn |
1618 | ewarn |
| 1645 | fi |
1619 | fi |
| 1646 | ewarn " # revdep-rebuild --library ${lib##*/}" |
1620 | ewarn " # revdep-rebuild --library ${lib##*/}" |
| 1647 | done |
1621 | done |
|
|
1622 | if [[ ${notice} -eq 1 ]] ; then |
|
|
1623 | ewarn |
|
|
1624 | ewarn "Once you've finished running revdep-rebuild, it should be safe to" |
|
|
1625 | ewarn "delete the old libraries." |
|
|
1626 | fi |
| 1648 | } |
1627 | } |
| 1649 | |
1628 | |
| 1650 | # Hack for people to figure out if a package was built with |
1629 | # @FUNCTION: built_with_use |
| 1651 | # certain USE flags |
|
|
| 1652 | # |
|
|
| 1653 | # Usage: built_with_use [--missing <action>] [-a|-o] <DEPEND ATOM> <List of USE flags> |
1630 | # @USAGE: [--hidden] [--missing <action>] [-a|-o] <DEPEND ATOM> <List of USE flags> |
| 1654 | # ex: built_with_use xchat gtk2 |
1631 | # @DESCRIPTION: |
|
|
1632 | # A temporary hack until portage properly supports DEPENDing on USE |
|
|
1633 | # flags being enabled in packages. This will check to see if the specified |
|
|
1634 | # DEPEND atom was built with the specified list of USE flags. The |
|
|
1635 | # --missing option controls the behavior if called on a package that does |
|
|
1636 | # not actually support the defined USE flags (aka listed in IUSE). |
|
|
1637 | # The default is to abort (call die). The -a and -o flags control |
|
|
1638 | # the requirements of the USE flags. They correspond to "and" and "or" |
|
|
1639 | # logic. So the -a flag means all listed USE flags must be enabled |
|
|
1640 | # while the -o flag means at least one of the listed fIUSE flags must be |
|
|
1641 | # enabled. The --hidden option is really for internal use only as it |
|
|
1642 | # means the USE flag we're checking is hidden expanded, so it won't be found |
|
|
1643 | # in IUSE like normal USE flags. |
| 1655 | # |
1644 | # |
| 1656 | # Flags: -a all USE flags should be utilized |
1645 | # Remember that this function isn't terribly intelligent so order of optional |
| 1657 | # -o at least one USE flag should be utilized |
1646 | # flags matter. |
| 1658 | # --missing peform the specified action if the flag is not in IUSE (true/false/die) |
|
|
| 1659 | # --hidden USE flag we're checking is hidden expanded so it isnt in IUSE |
|
|
| 1660 | # Note: the default flag is '-a' |
|
|
| 1661 | built_with_use() { |
1647 | built_with_use() { |
| 1662 | local hidden="no" |
1648 | local hidden="no" |
| 1663 | if [[ $1 == "--hidden" ]] ; then |
1649 | if [[ $1 == "--hidden" ]] ; then |
| 1664 | hidden="yes" |
1650 | hidden="yes" |
| 1665 | shift |
1651 | shift |
| … | |
… | |
| 1726 | shift |
1712 | shift |
| 1727 | done |
1713 | done |
| 1728 | [[ ${opt} = "-a" ]] |
1714 | [[ ${opt} = "-a" ]] |
| 1729 | } |
1715 | } |
| 1730 | |
1716 | |
|
|
1717 | # @FUNCTION: epunt_cxx |
|
|
1718 | # @USAGE: [dir to scan] |
|
|
1719 | # @DESCRIPTION: |
| 1731 | # Many configure scripts wrongly bail when a C++ compiler |
1720 | # Many configure scripts wrongly bail when a C++ compiler could not be |
| 1732 | # could not be detected. #73450 |
1721 | # detected. If dir is not specified, then it defaults to ${S}. |
|
|
1722 | # |
|
|
1723 | # http://bugs.gentoo.org/73450 |
| 1733 | epunt_cxx() { |
1724 | epunt_cxx() { |
| 1734 | local dir=$1 |
1725 | local dir=$1 |
| 1735 | [[ -z ${dir} ]] && dir=${S} |
1726 | [[ -z ${dir} ]] && dir=${S} |
| 1736 | ebegin "Removing useless C++ checks" |
1727 | ebegin "Removing useless C++ checks" |
| 1737 | local f |
1728 | local f |
| 1738 | for f in $(find ${dir} -name configure) ; do |
1729 | find "${dir}" -name configure | while read f ; do |
| 1739 | patch -p0 "${f}" "${PORTDIR}/eclass/ELT-patches/nocxx/nocxx.patch" > /dev/null |
1730 | patch --no-backup-if-mismatch -p0 "${f}" "${PORTDIR}/eclass/ELT-patches/nocxx/nocxx.patch" > /dev/null |
| 1740 | done |
1731 | done |
| 1741 | eend 0 |
1732 | eend 0 |
| 1742 | } |
1733 | } |
| 1743 | |
1734 | |
| 1744 | # make a wrapper script ... |
1735 | # @FUNCTION: make_wrapper |
| 1745 | # NOTE: this was originally games_make_wrapper, but I noticed other places where |
1736 | # @USAGE: <wrapper> <target> [chdir] [libpaths] [installpath] |
| 1746 | # this could be used, so I have moved it here and made it not games-specific |
1737 | # @DESCRIPTION: |
| 1747 | # -- wolf31o2 |
1738 | # Create a shell wrapper script named wrapper in installpath |
| 1748 | # $1 == wrapper name |
1739 | # (defaults to the bindir) to execute target (default of wrapper) by |
| 1749 | # $2 == binary to run |
1740 | # first optionally setting LD_LIBRARY_PATH to the colon-delimited |
| 1750 | # $3 == directory to chdir before running binary |
1741 | # libpaths followed by optionally changing directory to chdir. |
| 1751 | # $4 == extra LD_LIBRARY_PATH's (make it : delimited) |
|
|
| 1752 | # $5 == path for wrapper |
|
|
| 1753 | make_wrapper() { |
1742 | make_wrapper() { |
| 1754 | local wrapper=$1 bin=$2 chdir=$3 libdir=$4 path=$5 |
1743 | local wrapper=$1 bin=$2 chdir=$3 libdir=$4 path=$5 |
| 1755 | local tmpwrapper=$(emktemp) |
1744 | local tmpwrapper=$(emktemp) |
| 1756 | # We don't want to quote ${bin} so that people can pass complex |
1745 | # We don't want to quote ${bin} so that people can pass complex |
| 1757 | # things as $bin ... "./someprog --args" |
1746 | # things as $bin ... "./someprog --args" |
| … | |
… | |
| 1767 | fi |
1756 | fi |
| 1768 | exec ${bin} "\$@" |
1757 | exec ${bin} "\$@" |
| 1769 | EOF |
1758 | EOF |
| 1770 | chmod go+rx "${tmpwrapper}" |
1759 | chmod go+rx "${tmpwrapper}" |
| 1771 | if [[ -n ${path} ]] ; then |
1760 | if [[ -n ${path} ]] ; then |
|
|
1761 | ( |
| 1772 | exeinto "${path}" |
1762 | exeinto "${path}" |
| 1773 | newexe "${tmpwrapper}" "${wrapper}" |
1763 | newexe "${tmpwrapper}" "${wrapper}" |
|
|
1764 | ) || die |
| 1774 | else |
1765 | else |
| 1775 | newbin "${tmpwrapper}" "${wrapper}" |
1766 | newbin "${tmpwrapper}" "${wrapper}" || die |
| 1776 | fi |
1767 | fi |
| 1777 | } |
1768 | } |