| 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.275 2007/02/17 00:17:39 vapier Exp $ |
3 | # $Header: /var/cvsroot/gentoo-x86/eclass/eutils.eclass,v 1.303 2008/09/20 18:32:35 vapier 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" |
| … | |
… | |
| 36 | sleep 1 |
47 | sleep 1 |
| 37 | done |
48 | done |
| 38 | fi |
49 | fi |
| 39 | } |
50 | } |
| 40 | |
51 | |
| 41 | # This function generate linker scripts in /usr/lib for dynamic |
52 | # @FUNCTION: ecvs_clean |
| 42 | # libs in /lib. This is to fix linking problems when you have |
53 | # @USAGE: [list of dirs] |
| 43 | # the .so in /lib, and the .a in /usr/lib. What happens is that |
54 | # @DESCRIPTION: |
| 44 | # in some cases when linking dynamic, the .a in /usr/lib is used |
55 | # Remove CVS directories recursiveley. Useful when a source tarball contains |
| 45 | # instead of the .so in /lib due to gcc/libtool tweaking ld's |
56 | # internal CVS directories. Defaults to $PWD. |
| 46 | # library search path. This cause many builds to fail. |
57 | ecvs_clean() { |
| 47 | # See bug #4411 for more info. |
58 | [[ -z $* ]] && set -- . |
| 48 | # |
59 | find "$@" -type d -name 'CVS' -prune -print0 | xargs -0 rm -rf |
| 49 | # To use, simply call: |
60 | find "$@" -type f -name '.cvs*' -print0 | xargs -0 rm -rf |
| 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 | } |
61 | } |
| 87 | |
62 | |
|
|
63 | # @FUNCTION: esvn_clean |
|
|
64 | # @USAGE: [list of dirs] |
|
|
65 | # @DESCRIPTION: |
|
|
66 | # Remove .svn directories recursiveley. Useful when a source tarball contains |
|
|
67 | # internal Subversion directories. Defaults to $PWD. |
|
|
68 | esvn_clean() { |
|
|
69 | [[ -z $* ]] && set -- . |
|
|
70 | find "$@" -type d -name '.svn' -prune -print0 | xargs -0 rm -rf |
|
|
71 | } |
| 88 | |
72 | |
| 89 | # Default directory where patches are located |
73 | # Default directory where patches are located |
| 90 | EPATCH_SOURCE="${WORKDIR}/patch" |
74 | EPATCH_SOURCE="${WORKDIR}/patch" |
| 91 | # Default extension for patches |
75 | # Default extension for patches |
| 92 | EPATCH_SUFFIX="patch.bz2" |
76 | EPATCH_SUFFIX="patch.bz2" |
| … | |
… | |
| 180 | local EPATCH_SOURCE="$1/*" |
164 | local EPATCH_SOURCE="$1/*" |
| 181 | else |
165 | else |
| 182 | local EPATCH_SOURCE="$1/*.${EPATCH_SUFFIX}" |
166 | local EPATCH_SOURCE="$1/*.${EPATCH_SUFFIX}" |
| 183 | fi |
167 | fi |
| 184 | else |
168 | else |
| 185 | if [ ! -d ${EPATCH_SOURCE} ] || [ -n "$1" ] |
169 | if [[ ! -d ${EPATCH_SOURCE} ]] || [[ -n $1 ]] ; then |
| 186 | then |
|
|
| 187 | if [ -n "$1" -a "${EPATCH_SOURCE}" = "${WORKDIR}/patch" ] |
170 | if [ -n "$1" -a "${EPATCH_SOURCE}" = "${WORKDIR}/patch" ] |
| 188 | then |
171 | then |
| 189 | EPATCH_SOURCE="$1" |
172 | EPATCH_SOURCE="$1" |
| 190 | fi |
173 | fi |
| 191 | |
174 | |
| … | |
… | |
| 200 | |
183 | |
| 201 | local EPATCH_SOURCE="${EPATCH_SOURCE}/*.${EPATCH_SUFFIX}" |
184 | local EPATCH_SOURCE="${EPATCH_SOURCE}/*.${EPATCH_SUFFIX}" |
| 202 | fi |
185 | fi |
| 203 | |
186 | |
| 204 | case ${EPATCH_SUFFIX##*\.} in |
187 | case ${EPATCH_SUFFIX##*\.} in |
|
|
188 | lzma) |
|
|
189 | PIPE_CMD="lzma -dc" |
|
|
190 | PATCH_SUFFIX="lzma" |
|
|
191 | ;; |
| 205 | bz2) |
192 | bz2) |
| 206 | PIPE_CMD="bzip2 -dc" |
193 | PIPE_CMD="bzip2 -dc" |
| 207 | PATCH_SUFFIX="bz2" |
194 | PATCH_SUFFIX="bz2" |
| 208 | ;; |
195 | ;; |
| 209 | gz|Z|z) |
196 | gz|Z|z) |
| … | |
… | |
| 350 | then |
337 | then |
| 351 | einfo "Done with patching" |
338 | einfo "Done with patching" |
| 352 | fi |
339 | fi |
| 353 | } |
340 | } |
| 354 | |
341 | |
|
|
342 | # @FUNCTION: emktemp |
|
|
343 | # @USAGE: [temp dir] |
|
|
344 | # @DESCRIPTION: |
| 355 | # Cheap replacement for when debianutils (and thus mktemp) |
345 | # Cheap replacement for when debianutils (and thus mktemp) |
| 356 | # does not exist on the users system |
346 | # 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() { |
347 | emktemp() { |
| 361 | local exe="touch" |
348 | local exe="touch" |
| 362 | [[ $1 == -d ]] && exe="mkdir" && shift |
349 | [[ $1 == -d ]] && exe="mkdir" && shift |
| 363 | local topdir=$1 |
350 | local topdir=$1 |
| 364 | |
351 | |
| … | |
… | |
| 366 | [[ -z ${T} ]] \ |
353 | [[ -z ${T} ]] \ |
| 367 | && topdir="/tmp" \ |
354 | && topdir="/tmp" \ |
| 368 | || topdir=${T} |
355 | || topdir=${T} |
| 369 | fi |
356 | fi |
| 370 | |
357 | |
| 371 | if [[ -z $(type -p mktemp) ]] ; then |
358 | if ! type -P mktemp > /dev/null ; then |
|
|
359 | # system lacks `mktemp` so we have to fake it |
| 372 | local tmp=/ |
360 | local tmp=/ |
| 373 | while [[ -e ${tmp} ]] ; do |
361 | while [[ -e ${tmp} ]] ; do |
| 374 | tmp=${topdir}/tmp.${RANDOM}.${RANDOM}.${RANDOM} |
362 | tmp=${topdir}/tmp.${RANDOM}.${RANDOM}.${RANDOM} |
| 375 | done |
363 | done |
| 376 | ${exe} "${tmp}" || ${exe} -p "${tmp}" |
364 | ${exe} "${tmp}" || ${exe} -p "${tmp}" |
| 377 | echo "${tmp}" |
365 | echo "${tmp}" |
| 378 | else |
366 | else |
|
|
367 | # the args here will give slightly wierd names on BSD, |
|
|
368 | # but should produce a usable file on all userlands |
| 379 | if [[ ${exe} == "touch" ]] ; then |
369 | if [[ ${exe} == "touch" ]] ; then |
| 380 | [[ ${USERLAND} == "GNU" ]] \ |
|
|
| 381 | && mktemp -p "${topdir}" \ |
|
|
| 382 | || TMPDIR="${topdir}" mktemp -t tmp |
370 | TMPDIR="${topdir}" mktemp -t tmp.XXXXXXXXXX |
| 383 | else |
371 | else |
| 384 | [[ ${USERLAND} == "GNU" ]] \ |
|
|
| 385 | && mktemp -d "${topdir}" \ |
|
|
| 386 | || TMPDIR="${topdir}" mktemp -dt tmp |
372 | TMPDIR="${topdir}" mktemp -dt tmp.XXXXXXXXXX |
| 387 | fi |
|
|
| 388 | fi |
373 | fi |
|
|
374 | fi |
| 389 | } |
375 | } |
| 390 | |
376 | |
|
|
377 | # @FUNCTION: egetent |
|
|
378 | # @USAGE: <database> <key> |
|
|
379 | # @MAINTAINER: |
|
|
380 | # base-system@gentoo.org (Linux) |
|
|
381 | # Joe Jezak <josejx@gmail.com> (OS X) |
|
|
382 | # usata@gentoo.org (OS X) |
|
|
383 | # Aaron Walker <ka0ttic@gentoo.org> (FreeBSD) |
|
|
384 | # @DESCRIPTION: |
| 391 | # Small wrapper for getent (Linux), nidump (Mac OS X), |
385 | # Small wrapper for getent (Linux), nidump (Mac OS X), |
| 392 | # and pw (FreeBSD) used in enewuser()/enewgroup() |
386 | # and pw (FreeBSD) used in enewuser()/enewgroup() |
| 393 | # Joe Jezak <josejx@gmail.com> and usata@gentoo.org |
|
|
| 394 | # FBSD stuff: Aaron Walker <ka0ttic@gentoo.org> |
|
|
| 395 | # |
|
|
| 396 | # egetent(database, key) |
|
|
| 397 | egetent() { |
387 | egetent() { |
| 398 | case ${CHOST} in |
388 | case ${CHOST} in |
| 399 | *-darwin*) |
389 | *-darwin*) |
| 400 | case "$2" in |
390 | case "$2" in |
| 401 | *[!0-9]*) # Non numeric |
391 | *[!0-9]*) # Non numeric |
| … | |
… | |
| 425 | getent "$1" "$2" |
415 | getent "$1" "$2" |
| 426 | ;; |
416 | ;; |
| 427 | esac |
417 | esac |
| 428 | } |
418 | } |
| 429 | |
419 | |
| 430 | # Simplify/standardize adding users to the system |
420 | # @FUNCTION: enewuser |
| 431 | # vapier@gentoo.org |
421 | # @USAGE: <user> [uid] [shell] [homedir] [groups] [params] |
| 432 | # |
422 | # @DESCRIPTION: |
| 433 | # enewuser(username, uid, shell, homedir, groups, extra options) |
423 | # Same as enewgroup, you are not required to understand how to properly add |
| 434 | # |
424 | # a user to the system. The only required parameter is the username. |
| 435 | # Default values if you do not specify any: |
425 | # Default uid is (pass -1 for this) next available, default shell is |
| 436 | # username: REQUIRED ! |
426 | # /bin/false, default homedir is /dev/null, there are no default groups, |
| 437 | # uid: next available (see useradd(8)) |
427 | # and default params sets the comment as 'added by portage for ${PN}'. |
| 438 | # note: pass -1 to get default behavior |
|
|
| 439 | # shell: /bin/false |
|
|
| 440 | # homedir: /dev/null |
|
|
| 441 | # groups: none |
|
|
| 442 | # extra: comment of 'added by portage for ${PN}' |
|
|
| 443 | enewuser() { |
428 | enewuser() { |
| 444 | case ${EBUILD_PHASE} in |
429 | case ${EBUILD_PHASE} in |
| 445 | unpack|compile|test|install) |
430 | unpack|compile|test|install) |
| 446 | eerror "'enewuser()' called from '${EBUILD_PHASE}()' which is not a pkg_* function." |
431 | eerror "'enewuser()' called from '${EBUILD_PHASE}()' which is not a pkg_* function." |
| 447 | eerror "Package fails at QA and at life. Please file a bug." |
432 | eerror "Package fails at QA and at life. Please file a bug." |
| … | |
… | |
| 636 | fi |
621 | fi |
| 637 | |
622 | |
| 638 | export SANDBOX_ON=${oldsandbox} |
623 | export SANDBOX_ON=${oldsandbox} |
| 639 | } |
624 | } |
| 640 | |
625 | |
| 641 | # Simplify/standardize adding groups to the system |
626 | # @FUNCTION: enewgroup |
| 642 | # vapier@gentoo.org |
627 | # @USAGE: <group> [gid] |
| 643 | # |
628 | # @DESCRIPTION: |
| 644 | # enewgroup(group, gid) |
629 | # This function does not require you to understand how to properly add a |
| 645 | # |
630 | # group to the system. Just give it a group name to add and enewgroup will |
| 646 | # Default values if you do not specify any: |
631 | # do the rest. You may specify the gid for the group or allow the group to |
| 647 | # groupname: REQUIRED ! |
632 | # allocate the next available one. |
| 648 | # gid: next available (see groupadd(8)) |
|
|
| 649 | # extra: none |
|
|
| 650 | enewgroup() { |
633 | enewgroup() { |
| 651 | case ${EBUILD_PHASE} in |
634 | case ${EBUILD_PHASE} in |
| 652 | unpack|compile|test|install) |
635 | unpack|compile|test|install) |
| 653 | eerror "'enewgroup()' called from '${EBUILD_PHASE}()' which is not a pkg_* function." |
636 | eerror "'enewgroup()' called from '${EBUILD_PHASE}()' which is not a pkg_* function." |
| 654 | eerror "Package fails at QA and at life. Please file a bug." |
637 | eerror "Package fails at QA and at life. Please file a bug." |
| … | |
… | |
| 750 | ;; |
733 | ;; |
| 751 | esac |
734 | esac |
| 752 | export SANDBOX_ON="${oldsandbox}" |
735 | export SANDBOX_ON="${oldsandbox}" |
| 753 | } |
736 | } |
| 754 | |
737 | |
| 755 | # Simple script to replace 'dos2unix' binaries |
738 | # @FUNCTION: edos2unix |
| 756 | # vapier@gentoo.org |
739 | # @USAGE: <file> [more files ...] |
| 757 | # |
740 | # @DESCRIPTION: |
| 758 | # edos2unix(file, <more files> ...) |
741 | # A handy replacement for dos2unix, recode, fixdos, etc... This allows you |
|
|
742 | # to remove all of these text utilities from DEPEND variables because this |
|
|
743 | # is a script based solution. Just give it a list of files to convert and |
|
|
744 | # they will all be changed from the DOS CRLF format to the UNIX LF format. |
| 759 | edos2unix() { |
745 | edos2unix() { |
| 760 | echo "$@" | xargs sed -i 's/\r$//' |
746 | echo "$@" | xargs sed -i 's/\r$//' |
| 761 | } |
747 | } |
| 762 | |
|
|
| 763 | |
|
|
| 764 | ############################################################## |
|
|
| 765 | # START: Handle .desktop files and menu entries # |
|
|
| 766 | # maybe this should be separated into a new eclass some time # |
|
|
| 767 | # lanius@gentoo.org # |
|
|
| 768 | ############################################################## |
|
|
| 769 | |
748 | |
| 770 | # Make a desktop file ! |
749 | # Make a desktop file ! |
| 771 | # Great for making those icons in kde/gnome startmenu ! |
750 | # Great for making those icons in kde/gnome startmenu ! |
| 772 | # Amaze your friends ! Get the women ! Join today ! |
751 | # Amaze your friends ! Get the women ! Join today ! |
| 773 | # |
752 | # |
| … | |
… | |
| 777 | # name: the name that will show up in the menu |
756 | # name: the name that will show up in the menu |
| 778 | # icon: give your little like a pretty little icon ... |
757 | # icon: give your little like a pretty little icon ... |
| 779 | # this can be relative (to /usr/share/pixmaps) or |
758 | # this can be relative (to /usr/share/pixmaps) or |
| 780 | # a full path to an icon |
759 | # a full path to an icon |
| 781 | # type: what kind of application is this ? for categories: |
760 | # type: what kind of application is this ? for categories: |
| 782 | # http://www.freedesktop.org/Standards/desktop-entry-spec |
761 | # http://standards.freedesktop.org/menu-spec/latest/apa.html |
| 783 | # path: if your app needs to startup in a specific dir |
762 | # path: if your app needs to startup in a specific dir |
| 784 | make_desktop_entry() { |
763 | make_desktop_entry() { |
| 785 | [[ -z $1 ]] && eerror "make_desktop_entry: You must specify the executable" && return 1 |
764 | [[ -z $1 ]] && eerror "make_desktop_entry: You must specify the executable" && return 1 |
| 786 | |
765 | |
| 787 | local exec=${1} |
766 | local exec=${1} |
| 788 | local name=${2:-${PN}} |
767 | local name=${2:-${PN}} |
| 789 | local icon=${3:-${PN}.png} |
768 | local icon=${3:-${PN}} |
| 790 | local type=${4} |
769 | local type=${4} |
| 791 | local path=${5} |
770 | local path=${5} |
| 792 | |
771 | |
| 793 | if [[ -z ${type} ]] ; then |
772 | if [[ -z ${type} ]] ; then |
| 794 | local catmaj=${CATEGORY%%-*} |
773 | local catmaj=${CATEGORY%%-*} |
| 795 | local catmin=${CATEGORY##*-} |
774 | local catmin=${CATEGORY##*-} |
| 796 | case ${catmaj} in |
775 | case ${catmaj} in |
| 797 | app) |
776 | app) |
| 798 | case ${catmin} in |
777 | case ${catmin} in |
|
|
778 | accessibility) type=Accessibility;; |
| 799 | admin) type=System;; |
779 | admin) type=System;; |
|
|
780 | antivirus) type=System;; |
|
|
781 | arch) type=Archiving;; |
|
|
782 | backup) type=Archiving;; |
| 800 | cdr) type=DiscBurning;; |
783 | cdr) type=DiscBurning;; |
| 801 | dicts) type=Dictionary;; |
784 | dicts) type=Dictionary;; |
|
|
785 | doc) type=Documentation;; |
| 802 | editors) type=TextEditor;; |
786 | editors) type=TextEditor;; |
| 803 | emacs) type=TextEditor;; |
787 | emacs) type=TextEditor;; |
| 804 | emulation) type=Emulator;; |
788 | emulation) type=Emulator;; |
| 805 | laptop) type=HardwareSettings;; |
789 | laptop) type=HardwareSettings;; |
| 806 | office) type=Office;; |
790 | office) type=Office;; |
|
|
791 | pda) type=PDA;; |
| 807 | vim) type=TextEditor;; |
792 | vim) type=TextEditor;; |
| 808 | xemacs) type=TextEditor;; |
793 | xemacs) type=TextEditor;; |
| 809 | *) type=;; |
794 | *) type=;; |
| 810 | esac |
795 | esac |
| 811 | ;; |
796 | ;; |
| … | |
… | |
| 817 | games) |
802 | games) |
| 818 | case ${catmin} in |
803 | case ${catmin} in |
| 819 | action|fps) type=ActionGame;; |
804 | action|fps) type=ActionGame;; |
| 820 | arcade) type=ArcadeGame;; |
805 | arcade) type=ArcadeGame;; |
| 821 | board) type=BoardGame;; |
806 | board) type=BoardGame;; |
|
|
807 | emulation) type=Emulator;; |
| 822 | kids) type=KidsGame;; |
808 | kids) type=KidsGame;; |
| 823 | emulation) type=Emulator;; |
|
|
| 824 | puzzle) type=LogicGame;; |
809 | puzzle) type=LogicGame;; |
|
|
810 | roguelike) type=RolePlaying;; |
| 825 | rpg) type=RolePlaying;; |
811 | rpg) type=RolePlaying;; |
| 826 | roguelike) type=RolePlaying;; |
|
|
| 827 | simulation) type=Simulation;; |
812 | simulation) type=Simulation;; |
| 828 | sports) type=SportsGame;; |
813 | sports) type=SportsGame;; |
| 829 | strategy) type=StrategyGame;; |
814 | strategy) type=StrategyGame;; |
| 830 | *) type=;; |
815 | *) type=;; |
| 831 | esac |
816 | esac |
| 832 | type="Game;${type}" |
817 | type="Game;${type}" |
|
|
818 | ;; |
|
|
819 | |
|
|
820 | gnome) |
|
|
821 | type="Gnome;GTK" |
|
|
822 | ;; |
|
|
823 | |
|
|
824 | kde) |
|
|
825 | type="KDE;Qt" |
| 833 | ;; |
826 | ;; |
| 834 | |
827 | |
| 835 | mail) |
828 | mail) |
| 836 | type="Network;Email" |
829 | type="Network;Email" |
| 837 | ;; |
830 | ;; |
| … | |
… | |
| 863 | type="Network;${type}" |
856 | type="Network;${type}" |
| 864 | ;; |
857 | ;; |
| 865 | |
858 | |
| 866 | sci) |
859 | sci) |
| 867 | case ${catmin} in |
860 | case ${catmin} in |
| 868 | astro*) type=Astronomy;; |
861 | astro*) type=Astronomy;; |
| 869 | bio*) type=Biology;; |
862 | bio*) type=Biology;; |
| 870 | calc*) type=Calculator;; |
863 | calc*) type=Calculator;; |
| 871 | chem*) type=Chemistry;; |
864 | chem*) type=Chemistry;; |
|
|
865 | elec*) type=Electronics;; |
| 872 | geo*) type=Geology;; |
866 | geo*) type=Geology;; |
| 873 | math*) type=Math;; |
867 | math*) type=Math;; |
|
|
868 | physics) type=Physics;; |
|
|
869 | visual*) type=DataVisualization;; |
| 874 | *) type=;; |
870 | *) type=;; |
| 875 | esac |
871 | esac |
| 876 | type="Science;${type}" |
872 | type="Science;${type}" |
|
|
873 | ;; |
|
|
874 | |
|
|
875 | sys) |
|
|
876 | type="System" |
| 877 | ;; |
877 | ;; |
| 878 | |
878 | |
| 879 | www) |
879 | www) |
| 880 | case ${catmin} in |
880 | case ${catmin} in |
| 881 | client) type=WebBrowser;; |
881 | client) type=WebBrowser;; |
| … | |
… | |
| 897 | local desktop="${T}/$(echo ${exec} | sed 's:[[:space:]/:]:_:g')-${desktop_name}.desktop" |
897 | local desktop="${T}/$(echo ${exec} | sed 's:[[:space:]/:]:_:g')-${desktop_name}.desktop" |
| 898 | #local desktop=${T}/${exec%% *:-${desktop_name}}.desktop |
898 | #local desktop=${T}/${exec%% *:-${desktop_name}}.desktop |
| 899 | |
899 | |
| 900 | cat <<-EOF > "${desktop}" |
900 | cat <<-EOF > "${desktop}" |
| 901 | [Desktop Entry] |
901 | [Desktop Entry] |
| 902 | Encoding=UTF-8 |
|
|
| 903 | Version=0.9.2 |
902 | Version=1.0 |
| 904 | Name=${name} |
903 | Name=${name} |
| 905 | Type=Application |
904 | Type=Application |
| 906 | Comment=${DESCRIPTION} |
905 | Comment=${DESCRIPTION} |
| 907 | Exec=${exec} |
906 | Exec=${exec} |
| 908 | TryExec=${exec%% *} |
907 | TryExec=${exec%% *} |
| 909 | Path=${path} |
|
|
| 910 | Icon=${icon} |
908 | Icon=${icon} |
| 911 | Categories=Application;${type}; |
909 | Categories=${type}; |
| 912 | EOF |
910 | EOF |
|
|
911 | |
|
|
912 | [[ ${path} ]] && echo "Path=${path}" >> "${desktop}" |
| 913 | |
913 | |
| 914 | ( |
914 | ( |
| 915 | # wrap the env here so that the 'insinto' call |
915 | # wrap the env here so that the 'insinto' call |
| 916 | # doesn't corrupt the env of the caller |
916 | # doesn't corrupt the env of the caller |
| 917 | insinto /usr/share/applications |
917 | insinto /usr/share/applications |
| 918 | doins "${desktop}" |
918 | doins "${desktop}" |
| 919 | ) |
919 | ) |
| 920 | } |
920 | } |
| 921 | |
921 | |
| 922 | # Make a GDM/KDM Session file |
922 | # @FUNCTION: validate_desktop_entries |
| 923 | # |
923 | # @USAGE: [directories] |
| 924 | # make_session_desktop(<title>, <command>) |
924 | # @MAINTAINER: |
| 925 | # title: File to execute to start the Window Manager |
925 | # Carsten Lohrke <carlo@gentoo.org> |
| 926 | # command: Name of the Window Manager |
926 | # @DESCRIPTION: |
|
|
927 | # Validate desktop entries using desktop-file-utils |
|
|
928 | validate_desktop_entries() { |
|
|
929 | if [[ -x /usr/bin/desktop-file-validate ]] ; then |
|
|
930 | einfo "Checking desktop entry validity" |
|
|
931 | local directories="" |
|
|
932 | for d in /usr/share/applications $@ ; do |
|
|
933 | [[ -d ${D}${d} ]] && directories="${directories} ${D}${d}" |
|
|
934 | done |
|
|
935 | if [[ -n ${directories} ]] ; then |
|
|
936 | for FILE in $(find ${directories} -name "*\.desktop" \ |
|
|
937 | -not -path '*.hidden*' | sort -u 2>/dev/null) |
|
|
938 | do |
|
|
939 | local temp=$(desktop-file-validate ${FILE} | grep -v "warning:" | \ |
|
|
940 | sed -e "s|error: ||" -e "s|${FILE}:|--|g" ) |
|
|
941 | [[ -n $temp ]] && elog ${temp/--/${FILE/${D}/}:} |
|
|
942 | done |
|
|
943 | fi |
|
|
944 | echo "" |
|
|
945 | else |
|
|
946 | einfo "Passing desktop entry validity check. Install dev-util/desktop-file-utils, if you want to help to improve Gentoo." |
|
|
947 | fi |
|
|
948 | } |
| 927 | |
949 | |
|
|
950 | # @FUNCTION: make_session_desktop |
|
|
951 | # @USAGE: <title> <command> |
|
|
952 | # @DESCRIPTION: |
|
|
953 | # Make a GDM/KDM Session file. The title is the file to execute to start the |
|
|
954 | # Window Manager. The command is the name of the Window Manager. |
| 928 | make_session_desktop() { |
955 | make_session_desktop() { |
| 929 | [[ -z $1 ]] && eerror "make_session_desktop: You must specify the title" && return 1 |
956 | [[ -z $1 ]] && eerror "make_session_desktop: You must specify the title" && return 1 |
| 930 | [[ -z $2 ]] && eerror "make_session_desktop: You must specify the command" && return 1 |
957 | [[ -z $2 ]] && eerror "make_session_desktop: You must specify the command" && return 1 |
| 931 | |
958 | |
| 932 | local title=$1 |
959 | local title=$1 |
| 933 | local command=$2 |
960 | local command=$2 |
| 934 | local desktop=${T}/${wm}.desktop |
961 | local desktop=${T}/${wm}.desktop |
| 935 | |
962 | |
| 936 | cat <<-EOF > "${desktop}" |
963 | cat <<-EOF > "${desktop}" |
| 937 | [Desktop Entry] |
964 | [Desktop Entry] |
| 938 | Encoding=UTF-8 |
|
|
| 939 | Name=${title} |
965 | Name=${title} |
| 940 | Comment=This session logs you into ${title} |
966 | Comment=This session logs you into ${title} |
| 941 | Exec=${command} |
967 | Exec=${command} |
| 942 | TryExec=${command} |
968 | TryExec=${command} |
| 943 | Type=Application |
969 | Type=Application |
| … | |
… | |
| 949 | insinto /usr/share/xsessions |
975 | insinto /usr/share/xsessions |
| 950 | doins "${desktop}" |
976 | doins "${desktop}" |
| 951 | ) |
977 | ) |
| 952 | } |
978 | } |
| 953 | |
979 | |
|
|
980 | # @FUNCTION: domenu |
|
|
981 | # @USAGE: <menus> |
|
|
982 | # @DESCRIPTION: |
|
|
983 | # Install the list of .desktop menu files into the appropriate directory |
|
|
984 | # (/usr/share/applications). |
| 954 | domenu() { |
985 | domenu() { |
| 955 | ( |
986 | ( |
| 956 | # wrap the env here so that the 'insinto' call |
987 | # wrap the env here so that the 'insinto' call |
| 957 | # doesn't corrupt the env of the caller |
988 | # doesn't corrupt the env of the caller |
| 958 | local i j ret=0 |
989 | local i j ret=0 |
| … | |
… | |
| 964 | elif [[ -d ${i} ]] ; then |
995 | elif [[ -d ${i} ]] ; then |
| 965 | for j in "${i}"/*.desktop ; do |
996 | for j in "${i}"/*.desktop ; do |
| 966 | doins "${j}" |
997 | doins "${j}" |
| 967 | ((ret+=$?)) |
998 | ((ret+=$?)) |
| 968 | done |
999 | done |
|
|
1000 | else |
|
|
1001 | ((++ret)) |
| 969 | fi |
1002 | fi |
| 970 | done |
1003 | done |
| 971 | exit ${ret} |
1004 | exit ${ret} |
| 972 | ) |
1005 | ) |
| 973 | } |
1006 | } |
|
|
1007 | |
|
|
1008 | # @FUNCTION: newmenu |
|
|
1009 | # @USAGE: <menu> <newname> |
|
|
1010 | # @DESCRIPTION: |
|
|
1011 | # Like all other new* functions, install the specified menu as newname. |
| 974 | newmenu() { |
1012 | newmenu() { |
| 975 | ( |
1013 | ( |
| 976 | # wrap the env here so that the 'insinto' call |
1014 | # wrap the env here so that the 'insinto' call |
| 977 | # doesn't corrupt the env of the caller |
1015 | # doesn't corrupt the env of the caller |
| 978 | insinto /usr/share/applications |
1016 | insinto /usr/share/applications |
| 979 | newins "$@" |
1017 | newins "$@" |
| 980 | ) |
1018 | ) |
| 981 | } |
1019 | } |
| 982 | |
1020 | |
|
|
1021 | # @FUNCTION: doicon |
|
|
1022 | # @USAGE: <list of icons> |
|
|
1023 | # @DESCRIPTION: |
|
|
1024 | # Install the list of icons into the icon directory (/usr/share/pixmaps). |
|
|
1025 | # This is useful in conjunction with creating desktop/menu files. |
| 983 | doicon() { |
1026 | doicon() { |
| 984 | ( |
1027 | ( |
| 985 | # wrap the env here so that the 'insinto' call |
1028 | # wrap the env here so that the 'insinto' call |
| 986 | # doesn't corrupt the env of the caller |
1029 | # doesn't corrupt the env of the caller |
| 987 | local i j ret |
1030 | local i j ret |
| … | |
… | |
| 993 | elif [[ -d ${i} ]] ; then |
1036 | elif [[ -d ${i} ]] ; then |
| 994 | for j in "${i}"/*.png ; do |
1037 | for j in "${i}"/*.png ; do |
| 995 | doins "${j}" |
1038 | doins "${j}" |
| 996 | ((ret+=$?)) |
1039 | ((ret+=$?)) |
| 997 | done |
1040 | done |
|
|
1041 | else |
|
|
1042 | ((++ret)) |
| 998 | fi |
1043 | fi |
| 999 | done |
1044 | done |
| 1000 | exit ${ret} |
1045 | exit ${ret} |
| 1001 | ) |
1046 | ) |
| 1002 | } |
1047 | } |
|
|
1048 | |
|
|
1049 | # @FUNCTION: newicon |
|
|
1050 | # @USAGE: <icon> <newname> |
|
|
1051 | # @DESCRIPTION: |
|
|
1052 | # Like all other new* functions, install the specified icon as newname. |
| 1003 | newicon() { |
1053 | newicon() { |
| 1004 | ( |
1054 | ( |
| 1005 | # wrap the env here so that the 'insinto' call |
1055 | # wrap the env here so that the 'insinto' call |
| 1006 | # doesn't corrupt the env of the caller |
1056 | # doesn't corrupt the env of the caller |
| 1007 | insinto /usr/share/pixmaps |
1057 | insinto /usr/share/pixmaps |
| 1008 | newins "$@" |
1058 | newins "$@" |
| 1009 | ) |
1059 | ) |
| 1010 | } |
1060 | } |
| 1011 | |
|
|
| 1012 | ############################################################## |
|
|
| 1013 | # END: Handle .desktop files and menu entries # |
|
|
| 1014 | ############################################################## |
|
|
| 1015 | |
|
|
| 1016 | |
1061 | |
| 1017 | # for internal use only (unpack_pdv and unpack_makeself) |
1062 | # for internal use only (unpack_pdv and unpack_makeself) |
| 1018 | find_unpackable_file() { |
1063 | find_unpackable_file() { |
| 1019 | local src=$1 |
1064 | local src=$1 |
| 1020 | if [[ -z ${src} ]] ; then |
1065 | if [[ -z ${src} ]] ; then |
| … | |
… | |
| 1030 | fi |
1075 | fi |
| 1031 | [[ ! -e ${src} ]] && return 1 |
1076 | [[ ! -e ${src} ]] && return 1 |
| 1032 | echo "${src}" |
1077 | echo "${src}" |
| 1033 | } |
1078 | } |
| 1034 | |
1079 | |
|
|
1080 | # @FUNCTION: unpack_pdv |
|
|
1081 | # @USAGE: <file to unpack> <size of off_t> |
|
|
1082 | # @DESCRIPTION: |
| 1035 | # Unpack those pesky pdv generated files ... |
1083 | # Unpack those pesky pdv generated files ... |
| 1036 | # They're self-unpacking programs with the binary package stuffed in |
1084 | # They're self-unpacking programs with the binary package stuffed in |
| 1037 | # the middle of the archive. Valve seems to use it a lot ... too bad |
1085 | # the middle of the archive. Valve seems to use it a lot ... too bad |
| 1038 | # it seems to like to segfault a lot :(. So lets take it apart ourselves. |
1086 | # it seems to like to segfault a lot :(. So lets take it apart ourselves. |
| 1039 | # |
1087 | # |
| 1040 | # Usage: unpack_pdv [file to unpack] [size of off_t] |
|
|
| 1041 | # - you have to specify the off_t size ... i have no idea how to extract that |
1088 | # You have to specify the off_t size ... I have no idea how to extract that |
| 1042 | # information out of the binary executable myself. basically you pass in |
1089 | # information out of the binary executable myself. Basically you pass in |
| 1043 | # the size of the off_t type (in bytes) on the machine that built the pdv |
1090 | # the size of the off_t type (in bytes) on the machine that built the pdv |
|
|
1091 | # archive. |
|
|
1092 | # |
| 1044 | # archive. one way to determine this is by running the following commands: |
1093 | # One way to determine this is by running the following commands: |
|
|
1094 | # |
|
|
1095 | # @CODE |
| 1045 | # strings <pdv archive> | grep lseek |
1096 | # strings <pdv archive> | grep lseek |
| 1046 | # strace -elseek <pdv archive> |
1097 | # strace -elseek <pdv archive> |
|
|
1098 | # @CODE |
|
|
1099 | # |
| 1047 | # basically look for the first lseek command (we do the strings/grep because |
1100 | # Basically look for the first lseek command (we do the strings/grep because |
| 1048 | # sometimes the function call is _llseek or something) and steal the 2nd |
1101 | # sometimes the function call is _llseek or something) and steal the 2nd |
| 1049 | # parameter. here is an example: |
1102 | # parameter. Here is an example: |
|
|
1103 | # |
|
|
1104 | # @CODE |
| 1050 | # root@vapier 0 pdv_unpack # strings hldsupdatetool.bin | grep lseek |
1105 | # vapier@vapier 0 pdv_unpack # strings hldsupdatetool.bin | grep lseek |
| 1051 | # lseek |
1106 | # lseek |
| 1052 | # root@vapier 0 pdv_unpack # strace -elseek ./hldsupdatetool.bin |
1107 | # vapier@vapier 0 pdv_unpack # strace -elseek ./hldsupdatetool.bin |
| 1053 | # lseek(3, -4, SEEK_END) = 2981250 |
1108 | # lseek(3, -4, SEEK_END) = 2981250 |
|
|
1109 | # @CODE |
|
|
1110 | # |
| 1054 | # thus we would pass in the value of '4' as the second parameter. |
1111 | # Thus we would pass in the value of '4' as the second parameter. |
| 1055 | unpack_pdv() { |
1112 | unpack_pdv() { |
| 1056 | local src=$(find_unpackable_file "$1") |
1113 | local src=$(find_unpackable_file "$1") |
| 1057 | local sizeoff_t=$2 |
1114 | local sizeoff_t=$2 |
| 1058 | |
1115 | |
| 1059 | [[ -z ${src} ]] && die "Could not locate source for '$1'" |
1116 | [[ -z ${src} ]] && die "Could not locate source for '$1'" |
| … | |
… | |
| 1121 | true |
1178 | true |
| 1122 | #[ -s "${datafile}" ] || die "failure unpacking pdv ('${metaskip}' '${tailskip}' '${datafile}')" |
1179 | #[ -s "${datafile}" ] || die "failure unpacking pdv ('${metaskip}' '${tailskip}' '${datafile}')" |
| 1123 | #assert "failure unpacking pdv ('${metaskip}' '${tailskip}' '${datafile}')" |
1180 | #assert "failure unpacking pdv ('${metaskip}' '${tailskip}' '${datafile}')" |
| 1124 | } |
1181 | } |
| 1125 | |
1182 | |
|
|
1183 | # @FUNCTION: unpack_makeself |
|
|
1184 | # @USAGE: [file to unpack] [offset] [tail|dd] |
|
|
1185 | # @DESCRIPTION: |
| 1126 | # Unpack those pesky makeself generated files ... |
1186 | # Unpack those pesky makeself generated files ... |
| 1127 | # They're shell scripts with the binary package tagged onto |
1187 | # They're shell scripts with the binary package tagged onto |
| 1128 | # the end of the archive. Loki utilized the format as does |
1188 | # the end of the archive. Loki utilized the format as does |
| 1129 | # many other game companies. |
1189 | # many other game companies. |
| 1130 | # |
1190 | # |
| 1131 | # Usage: unpack_makeself [file to unpack] [offset] [tail|dd] |
1191 | # If the file is not specified, then ${A} is used. If the |
| 1132 | # - If the file is not specified then unpack will utilize ${A}. |
|
|
| 1133 | # - If the offset is not specified then we will attempt to extract |
1192 | # offset is not specified then we will attempt to extract |
| 1134 | # the proper offset from the script itself. |
1193 | # the proper offset from the script itself. |
| 1135 | unpack_makeself() { |
1194 | unpack_makeself() { |
| 1136 | local src_input=${1:-${A}} |
1195 | local src_input=${1:-${A}} |
| 1137 | local src=$(find_unpackable_file "${src_input}") |
1196 | local src=$(find_unpackable_file "${src_input}") |
| 1138 | local skip=$2 |
1197 | local skip=$2 |
| 1139 | local exe=$3 |
1198 | local exe=$3 |
| … | |
… | |
| 1209 | ;; |
1268 | ;; |
| 1210 | esac |
1269 | esac |
| 1211 | assert "failure unpacking (${filetype}) makeself ${shrtsrc} ('${ver}' +${skip})" |
1270 | assert "failure unpacking (${filetype}) makeself ${shrtsrc} ('${ver}' +${skip})" |
| 1212 | } |
1271 | } |
| 1213 | |
1272 | |
|
|
1273 | # @FUNCTION: check_license |
|
|
1274 | # @USAGE: [license] |
|
|
1275 | # @DESCRIPTION: |
| 1214 | # Display a license for user to accept. |
1276 | # Display a license for user to accept. If no license is |
| 1215 | # |
|
|
| 1216 | # Usage: check_license [license] |
|
|
| 1217 | # - If the file is not specified then ${LICENSE} is used. |
1277 | # specified, then ${LICENSE} is used. |
| 1218 | check_license() { |
1278 | check_license() { |
| 1219 | local lic=$1 |
1279 | local lic=$1 |
| 1220 | if [ -z "${lic}" ] ; then |
1280 | if [ -z "${lic}" ] ; then |
| 1221 | lic="${PORTDIR}/licenses/${LICENSE}" |
1281 | lic="${PORTDIR}/licenses/${LICENSE}" |
| 1222 | else |
1282 | else |
| … | |
… | |
| 1250 | The following license outlines the terms of use of this |
1310 | The following license outlines the terms of use of this |
| 1251 | package. You MUST accept this license for installation to |
1311 | package. You MUST accept this license for installation to |
| 1252 | continue. When you are done viewing, hit 'q'. If you |
1312 | continue. When you are done viewing, hit 'q'. If you |
| 1253 | CTRL+C out of this, the install will not run! |
1313 | CTRL+C out of this, the install will not run! |
| 1254 | ********************************************************** |
1314 | ********************************************************** |
| 1255 | |
1315 | |
| 1256 | EOF |
1316 | EOF |
| 1257 | cat ${lic} >> ${licmsg} |
1317 | cat ${lic} >> ${licmsg} |
| 1258 | ${PAGER:-less} ${licmsg} || die "Could not execute pager (${PAGER}) to accept ${lic}" |
1318 | ${PAGER:-less} ${licmsg} || die "Could not execute pager (${PAGER}) to accept ${lic}" |
| 1259 | einfon "Do you accept the terms of this license (${l})? [yes/no] " |
1319 | einfon "Do you accept the terms of this license (${l})? [yes/no] " |
| 1260 | read alic |
1320 | read alic |
| … | |
… | |
| 1268 | die "Failed to accept license" |
1328 | die "Failed to accept license" |
| 1269 | ;; |
1329 | ;; |
| 1270 | esac |
1330 | esac |
| 1271 | } |
1331 | } |
| 1272 | |
1332 | |
|
|
1333 | # @FUNCTION: cdrom_get_cds |
|
|
1334 | # @USAGE: <file on cd1> [file on cd2] [file on cd3] [...] |
|
|
1335 | # @DESCRIPTION: |
| 1273 | # Aquire cd(s) for those lovely cd-based emerges. Yes, this violates |
1336 | # Aquire cd(s) for those lovely cd-based emerges. Yes, this violates |
| 1274 | # the whole 'non-interactive' policy, but damnit I want CD support ! |
1337 | # the whole 'non-interactive' policy, but damnit I want CD support ! |
| 1275 | # |
1338 | # |
| 1276 | # with these cdrom functions we handle all the user interaction and |
1339 | # With these cdrom functions we handle all the user interaction and |
| 1277 | # standardize everything. all you have to do is call cdrom_get_cds() |
1340 | # standardize everything. All you have to do is call cdrom_get_cds() |
| 1278 | # and when the function returns, you can assume that the cd has been |
1341 | # and when the function returns, you can assume that the cd has been |
| 1279 | # found at CDROM_ROOT. |
1342 | # found at CDROM_ROOT. |
| 1280 | # |
1343 | # |
|
|
1344 | # The function will attempt to locate a cd based upon a file that is on |
|
|
1345 | # the cd. The more files you give this function, the more cds |
|
|
1346 | # the cdrom functions will handle. |
|
|
1347 | # |
| 1281 | # normally the cdrom functions will refer to the cds as 'cd #1', 'cd #2', |
1348 | # Normally the cdrom functions will refer to the cds as 'cd #1', 'cd #2', |
| 1282 | # etc... if you want to give the cds better names, then just export |
1349 | # etc... If you want to give the cds better names, then just export |
| 1283 | # the appropriate CDROM_NAME variable before calling cdrom_get_cds(). |
1350 | # the appropriate CDROM_NAME variable before calling cdrom_get_cds(). |
| 1284 | # - CDROM_NAME="fooie cd" - for when you only want 1 cd |
1351 | # Use CDROM_NAME for one cd, or CDROM_NAME_# for multiple cds. You can |
| 1285 | # - CDROM_NAME_1="install cd" - for when you want more than 1 cd |
1352 | # also use the CDROM_NAME_SET bash array. |
| 1286 | # CDROM_NAME_2="data cd" |
|
|
| 1287 | # - CDROM_NAME_SET=( "install cd" "data cd" ) - short hand for CDROM_NAME_# |
|
|
| 1288 | # |
1353 | # |
| 1289 | # for those multi cd ebuilds, see the cdrom_load_next_cd() below. |
1354 | # For those multi cd ebuilds, see the cdrom_load_next_cd() function. |
| 1290 | # |
|
|
| 1291 | # Usage: cdrom_get_cds <file on cd1> [file on cd2] [file on cd3] [...] |
|
|
| 1292 | # - this will attempt to locate a cd based upon a file that is on |
|
|
| 1293 | # the cd ... the more files you give this function, the more cds |
|
|
| 1294 | # the cdrom functions will handle |
|
|
| 1295 | cdrom_get_cds() { |
1355 | cdrom_get_cds() { |
| 1296 | # first we figure out how many cds we're dealing with by |
1356 | # first we figure out how many cds we're dealing with by |
| 1297 | # the # of files they gave us |
1357 | # the # of files they gave us |
| 1298 | local cdcnt=0 |
1358 | local cdcnt=0 |
| 1299 | local f= |
1359 | local f= |
| … | |
… | |
| 1385 | export CDROM_SET="" |
1445 | export CDROM_SET="" |
| 1386 | export CDROM_CURRENT_CD=0 |
1446 | export CDROM_CURRENT_CD=0 |
| 1387 | cdrom_load_next_cd |
1447 | cdrom_load_next_cd |
| 1388 | } |
1448 | } |
| 1389 | |
1449 | |
| 1390 | # this is only used when you need access to more than one cd. |
1450 | # @FUNCTION: cdrom_load_next_cd |
| 1391 | # when you have finished using the first cd, just call this function. |
1451 | # @DESCRIPTION: |
| 1392 | # when it returns, CDROM_ROOT will be pointing to the second cd. |
1452 | # Some packages are so big they come on multiple CDs. When you're done reading |
| 1393 | # remember, you can only go forward in the cd chain, you can't go back. |
1453 | # files off a CD and want access to the next one, just call this function. |
|
|
1454 | # Again, all the messy details of user interaction are taken care of for you. |
|
|
1455 | # Once this returns, just read the variable CDROM_ROOT for the location of the |
|
|
1456 | # mounted CD. Note that you can only go forward in the CD list, so make sure |
|
|
1457 | # you only call this function when you're done using the current CD. |
| 1394 | cdrom_load_next_cd() { |
1458 | cdrom_load_next_cd() { |
| 1395 | local var |
1459 | local var |
| 1396 | ((++CDROM_CURRENT_CD)) |
1460 | ((++CDROM_CURRENT_CD)) |
| 1397 | |
1461 | |
| 1398 | unset CDROM_ROOT |
1462 | unset CDROM_ROOT |
| … | |
… | |
| 1415 | # displayed and we'll hang out here until: |
1479 | # displayed and we'll hang out here until: |
| 1416 | # (1) the file is found on a mounted cdrom |
1480 | # (1) the file is found on a mounted cdrom |
| 1417 | # (2) the user hits CTRL+C |
1481 | # (2) the user hits CTRL+C |
| 1418 | _cdrom_locate_file_on_cd() { |
1482 | _cdrom_locate_file_on_cd() { |
| 1419 | local mline="" |
1483 | local mline="" |
| 1420 | local showedmsg=0 |
1484 | local showedmsg=0 showjolietmsg=0 |
| 1421 | |
1485 | |
| 1422 | while [[ -z ${CDROM_ROOT} ]] ; do |
1486 | while [[ -z ${CDROM_ROOT} ]] ; do |
| 1423 | local i=0 |
1487 | local i=0 |
| 1424 | local -a cdset=(${*//:/ }) |
1488 | local -a cdset=(${*//:/ }) |
| 1425 | if [[ -n ${CDROM_SET} ]] ; then |
1489 | if [[ -n ${CDROM_SET} ]] ; then |
| … | |
… | |
| 1430 | local dir=$(dirname ${cdset[${i}]}) |
1494 | local dir=$(dirname ${cdset[${i}]}) |
| 1431 | local file=$(basename ${cdset[${i}]}) |
1495 | local file=$(basename ${cdset[${i}]}) |
| 1432 | |
1496 | |
| 1433 | local point= node= fs= foo= |
1497 | local point= node= fs= foo= |
| 1434 | while read point node fs foo ; do |
1498 | while read point node fs foo ; do |
| 1435 | [[ " cd9660 iso9660 " != *" ${fs} "* ]] && \ |
1499 | [[ " cd9660 iso9660 udf " != *" ${fs} "* ]] && \ |
| 1436 | ! [[ ${fs} == "subfs" && ",${opts}," == *",fs=cdfss,"* ]] \ |
1500 | ! [[ ${fs} == "subfs" && ",${opts}," == *",fs=cdfss,"* ]] \ |
| 1437 | && continue |
1501 | && continue |
| 1438 | point=${point//\040/ } |
1502 | point=${point//\040/ } |
|
|
1503 | [[ ! -d ${point}/${dir} ]] && continue |
| 1439 | [[ -z $(find "${point}/${dir}" -maxdepth 1 -iname "${file}") ]] && continue |
1504 | [[ -z $(find "${point}/${dir}" -maxdepth 1 -iname "${file}") ]] && continue |
| 1440 | export CDROM_ROOT=${point} |
1505 | export CDROM_ROOT=${point} |
| 1441 | export CDROM_SET=${i} |
1506 | export CDROM_SET=${i} |
| 1442 | export CDROM_MATCH=${cdset[${i}]} |
1507 | export CDROM_MATCH=${cdset[${i}]} |
| 1443 | return |
1508 | return |
| … | |
… | |
| 1465 | showedmsg=1 |
1530 | showedmsg=1 |
| 1466 | fi |
1531 | fi |
| 1467 | einfo "Press return to scan for the cd again" |
1532 | einfo "Press return to scan for the cd again" |
| 1468 | einfo "or hit CTRL+C to abort the emerge." |
1533 | einfo "or hit CTRL+C to abort the emerge." |
| 1469 | echo |
1534 | echo |
|
|
1535 | if [[ ${showjolietmsg} -eq 0 ]] ; then |
|
|
1536 | showjolietmsg=1 |
|
|
1537 | else |
| 1470 | einfo "If you are having trouble with the detection" |
1538 | ewarn "If you are having trouble with the detection" |
| 1471 | einfo "of your CD, it is possible that you do not have" |
1539 | ewarn "of your CD, it is possible that you do not have" |
| 1472 | einfo "Joliet support enabled in your kernel. Please" |
1540 | ewarn "Joliet support enabled in your kernel. Please" |
| 1473 | einfo "check that CONFIG_JOLIET is enabled in your kernel." |
1541 | ewarn "check that CONFIG_JOLIET is enabled in your kernel." |
|
|
1542 | ebeep 5 |
|
|
1543 | fi |
| 1474 | read || die "something is screwed with your system" |
1544 | read || die "something is screwed with your system" |
| 1475 | done |
1545 | done |
| 1476 | } |
1546 | } |
| 1477 | |
1547 | |
|
|
1548 | # @FUNCTION: strip-linguas |
|
|
1549 | # @USAGE: [<allow LINGUAS>|<-i|-u> <directories of .po files>] |
|
|
1550 | # @DESCRIPTION: |
| 1478 | # Make sure that LINGUAS only contains languages that |
1551 | # Make sure that LINGUAS only contains languages that |
| 1479 | # a package can support |
1552 | # a package can support. The first form allows you to |
| 1480 | # |
1553 | # specify a list of LINGUAS. The -i builds a list of po |
| 1481 | # usage: strip-linguas <allow LINGUAS> |
1554 | # files found in all the directories and uses the |
| 1482 | # strip-linguas -i <directories of .po files> |
1555 | # intersection of the lists. The -u builds a list of po |
| 1483 | # strip-linguas -u <directories of .po files> |
1556 | # files found in all the directories and uses the union |
| 1484 | # |
1557 | # of the lists. |
| 1485 | # The first form allows you to specify a list of LINGUAS. |
|
|
| 1486 | # The -i builds a list of po files found in all the |
|
|
| 1487 | # directories and uses the intersection of the lists. |
|
|
| 1488 | # The -u builds a list of po files found in all the |
|
|
| 1489 | # directories and uses the union of the lists. |
|
|
| 1490 | strip-linguas() { |
1558 | strip-linguas() { |
| 1491 | local ls newls nols |
1559 | local ls newls nols |
| 1492 | if [[ $1 == "-i" ]] || [[ $1 == "-u" ]] ; then |
1560 | if [[ $1 == "-i" ]] || [[ $1 == "-u" ]] ; then |
| 1493 | local op=$1; shift |
1561 | local op=$1; shift |
| 1494 | ls=$(find "$1" -name '*.po' -exec basename {} .po \;); shift |
1562 | ls=$(find "$1" -name '*.po' -exec basename {} .po \;); shift |
| … | |
… | |
| 1524 | [[ -n ${nols} ]] \ |
1592 | [[ -n ${nols} ]] \ |
| 1525 | && ewarn "Sorry, but ${PN} does not support the LINGUAs:" ${nols} |
1593 | && ewarn "Sorry, but ${PN} does not support the LINGUAs:" ${nols} |
| 1526 | export LINGUAS=${newls:1} |
1594 | export LINGUAS=${newls:1} |
| 1527 | } |
1595 | } |
| 1528 | |
1596 | |
| 1529 | # moved from kernel.eclass since they are generally useful outside of |
1597 | # @FUNCTION: preserve_old_lib |
| 1530 | # kernel.eclass -iggy (20041002) |
1598 | # @USAGE: <libs to preserve> [more libs] |
| 1531 | |
1599 | # @DESCRIPTION: |
| 1532 | # the following functions are useful in kernel module ebuilds, etc. |
|
|
| 1533 | # for an example see ivtv or drbd ebuilds |
|
|
| 1534 | |
|
|
| 1535 | # set's ARCH to match what the kernel expects |
|
|
| 1536 | set_arch_to_kernel() { |
|
|
| 1537 | i=10 |
|
|
| 1538 | while ((i--)) ; do |
|
|
| 1539 | ewarn "PLEASE UPDATE TO YOUR PACKAGE TO USE linux-info.eclass" |
|
|
| 1540 | done |
|
|
| 1541 | export EUTILS_ECLASS_PORTAGE_ARCH="${ARCH}" |
|
|
| 1542 | case ${ARCH} in |
|
|
| 1543 | x86) export ARCH="i386";; |
|
|
| 1544 | amd64) export ARCH="x86_64";; |
|
|
| 1545 | hppa) export ARCH="parisc";; |
|
|
| 1546 | mips) export ARCH="mips";; |
|
|
| 1547 | 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! |
|
|
| 1548 | *) export ARCH="${ARCH}";; |
|
|
| 1549 | esac |
|
|
| 1550 | } |
|
|
| 1551 | |
|
|
| 1552 | # set's ARCH back to what portage expects |
|
|
| 1553 | set_arch_to_portage() { |
|
|
| 1554 | i=10 |
|
|
| 1555 | while ((i--)) ; do |
|
|
| 1556 | ewarn "PLEASE UPDATE TO YOUR PACKAGE TO USE linux-info.eclass" |
|
|
| 1557 | done |
|
|
| 1558 | export ARCH="${EUTILS_ECLASS_PORTAGE_ARCH}" |
|
|
| 1559 | } |
|
|
| 1560 | |
|
|
| 1561 | # Jeremy Huddleston <eradicator@gentoo.org>: |
|
|
| 1562 | # preserve_old_lib /path/to/libblah.so.0 |
|
|
| 1563 | # preserve_old_lib_notify /path/to/libblah.so.0 |
|
|
| 1564 | # |
|
|
| 1565 | # These functions are useful when a lib in your package changes --library. Such |
1600 | # These functions are useful when a lib in your package changes ABI SONAME. |
| 1566 | # an example might be from libogg.so.0 to libogg.so.1. Removing libogg.so.0 |
1601 | # An example might be from libogg.so.0 to libogg.so.1. Removing libogg.so.0 |
| 1567 | # would break packages that link against it. Most people get around this |
1602 | # would break packages that link against it. Most people get around this |
| 1568 | # by using the portage SLOT mechanism, but that is not always a relevant |
1603 | # by using the portage SLOT mechanism, but that is not always a relevant |
| 1569 | # solution, so instead you can add the following to your ebuilds: |
1604 | # solution, so instead you can call this from pkg_preinst. See also the |
| 1570 | # |
1605 | # preserve_old_lib_notify function. |
| 1571 | # pkg_preinst() { |
|
|
| 1572 | # ... |
|
|
| 1573 | # preserve_old_lib /usr/$(get_libdir)/libogg.so.0 |
|
|
| 1574 | # ... |
|
|
| 1575 | # } |
|
|
| 1576 | # |
|
|
| 1577 | # pkg_postinst() { |
|
|
| 1578 | # ... |
|
|
| 1579 | # preserve_old_lib_notify /usr/$(get_libdir)/libogg.so.0 |
|
|
| 1580 | # ... |
|
|
| 1581 | # } |
|
|
| 1582 | |
|
|
| 1583 | preserve_old_lib() { |
1606 | preserve_old_lib() { |
| 1584 | if [[ ${EBUILD_PHASE} != "preinst" ]] ; then |
1607 | if [[ ${EBUILD_PHASE} != "preinst" ]] ; then |
| 1585 | eerror "preserve_old_lib() must be called from pkg_preinst() only" |
1608 | eerror "preserve_old_lib() must be called from pkg_preinst() only" |
| 1586 | # die "Invalid preserve_old_lib() usage" |
1609 | die "Invalid preserve_old_lib() usage" |
| 1587 | fi |
1610 | fi |
| 1588 | [[ -z $1 ]] && die "Usage: preserve_old_lib <library to preserve> [more libraries to preserve]" |
1611 | [[ -z $1 ]] && die "Usage: preserve_old_lib <library to preserve> [more libraries to preserve]" |
|
|
1612 | |
|
|
1613 | # let portage worry about it |
|
|
1614 | has preserve-libs ${FEATURES} && return 0 |
| 1589 | |
1615 | |
| 1590 | local lib dir |
1616 | local lib dir |
| 1591 | for lib in "$@" ; do |
1617 | for lib in "$@" ; do |
| 1592 | [[ -e ${ROOT}/${lib} ]] || continue |
1618 | [[ -e ${ROOT}/${lib} ]] || continue |
| 1593 | dir=${lib%/*} |
1619 | dir=${lib%/*} |
| … | |
… | |
| 1595 | cp "${ROOT}"/${lib} "${D}"/${lib} || die "cp ${lib} failed" |
1621 | cp "${ROOT}"/${lib} "${D}"/${lib} || die "cp ${lib} failed" |
| 1596 | touch "${D}"/${lib} |
1622 | touch "${D}"/${lib} |
| 1597 | done |
1623 | done |
| 1598 | } |
1624 | } |
| 1599 | |
1625 | |
|
|
1626 | # @FUNCTION: preserve_old_lib_notify |
|
|
1627 | # @USAGE: <libs to notify> [more libs] |
|
|
1628 | # @DESCRIPTION: |
|
|
1629 | # Spit helpful messages about the libraries preserved by preserve_old_lib. |
| 1600 | preserve_old_lib_notify() { |
1630 | preserve_old_lib_notify() { |
| 1601 | if [[ ${EBUILD_PHASE} != "postinst" ]] ; then |
1631 | if [[ ${EBUILD_PHASE} != "postinst" ]] ; then |
| 1602 | eerror "preserve_old_lib_notify() must be called from pkg_postinst() only" |
1632 | eerror "preserve_old_lib_notify() must be called from pkg_postinst() only" |
| 1603 | # die "Invalid preserve_old_lib_notify() usage" |
1633 | die "Invalid preserve_old_lib_notify() usage" |
| 1604 | fi |
1634 | fi |
|
|
1635 | |
|
|
1636 | # let portage worry about it |
|
|
1637 | has preserve-libs ${FEATURES} && return 0 |
| 1605 | |
1638 | |
| 1606 | local lib notice=0 |
1639 | local lib notice=0 |
| 1607 | for lib in "$@" ; do |
1640 | for lib in "$@" ; do |
| 1608 | [[ -e ${ROOT}/${lib} ]] || continue |
1641 | [[ -e ${ROOT}/${lib} ]] || continue |
| 1609 | if [[ ${notice} -eq 0 ]] ; then |
1642 | if [[ ${notice} -eq 0 ]] ; then |
| … | |
… | |
| 1615 | ewarn "helper program, simply emerge the 'gentoolkit' package." |
1648 | ewarn "helper program, simply emerge the 'gentoolkit' package." |
| 1616 | ewarn |
1649 | ewarn |
| 1617 | fi |
1650 | fi |
| 1618 | ewarn " # revdep-rebuild --library ${lib##*/}" |
1651 | ewarn " # revdep-rebuild --library ${lib##*/}" |
| 1619 | done |
1652 | done |
|
|
1653 | if [[ ${notice} -eq 1 ]] ; then |
|
|
1654 | ewarn |
|
|
1655 | ewarn "Once you've finished running revdep-rebuild, it should be safe to" |
|
|
1656 | ewarn "delete the old libraries. Here is a copy & paste for the lazy:" |
|
|
1657 | for lib in "$@" ; do |
|
|
1658 | ewarn " # rm '${lib}'" |
|
|
1659 | done |
|
|
1660 | fi |
| 1620 | } |
1661 | } |
| 1621 | |
1662 | |
| 1622 | # Hack for people to figure out if a package was built with |
1663 | # @FUNCTION: built_with_use |
| 1623 | # certain USE flags |
|
|
| 1624 | # |
|
|
| 1625 | # Usage: built_with_use [--missing <action>] [-a|-o] <DEPEND ATOM> <List of USE flags> |
1664 | # @USAGE: [--hidden] [--missing <action>] [-a|-o] <DEPEND ATOM> <List of USE flags> |
| 1626 | # ex: built_with_use xchat gtk2 |
1665 | # @DESCRIPTION: |
|
|
1666 | # A temporary hack until portage properly supports DEPENDing on USE |
|
|
1667 | # flags being enabled in packages. This will check to see if the specified |
|
|
1668 | # DEPEND atom was built with the specified list of USE flags. The |
|
|
1669 | # --missing option controls the behavior if called on a package that does |
|
|
1670 | # not actually support the defined USE flags (aka listed in IUSE). |
|
|
1671 | # The default is to abort (call die). The -a and -o flags control |
|
|
1672 | # the requirements of the USE flags. They correspond to "and" and "or" |
|
|
1673 | # logic. So the -a flag means all listed USE flags must be enabled |
|
|
1674 | # while the -o flag means at least one of the listed IUSE flags must be |
|
|
1675 | # enabled. The --hidden option is really for internal use only as it |
|
|
1676 | # means the USE flag we're checking is hidden expanded, so it won't be found |
|
|
1677 | # in IUSE like normal USE flags. |
| 1627 | # |
1678 | # |
| 1628 | # Flags: -a all USE flags should be utilized |
1679 | # Remember that this function isn't terribly intelligent so order of optional |
| 1629 | # -o at least one USE flag should be utilized |
1680 | # flags matter. |
| 1630 | # --missing peform the specified action if the flag is not in IUSE (true/false/die) |
|
|
| 1631 | # --hidden USE flag we're checking is hidden expanded so it isnt in IUSE |
|
|
| 1632 | # Note: the default flag is '-a' |
|
|
| 1633 | built_with_use() { |
1681 | built_with_use() { |
| 1634 | local hidden="no" |
1682 | local hidden="no" |
| 1635 | if [[ $1 == "--hidden" ]] ; then |
1683 | if [[ $1 == "--hidden" ]] ; then |
| 1636 | hidden="yes" |
1684 | hidden="yes" |
| 1637 | shift |
1685 | shift |
| … | |
… | |
| 1666 | die) die "Unable to determine what USE flags $PKG was built with";; |
1714 | die) die "Unable to determine what USE flags $PKG was built with";; |
| 1667 | esac |
1715 | esac |
| 1668 | fi |
1716 | fi |
| 1669 | |
1717 | |
| 1670 | if [[ ${hidden} == "no" ]] ; then |
1718 | if [[ ${hidden} == "no" ]] ; then |
| 1671 | local IUSE_BUILT=$(<${IUSEFILE}) |
1719 | local IUSE_BUILT=( $(<"${IUSEFILE}") ) |
| 1672 | # Don't check USE_EXPAND #147237 |
1720 | # Don't check USE_EXPAND #147237 |
| 1673 | local expand |
1721 | local expand |
| 1674 | for expand in $(echo ${USE_EXPAND} | tr '[:upper:]' '[:lower:]') ; do |
1722 | for expand in $(echo ${USE_EXPAND} | tr '[:upper:]' '[:lower:]') ; do |
| 1675 | if [[ $1 == ${expand}_* ]] ; then |
1723 | if [[ $1 == ${expand}_* ]] ; then |
| 1676 | expand="" |
1724 | expand="" |
| 1677 | break |
1725 | break |
| 1678 | fi |
1726 | fi |
| 1679 | done |
1727 | done |
| 1680 | if [[ -n ${expand} ]] ; then |
1728 | if [[ -n ${expand} ]] ; then |
| 1681 | if ! has $1 ${IUSE_BUILT} ; then |
1729 | if ! has $1 ${IUSE_BUILT[@]#[-+]} ; then |
| 1682 | case ${missing_action} in |
1730 | case ${missing_action} in |
| 1683 | true) return 0;; |
1731 | true) return 0;; |
| 1684 | false) return 1;; |
1732 | false) return 1;; |
| 1685 | die) die "$PKG does not actually support the $1 USE flag!";; |
1733 | die) die "$PKG does not actually support the $1 USE flag!";; |
| 1686 | esac |
1734 | esac |
| … | |
… | |
| 1698 | shift |
1746 | shift |
| 1699 | done |
1747 | done |
| 1700 | [[ ${opt} = "-a" ]] |
1748 | [[ ${opt} = "-a" ]] |
| 1701 | } |
1749 | } |
| 1702 | |
1750 | |
|
|
1751 | # @FUNCTION: epunt_cxx |
|
|
1752 | # @USAGE: [dir to scan] |
|
|
1753 | # @DESCRIPTION: |
| 1703 | # Many configure scripts wrongly bail when a C++ compiler |
1754 | # Many configure scripts wrongly bail when a C++ compiler could not be |
| 1704 | # could not be detected. #73450 |
1755 | # detected. If dir is not specified, then it defaults to ${S}. |
|
|
1756 | # |
|
|
1757 | # http://bugs.gentoo.org/73450 |
| 1705 | epunt_cxx() { |
1758 | epunt_cxx() { |
| 1706 | local dir=$1 |
1759 | local dir=$1 |
| 1707 | [[ -z ${dir} ]] && dir=${S} |
1760 | [[ -z ${dir} ]] && dir=${S} |
| 1708 | ebegin "Removing useless C++ checks" |
1761 | ebegin "Removing useless C++ checks" |
| 1709 | local f |
1762 | local f |
| 1710 | for f in $(find ${dir} -name configure) ; do |
1763 | find "${dir}" -name configure | while read f ; do |
| 1711 | patch -p0 "${f}" "${PORTDIR}/eclass/ELT-patches/nocxx/nocxx.patch" > /dev/null |
1764 | patch --no-backup-if-mismatch -p0 "${f}" "${PORTDIR}/eclass/ELT-patches/nocxx/nocxx.patch" > /dev/null |
| 1712 | done |
1765 | done |
| 1713 | eend 0 |
1766 | eend 0 |
| 1714 | } |
1767 | } |
| 1715 | |
1768 | |
| 1716 | # make a wrapper script ... |
1769 | # @FUNCTION: make_wrapper |
| 1717 | # NOTE: this was originally games_make_wrapper, but I noticed other places where |
1770 | # @USAGE: <wrapper> <target> [chdir] [libpaths] [installpath] |
| 1718 | # this could be used, so I have moved it here and made it not games-specific |
1771 | # @DESCRIPTION: |
| 1719 | # -- wolf31o2 |
1772 | # Create a shell wrapper script named wrapper in installpath |
| 1720 | # $1 == wrapper name |
1773 | # (defaults to the bindir) to execute target (default of wrapper) by |
| 1721 | # $2 == binary to run |
1774 | # first optionally setting LD_LIBRARY_PATH to the colon-delimited |
| 1722 | # $3 == directory to chdir before running binary |
1775 | # libpaths followed by optionally changing directory to chdir. |
| 1723 | # $4 == extra LD_LIBRARY_PATH's (make it : delimited) |
|
|
| 1724 | # $5 == path for wrapper |
|
|
| 1725 | make_wrapper() { |
1776 | make_wrapper() { |
| 1726 | local wrapper=$1 bin=$2 chdir=$3 libdir=$4 path=$5 |
1777 | local wrapper=$1 bin=$2 chdir=$3 libdir=$4 path=$5 |
| 1727 | local tmpwrapper=$(emktemp) |
1778 | local tmpwrapper=$(emktemp) |
| 1728 | # We don't want to quote ${bin} so that people can pass complex |
1779 | # We don't want to quote ${bin} so that people can pass complex |
| 1729 | # things as $bin ... "./someprog --args" |
1780 | # things as $bin ... "./someprog --args" |
| … | |
… | |
| 1739 | fi |
1790 | fi |
| 1740 | exec ${bin} "\$@" |
1791 | exec ${bin} "\$@" |
| 1741 | EOF |
1792 | EOF |
| 1742 | chmod go+rx "${tmpwrapper}" |
1793 | chmod go+rx "${tmpwrapper}" |
| 1743 | if [[ -n ${path} ]] ; then |
1794 | if [[ -n ${path} ]] ; then |
|
|
1795 | ( |
| 1744 | exeinto "${path}" |
1796 | exeinto "${path}" |
| 1745 | newexe "${tmpwrapper}" "${wrapper}" |
1797 | newexe "${tmpwrapper}" "${wrapper}" |
|
|
1798 | ) || die |
| 1746 | else |
1799 | else |
| 1747 | newbin "${tmpwrapper}" "${wrapper}" |
1800 | newbin "${tmpwrapper}" "${wrapper}" || die |
| 1748 | fi |
1801 | fi |
| 1749 | } |
1802 | } |