| 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.299 2008/02/20 17:32:02 vapier 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 |
| … | |
… | |
| 77 | # Default options for patch |
77 | # Default options for patch |
| 78 | # Set -g0 to keep RCS, ClearCase, Perforce and SCCS happy. Bug #24571 |
78 | # Set -g0 to keep RCS, ClearCase, Perforce and SCCS happy. Bug #24571 |
| 79 | # Set --no-backup-if-mismatch so we don't leave '.orig' files behind. |
79 | # Set --no-backup-if-mismatch so we don't leave '.orig' files behind. |
| 80 | # Set -E to automatically remove empty files. |
80 | # Set -E to automatically remove empty files. |
| 81 | EPATCH_OPTS="-g0 -E --no-backup-if-mismatch" |
81 | EPATCH_OPTS="-g0 -E --no-backup-if-mismatch" |
| 82 | # List of patches not to apply. Not this is only file names, |
82 | # List of patches not to apply. Note this is only file names, |
| 83 | # and not the full path .. |
83 | # and not the full path .. |
| 84 | EPATCH_EXCLUDE="" |
84 | EPATCH_EXCLUDE="" |
| 85 | # Change the printed message for a single patch. |
85 | # Change the printed message for a single patch. |
| 86 | EPATCH_SINGLE_MSG="" |
86 | EPATCH_SINGLE_MSG="" |
| 87 | # Change the printed message for multiple patches. |
87 | # Change the printed message for multiple patches. |
| … | |
… | |
| 105 | # bug they should be left as is to ensure an ebuild can rely on |
105 | # bug they should be left as is to ensure an ebuild can rely on |
| 106 | # them for. |
106 | # them for. |
| 107 | # |
107 | # |
| 108 | # Patches are applied in current directory. |
108 | # Patches are applied in current directory. |
| 109 | # |
109 | # |
| 110 | # Bulk Patches should preferibly have the form of: |
110 | # Bulk Patches should preferably have the form of: |
| 111 | # |
111 | # |
| 112 | # ??_${ARCH}_foo.${EPATCH_SUFFIX} |
112 | # ??_${ARCH}_foo.${EPATCH_SUFFIX} |
| 113 | # |
113 | # |
| 114 | # For example: |
114 | # For example: |
| 115 | # |
115 | # |
| … | |
… | |
| 183 | |
183 | |
| 184 | local EPATCH_SOURCE="${EPATCH_SOURCE}/*.${EPATCH_SUFFIX}" |
184 | local EPATCH_SOURCE="${EPATCH_SOURCE}/*.${EPATCH_SUFFIX}" |
| 185 | fi |
185 | fi |
| 186 | |
186 | |
| 187 | case ${EPATCH_SUFFIX##*\.} in |
187 | case ${EPATCH_SUFFIX##*\.} in |
|
|
188 | lzma) |
|
|
189 | PIPE_CMD="lzma -dc" |
|
|
190 | PATCH_SUFFIX="lzma" |
|
|
191 | ;; |
| 188 | bz2) |
192 | bz2) |
| 189 | PIPE_CMD="bzip2 -dc" |
193 | PIPE_CMD="bzip2 -dc" |
| 190 | PATCH_SUFFIX="bz2" |
194 | PATCH_SUFFIX="bz2" |
| 191 | ;; |
195 | ;; |
| 192 | gz|Z|z) |
196 | gz|Z|z) |
| … | |
… | |
| 242 | fi |
246 | fi |
| 243 | |
247 | |
| 244 | echo "***** ${patchname} *****" > ${STDERR_TARGET%/*}/${patchname}-${STDERR_TARGET##*/} |
248 | echo "***** ${patchname} *****" > ${STDERR_TARGET%/*}/${patchname}-${STDERR_TARGET##*/} |
| 245 | echo >> ${STDERR_TARGET%/*}/${patchname}-${STDERR_TARGET##*/} |
249 | echo >> ${STDERR_TARGET%/*}/${patchname}-${STDERR_TARGET##*/} |
| 246 | |
250 | |
|
|
251 | # Decompress the patch if need be |
|
|
252 | if [[ ${PATCH_SUFFIX} != "patch" ]] ; then |
|
|
253 | echo -n "PIPE_COMMAND: " >> ${STDERR_TARGET%/*}/${patchname}-${STDERR_TARGET##*/} |
|
|
254 | echo "${PIPE_CMD} ${x} > ${PATCH_TARGET}" >> ${STDERR_TARGET%/*}/${patchname}-${STDERR_TARGET##*/} |
|
|
255 | |
|
|
256 | if ! (${PIPE_CMD} ${x} > ${PATCH_TARGET}) >> ${STDERR_TARGET%/*}/${patchname}-${STDERR_TARGET##*/} 2>&1 ; then |
|
|
257 | echo |
|
|
258 | eerror "Could not extract patch!" |
|
|
259 | #die "Could not extract patch!" |
|
|
260 | count=5 |
|
|
261 | break |
|
|
262 | fi |
|
|
263 | else |
|
|
264 | PATCH_TARGET="${x}" |
|
|
265 | fi |
|
|
266 | |
|
|
267 | # Check for absolute paths in patches. If sandbox is disabled, |
|
|
268 | # people could (accidently) patch files in the root filesystem. |
|
|
269 | # Or trigger other unpleasantries #237667. So disallow -p0 on |
|
|
270 | # such patches. |
|
|
271 | local abs_paths=$(egrep -n '^[-+]{3} /' "${PATCH_TARGET}" | awk '$2 != "/dev/null" { print }') |
|
|
272 | if [[ -n ${abs_paths} ]] ; then |
|
|
273 | count=1 |
|
|
274 | echo "NOTE: skipping -p0 due to absolute paths in patch:" >> ${STDERR_TARGET%/*}/${patchname}-${STDERR_TARGET##*/} |
|
|
275 | echo "${abs_paths}" >> ${STDERR_TARGET%/*}/${patchname}-${STDERR_TARGET##*/} |
|
|
276 | fi |
|
|
277 | |
| 247 | # Allow for prefix to differ ... im lazy, so shoot me :/ |
278 | # Allow for prefix to differ ... im lazy, so shoot me :/ |
| 248 | while [ "${count}" -lt 5 ] |
279 | while [ "${count}" -lt 5 ] |
| 249 | do |
280 | do |
| 250 | # Generate some useful debug info ... |
281 | # Generate some useful debug info ... |
| 251 | _epatch_draw_line "***** ${patchname} *****" >> ${STDERR_TARGET%/*}/${patchname}-${STDERR_TARGET##*/} |
282 | _epatch_draw_line "***** ${patchname} *****" >> ${STDERR_TARGET%/*}/${patchname}-${STDERR_TARGET##*/} |
| 252 | echo >> ${STDERR_TARGET%/*}/${patchname}-${STDERR_TARGET##*/} |
283 | echo >> ${STDERR_TARGET%/*}/${patchname}-${STDERR_TARGET##*/} |
| 253 | |
284 | |
| 254 | if [ "${PATCH_SUFFIX}" != "patch" ] |
|
|
| 255 | then |
|
|
| 256 | echo -n "PIPE_COMMAND: " >> ${STDERR_TARGET%/*}/${patchname}-${STDERR_TARGET##*/} |
|
|
| 257 | echo "${PIPE_CMD} ${x} > ${PATCH_TARGET}" >> ${STDERR_TARGET%/*}/${patchname}-${STDERR_TARGET##*/} |
|
|
| 258 | else |
|
|
| 259 | PATCH_TARGET="${x}" |
|
|
| 260 | fi |
|
|
| 261 | |
|
|
| 262 | echo -n "PATCH COMMAND: " >> ${STDERR_TARGET%/*}/${patchname}-${STDERR_TARGET##*/} |
285 | echo -n "PATCH COMMAND: " >> ${STDERR_TARGET%/*}/${patchname}-${STDERR_TARGET##*/} |
| 263 | echo "patch -p${count} ${popts} < ${PATCH_TARGET}" >> ${STDERR_TARGET%/*}/${patchname}-${STDERR_TARGET##*/} |
286 | echo "patch -p${count} ${popts} < ${PATCH_TARGET}" >> ${STDERR_TARGET%/*}/${patchname}-${STDERR_TARGET##*/} |
| 264 | |
287 | |
| 265 | echo >> ${STDERR_TARGET%/*}/${patchname}-${STDERR_TARGET##*/} |
288 | echo >> ${STDERR_TARGET%/*}/${patchname}-${STDERR_TARGET##*/} |
| 266 | _epatch_draw_line "***** ${patchname} *****" >> ${STDERR_TARGET%/*}/${patchname}-${STDERR_TARGET##*/} |
289 | _epatch_draw_line "***** ${patchname} *****" >> ${STDERR_TARGET%/*}/${patchname}-${STDERR_TARGET##*/} |
| 267 | |
|
|
| 268 | if [ "${PATCH_SUFFIX}" != "patch" ] |
|
|
| 269 | then |
|
|
| 270 | if ! (${PIPE_CMD} ${x} > ${PATCH_TARGET}) >> ${STDERR_TARGET%/*}/${patchname}-${STDERR_TARGET##*/} 2>&1 |
|
|
| 271 | then |
|
|
| 272 | echo |
|
|
| 273 | eerror "Could not extract patch!" |
|
|
| 274 | #die "Could not extract patch!" |
|
|
| 275 | count=5 |
|
|
| 276 | break |
|
|
| 277 | fi |
|
|
| 278 | fi |
|
|
| 279 | |
290 | |
| 280 | if (cat ${PATCH_TARGET} | patch -p${count} ${popts} --dry-run -f ; _epatch_assert) >> ${STDERR_TARGET%/*}/${patchname}-${STDERR_TARGET##*/} 2>&1 |
291 | if (cat ${PATCH_TARGET} | patch -p${count} ${popts} --dry-run -f ; _epatch_assert) >> ${STDERR_TARGET%/*}/${patchname}-${STDERR_TARGET##*/} 2>&1 |
| 281 | then |
292 | then |
| 282 | _epatch_draw_line "***** ${patchname} *****" > ${STDERR_TARGET%/*}/${patchname}-${STDERR_TARGET##*/}.real |
293 | _epatch_draw_line "***** ${patchname} *****" > ${STDERR_TARGET%/*}/${patchname}-${STDERR_TARGET##*/}.real |
| 283 | echo >> ${STDERR_TARGET%/*}/${patchname}-${STDERR_TARGET##*/}.real |
294 | echo >> ${STDERR_TARGET%/*}/${patchname}-${STDERR_TARGET##*/}.real |
| … | |
… | |
| 376 | # base-system@gentoo.org (Linux) |
387 | # base-system@gentoo.org (Linux) |
| 377 | # Joe Jezak <josejx@gmail.com> (OS X) |
388 | # Joe Jezak <josejx@gmail.com> (OS X) |
| 378 | # usata@gentoo.org (OS X) |
389 | # usata@gentoo.org (OS X) |
| 379 | # Aaron Walker <ka0ttic@gentoo.org> (FreeBSD) |
390 | # Aaron Walker <ka0ttic@gentoo.org> (FreeBSD) |
| 380 | # @DESCRIPTION: |
391 | # @DESCRIPTION: |
| 381 | # 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), |
| 382 | # and pw (FreeBSD) used in enewuser()/enewgroup() |
394 | # and pw (FreeBSD) used in enewuser()/enewgroup() |
| 383 | egetent() { |
395 | egetent() { |
| 384 | 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 | ;; |
| 385 | *-darwin*) |
412 | *-darwin*) |
| 386 | case "$2" in |
413 | case "$2" in |
| 387 | *[!0-9]*) # Non numeric |
414 | *[!0-9]*) # Non numeric |
| 388 | nidump $1 . | awk -F":" "{ if (\$1 ~ /^$2$/) {print \$0;exit;} }" |
415 | nidump $1 . | awk -F":" "{ if (\$1 ~ /^$2$/) {print \$0;exit;} }" |
| 389 | ;; |
416 | ;; |
| … | |
… | |
| 942 | 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." |
| 943 | fi |
970 | fi |
| 944 | } |
971 | } |
| 945 | |
972 | |
| 946 | # @FUNCTION: make_session_desktop |
973 | # @FUNCTION: make_session_desktop |
| 947 | # @USAGE: <title> <command> |
974 | # @USAGE: <title> <command> [command args...] |
| 948 | # @DESCRIPTION: |
975 | # @DESCRIPTION: |
| 949 | # 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 |
| 950 | # 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. |
| 951 | make_session_desktop() { |
980 | make_session_desktop() { |
| 952 | [[ -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 |
| 953 | [[ -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 |
| 954 | |
983 | |
| 955 | local title=$1 |
984 | local title=$1 |
| 956 | local command=$2 |
985 | local command=$2 |
| 957 | local desktop=${T}/${wm}.desktop |
986 | local desktop=${T}/${wm:-${PN}}.desktop |
|
|
987 | shift 2 |
| 958 | |
988 | |
| 959 | cat <<-EOF > "${desktop}" |
989 | cat <<-EOF > "${desktop}" |
| 960 | [Desktop Entry] |
990 | [Desktop Entry] |
| 961 | Name=${title} |
991 | Name=${title} |
| 962 | Comment=This session logs you into ${title} |
992 | Comment=This session logs you into ${title} |
| 963 | Exec=${command} |
993 | Exec=${command} $* |
| 964 | TryExec=${command} |
994 | TryExec=${command} |
| 965 | Type=Application |
995 | Type=XSession |
| 966 | EOF |
996 | EOF |
| 967 | |
997 | |
| 968 | ( |
998 | ( |
| 969 | # wrap the env here so that the 'insinto' call |
999 | # wrap the env here so that the 'insinto' call |
| 970 | # doesn't corrupt the env of the caller |
1000 | # doesn't corrupt the env of the caller |
| … | |
… | |
| 1553 | # of the lists. |
1583 | # of the lists. |
| 1554 | strip-linguas() { |
1584 | strip-linguas() { |
| 1555 | local ls newls nols |
1585 | local ls newls nols |
| 1556 | if [[ $1 == "-i" ]] || [[ $1 == "-u" ]] ; then |
1586 | if [[ $1 == "-i" ]] || [[ $1 == "-u" ]] ; then |
| 1557 | local op=$1; shift |
1587 | local op=$1; shift |
| 1558 | ls=$(find "$1" -name '*.po' -exec basename {} .po \;); shift |
1588 | ls=$(find "$1" -name '*.po' -exec basename {} .po ';'); shift |
| 1559 | local d f |
1589 | local d f |
| 1560 | for d in "$@" ; do |
1590 | for d in "$@" ; do |
| 1561 | if [[ ${op} == "-u" ]] ; then |
1591 | if [[ ${op} == "-u" ]] ; then |
| 1562 | newls=${ls} |
1592 | newls=${ls} |
| 1563 | else |
1593 | else |
| 1564 | newls="" |
1594 | newls="" |
| 1565 | fi |
1595 | fi |
| 1566 | for f in $(find "$d" -name '*.po' -exec basename {} .po \;) ; do |
1596 | for f in $(find "$d" -name '*.po' -exec basename {} .po ';') ; do |
| 1567 | if [[ ${op} == "-i" ]] ; then |
1597 | if [[ ${op} == "-i" ]] ; then |
| 1568 | hasq ${f} ${ls} && newls="${newls} ${f}" |
1598 | hasq ${f} ${ls} && newls="${newls} ${f}" |
| 1569 | else |
1599 | else |
| 1570 | hasq ${f} ${ls} || newls="${newls} ${f}" |
1600 | hasq ${f} ${ls} || newls="${newls} ${f}" |
| 1571 | fi |
1601 | fi |
| … | |
… | |
| 1647 | ewarn " # revdep-rebuild --library ${lib##*/}" |
1677 | ewarn " # revdep-rebuild --library ${lib##*/}" |
| 1648 | done |
1678 | done |
| 1649 | if [[ ${notice} -eq 1 ]] ; then |
1679 | if [[ ${notice} -eq 1 ]] ; then |
| 1650 | ewarn |
1680 | ewarn |
| 1651 | ewarn "Once you've finished running revdep-rebuild, it should be safe to" |
1681 | ewarn "Once you've finished running revdep-rebuild, it should be safe to" |
| 1652 | ewarn "delete the old libraries." |
1682 | ewarn "delete the old libraries. Here is a copy & paste for the lazy:" |
|
|
1683 | for lib in "$@" ; do |
|
|
1684 | ewarn " # rm '${lib}'" |
|
|
1685 | done |
| 1653 | fi |
1686 | fi |
| 1654 | } |
1687 | } |
| 1655 | |
1688 | |
| 1656 | # @FUNCTION: built_with_use |
1689 | # @FUNCTION: built_with_use |
| 1657 | # @USAGE: [--hidden] [--missing <action>] [-a|-o] <DEPEND ATOM> <List of USE flags> |
1690 | # @USAGE: [--hidden] [--missing <action>] [-a|-o] <DEPEND ATOM> <List of USE flags> |
| … | |
… | |
| 1662 | # --missing option controls the behavior if called on a package that does |
1695 | # --missing option controls the behavior if called on a package that does |
| 1663 | # not actually support the defined USE flags (aka listed in IUSE). |
1696 | # not actually support the defined USE flags (aka listed in IUSE). |
| 1664 | # The default is to abort (call die). The -a and -o flags control |
1697 | # The default is to abort (call die). The -a and -o flags control |
| 1665 | # the requirements of the USE flags. They correspond to "and" and "or" |
1698 | # the requirements of the USE flags. They correspond to "and" and "or" |
| 1666 | # logic. So the -a flag means all listed USE flags must be enabled |
1699 | # logic. So the -a flag means all listed USE flags must be enabled |
| 1667 | # while the -o flag means at least one of the listed fIUSE flags must be |
1700 | # while the -o flag means at least one of the listed IUSE flags must be |
| 1668 | # enabled. The --hidden option is really for internal use only as it |
1701 | # enabled. The --hidden option is really for internal use only as it |
| 1669 | # means the USE flag we're checking is hidden expanded, so it won't be found |
1702 | # means the USE flag we're checking is hidden expanded, so it won't be found |
| 1670 | # in IUSE like normal USE flags. |
1703 | # in IUSE like normal USE flags. |
| 1671 | # |
1704 | # |
| 1672 | # Remember that this function isn't terribly intelligent so order of optional |
1705 | # Remember that this function isn't terribly intelligent so order of optional |
| … | |
… | |
| 1707 | die) die "Unable to determine what USE flags $PKG was built with";; |
1740 | die) die "Unable to determine what USE flags $PKG was built with";; |
| 1708 | esac |
1741 | esac |
| 1709 | fi |
1742 | fi |
| 1710 | |
1743 | |
| 1711 | if [[ ${hidden} == "no" ]] ; then |
1744 | if [[ ${hidden} == "no" ]] ; then |
| 1712 | local IUSE_BUILT=$(<${IUSEFILE}) |
1745 | local IUSE_BUILT=( $(<"${IUSEFILE}") ) |
| 1713 | # Don't check USE_EXPAND #147237 |
1746 | # Don't check USE_EXPAND #147237 |
| 1714 | local expand |
1747 | local expand |
| 1715 | for expand in $(echo ${USE_EXPAND} | tr '[:upper:]' '[:lower:]') ; do |
1748 | for expand in $(echo ${USE_EXPAND} | tr '[:upper:]' '[:lower:]') ; do |
| 1716 | if [[ $1 == ${expand}_* ]] ; then |
1749 | if [[ $1 == ${expand}_* ]] ; then |
| 1717 | expand="" |
1750 | expand="" |
| 1718 | break |
1751 | break |
| 1719 | fi |
1752 | fi |
| 1720 | done |
1753 | done |
| 1721 | if [[ -n ${expand} ]] ; then |
1754 | if [[ -n ${expand} ]] ; then |
| 1722 | if ! has $1 ${IUSE_BUILT} ; then |
1755 | if ! has $1 ${IUSE_BUILT[@]#[-+]} ; then |
| 1723 | case ${missing_action} in |
1756 | case ${missing_action} in |
| 1724 | true) return 0;; |
1757 | true) return 0;; |
| 1725 | false) return 1;; |
1758 | false) return 1;; |
| 1726 | die) die "$PKG does not actually support the $1 USE flag!";; |
1759 | die) die "$PKG does not actually support the $1 USE flag!";; |
| 1727 | esac |
1760 | esac |
| … | |
… | |
| 1791 | ) || die |
1824 | ) || die |
| 1792 | else |
1825 | else |
| 1793 | newbin "${tmpwrapper}" "${wrapper}" || die |
1826 | newbin "${tmpwrapper}" "${wrapper}" || die |
| 1794 | fi |
1827 | fi |
| 1795 | } |
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 | #} |