| 1 | # Copyright 1999-2004 Gentoo Foundation |
1 | # Copyright 1999-2004 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.114 2004/10/06 04:21:08 usata Exp $ |
3 | # $Header: /var/cvsroot/gentoo-x86/eclass/eutils.eclass,v 1.130 2004/12/24 07:16:14 vapier Exp $ |
| 4 | # |
4 | # |
| 5 | # Author: Martin Schlemmer <azarah@gentoo.org> |
5 | # Author: Martin Schlemmer <azarah@gentoo.org> |
| 6 | # |
6 | # |
| 7 | # This eclass is for general purpose functions that most ebuilds |
7 | # This eclass is for general purpose functions that most ebuilds |
| 8 | # have to implement themselves. |
8 | # have to implement themselves. |
| … | |
… | |
| 48 | # to accomidate the needs of multilib systems. It's no longer a good idea |
48 | # to accomidate the needs of multilib systems. It's no longer a good idea |
| 49 | # to assume all libraries will end up in lib. Replace any (sane) instances |
49 | # to assume all libraries will end up in lib. Replace any (sane) instances |
| 50 | # where lib is named directly with $(get_libdir) if possible. |
50 | # where lib is named directly with $(get_libdir) if possible. |
| 51 | # |
51 | # |
| 52 | # Travis Tilley <lv@gentoo.org> (24 Aug 2004) |
52 | # Travis Tilley <lv@gentoo.org> (24 Aug 2004) |
|
|
53 | # |
|
|
54 | # Jeremy Huddleston <eradicator@gentoo.org> (23 Dec 2004): |
|
|
55 | # Added support for ${ABI} and ${DEFAULT_ABI}. If they're both not set, |
|
|
56 | # fall back on old behavior. Any profile that has these set should also |
|
|
57 | # depend on a newer version of portage (not yet released) which uses these |
|
|
58 | # over CONF_LIBDIR in econf, dolib, etc... |
|
|
59 | # |
|
|
60 | # For now, this is restricted to the sparc64-multilib ${PROFILE_ARCH} as it |
|
|
61 | # is still in testing. |
| 53 | get_libdir() { |
62 | get_libdir() { |
| 54 | LIBDIR_TEST=$(type econf) |
63 | LIBDIR_TEST=$(type econf) |
| 55 | if [ ! -z "${CONF_LIBDIR_OVERRIDE}" ] ; then |
64 | if [ ! -z "${CONF_LIBDIR_OVERRIDE}" ] ; then |
| 56 | # if there is an override, we want to use that... always. |
65 | # if there is an override, we want to use that... always. |
| 57 | CONF_LIBDIR="${CONF_LIBDIR_OVERRIDE}" |
66 | CONF_LIBDIR="${CONF_LIBDIR_OVERRIDE}" |
| … | |
… | |
| 62 | # # and if there isnt an override, and we're using a version of |
71 | # # and if there isnt an override, and we're using a version of |
| 63 | # # portage without CONF_LIBDIR support, force the use of lib. dolib |
72 | # # portage without CONF_LIBDIR support, force the use of lib. dolib |
| 64 | # # and friends from portage 2.0.50 wont be too happy otherwise. |
73 | # # and friends from portage 2.0.50 wont be too happy otherwise. |
| 65 | # CONF_LIBDIR="lib" |
74 | # CONF_LIBDIR="lib" |
| 66 | #fi |
75 | #fi |
|
|
76 | elif [ "${PROFILE_ARCH}" = "sparc64-multilib" ]; then # Using eradicator's LIBDIR_<abi> approach... |
|
|
77 | CONF_LIBDIR="$(get_abi_LIBDIR)" |
| 67 | elif [ "${LIBDIR_TEST/CONF_LIBDIR}" == "${LIBDIR_TEST}" ]; then # we don't have CONF_LIBDIR support |
78 | elif [ "${LIBDIR_TEST/CONF_LIBDIR}" == "${LIBDIR_TEST}" ]; then # we don't have CONF_LIBDIR support |
| 68 | # will be <portage-2.0.51_pre20 |
79 | # will be <portage-2.0.51_pre20 |
| 69 | CONF_LIBDIR="lib" |
80 | CONF_LIBDIR="lib" |
| 70 | fi |
81 | fi |
| 71 | # and of course, default to lib if CONF_LIBDIR isnt set |
82 | # and of course, default to lib if CONF_LIBDIR isnt set |
| 72 | echo ${CONF_LIBDIR:=lib} |
83 | echo ${CONF_LIBDIR:=lib} |
| 73 | unset LIBDIR_TEST |
84 | unset LIBDIR_TEST |
| 74 | } |
85 | } |
| 75 | |
86 | |
| 76 | |
|
|
| 77 | get_multilibdir() { |
87 | get_multilibdir() { |
|
|
88 | [ "${PROFILE_ARCH}" = "sparc64-multilib" ] && die "get_multilibdir called, but it shouldn't be needed on sparc64-multilib" |
| 78 | echo ${CONF_MULTILIBDIR:=lib32} |
89 | echo ${CONF_MULTILIBDIR:=lib32} |
| 79 | } |
90 | } |
| 80 | |
|
|
| 81 | |
91 | |
| 82 | # Sometimes you need to override the value returned by get_libdir. A good |
92 | # Sometimes you need to override the value returned by get_libdir. A good |
| 83 | # example of this is xorg-x11, where lib32 isnt a supported configuration, |
93 | # example of this is xorg-x11, where lib32 isnt a supported configuration, |
| 84 | # and where lib64 -must- be used on amd64 (for applications that need lib |
94 | # and where lib64 -must- be used on amd64 (for applications that need lib |
| 85 | # to be 32bit, such as adobe acrobat). Note that this override also bypasses |
95 | # to be 32bit, such as adobe acrobat). Note that this override also bypasses |
| … | |
… | |
| 89 | # |
99 | # |
| 90 | # get_libdir_override lib64 |
100 | # get_libdir_override lib64 |
| 91 | # |
101 | # |
| 92 | # Travis Tilley <lv@gentoo.org> (31 Aug 2004) |
102 | # Travis Tilley <lv@gentoo.org> (31 Aug 2004) |
| 93 | get_libdir_override() { |
103 | get_libdir_override() { |
|
|
104 | [ "${PROFILE_ARCH}" = "sparc64-multilib" ] && die "get_libdir_override called, but it shouldn't be needed on sparc64-multilib..." |
| 94 | CONF_LIBDIR="$1" |
105 | CONF_LIBDIR="$1" |
| 95 | CONF_LIBDIR_OVERRIDE="$1" |
106 | CONF_LIBDIR_OVERRIDE="$1" |
| 96 | } |
107 | } |
| 97 | |
108 | |
| 98 | # This function generate linker scripts in /usr/lib for dynamic |
109 | # This function generate linker scripts in /usr/lib for dynamic |
| … | |
… | |
| 221 | local x="" |
232 | local x="" |
| 222 | |
233 | |
| 223 | if [ "$#" -gt 1 ] |
234 | if [ "$#" -gt 1 ] |
| 224 | then |
235 | then |
| 225 | local m="" |
236 | local m="" |
| 226 | einfo "${#} patches to apply..." |
237 | einfo "${#} patches to apply ..." |
| 227 | for m in "$@" ; do |
238 | for m in "$@" ; do |
| 228 | epatch "${m}" |
239 | epatch "${m}" |
| 229 | done |
240 | done |
| 230 | return 0 |
241 | return 0 |
| 231 | fi |
242 | fi |
| … | |
… | |
| 245 | local EPATCH_SOURCE="$1/*" |
256 | local EPATCH_SOURCE="$1/*" |
| 246 | else |
257 | else |
| 247 | local EPATCH_SOURCE="$1/*.${EPATCH_SUFFIX}" |
258 | local EPATCH_SOURCE="$1/*.${EPATCH_SUFFIX}" |
| 248 | fi |
259 | fi |
| 249 | else |
260 | else |
| 250 | if [ ! -d ${EPATCH_SOURCE} ] |
261 | if [ ! -d ${EPATCH_SOURCE} ] || [ -n "$1" ] |
| 251 | then |
262 | then |
| 252 | if [ -n "$1" -a "${EPATCH_SOURCE}" = "${WORKDIR}/patch" ] |
263 | if [ -n "$1" -a "${EPATCH_SOURCE}" = "${WORKDIR}/patch" ] |
| 253 | then |
264 | then |
| 254 | EPATCH_SOURCE="$1" |
265 | EPATCH_SOURCE="$1" |
| 255 | fi |
266 | fi |
| … | |
… | |
| 284 | ;; |
295 | ;; |
| 285 | esac |
296 | esac |
| 286 | |
297 | |
| 287 | if [ "${SINGLE_PATCH}" = "no" ] |
298 | if [ "${SINGLE_PATCH}" = "no" ] |
| 288 | then |
299 | then |
| 289 | einfo "Applying various patches (bugfixes/updates)..." |
300 | einfo "Applying various patches (bugfixes/updates) ..." |
| 290 | fi |
301 | fi |
| 291 | for x in ${EPATCH_SOURCE} |
302 | for x in ${EPATCH_SOURCE} |
| 292 | do |
303 | do |
| 293 | # New ARCH dependant patch naming scheme... |
304 | # New ARCH dependant patch naming scheme ... |
| 294 | # |
305 | # |
| 295 | # ???_arch_foo.patch |
306 | # ???_arch_foo.patch |
| 296 | # |
307 | # |
| 297 | if [ -f ${x} ] && \ |
308 | if [ -f ${x} ] && \ |
| 298 | ([ "${SINGLE_PATCH}" = "yes" -o "${x/_all_}" != "${x}" -o "`eval echo \$\{x/_${ARCH}_\}`" != "${x}" ] || \ |
309 | ([ "${SINGLE_PATCH}" = "yes" -o "${x/_all_}" != "${x}" -o "`eval echo \$\{x/_${ARCH}_\}`" != "${x}" ] || \ |
| … | |
… | |
| 313 | then |
324 | then |
| 314 | if [ -n "${EPATCH_SINGLE_MSG}" ] |
325 | if [ -n "${EPATCH_SINGLE_MSG}" ] |
| 315 | then |
326 | then |
| 316 | einfo "${EPATCH_SINGLE_MSG}" |
327 | einfo "${EPATCH_SINGLE_MSG}" |
| 317 | else |
328 | else |
| 318 | einfo "Applying ${x##*/}..." |
329 | einfo "Applying ${x##*/} ..." |
| 319 | fi |
330 | fi |
| 320 | else |
331 | else |
| 321 | einfo " ${x##*/}..." |
332 | einfo " ${x##*/} ..." |
| 322 | fi |
333 | fi |
| 323 | |
334 | |
| 324 | echo "***** ${x##*/} *****" > ${STDERR_TARGET%/*}/${x##*/}-${STDERR_TARGET##*/} |
335 | echo "***** ${x##*/} *****" > ${STDERR_TARGET%/*}/${x##*/}-${STDERR_TARGET##*/} |
| 325 | echo >> ${STDERR_TARGET%/*}/${x##*/}-${STDERR_TARGET##*/} |
336 | echo >> ${STDERR_TARGET%/*}/${x##*/}-${STDERR_TARGET##*/} |
| 326 | |
337 | |
| … | |
… | |
| 359 | |
370 | |
| 360 | if (cat ${PATCH_TARGET} | patch -p${count} ${popts} --dry-run -f) >> ${STDERR_TARGET%/*}/${x##*/}-${STDERR_TARGET##*/} 2>&1 |
371 | if (cat ${PATCH_TARGET} | patch -p${count} ${popts} --dry-run -f) >> ${STDERR_TARGET%/*}/${x##*/}-${STDERR_TARGET##*/} 2>&1 |
| 361 | then |
372 | then |
| 362 | draw_line "***** ${x##*/} *****" > ${STDERR_TARGET%/*}/${x##*/}-${STDERR_TARGET##*/}.real |
373 | draw_line "***** ${x##*/} *****" > ${STDERR_TARGET%/*}/${x##*/}-${STDERR_TARGET##*/}.real |
| 363 | echo >> ${STDERR_TARGET%/*}/${x##*/}-${STDERR_TARGET##*/}.real |
374 | echo >> ${STDERR_TARGET%/*}/${x##*/}-${STDERR_TARGET##*/}.real |
| 364 | echo "ACTUALLY APPLYING ${x##*/}..." >> ${STDERR_TARGET%/*}/${x##*/}-${STDERR_TARGET##*/}.real |
375 | echo "ACTUALLY APPLYING ${x##*/} ..." >> ${STDERR_TARGET%/*}/${x##*/}-${STDERR_TARGET##*/}.real |
| 365 | echo >> ${STDERR_TARGET%/*}/${x##*/}-${STDERR_TARGET##*/}.real |
376 | echo >> ${STDERR_TARGET%/*}/${x##*/}-${STDERR_TARGET##*/}.real |
| 366 | draw_line "***** ${x##*/} *****" >> ${STDERR_TARGET%/*}/${x##*/}-${STDERR_TARGET##*/}.real |
377 | draw_line "***** ${x##*/} *****" >> ${STDERR_TARGET%/*}/${x##*/}-${STDERR_TARGET##*/}.real |
| 367 | |
378 | |
| 368 | cat ${PATCH_TARGET} | patch -p${count} ${popts} >> ${STDERR_TARGET%/*}/${x##*/}-${STDERR_TARGET##*/}.real 2>&1 |
379 | cat ${PATCH_TARGET} | patch -p${count} ${popts} >> ${STDERR_TARGET%/*}/${x##*/}-${STDERR_TARGET##*/}.real 2>&1 |
| 369 | |
380 | |
| … | |
… | |
| 438 | |
449 | |
| 439 | return 1; |
450 | return 1; |
| 440 | } |
451 | } |
| 441 | END |
452 | END |
| 442 | |
453 | |
| 443 | einfon "Checking for _CS_GNU_LIBPTHREAD_VERSION support in glibc ... " |
454 | einfon "Checking for _CS_GNU_LIBPTHREAD_VERSION support in glibc ..." |
| 444 | if gcc -o ${T}/nptl ${T}/test-nptl.c &> /dev/null |
455 | if gcc -o ${T}/nptl ${T}/test-nptl.c &> /dev/null |
| 445 | then |
456 | then |
| 446 | echo "yes" |
457 | echo "yes" |
| 447 | einfon "Checking what PTHREADS implementation we have ... " |
458 | einfon "Checking what PTHREADS implementation we have ..." |
| 448 | if ${T}/nptl |
459 | if ${T}/nptl |
| 449 | then |
460 | then |
| 450 | return 0 |
461 | return 0 |
| 451 | else |
462 | else |
| 452 | return 1 |
463 | return 1 |
| … | |
… | |
| 528 | |
539 | |
| 529 | if [ -n "${ADMINPARAM}" ] |
540 | if [ -n "${ADMINPARAM}" ] |
| 530 | then |
541 | then |
| 531 | if [ "${jobs}" -gt "${ADMINPARAM}" ] |
542 | if [ "${jobs}" -gt "${ADMINPARAM}" ] |
| 532 | then |
543 | then |
| 533 | einfo "Setting make jobs to \"-j${ADMINPARAM}\" to ensure successful merge..." |
544 | einfo "Setting make jobs to \"-j${ADMINPARAM}\" to ensure successful merge ..." |
| 534 | export MAKEOPTS="${MAKEOPTS} -j${ADMINPARAM}" |
545 | export MAKEOPTS="${MAKEOPTS} -j${ADMINPARAM}" |
| 535 | else |
546 | else |
| 536 | einfo "Setting make jobs to \"-j${jobs}\" to ensure successful merge..." |
547 | einfo "Setting make jobs to \"-j${jobs}\" to ensure successful merge ..." |
| 537 | export MAKEOPTS="${MAKEOPTS} -j${jobs}" |
548 | export MAKEOPTS="${MAKEOPTS} -j${jobs}" |
| 538 | fi |
549 | fi |
| 539 | fi |
550 | fi |
| 540 | } |
551 | } |
| 541 | |
552 | |
| 542 | # Cheap replacement for when debianutils (and thus mktemp) |
553 | # Cheap replacement for when debianutils (and thus mktemp) |
| 543 | # does not exist on the users system |
554 | # does not exist on the users system |
| 544 | # vapier@gentoo.org |
555 | # vapier@gentoo.org |
| 545 | # |
556 | # |
| 546 | # Takes just 1 parameter (the directory to create tmpfile in) |
557 | # Takes just 1 optional parameter (the directory to create tmpfile in) |
| 547 | mymktemp() { |
558 | emktemp() { |
|
|
559 | local exe="touch" |
|
|
560 | [ "$1" == "-d" ] && exe="mkdir" && shift |
| 548 | local topdir="$1" |
561 | local topdir="$1" |
| 549 | |
562 | |
| 550 | [ -z "${topdir}" ] && topdir=/tmp |
563 | if [ -z "${topdir}" ] |
| 551 | if [ "`which mktemp 2>/dev/null`" ] |
|
|
| 552 | then |
564 | then |
| 553 | mktemp -p ${topdir} |
565 | [ -z "${T}" ] \ |
| 554 | else |
566 | && topdir="/tmp" \ |
|
|
567 | || topdir="${T}" |
|
|
568 | fi |
|
|
569 | |
|
|
570 | if [ -z "$(type -p mktemp)" ] |
|
|
571 | then |
|
|
572 | local tmp=/ |
|
|
573 | while [ -e "${tmp}" ] ; do |
| 555 | local tmp="${topdir}/tmp.${RANDOM}.${RANDOM}.${RANDOM}" |
574 | tmp="${topdir}/tmp.${RANDOM}.${RANDOM}.${RANDOM}" |
| 556 | touch ${tmp} |
575 | done |
|
|
576 | ${exe} "${tmp}" |
| 557 | echo ${tmp} |
577 | echo "${tmp}" |
|
|
578 | else |
|
|
579 | [ "${exe}" == "touch" ] \ |
|
|
580 | && exe="-p" \ |
|
|
581 | || exe="-d" |
|
|
582 | mktemp ${exe} "${topdir}" |
| 558 | fi |
583 | fi |
| 559 | } |
584 | } |
| 560 | |
585 | |
| 561 | # Small wrapper for getent (Linux), nidump (Mac OS X), |
586 | # Small wrapper for getent (Linux), nidump (Mac OS X), |
| 562 | # and pw (FreeBSD) used in enewuser()/enewgroup() |
587 | # and pw (FreeBSD) used in enewuser()/enewgroup() |
| 563 | # Joe Jezak <josejx@gmail.com> and usata@gentoo.org |
588 | # Joe Jezak <josejx@gmail.com> and usata@gentoo.org |
| 564 | # FBSD stuff: Aaron Walker <ka0ttic@gentoo.org> |
589 | # FBSD stuff: Aaron Walker <ka0ttic@gentoo.org> |
| 565 | # |
590 | # |
| 566 | # egetent(database, key) |
591 | # egetent(database, key) |
| 567 | egetent() { |
592 | egetent() { |
| 568 | if useq macos || useq ppc-macos ; then |
593 | if useq ppc-macos ; then |
| 569 | case "$2" in |
594 | case "$2" in |
| 570 | *[!0-9]*) # Non numeric |
595 | *[!0-9]*) # Non numeric |
| 571 | nidump $1 . | awk -F":" "{ if (\$1 ~ /^$2$/) {print \$0;exit;} }" |
596 | nidump $1 . | awk -F":" "{ if (\$1 ~ /^$2$/) {print \$0;exit;} }" |
| 572 | ;; |
597 | ;; |
| 573 | *) # Numeric |
598 | *) # Numeric |
| … | |
… | |
| 690 | local defgroup="" exgroups="" |
715 | local defgroup="" exgroups="" |
| 691 | |
716 | |
| 692 | export IFS="," |
717 | export IFS="," |
| 693 | for g in ${egroups} |
718 | for g in ${egroups} |
| 694 | do |
719 | do |
|
|
720 | export IFS="${oldifs}" |
| 695 | if [ -z "`egetent group \"${g}\"`" ] |
721 | if [ -z "`egetent group \"${g}\"`" ] |
| 696 | then |
722 | then |
| 697 | eerror "You must add group ${g} to the system first" |
723 | eerror "You must add group ${g} to the system first" |
| 698 | die "${g} is not a valid GID" |
724 | die "${g} is not a valid GID" |
| 699 | fi |
725 | fi |
| … | |
… | |
| 701 | then |
727 | then |
| 702 | defgroup="${g}" |
728 | defgroup="${g}" |
| 703 | else |
729 | else |
| 704 | exgroups="${exgroups},${g}" |
730 | exgroups="${exgroups},${g}" |
| 705 | fi |
731 | fi |
|
|
732 | export IFS="," |
| 706 | done |
733 | done |
| 707 | export IFS="${oldifs}" |
734 | export IFS="${oldifs}" |
| 708 | |
735 | |
| 709 | opts="${opts} -g ${defgroup}" |
736 | opts="${opts} -g ${defgroup}" |
| 710 | if [ ! -z "${exgroups}" ] |
737 | if [ ! -z "${exgroups}" ] |
| … | |
… | |
| 718 | |
745 | |
| 719 | # handle extra and add the user |
746 | # handle extra and add the user |
| 720 | local eextra="$@" |
747 | local eextra="$@" |
| 721 | local oldsandbox="${SANDBOX_ON}" |
748 | local oldsandbox="${SANDBOX_ON}" |
| 722 | export SANDBOX_ON="0" |
749 | export SANDBOX_ON="0" |
| 723 | if useq macos || useq ppc-macos ; |
750 | if useq ppc-macos |
| 724 | then |
751 | then |
| 725 | ### Make the user |
752 | ### Make the user |
| 726 | if [ -z "${eextra}" ] |
753 | if [ -z "${eextra}" ] |
| 727 | then |
754 | then |
| 728 | dscl . create /users/${euser} uid ${euid} |
755 | dscl . create /users/${euser} uid ${euid} |
| 729 | dscl . create /users/${euser} shell ${eshell} |
756 | dscl . create /users/${euser} shell ${eshell} |
| 730 | dscl . create /users/${euser} home ${ehome} |
757 | dscl . create /users/${euser} home ${ehome} |
| 731 | dscl . create /users/${euser} realname "added by portage for ${PN}" |
758 | dscl . create /users/${euser} realname "added by portage for ${PN}" |
| 732 | ### Add the user to the groups specified |
759 | ### Add the user to the groups specified |
|
|
760 | local oldifs="${IFS}" |
|
|
761 | export IFS="," |
| 733 | for g in ${egroups} |
762 | for g in ${egroups} |
| 734 | do |
763 | do |
| 735 | # $egroups is , delimited, not space |
|
|
| 736 | ewarn "This is code is wrong; someone on the OS X team should fix it" |
|
|
| 737 | dscl . merge /groups/${g} users ${euser} |
764 | dscl . merge /groups/${g} users ${euser} |
| 738 | done |
765 | done |
|
|
766 | export IFS="${oldifs}" |
| 739 | else |
767 | else |
| 740 | einfo "Extra options are not supported on macos yet" |
768 | einfo "Extra options are not supported on macos yet" |
| 741 | einfo "Please report the ebuild along with the info below" |
769 | einfo "Please report the ebuild along with the info below" |
| 742 | einfo "eextra: ${eextra}" |
770 | einfo "eextra: ${eextra}" |
| 743 | die "Required function missing" |
771 | die "Required function missing" |
| … | |
… | |
| 810 | then |
838 | then |
| 811 | if [ "${egid}" -gt 0 ] |
839 | if [ "${egid}" -gt 0 ] |
| 812 | then |
840 | then |
| 813 | if [ -z "`egetent group ${egid}`" ] |
841 | if [ -z "`egetent group ${egid}`" ] |
| 814 | then |
842 | then |
| 815 | if useq macos || useq ppc-macos ; then |
843 | if useq ppc-macos ; then |
| 816 | opts="${opts} ${egid}" |
844 | opts="${opts} ${egid}" |
| 817 | else |
845 | else |
| 818 | opts="${opts} -g ${egid}" |
846 | opts="${opts} -g ${egid}" |
| 819 | fi |
847 | fi |
| 820 | else |
848 | else |
| … | |
… | |
| 834 | opts="${opts} ${eextra}" |
862 | opts="${opts} ${eextra}" |
| 835 | |
863 | |
| 836 | # add the group |
864 | # add the group |
| 837 | local oldsandbox="${SANDBOX_ON}" |
865 | local oldsandbox="${SANDBOX_ON}" |
| 838 | export SANDBOX_ON="0" |
866 | export SANDBOX_ON="0" |
| 839 | if useq macos || useq ppc-macos ; |
867 | if useq ppc-macos ; then |
| 840 | then |
|
|
| 841 | if [ ! -z "${eextra}" ]; |
868 | if [ ! -z "${eextra}" ]; |
| 842 | then |
869 | then |
| 843 | einfo "Extra options are not supported on macos yet" |
870 | einfo "Extra options are not supported on macos yet" |
| 844 | einfo "Please report the ebuild along with the info below" |
871 | einfo "Please report the ebuild along with the info below" |
| 845 | einfo "eextra: ${eextra}" |
872 | einfo "eextra: ${eextra}" |
| … | |
… | |
| 870 | } |
897 | } |
| 871 | |
898 | |
| 872 | # Simple script to replace 'dos2unix' binaries |
899 | # Simple script to replace 'dos2unix' binaries |
| 873 | # vapier@gentoo.org |
900 | # vapier@gentoo.org |
| 874 | # |
901 | # |
| 875 | # edos2unix(file, <more files>...) |
902 | # edos2unix(file, <more files> ...) |
| 876 | edos2unix() { |
903 | edos2unix() { |
| 877 | for f in "$@" |
904 | for f in "$@" |
| 878 | do |
905 | do |
| 879 | cp "${f}" ${T}/edos2unix |
906 | cp "${f}" ${T}/edos2unix |
| 880 | sed 's/\r$//' ${T}/edos2unix > "${f}" |
907 | sed 's/\r$//' ${T}/edos2unix > "${f}" |
| … | |
… | |
| 882 | } |
909 | } |
| 883 | |
910 | |
| 884 | # Make a desktop file ! |
911 | # Make a desktop file ! |
| 885 | # Great for making those icons in kde/gnome startmenu ! |
912 | # Great for making those icons in kde/gnome startmenu ! |
| 886 | # Amaze your friends ! Get the women ! Join today ! |
913 | # Amaze your friends ! Get the women ! Join today ! |
| 887 | # gnome2 /usr/share/applications |
|
|
| 888 | # gnome1 /usr/share/gnome/apps/ |
|
|
| 889 | # KDE ${KDEDIR}/share/applnk /usr/share/applnk |
|
|
| 890 | # |
914 | # |
| 891 | # make_desktop_entry(<binary>, [name], [icon], [type], [path]) |
915 | # make_desktop_entry(<binary>, [name], [icon], [type], [path]) |
| 892 | # |
916 | # |
| 893 | # binary: what binary does the app run with ? |
917 | # binary: what binary does the app run with ? |
| 894 | # name: the name that will show up in the menu |
918 | # name: the name that will show up in the menu |
| 895 | # icon: give your little like a pretty little icon ... |
919 | # icon: give your little like a pretty little icon ... |
| 896 | # this can be relative (to /usr/share/pixmaps) or |
920 | # this can be relative (to /usr/share/pixmaps) or |
| 897 | # a full path to an icon |
921 | # a full path to an icon |
| 898 | # type: what kind of application is this ? for categories: |
922 | # type: what kind of application is this ? for categories: |
| 899 | # http://www.freedesktop.org/standards/menu-spec/ |
923 | # http://www.freedesktop.org/standards/menu-spec/ |
| 900 | # path: if your app needs to startup in a specific dir |
924 | # path: if your app needs to startup in a specific dir |
| 901 | make_desktop_entry() { |
925 | make_desktop_entry() { |
| 902 | [ -z "$1" ] && eerror "You must specify the executable" && return 1 |
926 | [ -z "$1" ] && eerror "make_desktop_entry: You must specify the executable" && return 1 |
| 903 | |
927 | |
| 904 | local exec="${1}" |
928 | local exec="${1}" |
| 905 | local name="${2:-${PN}}" |
929 | local name="${2:-${PN}}" |
| 906 | local icon="${3:-${PN}.png}" |
930 | local icon="${3:-${PN}.png}" |
| 907 | local type="${4}" |
931 | local type="${4}" |
| … | |
… | |
| 939 | Exec=${exec} |
963 | Exec=${exec} |
| 940 | Path=${path} |
964 | Path=${path} |
| 941 | Icon=${icon} |
965 | Icon=${icon} |
| 942 | Categories=Application;${type};" > "${desktop}" |
966 | Categories=Application;${type};" > "${desktop}" |
| 943 | |
967 | |
| 944 | if [ -d "/usr/share/applications" ] |
|
|
| 945 | then |
|
|
| 946 | insinto /usr/share/applications |
968 | insinto /usr/share/applications |
| 947 | doins "${desktop}" |
969 | doins "${desktop}" |
| 948 | fi |
|
|
| 949 | |
|
|
| 950 | #if [ -d "/usr/share/gnome/apps" ] |
|
|
| 951 | #then |
|
|
| 952 | # insinto /usr/share/gnome/apps/Games |
|
|
| 953 | # doins ${desktop} |
|
|
| 954 | #fi |
|
|
| 955 | |
|
|
| 956 | #if [ ! -z "`ls /usr/kde/* 2>/dev/null`" ] |
|
|
| 957 | #then |
|
|
| 958 | # for ver in /usr/kde/* |
|
|
| 959 | # do |
|
|
| 960 | # insinto ${ver}/share/applnk/Games |
|
|
| 961 | # doins ${desktop} |
|
|
| 962 | # done |
|
|
| 963 | #fi |
|
|
| 964 | |
|
|
| 965 | if [ -d "/usr/share/applnk" ] |
|
|
| 966 | then |
|
|
| 967 | insinto /usr/share/applnk/${subdir} |
|
|
| 968 | doins "${desktop}" |
|
|
| 969 | fi |
|
|
| 970 | |
970 | |
| 971 | return 0 |
971 | return 0 |
| 972 | } |
972 | } |
| 973 | |
973 | |
| 974 | # for internal use only (unpack_pdv and unpack_makeself) |
974 | # for internal use only (unpack_pdv and unpack_makeself) |
| … | |
… | |
| 1023 | echo ">>> Unpacking ${shrtsrc} to ${PWD}" |
1023 | echo ">>> Unpacking ${shrtsrc} to ${PWD}" |
| 1024 | local metaskip=`tail -c ${sizeoff_t} ${src} | hexdump -e \"%i\"` |
1024 | local metaskip=`tail -c ${sizeoff_t} ${src} | hexdump -e \"%i\"` |
| 1025 | local tailskip=`tail -c $((${sizeoff_t}*2)) ${src} | head -c ${sizeoff_t} | hexdump -e \"%i\"` |
1025 | local tailskip=`tail -c $((${sizeoff_t}*2)) ${src} | head -c ${sizeoff_t} | hexdump -e \"%i\"` |
| 1026 | |
1026 | |
| 1027 | # grab metadata for debug reasons |
1027 | # grab metadata for debug reasons |
| 1028 | local metafile="`mymktemp ${T}`" |
1028 | local metafile="$(emktemp)" |
| 1029 | tail -c +$((${metaskip}+1)) ${src} > ${metafile} |
1029 | tail -c +$((${metaskip}+1)) ${src} > ${metafile} |
| 1030 | |
1030 | |
| 1031 | # rip out the final file name from the metadata |
1031 | # rip out the final file name from the metadata |
| 1032 | local datafile="`tail -c +$((${metaskip}+1)) ${src} | strings | head -n 1`" |
1032 | local datafile="`tail -c +$((${metaskip}+1)) ${src} | strings | head -n 1`" |
| 1033 | datafile="`basename ${datafile}`" |
1033 | datafile="`basename ${datafile}`" |
| 1034 | |
1034 | |
| 1035 | # now lets uncompress/untar the file if need be |
1035 | # now lets uncompress/untar the file if need be |
| 1036 | local tmpfile="`mymktemp ${T}`" |
1036 | local tmpfile="$(emktemp)" |
| 1037 | tail -c +$((${tailskip}+1)) ${src} 2>/dev/null | head -c 512 > ${tmpfile} |
1037 | tail -c +$((${tailskip}+1)) ${src} 2>/dev/null | head -c 512 > ${tmpfile} |
| 1038 | |
1038 | |
| 1039 | local iscompressed="`file -b ${tmpfile}`" |
1039 | local iscompressed="`file -b ${tmpfile}`" |
| 1040 | if [ "${iscompressed:0:8}" == "compress" ] ; then |
1040 | if [ "${iscompressed:0:8}" == "compress" ] ; then |
| 1041 | iscompressed=1 |
1041 | iscompressed=1 |
| … | |
… | |
| 1143 | dd) exe="dd ibs=${skip} skip=1 obs=1024 conv=sync if='${src}'";; |
1143 | dd) exe="dd ibs=${skip} skip=1 obs=1024 conv=sync if='${src}'";; |
| 1144 | *) die "makeself cant handle exe '${exe}'" |
1144 | *) die "makeself cant handle exe '${exe}'" |
| 1145 | esac |
1145 | esac |
| 1146 | |
1146 | |
| 1147 | # lets grab the first few bytes of the file to figure out what kind of archive it is |
1147 | # lets grab the first few bytes of the file to figure out what kind of archive it is |
| 1148 | local tmpfile="$(mymktemp "${T}")" |
1148 | local tmpfile="$(emktemp)" |
| 1149 | eval ${exe} 2>/dev/null | head -c 512 > "${tmpfile}" |
1149 | eval ${exe} 2>/dev/null | head -c 512 > "${tmpfile}" |
| 1150 | local filetype="$(file -b "${tmpfile}")" |
1150 | local filetype="$(file -b "${tmpfile}")" |
| 1151 | case ${filetype} in |
1151 | case ${filetype} in |
| 1152 | *tar\ archive) |
1152 | *tar\ archive) |
| 1153 | eval ${exe} | tar --no-same-owner -xf - |
1153 | eval ${exe} | tar --no-same-owner -xf - |
| … | |
… | |
| 1200 | return 0 |
1200 | return 0 |
| 1201 | fi |
1201 | fi |
| 1202 | done |
1202 | done |
| 1203 | set +o noglob; set -$shopts #reset old shell opts |
1203 | set +o noglob; set -$shopts #reset old shell opts |
| 1204 | |
1204 | |
| 1205 | local licmsg="`mymktemp ${T}`" |
1205 | local licmsg="$(emktemp)" |
| 1206 | cat << EOF > ${licmsg} |
1206 | cat << EOF > ${licmsg} |
| 1207 | ********************************************************** |
1207 | ********************************************************** |
| 1208 | The following license outlines the terms of use of this |
1208 | The following license outlines the terms of use of this |
| 1209 | package. You MUST accept this license for installation to |
1209 | package. You MUST accept this license for installation to |
| 1210 | continue. When you are done viewing, hit 'q'. If you |
1210 | continue. When you are done viewing, hit 'q'. If you |
| … | |
… | |
| 1438 | |
1438 | |
| 1439 | ls=" ${ls} " |
1439 | ls=" ${ls} " |
| 1440 | newls="" |
1440 | newls="" |
| 1441 | for f in ${LINGUAS} ; do |
1441 | for f in ${LINGUAS} ; do |
| 1442 | if [ "${ls/ ${f} /}" != "${ls}" ] ; then |
1442 | if [ "${ls/ ${f} /}" != "${ls}" ] ; then |
| 1443 | nl="${newls} ${f}" |
1443 | newls="${newls} ${f}" |
| 1444 | else |
1444 | else |
| 1445 | ewarn "Sorry, but ${PN} does not support the ${f} LINGUA" |
1445 | ewarn "Sorry, but ${PN} does not support the ${f} LINGUA" |
| 1446 | fi |
1446 | fi |
| 1447 | done |
1447 | done |
| 1448 | if [ -z "${newls}" ] ; then |
1448 | if [ -z "${newls}" ] ; then |
| … | |
… | |
| 1521 | einfo "is not being removed. In order to make full use of this newer version," |
1521 | einfo "is not being removed. In order to make full use of this newer version," |
| 1522 | einfo "you will need to execute the following command:" |
1522 | einfo "you will need to execute the following command:" |
| 1523 | einfo " revdep-rebuild --soname ${SONAME}" |
1523 | einfo " revdep-rebuild --soname ${SONAME}" |
| 1524 | einfo |
1524 | einfo |
| 1525 | einfo "After doing that, you can safely remove ${LIB}" |
1525 | einfo "After doing that, you can safely remove ${LIB}" |
|
|
1526 | einfo "Note: 'emerge gentoolkit' to get revdep-rebuild" |
| 1526 | fi |
1527 | fi |
| 1527 | } |
1528 | } |
|
|
1529 | |
|
|
1530 | # Hack for people to figure out if a package was built with |
|
|
1531 | # certain USE flags |
|
|
1532 | # |
|
|
1533 | # Usage: built_with_use [-a|-o] <DEPEND ATOM> <List of USE flags> |
|
|
1534 | # ex: built_with_use xchat gtk2 |
|
|
1535 | # |
|
|
1536 | # Flags: -a all USE flags should be utilized |
|
|
1537 | # -o at least one USE flag should be utilized |
|
|
1538 | # Note: the default flag is '-a' |
|
|
1539 | built_with_use() { |
|
|
1540 | local opt=$1 |
|
|
1541 | [[ ${opt:0:1} = "-" ]] && shift || opt="-a" |
|
|
1542 | |
|
|
1543 | local PKG=$(best_version $1) |
|
|
1544 | shift |
|
|
1545 | |
|
|
1546 | local USEFILE="${ROOT}/var/db/pkg/${PKG}/USE" |
|
|
1547 | [[ ! -e ${USEFILE} ]] && return 1 |
|
|
1548 | |
|
|
1549 | local USE_BUILT=$(<${USEFILE}) |
|
|
1550 | while [[ $# -gt 0 ]] ; do |
|
|
1551 | if [[ ${opt} = "-o" ]] ; then |
|
|
1552 | has $1 ${USE_BUILT} && return 0 |
|
|
1553 | else |
|
|
1554 | has $1 ${USE_BUILT} || return 1 |
|
|
1555 | fi |
|
|
1556 | shift |
|
|
1557 | done |
|
|
1558 | [[ ${opt} = "-a" ]] |
|
|
1559 | } |
|
|
1560 | |
|
|
1561 | # Many configure scripts wrongly bail when a C++ compiler |
|
|
1562 | # could not be detected. #73450 |
|
|
1563 | epunt_cxx() { |
|
|
1564 | local dir=$1 |
|
|
1565 | [[ -z ${dir} ]] && dir=${S} |
|
|
1566 | ebegin "Removing useless C++ checks" |
|
|
1567 | local f |
|
|
1568 | for f in $(find ${dir} -name configure) ; do |
|
|
1569 | patch -p0 "${f}" "${PORTDIR}/eclass/ELT-patches/nocxx/nocxx.patch" > /dev/null |
|
|
1570 | done |
|
|
1571 | eend 0 |
|
|
1572 | } |
|
|
1573 | |
|
|
1574 | # get_abi_var <VAR> [<ABI>] |
|
|
1575 | # returns the value of ${<VAR>_<ABI>} which should be set in make.defaults |
|
|
1576 | # |
|
|
1577 | # This code is for testing purposes only with the sparc64-multilib ${PROFILE_ARCH} |
|
|
1578 | # and getting a more multilib-aware portage layout. It may end up being used, but for now |
|
|
1579 | # it is subject to removal if a better way is worked out. |
|
|
1580 | # |
|
|
1581 | # ex: |
|
|
1582 | # CFLAGS=$(get_abi_var CFLAGS sparc32) # CFLAGS=-m32 |
|
|
1583 | # |
|
|
1584 | # Note that the prefered method is to set CC="$(tc-getCC) $(get_abi_CFLAGS)" |
|
|
1585 | # This will hopefully be added to portage soon... |
|
|
1586 | # |
|
|
1587 | # If <ABI> is not specified, ${ABI} is used. |
|
|
1588 | # If <ABI> is not specified and ${ABI} is not defined, ${DEFAULT_ABI} is used. |
|
|
1589 | # If <ABI> is not specified and ${ABI} and ${DEFAULT_ABI} are not defined, we return an empty string. |
|
|
1590 | # |
|
|
1591 | # Jeremy Huddleston <eradicator@gentoo.org> |
|
|
1592 | get_abi_var() { |
|
|
1593 | local flag=$1 |
|
|
1594 | local abi |
|
|
1595 | if [ $# -gt 1 ]; then |
|
|
1596 | abi=$1 |
|
|
1597 | elif [ -n "${ABI}" ]; then |
|
|
1598 | abi=${ABI} |
|
|
1599 | elif [ -n "${DEFAULT_ABI}" ]; then |
|
|
1600 | abi=${DEFAULT_ABI} |
|
|
1601 | else |
|
|
1602 | return 1 |
|
|
1603 | fi |
|
|
1604 | eval echo \${${flag}_${abi}} |
|
|
1605 | } |
|
|
1606 | |
|
|
1607 | get_abi_CFLAGS() { get_abi_var CFLAGS $1; } |
|
|
1608 | get_abi_CXXFLAGS() { get_abi_var CXXFLAGS $1; } |
|
|
1609 | get_abi_ASFLAGS() { get_abi_var ASFLAGS $1; } |
|
|
1610 | get_abi_LIBDIR() { get_abi_var LIBDIR $1; } |
|
|
1611 | |