| 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.229 2006/03/16 03:44:54 agriffis Exp $ |
3 | # $Header: /var/cvsroot/gentoo-x86/eclass/eutils.eclass,v 1.237 2006/06/04 15:18:12 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! |
| 11 | |
9 | |
| 12 | inherit multilib portability |
10 | inherit multilib portability |
| 13 | |
11 | |
| 14 | DEPEND="!bootstrap? ( sys-devel/patch )" |
12 | DEPEND="!bootstrap? ( sys-devel/patch )" |
|
|
13 | RDEPEND="" |
| 15 | # sys-apps/shadow is needed for useradd, etc, bug #94745. |
14 | # sys-apps/shadow is needed for useradd, etc, bug #94745. |
| 16 | |
15 | |
| 17 | DESCRIPTION="Based on the ${ECLASS} eclass" |
16 | DESCRIPTION="Based on the ${ECLASS} eclass" |
| 18 | |
17 | |
| 19 | # Wait for the supplied number of seconds. If no argument is supplied, defaults |
18 | # Wait for the supplied number of seconds. If no argument is supplied, defaults |
| … | |
… | |
| 88 | # Default extension for patches |
87 | # Default extension for patches |
| 89 | EPATCH_SUFFIX="patch.bz2" |
88 | EPATCH_SUFFIX="patch.bz2" |
| 90 | # Default options for patch |
89 | # Default options for patch |
| 91 | # Set -g0 to keep RCS, ClearCase, Perforce and SCCS happy. Bug #24571 |
90 | # 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. |
91 | # Set --no-backup-if-mismatch so we don't leave '.orig' files behind. |
|
|
92 | # Set -E to automatically remove empty files. |
| 93 | EPATCH_OPTS="-g0 --no-backup-if-mismatch" |
93 | EPATCH_OPTS="-g0 -E --no-backup-if-mismatch" |
| 94 | # List of patches not to apply. Not this is only file names, |
94 | # List of patches not to apply. Not this is only file names, |
| 95 | # and not the full path .. |
95 | # and not the full path .. |
| 96 | EPATCH_EXCLUDE="" |
96 | EPATCH_EXCLUDE="" |
| 97 | # Change the printed message for a single patch. |
97 | # Change the printed message for a single patch. |
| 98 | EPATCH_SINGLE_MSG="" |
98 | EPATCH_SINGLE_MSG="" |
| … | |
… | |
| 136 | # hand its a directory, it will set EPATCH_SOURCE to this. |
136 | # hand its a directory, it will set EPATCH_SOURCE to this. |
| 137 | # |
137 | # |
| 138 | # <azarah@gentoo.org> (10 Nov 2002) |
138 | # <azarah@gentoo.org> (10 Nov 2002) |
| 139 | # |
139 | # |
| 140 | epatch() { |
140 | epatch() { |
| 141 | _epatch_draw_line() { |
141 | _epatch_draw_line() { |
| 142 | [[ -z $1 ]] && set "$(printf "%65s" '')" |
142 | [[ -z $1 ]] && set "$(printf "%65s" '')" |
| 143 | echo "${1//?/=}" |
143 | echo "${1//?/=}" |
| 144 | } |
144 | } |
| 145 | _epatch_assert() { local _pipestatus=${PIPESTATUS[*]}; [[ ${_pipestatus// /} -eq 0 ]] ; } |
145 | _epatch_assert() { local _pipestatus=${PIPESTATUS[*]}; [[ ${_pipestatus// /} -eq 0 ]] ; } |
| 146 | local PIPE_CMD="" |
146 | local PIPE_CMD="" |
| … | |
… | |
| 435 | # shell: /bin/false |
435 | # shell: /bin/false |
| 436 | # homedir: /dev/null |
436 | # homedir: /dev/null |
| 437 | # groups: none |
437 | # groups: none |
| 438 | # extra: comment of 'added by portage for ${PN}' |
438 | # extra: comment of 'added by portage for ${PN}' |
| 439 | enewuser() { |
439 | enewuser() { |
|
|
440 | case ${EBUILD_PHASE} in |
|
|
441 | unpack|compile|test|install) |
|
|
442 | eerror "'enewuser()' called from '${EBUILD_PHASE}()' which is not a pkg_* function." |
|
|
443 | eerror "Package fails at QA and at life. Please file a bug." |
|
|
444 | die "Bad package! enewuser is only for use in pkg_* functions!" |
|
|
445 | esac |
|
|
446 | |
| 440 | # get the username |
447 | # get the username |
| 441 | local euser=$1; shift |
448 | local euser=$1; shift |
| 442 | if [[ -z ${euser} ]] ; then |
449 | if [[ -z ${euser} ]] ; then |
| 443 | eerror "No username specified !" |
450 | eerror "No username specified !" |
| 444 | die "Cannot call enewuser without a username" |
451 | die "Cannot call enewuser without a username" |
| … | |
… | |
| 630 | # Default values if you do not specify any: |
637 | # Default values if you do not specify any: |
| 631 | # groupname: REQUIRED ! |
638 | # groupname: REQUIRED ! |
| 632 | # gid: next available (see groupadd(8)) |
639 | # gid: next available (see groupadd(8)) |
| 633 | # extra: none |
640 | # extra: none |
| 634 | enewgroup() { |
641 | enewgroup() { |
|
|
642 | case ${EBUILD_PHASE} in |
|
|
643 | unpack|compile|test|install) |
|
|
644 | eerror "'enewgroup()' called from '${EBUILD_PHASE}()' which is not a pkg_* function." |
|
|
645 | eerror "Package fails at QA and at life. Please file a bug." |
|
|
646 | die "Bad package! enewgroup is only for use in pkg_* functions!" |
|
|
647 | esac |
|
|
648 | |
| 635 | # get the group |
649 | # get the group |
| 636 | local egroup="$1"; shift |
650 | local egroup="$1"; shift |
| 637 | if [ -z "${egroup}" ] |
651 | if [ -z "${egroup}" ] |
| 638 | then |
652 | then |
| 639 | eerror "No group specified !" |
653 | eerror "No group specified !" |
| … | |
… | |
| 875 | local desktop_name="${PN}" |
889 | local desktop_name="${PN}" |
| 876 | else |
890 | else |
| 877 | local desktop_name="${PN}-${SLOT}" |
891 | local desktop_name="${PN}-${SLOT}" |
| 878 | fi |
892 | fi |
| 879 | local desktop=${T}/${exec%% *}-${desktop_name}.desktop |
893 | local desktop=${T}/${exec%% *}-${desktop_name}.desktop |
|
|
894 | # local desktop=${T}/${exec%% *:-${desktop_name}}.desktop |
| 880 | |
895 | |
| 881 | echo "[Desktop Entry] |
896 | echo "[Desktop Entry] |
| 882 | Encoding=UTF-8 |
897 | Encoding=UTF-8 |
| 883 | Version=0.9.2 |
898 | Version=0.9.2 |
| 884 | Name=${name} |
899 | Name=${name} |
| 885 | Type=Application |
900 | Type=Application |
| 886 | Comment=${DESCRIPTION} |
901 | Comment=${DESCRIPTION} |
| 887 | Exec=${exec} |
902 | Exec=${exec} |
|
|
903 | TryExec=${exec} |
| 888 | Path=${path} |
904 | Path=${path} |
| 889 | Icon=${icon} |
905 | Icon=${icon} |
| 890 | Categories=Application;${type};" > "${desktop}" |
906 | Categories=Application;${type};" > "${desktop}" |
| 891 | |
907 | |
| 892 | ( |
908 | ( |
| … | |
… | |
| 1423 | # directories and uses the union of the lists. |
1439 | # directories and uses the union of the lists. |
| 1424 | strip-linguas() { |
1440 | strip-linguas() { |
| 1425 | local ls newls |
1441 | local ls newls |
| 1426 | if [[ $1 == "-i" ]] || [[ $1 == "-u" ]] ; then |
1442 | if [[ $1 == "-i" ]] || [[ $1 == "-u" ]] ; then |
| 1427 | local op=$1; shift |
1443 | local op=$1; shift |
| 1428 | ls=" $(find "$1" -name '*.po' -exec basename {} \;) "; shift |
1444 | ls=$(find "$1" -name '*.po' -exec basename {} .po \;); shift |
| 1429 | local d f |
1445 | local d f |
| 1430 | for d in "$@" ; do |
1446 | for d in "$@" ; do |
| 1431 | if [[ ${op} == "-u" ]] ; then |
1447 | if [[ ${op} == "-u" ]] ; then |
| 1432 | newls=${ls} |
1448 | newls=${ls} |
| 1433 | else |
1449 | else |
| 1434 | newls="" |
1450 | newls="" |
| 1435 | fi |
1451 | fi |
| 1436 | for f in $(find "$d" -name '*.po' -exec basename {} \;) ; do |
1452 | for f in $(find "$d" -name '*.po' -exec basename {} .po \;) ; do |
| 1437 | if [[ ${op} == "-i" ]] ; then |
1453 | if [[ ${op} == "-i" ]] ; then |
| 1438 | [[ ${ls/ ${f} /} != ${ls} ]] && newls="${newls} ${f}" |
1454 | hasq ${f} ${ls} && newls="${newls} ${f}" |
| 1439 | else |
1455 | else |
| 1440 | [[ ${ls/ ${f} /} == ${ls} ]] && newls="${newls} ${f}" |
1456 | hasq ${f} ${ls} || newls="${newls} ${f}" |
| 1441 | fi |
1457 | fi |
| 1442 | done |
1458 | done |
| 1443 | ls=${newls} |
1459 | ls=${newls} |
| 1444 | done |
1460 | done |
| 1445 | ls=${ls//.po} |
|
|
| 1446 | else |
1461 | else |
| 1447 | ls=$@ |
1462 | ls="$@" |
| 1448 | fi |
1463 | fi |
| 1449 | |
1464 | |
| 1450 | ls=" ${ls} " |
|
|
| 1451 | newls="" |
1465 | newls="" |
| 1452 | for f in ${LINGUAS} ; do |
1466 | for f in ${LINGUAS} ; do |
| 1453 | if [[ ${ls/ ${f} /} != ${ls} ]] ; then |
1467 | if hasq ${f} ${ls} ; then |
| 1454 | newls="${newls} ${f}" |
1468 | newls="${newls} ${f}" |
| 1455 | else |
1469 | else |
| 1456 | ewarn "Sorry, but ${PN} does not support the ${f} LINGUA" |
1470 | ewarn "Sorry, but ${PN} does not support the ${f} LINGUA" |
| 1457 | fi |
1471 | fi |
| 1458 | done |
1472 | done |
| 1459 | if [[ -z ${newls} ]] ; then |
|
|
| 1460 | export LINGUAS="" |
|
|
| 1461 | else |
|
|
| 1462 | export LINGUAS=${newls:1} |
1473 | export LINGUAS=${newls:1} |
| 1463 | fi |
|
|
| 1464 | } |
1474 | } |
| 1465 | |
1475 | |
| 1466 | # moved from kernel.eclass since they are generally useful outside of |
1476 | # moved from kernel.eclass since they are generally useful outside of |
| 1467 | # kernel.eclass -iggy (20041002) |
1477 | # kernel.eclass -iggy (20041002) |
| 1468 | |
1478 | |