| 1 | # Copyright 1999-2005 Gentoo Foundation |
1 | # Copyright 1999-2006 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.228 2006/03/10 23:24:21 vapier Exp $ |
3 | # $Header: /var/cvsroot/gentoo-x86/eclass/eutils.eclass,v 1.241 2006/06/15 14:45:59 vapier Exp $ |
| 4 | # |
|
|
| 5 | # Author: Martin Schlemmer <azarah@gentoo.org> |
|
|
| 6 | # |
4 | # |
| 7 | # This eclass is for general purpose functions that most ebuilds |
5 | # This eclass is for general purpose functions that most ebuilds |
| 8 | # have to implement themselves. |
6 | # have to implement themselves. |
| 9 | # |
7 | # |
| 10 | # NB: If you add anything, please comment it! |
8 | # NB: If you add anything, please comment it! |
|
|
9 | # |
|
|
10 | # Maintainer: see each individual function, base-system@gentoo.org as default |
| 11 | |
11 | |
| 12 | inherit multilib portability |
12 | inherit multilib portability |
| 13 | |
|
|
| 14 | DEPEND="!bootstrap? ( sys-devel/patch )" |
|
|
| 15 | # sys-apps/shadow is needed for useradd, etc, bug #94745. |
|
|
| 16 | |
13 | |
| 17 | DESCRIPTION="Based on the ${ECLASS} eclass" |
14 | DESCRIPTION="Based on the ${ECLASS} eclass" |
| 18 | |
15 | |
| 19 | # Wait for the supplied number of seconds. If no argument is supplied, defaults |
16 | # Wait for the supplied number of seconds. If no argument is supplied, defaults |
| 20 | # to five seconds. If the EPAUSE_IGNORE env var is set, don't wait. If we're not |
17 | # to five seconds. If the EPAUSE_IGNORE env var is set, don't wait. If we're not |
| … | |
… | |
| 88 | # Default extension for patches |
85 | # Default extension for patches |
| 89 | EPATCH_SUFFIX="patch.bz2" |
86 | EPATCH_SUFFIX="patch.bz2" |
| 90 | # Default options for patch |
87 | # Default options for patch |
| 91 | # Set -g0 to keep RCS, ClearCase, Perforce and SCCS happy. Bug #24571 |
88 | # Set -g0 to keep RCS, ClearCase, Perforce and SCCS happy. Bug #24571 |
| 92 | # Set --no-backup-if-mismatch so we don't leave '.orig' files behind. |
89 | # Set --no-backup-if-mismatch so we don't leave '.orig' files behind. |
|
|
90 | # Set -E to automatically remove empty files. |
| 93 | EPATCH_OPTS="-g0 --no-backup-if-mismatch" |
91 | EPATCH_OPTS="-g0 -E --no-backup-if-mismatch" |
| 94 | # List of patches not to apply. Not this is only file names, |
92 | # List of patches not to apply. Not this is only file names, |
| 95 | # and not the full path .. |
93 | # and not the full path .. |
| 96 | EPATCH_EXCLUDE="" |
94 | EPATCH_EXCLUDE="" |
| 97 | # Change the printed message for a single patch. |
95 | # Change the printed message for a single patch. |
| 98 | EPATCH_SINGLE_MSG="" |
96 | EPATCH_SINGLE_MSG="" |
| … | |
… | |
| 137 | # |
135 | # |
| 138 | # <azarah@gentoo.org> (10 Nov 2002) |
136 | # <azarah@gentoo.org> (10 Nov 2002) |
| 139 | # |
137 | # |
| 140 | epatch() { |
138 | epatch() { |
| 141 | _epatch_draw_line() { |
139 | _epatch_draw_line() { |
| 142 | # this func produces a lot of pointless noise when debugging is turned on ... |
140 | [[ -z $1 ]] && set "$(printf "%65s" '')" |
| 143 | local is_debug=0 |
141 | echo "${1//?/=}" |
| 144 | [[ $- == *x* ]] && is_debug=1 && set +x |
|
|
| 145 | |
|
|
| 146 | local i=0 str_length="" str_out="" |
|
|
| 147 | |
|
|
| 148 | # Handle calls that do not have args, or wc not being installed ... |
|
|
| 149 | if [[ -z $1 ]] || ! type -p wc >/dev/null ; then |
|
|
| 150 | str_length=65 |
|
|
| 151 | else |
|
|
| 152 | str_length=$(echo -n "$*" | wc -m) |
|
|
| 153 | fi |
|
|
| 154 | |
|
|
| 155 | while ((i++ < ${str_length})) ; do |
|
|
| 156 | str_out="${str_out}=" |
|
|
| 157 | done |
|
|
| 158 | echo ${str_out} |
|
|
| 159 | |
|
|
| 160 | [[ ${is_debug} -eq 1 ]] && set -x |
|
|
| 161 | return 0 |
|
|
| 162 | } |
142 | } |
| 163 | _epatch_assert() { local _pipestatus=${PIPESTATUS[*]}; [[ ${_pipestatus// /} -eq 0 ]] ; } |
143 | _epatch_assert() { local _pipestatus=${PIPESTATUS[*]}; [[ ${_pipestatus// /} -eq 0 ]] ; } |
| 164 | local PIPE_CMD="" |
144 | local PIPE_CMD="" |
| 165 | local STDERR_TARGET="${T}/$$.out" |
145 | local STDERR_TARGET="${T}/$$.out" |
| 166 | local PATCH_TARGET="${T}/$$.patch" |
146 | local PATCH_TARGET="${T}/$$.patch" |
| … | |
… | |
| 453 | # shell: /bin/false |
433 | # shell: /bin/false |
| 454 | # homedir: /dev/null |
434 | # homedir: /dev/null |
| 455 | # groups: none |
435 | # groups: none |
| 456 | # extra: comment of 'added by portage for ${PN}' |
436 | # extra: comment of 'added by portage for ${PN}' |
| 457 | enewuser() { |
437 | enewuser() { |
|
|
438 | case ${EBUILD_PHASE} in |
|
|
439 | unpack|compile|test|install) |
|
|
440 | eerror "'enewuser()' called from '${EBUILD_PHASE}()' which is not a pkg_* function." |
|
|
441 | eerror "Package fails at QA and at life. Please file a bug." |
|
|
442 | die "Bad package! enewuser is only for use in pkg_* functions!" |
|
|
443 | esac |
|
|
444 | |
| 458 | # get the username |
445 | # get the username |
| 459 | local euser=$1; shift |
446 | local euser=$1; shift |
| 460 | if [[ -z ${euser} ]] ; then |
447 | if [[ -z ${euser} ]] ; then |
| 461 | eerror "No username specified !" |
448 | eerror "No username specified !" |
| 462 | die "Cannot call enewuser without a username" |
449 | die "Cannot call enewuser without a username" |
| … | |
… | |
| 648 | # Default values if you do not specify any: |
635 | # Default values if you do not specify any: |
| 649 | # groupname: REQUIRED ! |
636 | # groupname: REQUIRED ! |
| 650 | # gid: next available (see groupadd(8)) |
637 | # gid: next available (see groupadd(8)) |
| 651 | # extra: none |
638 | # extra: none |
| 652 | enewgroup() { |
639 | enewgroup() { |
|
|
640 | case ${EBUILD_PHASE} in |
|
|
641 | unpack|compile|test|install) |
|
|
642 | eerror "'enewgroup()' called from '${EBUILD_PHASE}()' which is not a pkg_* function." |
|
|
643 | eerror "Package fails at QA and at life. Please file a bug." |
|
|
644 | die "Bad package! enewgroup is only for use in pkg_* functions!" |
|
|
645 | esac |
|
|
646 | |
| 653 | # get the group |
647 | # get the group |
| 654 | local egroup="$1"; shift |
648 | local egroup="$1"; shift |
| 655 | if [ -z "${egroup}" ] |
649 | if [ -z "${egroup}" ] |
| 656 | then |
650 | then |
| 657 | eerror "No group specified !" |
651 | eerror "No group specified !" |
| … | |
… | |
| 769 | |
763 | |
| 770 | # Make a desktop file ! |
764 | # Make a desktop file ! |
| 771 | # Great for making those icons in kde/gnome startmenu ! |
765 | # Great for making those icons in kde/gnome startmenu ! |
| 772 | # Amaze your friends ! Get the women ! Join today ! |
766 | # Amaze your friends ! Get the women ! Join today ! |
| 773 | # |
767 | # |
| 774 | # make_desktop_entry(<binary>, [name], [icon], [type], [path]) |
768 | # make_desktop_entry(<command>, [name], [icon], [type], [path]) |
| 775 | # |
769 | # |
| 776 | # binary: what binary does the app run with ? |
770 | # binary: what command does the app run with ? |
| 777 | # name: the name that will show up in the menu |
771 | # name: the name that will show up in the menu |
| 778 | # icon: give your little like a pretty little icon ... |
772 | # icon: give your little like a pretty little icon ... |
| 779 | # this can be relative (to /usr/share/pixmaps) or |
773 | # this can be relative (to /usr/share/pixmaps) or |
| 780 | # a full path to an icon |
774 | # a full path to an icon |
| 781 | # type: what kind of application is this ? for categories: |
775 | # type: what kind of application is this ? for categories: |
| … | |
… | |
| 893 | local desktop_name="${PN}" |
887 | local desktop_name="${PN}" |
| 894 | else |
888 | else |
| 895 | local desktop_name="${PN}-${SLOT}" |
889 | local desktop_name="${PN}-${SLOT}" |
| 896 | fi |
890 | fi |
| 897 | local desktop=${T}/${exec%% *}-${desktop_name}.desktop |
891 | local desktop=${T}/${exec%% *}-${desktop_name}.desktop |
|
|
892 | # local desktop=${T}/${exec%% *:-${desktop_name}}.desktop |
| 898 | |
893 | |
| 899 | echo "[Desktop Entry] |
894 | echo "[Desktop Entry] |
| 900 | Encoding=UTF-8 |
895 | Encoding=UTF-8 |
| 901 | Version=0.9.2 |
896 | Version=0.9.2 |
| 902 | Name=${name} |
897 | Name=${name} |
| 903 | Type=Application |
898 | Type=Application |
| 904 | Comment=${DESCRIPTION} |
899 | Comment=${DESCRIPTION} |
| 905 | Exec=${exec} |
900 | Exec=${exec} |
|
|
901 | TryExec=${exec%% *} |
| 906 | Path=${path} |
902 | Path=${path} |
| 907 | Icon=${icon} |
903 | Icon=${icon} |
| 908 | Categories=Application;${type};" > "${desktop}" |
904 | Categories=Application;${type};" > "${desktop}" |
| 909 | |
905 | |
| 910 | ( |
906 | ( |
| … | |
… | |
| 1113 | if [[ -z ${skip} ]] ; then |
1109 | if [[ -z ${skip} ]] ; then |
| 1114 | local ver=$(grep -a '#.*Makeself' "${src}" | awk '{print $NF}') |
1110 | local ver=$(grep -a '#.*Makeself' "${src}" | awk '{print $NF}') |
| 1115 | local skip=0 |
1111 | local skip=0 |
| 1116 | exe=tail |
1112 | exe=tail |
| 1117 | case ${ver} in |
1113 | case ${ver} in |
| 1118 | 1.5.*) # tested 1.5.{3,4,5} ... guessing 1.5.x series is same |
1114 | 1.5.*|1.6.0-nv) # tested 1.5.{3,4,5} ... guessing 1.5.x series is same |
| 1119 | skip=$(grep -a ^skip= "${src}" | cut -d= -f2) |
1115 | skip=$(grep -a ^skip= "${src}" | cut -d= -f2) |
| 1120 | ;; |
1116 | ;; |
| 1121 | 2.0|2.0.1) |
1117 | 2.0|2.0.1) |
| 1122 | skip=$(grep -a ^$'\t'tail "${src}" | awk '{print $2}' | cut -b2-) |
1118 | skip=$(grep -a ^$'\t'tail "${src}" | awk '{print $2}' | cut -b2-) |
| 1123 | ;; |
1119 | ;; |
| … | |
… | |
| 1441 | # directories and uses the union of the lists. |
1437 | # directories and uses the union of the lists. |
| 1442 | strip-linguas() { |
1438 | strip-linguas() { |
| 1443 | local ls newls |
1439 | local ls newls |
| 1444 | if [[ $1 == "-i" ]] || [[ $1 == "-u" ]] ; then |
1440 | if [[ $1 == "-i" ]] || [[ $1 == "-u" ]] ; then |
| 1445 | local op=$1; shift |
1441 | local op=$1; shift |
| 1446 | ls=" $(find "$1" -name '*.po' -exec basename {} \;) "; shift |
1442 | ls=$(find "$1" -name '*.po' -exec basename {} .po \;); shift |
| 1447 | local d f |
1443 | local d f |
| 1448 | for d in "$@" ; do |
1444 | for d in "$@" ; do |
| 1449 | if [[ ${op} == "-u" ]] ; then |
1445 | if [[ ${op} == "-u" ]] ; then |
| 1450 | newls=${ls} |
1446 | newls=${ls} |
| 1451 | else |
1447 | else |
| 1452 | newls="" |
1448 | newls="" |
| 1453 | fi |
1449 | fi |
| 1454 | for f in $(find "$d" -name '*.po' -exec basename {} \;) ; do |
1450 | for f in $(find "$d" -name '*.po' -exec basename {} .po \;) ; do |
| 1455 | if [[ ${op} == "-i" ]] ; then |
1451 | if [[ ${op} == "-i" ]] ; then |
| 1456 | [[ ${ls/ ${f} /} != ${ls} ]] && newls="${newls} ${f}" |
1452 | hasq ${f} ${ls} && newls="${newls} ${f}" |
| 1457 | else |
1453 | else |
| 1458 | [[ ${ls/ ${f} /} == ${ls} ]] && newls="${newls} ${f}" |
1454 | hasq ${f} ${ls} || newls="${newls} ${f}" |
| 1459 | fi |
1455 | fi |
| 1460 | done |
1456 | done |
| 1461 | ls=${newls} |
1457 | ls=${newls} |
| 1462 | done |
1458 | done |
| 1463 | ls=${ls//.po} |
|
|
| 1464 | else |
1459 | else |
| 1465 | ls=$@ |
1460 | ls="$@" |
| 1466 | fi |
1461 | fi |
| 1467 | |
1462 | |
| 1468 | ls=" ${ls} " |
|
|
| 1469 | newls="" |
1463 | newls="" |
| 1470 | for f in ${LINGUAS} ; do |
1464 | for f in ${LINGUAS} ; do |
| 1471 | if [[ ${ls/ ${f} /} != ${ls} ]] ; then |
1465 | if hasq ${f} ${ls} ; then |
| 1472 | newls="${newls} ${f}" |
1466 | newls="${newls} ${f}" |
| 1473 | else |
1467 | else |
| 1474 | ewarn "Sorry, but ${PN} does not support the ${f} LINGUA" |
1468 | ewarn "Sorry, but ${PN} does not support the ${f} LINGUA" |
| 1475 | fi |
1469 | fi |
| 1476 | done |
1470 | done |
| 1477 | if [[ -z ${newls} ]] ; then |
|
|
| 1478 | export LINGUAS="" |
|
|
| 1479 | else |
|
|
| 1480 | export LINGUAS=${newls:1} |
1471 | export LINGUAS=${newls:1} |
| 1481 | fi |
|
|
| 1482 | } |
1472 | } |
| 1483 | |
1473 | |
| 1484 | # moved from kernel.eclass since they are generally useful outside of |
1474 | # moved from kernel.eclass since they are generally useful outside of |
| 1485 | # kernel.eclass -iggy (20041002) |
1475 | # kernel.eclass -iggy (20041002) |
| 1486 | |
1476 | |