| 1 | # Copyright 1999-2007 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.309 2009/02/07 10:57:38 pva Exp $ |
3 | # $Header: /var/cvsroot/gentoo-x86/eclass/eutils.eclass,v 1.315 2009/02/21 23:28:21 vapier Exp $ |
| 4 | |
4 | |
| 5 | # @ECLASS: eutils.eclass |
5 | # @ECLASS: eutils.eclass |
| 6 | # @MAINTAINER: |
6 | # @MAINTAINER: |
| 7 | # base-system@gentoo.org |
7 | # base-system@gentoo.org |
| 8 | # @BLURB: many extra (but common) functions that are used in ebuilds |
8 | # @BLURB: many extra (but common) functions that are used in ebuilds |
| … | |
… | |
| 387 | # base-system@gentoo.org (Linux) |
387 | # base-system@gentoo.org (Linux) |
| 388 | # Joe Jezak <josejx@gmail.com> (OS X) |
388 | # Joe Jezak <josejx@gmail.com> (OS X) |
| 389 | # usata@gentoo.org (OS X) |
389 | # usata@gentoo.org (OS X) |
| 390 | # Aaron Walker <ka0ttic@gentoo.org> (FreeBSD) |
390 | # Aaron Walker <ka0ttic@gentoo.org> (FreeBSD) |
| 391 | # @DESCRIPTION: |
391 | # @DESCRIPTION: |
| 392 | # Small wrapper for getent (Linux), nidump (Mac OS X), |
392 | # Small wrapper for getent (Linux), |
|
|
393 | # nidump (< Mac OS X 10.5), dscl (Mac OS X 10.5), |
| 393 | # and pw (FreeBSD) used in enewuser()/enewgroup() |
394 | # and pw (FreeBSD) used in enewuser()/enewgroup() |
| 394 | egetent() { |
395 | egetent() { |
| 395 | case ${CHOST} in |
396 | case ${CHOST} in |
|
|
397 | *-darwin9) |
|
|
398 | local mytype=$1 |
|
|
399 | [[ "passwd" == $mytype ]] && mytype="Users" |
|
|
400 | [[ "group" == $mytype ]] && mytype="Groups" |
|
|
401 | case "$2" in |
|
|
402 | *[!0-9]*) # Non numeric |
|
|
403 | dscl . -read /$mytype/$2 2>/dev/null |grep RecordName |
|
|
404 | ;; |
|
|
405 | *) # Numeric |
|
|
406 | local mykey="UniqueID" |
|
|
407 | [[ $mytype == "Groups" ]] && mykey="PrimaryGroupID" |
|
|
408 | dscl . -search /$mytype $mykey $2 2>/dev/null |
|
|
409 | ;; |
|
|
410 | esac |
|
|
411 | ;; |
| 396 | *-darwin*) |
412 | *-darwin*) |
| 397 | case "$2" in |
413 | case "$2" in |
| 398 | *[!0-9]*) # Non numeric |
414 | *[!0-9]*) # Non numeric |
| 399 | nidump $1 . | awk -F":" "{ if (\$1 ~ /^$2$/) {print \$0;exit;} }" |
415 | nidump $1 . | awk -F":" "{ if (\$1 ~ /^$2$/) {print \$0;exit;} }" |
| 400 | ;; |
416 | ;; |
| … | |
… | |
| 953 | einfo "Passing desktop entry validity check. Install dev-util/desktop-file-utils, if you want to help to improve Gentoo." |
969 | einfo "Passing desktop entry validity check. Install dev-util/desktop-file-utils, if you want to help to improve Gentoo." |
| 954 | fi |
970 | fi |
| 955 | } |
971 | } |
| 956 | |
972 | |
| 957 | # @FUNCTION: make_session_desktop |
973 | # @FUNCTION: make_session_desktop |
| 958 | # @USAGE: <title> <command> |
974 | # @USAGE: <title> <command> [command args...] |
| 959 | # @DESCRIPTION: |
975 | # @DESCRIPTION: |
| 960 | # Make a GDM/KDM Session file. The title is the file to execute to start the |
976 | # Make a GDM/KDM Session file. The title is the file to execute to start the |
| 961 | # Window Manager. The command is the name of the Window Manager. |
977 | # Window Manager. The command is the name of the Window Manager. |
|
|
978 | # |
|
|
979 | # You can set the name of the file via the ${wm} variable. |
| 962 | make_session_desktop() { |
980 | make_session_desktop() { |
| 963 | [[ -z $1 ]] && eerror "make_session_desktop: You must specify the title" && return 1 |
981 | [[ -z $1 ]] && eerror "$0: You must specify the title" && return 1 |
| 964 | [[ -z $2 ]] && eerror "make_session_desktop: You must specify the command" && return 1 |
982 | [[ -z $2 ]] && eerror "$0: You must specify the command" && return 1 |
| 965 | |
983 | |
| 966 | local title=$1 |
984 | local title=$1 |
| 967 | local command=$2 |
985 | local command=$2 |
| 968 | local desktop=${T}/${wm}.desktop |
986 | local desktop=${T}/${wm:-${PN}}.desktop |
|
|
987 | shift 2 |
| 969 | |
988 | |
| 970 | cat <<-EOF > "${desktop}" |
989 | cat <<-EOF > "${desktop}" |
| 971 | [Desktop Entry] |
990 | [Desktop Entry] |
| 972 | Name=${title} |
991 | Name=${title} |
| 973 | Comment=This session logs you into ${title} |
992 | Comment=This session logs you into ${title} |
| 974 | Exec=${command} |
993 | Exec=${command} $* |
| 975 | TryExec=${command} |
994 | TryExec=${command} |
| 976 | Type=Application |
995 | Type=XSession |
| 977 | EOF |
996 | EOF |
| 978 | |
997 | |
| 979 | ( |
998 | ( |
| 980 | # wrap the env here so that the 'insinto' call |
999 | # wrap the env here so that the 'insinto' call |
| 981 | # doesn't corrupt the env of the caller |
1000 | # doesn't corrupt the env of the caller |
| … | |
… | |
| 1564 | # of the lists. |
1583 | # of the lists. |
| 1565 | strip-linguas() { |
1584 | strip-linguas() { |
| 1566 | local ls newls nols |
1585 | local ls newls nols |
| 1567 | if [[ $1 == "-i" ]] || [[ $1 == "-u" ]] ; then |
1586 | if [[ $1 == "-i" ]] || [[ $1 == "-u" ]] ; then |
| 1568 | local op=$1; shift |
1587 | local op=$1; shift |
| 1569 | ls=$(find "$1" -name '*.po' -exec basename {} .po \;); shift |
1588 | ls=$(find "$1" -name '*.po' -exec basename {} .po ';'); shift |
| 1570 | local d f |
1589 | local d f |
| 1571 | for d in "$@" ; do |
1590 | for d in "$@" ; do |
| 1572 | if [[ ${op} == "-u" ]] ; then |
1591 | if [[ ${op} == "-u" ]] ; then |
| 1573 | newls=${ls} |
1592 | newls=${ls} |
| 1574 | else |
1593 | else |
| 1575 | newls="" |
1594 | newls="" |
| 1576 | fi |
1595 | fi |
| 1577 | for f in $(find "$d" -name '*.po' -exec basename {} .po \;) ; do |
1596 | for f in $(find "$d" -name '*.po' -exec basename {} .po ';') ; do |
| 1578 | if [[ ${op} == "-i" ]] ; then |
1597 | if [[ ${op} == "-i" ]] ; then |
| 1579 | hasq ${f} ${ls} && newls="${newls} ${f}" |
1598 | hasq ${f} ${ls} && newls="${newls} ${f}" |
| 1580 | else |
1599 | else |
| 1581 | hasq ${f} ${ls} || newls="${newls} ${f}" |
1600 | hasq ${f} ${ls} || newls="${newls} ${f}" |
| 1582 | fi |
1601 | fi |
| … | |
… | |
| 1805 | ) || die |
1824 | ) || die |
| 1806 | else |
1825 | else |
| 1807 | newbin "${tmpwrapper}" "${wrapper}" || die |
1826 | newbin "${tmpwrapper}" "${wrapper}" || die |
| 1808 | fi |
1827 | fi |
| 1809 | } |
1828 | } |
|
|
1829 | |
|
|
1830 | # @FUNCTION: prepalldocs |
|
|
1831 | # @USAGE: |
|
|
1832 | # @DESCRIPTION: |
|
|
1833 | # Compress files in /usr/share/doc which are not already |
|
|
1834 | # compressed, excluding /usr/share/doc/${PF}/html. |
|
|
1835 | # Uses the ecompressdir to do the compression. |
|
|
1836 | # 2009-02-18 by betelgeuse: |
|
|
1837 | # Commented because ecompressdir is even more internal to |
|
|
1838 | # Portage than prepalldocs (it's not even mentioned in man 5 |
|
|
1839 | # ebuild). Please submit a better version for review to gentoo-dev |
|
|
1840 | # if you want prepalldocs here. |
|
|
1841 | #prepalldocs() { |
|
|
1842 | # if [[ -n $1 ]] ; then |
|
|
1843 | # ewarn "prepalldocs: invalid usage; takes no arguments" |
|
|
1844 | # fi |
|
|
1845 | |
|
|
1846 | # cd "${D}" |
|
|
1847 | # [[ -d usr/share/doc ]] || return 0 |
|
|
1848 | |
|
|
1849 | # find usr/share/doc -exec gzip {} + |
|
|
1850 | # ecompressdir --ignore /usr/share/doc/${PF}/html |
|
|
1851 | # ecompressdir --queue /usr/share/doc |
|
|
1852 | #} |