| 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.231 2006/03/18 18:38:11 swegener Exp $ |
3 | # $Header: /var/cvsroot/gentoo-x86/eclass/eutils.eclass,v 1.252 2006/10/05 00:12:07 nyhm 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 |
| 21 | # outputting to a terminal, don't wait. For compatability purposes, the argument |
18 | # outputting to a terminal, don't wait. For compatability purposes, the argument |
| 22 | # must be an integer greater than zero. |
19 | # must be an integer greater than zero. |
| 23 | # Bug 62950, Ciaran McCreesh <ciaranm@gentoo.org> (05 Sep 2004) |
20 | # Bug 62950, Ciaran McCreesh <ciaranm@gentoo.org> (05 Sep 2004) |
| 24 | epause() { |
21 | epause() { |
| 25 | if [ -z "$EPAUSE_IGNORE" ] && [ -t 1 ] ; then |
22 | [[ -z ${EPAUSE_IGNORE} ]] && sleep ${1:-5} |
| 26 | sleep ${1:-5} |
|
|
| 27 | fi |
|
|
| 28 | } |
23 | } |
| 29 | |
24 | |
| 30 | # Beep the specified number of times (defaults to five). If our output |
25 | # Beep the specified number of times (defaults to five). If our output |
| 31 | # is not a terminal, don't beep. If the EBEEP_IGNORE env var is set, |
26 | # is not a terminal, don't beep. If the EBEEP_IGNORE env var is set, |
| 32 | # don't beep. |
27 | # don't beep. |
| 33 | # Bug 62950, Ciaran McCreesh <ciaranm@gentoo.org> (05 Sep 2004) |
28 | # Bug 62950, Ciaran McCreesh <ciaranm@gentoo.org> (05 Sep 2004) |
| 34 | ebeep() { |
29 | ebeep() { |
| 35 | local n |
30 | local n |
| 36 | if [ -z "$EBEEP_IGNORE" ] && [ -t 1 ] ; then |
31 | if [[ -z ${EBEEP_IGNORE} ]] ; then |
| 37 | for ((n=1 ; n <= ${1:-5} ; n++)) ; do |
32 | for ((n=1 ; n <= ${1:-5} ; n++)) ; do |
| 38 | echo -ne "\a" |
33 | echo -ne "\a" |
| 39 | sleep 0.1 &>/dev/null ; sleep 0,1 &>/dev/null |
34 | sleep 0.1 &>/dev/null ; sleep 0,1 &>/dev/null |
| 40 | echo -ne "\a" |
35 | echo -ne "\a" |
| 41 | sleep 1 |
36 | sleep 1 |
| … | |
… | |
| 60 | # to point to the latest version of the library present. |
55 | # to point to the latest version of the library present. |
| 61 | # |
56 | # |
| 62 | # <azarah@gentoo.org> (26 Oct 2002) |
57 | # <azarah@gentoo.org> (26 Oct 2002) |
| 63 | # |
58 | # |
| 64 | gen_usr_ldscript() { |
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 | |
| 65 | local lib libdir=$(get_libdir) |
68 | local lib libdir=$(get_libdir) |
| 66 | # Just make sure it exists |
69 | # Just make sure it exists |
| 67 | dodir /usr/${libdir} |
70 | dodir /usr/${libdir} |
| 68 | |
71 | |
| 69 | for lib in "${@}" ; do |
72 | for lib in "${@}" ; do |
| … | |
… | |
| 436 | # shell: /bin/false |
439 | # shell: /bin/false |
| 437 | # homedir: /dev/null |
440 | # homedir: /dev/null |
| 438 | # groups: none |
441 | # groups: none |
| 439 | # extra: comment of 'added by portage for ${PN}' |
442 | # extra: comment of 'added by portage for ${PN}' |
| 440 | enewuser() { |
443 | enewuser() { |
|
|
444 | case ${EBUILD_PHASE} in |
|
|
445 | unpack|compile|test|install) |
|
|
446 | 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." |
|
|
448 | die "Bad package! enewuser is only for use in pkg_* functions!" |
|
|
449 | esac |
|
|
450 | |
| 441 | # get the username |
451 | # get the username |
| 442 | local euser=$1; shift |
452 | local euser=$1; shift |
| 443 | if [[ -z ${euser} ]] ; then |
453 | if [[ -z ${euser} ]] ; then |
| 444 | eerror "No username specified !" |
454 | eerror "No username specified !" |
| 445 | die "Cannot call enewuser without a username" |
455 | die "Cannot call enewuser without a username" |
| … | |
… | |
| 631 | # Default values if you do not specify any: |
641 | # Default values if you do not specify any: |
| 632 | # groupname: REQUIRED ! |
642 | # groupname: REQUIRED ! |
| 633 | # gid: next available (see groupadd(8)) |
643 | # gid: next available (see groupadd(8)) |
| 634 | # extra: none |
644 | # extra: none |
| 635 | enewgroup() { |
645 | enewgroup() { |
|
|
646 | case ${EBUILD_PHASE} in |
|
|
647 | unpack|compile|test|install) |
|
|
648 | eerror "'enewgroup()' called from '${EBUILD_PHASE}()' which is not a pkg_* function." |
|
|
649 | eerror "Package fails at QA and at life. Please file a bug." |
|
|
650 | die "Bad package! enewgroup is only for use in pkg_* functions!" |
|
|
651 | esac |
|
|
652 | |
| 636 | # get the group |
653 | # get the group |
| 637 | local egroup="$1"; shift |
654 | local egroup="$1"; shift |
| 638 | if [ -z "${egroup}" ] |
655 | if [ -z "${egroup}" ] |
| 639 | then |
656 | then |
| 640 | eerror "No group specified !" |
657 | eerror "No group specified !" |
| … | |
… | |
| 752 | |
769 | |
| 753 | # Make a desktop file ! |
770 | # Make a desktop file ! |
| 754 | # Great for making those icons in kde/gnome startmenu ! |
771 | # Great for making those icons in kde/gnome startmenu ! |
| 755 | # Amaze your friends ! Get the women ! Join today ! |
772 | # Amaze your friends ! Get the women ! Join today ! |
| 756 | # |
773 | # |
| 757 | # make_desktop_entry(<binary>, [name], [icon], [type], [path]) |
774 | # make_desktop_entry(<command>, [name], [icon], [type], [path]) |
| 758 | # |
775 | # |
| 759 | # binary: what binary does the app run with ? |
776 | # binary: what command does the app run with ? |
| 760 | # name: the name that will show up in the menu |
777 | # name: the name that will show up in the menu |
| 761 | # icon: give your little like a pretty little icon ... |
778 | # icon: give your little like a pretty little icon ... |
| 762 | # this can be relative (to /usr/share/pixmaps) or |
779 | # this can be relative (to /usr/share/pixmaps) or |
| 763 | # a full path to an icon |
780 | # a full path to an icon |
| 764 | # type: what kind of application is this ? for categories: |
781 | # type: what kind of application is this ? for categories: |
| … | |
… | |
| 800 | games) |
817 | games) |
| 801 | case ${catmin} in |
818 | case ${catmin} in |
| 802 | action) type=ActionGame;; |
819 | action) type=ActionGame;; |
| 803 | arcade) type=ArcadeGame;; |
820 | arcade) type=ArcadeGame;; |
| 804 | board) type=BoardGame;; |
821 | board) type=BoardGame;; |
| 805 | kid) type=KidsGame;; |
822 | kids) type=KidsGame;; |
| 806 | emulation) type=Emulator;; |
823 | emulation) type=Emulator;; |
| 807 | puzzle) type=LogicGame;; |
824 | puzzle) type=LogicGame;; |
| 808 | rpg) type=RolePlaying;; |
825 | rpg) type=RolePlaying;; |
| 809 | roguelike) type=RolePlaying;; |
826 | roguelike) type=RolePlaying;; |
| 810 | simulation) type=Simulation;; |
827 | simulation) type=Simulation;; |
| … | |
… | |
| 876 | local desktop_name="${PN}" |
893 | local desktop_name="${PN}" |
| 877 | else |
894 | else |
| 878 | local desktop_name="${PN}-${SLOT}" |
895 | local desktop_name="${PN}-${SLOT}" |
| 879 | fi |
896 | fi |
| 880 | local desktop=${T}/${exec%% *}-${desktop_name}.desktop |
897 | local desktop=${T}/${exec%% *}-${desktop_name}.desktop |
|
|
898 | # local desktop=${T}/${exec%% *:-${desktop_name}}.desktop |
| 881 | |
899 | |
| 882 | echo "[Desktop Entry] |
900 | echo "[Desktop Entry] |
| 883 | Encoding=UTF-8 |
901 | Encoding=UTF-8 |
| 884 | Version=0.9.2 |
902 | Version=0.9.2 |
| 885 | Name=${name} |
903 | Name=${name} |
| 886 | Type=Application |
904 | Type=Application |
| 887 | Comment=${DESCRIPTION} |
905 | Comment=${DESCRIPTION} |
| 888 | Exec=${exec} |
906 | Exec=${exec} |
|
|
907 | TryExec=${exec%% *} |
| 889 | Path=${path} |
908 | Path=${path} |
| 890 | Icon=${icon} |
909 | Icon=${icon} |
| 891 | Categories=Application;${type};" > "${desktop}" |
910 | Categories=Application;${type};" > "${desktop}" |
| 892 | |
911 | |
| 893 | ( |
912 | ( |
| … | |
… | |
| 1096 | if [[ -z ${skip} ]] ; then |
1115 | if [[ -z ${skip} ]] ; then |
| 1097 | local ver=$(grep -a '#.*Makeself' "${src}" | awk '{print $NF}') |
1116 | local ver=$(grep -a '#.*Makeself' "${src}" | awk '{print $NF}') |
| 1098 | local skip=0 |
1117 | local skip=0 |
| 1099 | exe=tail |
1118 | exe=tail |
| 1100 | case ${ver} in |
1119 | case ${ver} in |
| 1101 | 1.5.*) # tested 1.5.{3,4,5} ... guessing 1.5.x series is same |
1120 | 1.5.*|1.6.0-nv) # tested 1.5.{3,4,5} ... guessing 1.5.x series is same |
| 1102 | skip=$(grep -a ^skip= "${src}" | cut -d= -f2) |
1121 | skip=$(grep -a ^skip= "${src}" | cut -d= -f2) |
| 1103 | ;; |
1122 | ;; |
| 1104 | 2.0|2.0.1) |
1123 | 2.0|2.0.1) |
| 1105 | skip=$(grep -a ^$'\t'tail "${src}" | awk '{print $2}' | cut -b2-) |
1124 | skip=$(grep -a ^$'\t'tail "${src}" | awk '{print $2}' | cut -b2-) |
| 1106 | ;; |
1125 | ;; |
| … | |
… | |
| 1229 | # and when the function returns, you can assume that the cd has been |
1248 | # and when the function returns, you can assume that the cd has been |
| 1230 | # found at CDROM_ROOT. |
1249 | # found at CDROM_ROOT. |
| 1231 | # |
1250 | # |
| 1232 | # normally the cdrom functions will refer to the cds as 'cd #1', 'cd #2', |
1251 | # normally the cdrom functions will refer to the cds as 'cd #1', 'cd #2', |
| 1233 | # etc... if you want to give the cds better names, then just export |
1252 | # etc... if you want to give the cds better names, then just export |
| 1234 | # the CDROM_NAME_X variables before calling cdrom_get_cds(). |
1253 | # the appropriate CDROM_NAME variable before calling cdrom_get_cds(). |
|
|
1254 | # - CDROM_NAME="fooie cd" - for when you only want 1 cd |
|
|
1255 | # - CDROM_NAME_1="install cd" - for when you want more than 1 cd |
|
|
1256 | # CDROM_NAME_2="data cd" |
|
|
1257 | # - CDROM_NAME_SET=( "install cd" "data cd" ) - short hand for CDROM_NAME_# |
| 1235 | # |
1258 | # |
| 1236 | # for those multi cd ebuilds, see the cdrom_load_next_cd() below. |
1259 | # for those multi cd ebuilds, see the cdrom_load_next_cd() below. |
| 1237 | # |
1260 | # |
| 1238 | # Usage: cdrom_get_cds <file on cd1> [file on cd2] [file on cd3] [...] |
1261 | # Usage: cdrom_get_cds <file on cd1> [file on cd2] [file on cd3] [...] |
| 1239 | # - this will attempt to locate a cd based upon a file that is on |
1262 | # - this will attempt to locate a cd based upon a file that is on |
| … | |
… | |
| 1290 | echo |
1313 | echo |
| 1291 | einfo "For example:" |
1314 | einfo "For example:" |
| 1292 | einfo "export CD_ROOT=/mnt/cdrom" |
1315 | einfo "export CD_ROOT=/mnt/cdrom" |
| 1293 | echo |
1316 | echo |
| 1294 | else |
1317 | else |
|
|
1318 | if [[ -n ${CDROM_NAME_SET} ]] ; then |
|
|
1319 | # Translate the CDROM_NAME_SET array into CDROM_NAME_# |
|
|
1320 | cdcnt=0 |
|
|
1321 | while [[ ${cdcnt} -lt ${CDROM_TOTAL_CDS} ]] ; do |
|
|
1322 | ((++cdcnt)) |
|
|
1323 | export CDROM_NAME_${cdcnt}="${CDROM_NAME_SET[$((${cdcnt}-1))]}" |
|
|
1324 | done |
|
|
1325 | fi |
|
|
1326 | |
| 1295 | einfo "This package will need access to ${CDROM_TOTAL_CDS} cds." |
1327 | einfo "This package will need access to ${CDROM_TOTAL_CDS} cds." |
| 1296 | cdcnt=0 |
1328 | cdcnt=0 |
| 1297 | while [[ ${cdcnt} -lt ${CDROM_TOTAL_CDS} ]] ; do |
1329 | while [[ ${cdcnt} -lt ${CDROM_TOTAL_CDS} ]] ; do |
| 1298 | ((++cdcnt)) |
1330 | ((++cdcnt)) |
| 1299 | var="CDROM_NAME_${cdcnt}" |
1331 | var="CDROM_NAME_${cdcnt}" |
| … | |
… | |
| 1421 | # The -i builds a list of po files found in all the |
1453 | # The -i builds a list of po files found in all the |
| 1422 | # directories and uses the intersection of the lists. |
1454 | # directories and uses the intersection of the lists. |
| 1423 | # The -u builds a list of po files found in all the |
1455 | # The -u builds a list of po files found in all the |
| 1424 | # directories and uses the union of the lists. |
1456 | # directories and uses the union of the lists. |
| 1425 | strip-linguas() { |
1457 | strip-linguas() { |
| 1426 | local ls newls |
1458 | local ls newls nols |
| 1427 | if [[ $1 == "-i" ]] || [[ $1 == "-u" ]] ; then |
1459 | if [[ $1 == "-i" ]] || [[ $1 == "-u" ]] ; then |
| 1428 | local op=$1; shift |
1460 | local op=$1; shift |
| 1429 | ls=" $(find "$1" -name '*.po' -exec basename {} \;) "; shift |
1461 | ls=$(find "$1" -name '*.po' -exec basename {} .po \;); shift |
| 1430 | local d f |
1462 | local d f |
| 1431 | for d in "$@" ; do |
1463 | for d in "$@" ; do |
| 1432 | if [[ ${op} == "-u" ]] ; then |
1464 | if [[ ${op} == "-u" ]] ; then |
| 1433 | newls=${ls} |
1465 | newls=${ls} |
| 1434 | else |
1466 | else |
| 1435 | newls="" |
1467 | newls="" |
| 1436 | fi |
1468 | fi |
| 1437 | for f in $(find "$d" -name '*.po' -exec basename {} \;) ; do |
1469 | for f in $(find "$d" -name '*.po' -exec basename {} .po \;) ; do |
| 1438 | if [[ ${op} == "-i" ]] ; then |
1470 | if [[ ${op} == "-i" ]] ; then |
| 1439 | [[ ${ls/ ${f} /} != ${ls} ]] && newls="${newls} ${f}" |
1471 | hasq ${f} ${ls} && newls="${newls} ${f}" |
| 1440 | else |
1472 | else |
| 1441 | [[ ${ls/ ${f} /} == ${ls} ]] && newls="${newls} ${f}" |
1473 | hasq ${f} ${ls} || newls="${newls} ${f}" |
| 1442 | fi |
1474 | fi |
| 1443 | done |
1475 | done |
| 1444 | ls=${newls} |
1476 | ls=${newls} |
| 1445 | done |
1477 | done |
| 1446 | ls=${ls//.po} |
|
|
| 1447 | else |
1478 | else |
| 1448 | ls=$@ |
1479 | ls="$@" |
| 1449 | fi |
1480 | fi |
| 1450 | |
1481 | |
| 1451 | ls=" ${ls} " |
1482 | nols="" |
| 1452 | newls="" |
1483 | newls="" |
| 1453 | for f in ${LINGUAS} ; do |
1484 | for f in ${LINGUAS} ; do |
| 1454 | if [[ ${ls/ ${f} /} != ${ls} ]] ; then |
1485 | if hasq ${f} ${ls} ; then |
| 1455 | newls="${newls} ${f}" |
1486 | newls="${newls} ${f}" |
| 1456 | else |
1487 | else |
| 1457 | ewarn "Sorry, but ${PN} does not support the ${f} LINGUA" |
1488 | nols="${nols} ${f}" |
| 1458 | fi |
1489 | fi |
| 1459 | done |
1490 | done |
| 1460 | if [[ -z ${newls} ]] ; then |
1491 | [[ -n ${nols} ]] \ |
| 1461 | export LINGUAS="" |
1492 | && ewarn "Sorry, but ${PN} does not support the LINGUAs:" ${nols} |
| 1462 | else |
|
|
| 1463 | export LINGUAS=${newls:1} |
1493 | export LINGUAS=${newls:1} |
| 1464 | fi |
|
|
| 1465 | } |
1494 | } |
| 1466 | |
1495 | |
| 1467 | # moved from kernel.eclass since they are generally useful outside of |
1496 | # moved from kernel.eclass since they are generally useful outside of |
| 1468 | # kernel.eclass -iggy (20041002) |
1497 | # kernel.eclass -iggy (20041002) |
| 1469 | |
1498 | |
| … | |
… | |
| 1560 | built_with_use() { |
1589 | built_with_use() { |
| 1561 | local opt=$1 |
1590 | local opt=$1 |
| 1562 | [[ ${opt:0:1} = "-" ]] && shift || opt="-a" |
1591 | [[ ${opt:0:1} = "-" ]] && shift || opt="-a" |
| 1563 | |
1592 | |
| 1564 | local PKG=$(best_version $1) |
1593 | local PKG=$(best_version $1) |
|
|
1594 | [[ -z ${PKG} ]] && die "Unable to resolve $1 to an installed package" |
| 1565 | shift |
1595 | shift |
| 1566 | |
1596 | |
| 1567 | local USEFILE=${ROOT}/var/db/pkg/${PKG}/USE |
1597 | local USEFILE=${ROOT}/var/db/pkg/${PKG}/USE |
|
|
1598 | local IUSEFILE=${ROOT}/var/db/pkg/${PKG}/IUSE |
| 1568 | |
1599 | |
| 1569 | # if the USE file doesnt exist, assume the $PKG is either |
1600 | # if the USE file doesnt exist, assume the $PKG is either |
| 1570 | # injected or package.provided |
1601 | # injected or package.provided |
| 1571 | [[ ! -e ${USEFILE} ]] && return 0 |
1602 | [[ ! -e ${USEFILE} ]] && die "Unable to determine what USE flags $PKG was built with" |
|
|
1603 | |
|
|
1604 | local IUSE_BUILT=$(<${IUSEFILE}) |
|
|
1605 | # Don't check USE_EXPAND #147237 |
|
|
1606 | local expand |
|
|
1607 | for expand in $(echo ${USE_EXPAND} | tr '[:upper:]' '[:lower:]') ; do |
|
|
1608 | if [[ $1 == ${expand}_* ]] ; then |
|
|
1609 | expand="" |
|
|
1610 | break |
|
|
1611 | fi |
|
|
1612 | done |
|
|
1613 | if [[ -n ${expand} ]] ; then |
|
|
1614 | has $1 ${IUSE_BUILT} || die "$PKG does not actually support the $1 USE flag!" |
|
|
1615 | fi |
| 1572 | |
1616 | |
| 1573 | local USE_BUILT=$(<${USEFILE}) |
1617 | local USE_BUILT=$(<${USEFILE}) |
| 1574 | while [[ $# -gt 0 ]] ; do |
1618 | while [[ $# -gt 0 ]] ; do |
| 1575 | if [[ ${opt} = "-o" ]] ; then |
1619 | if [[ ${opt} = "-o" ]] ; then |
| 1576 | has $1 ${USE_BUILT} && return 0 |
1620 | has $1 ${USE_BUILT} && return 0 |