| 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.99 2004/09/07 11:41:29 vapier Exp $ |
3 | # $Header: /var/cvsroot/gentoo-x86/eclass/eutils.eclass,v 1.128 2004/12/23 09:20:45 eradicator 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() { |
|
|
63 | LIBDIR_TEST=$(type econf) |
| 54 | if [ ! -z "${CONF_LIBDIR_OVERRIDE}" ] ; then |
64 | if [ ! -z "${CONF_LIBDIR_OVERRIDE}" ] ; then |
| 55 | # if there is an override, we want to use that... always. |
65 | # if there is an override, we want to use that... always. |
| 56 | CONF_LIBDIR="${CONF_LIBDIR_OVERRIDE}" |
66 | CONF_LIBDIR="${CONF_LIBDIR_OVERRIDE}" |
|
|
67 | # We don't need to know the verison of portage. We only need to know |
|
|
68 | # if there is support for CONF_LIBDIR in econf and co. |
|
|
69 | # Danny van Dyk <kugelfang@gentoo.org> 2004/17/09 |
| 57 | elif portageq has_version / '<sys-apps/portage-2.0.51_pre20' ; then |
70 | #elif portageq has_version / '<sys-apps/portage-2.0.51_pre20' ; then |
| 58 | # 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 |
| 59 | # portage without CONF_LIBDIR support, force the use of lib. dolib |
72 | # # portage without CONF_LIBDIR support, force the use of lib. dolib |
| 60 | # 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. |
|
|
74 | # CONF_LIBDIR="lib" |
|
|
75 | #fi |
|
|
76 | elif [ "${PROFILE_ARCH}" = "sparc64-multilib" ]; then # Using eradicator's LIBDIR_<abi> approach... |
|
|
77 | CONF_LIBDIR="$(get_abi_LIBDIR)" |
|
|
78 | elif [ "${LIBDIR_TEST/CONF_LIBDIR}" == "${LIBDIR_TEST}" ]; then # we don't have CONF_LIBDIR support |
|
|
79 | # will be <portage-2.0.51_pre20 |
| 61 | CONF_LIBDIR="lib" |
80 | CONF_LIBDIR="lib" |
| 62 | fi |
81 | fi |
| 63 | # and of course, default to lib if CONF_LIBDIR isnt set |
82 | # and of course, default to lib if CONF_LIBDIR isnt set |
| 64 | echo ${CONF_LIBDIR:=lib} |
83 | echo ${CONF_LIBDIR:=lib} |
|
|
84 | unset LIBDIR_TEST |
|
|
85 | } |
|
|
86 | |
|
|
87 | get_multilibdir() { |
|
|
88 | [ "${PROFILE_ARCH}" = "sparc64-multilib" ] && die "get_multilibdir called, but it shouldn't be needed on sparc64-multilib" |
|
|
89 | echo ${CONF_MULTILIBDIR:=lib32} |
| 65 | } |
90 | } |
| 66 | |
91 | |
| 67 | # 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 |
| 68 | # 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, |
| 69 | # 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 |
| … | |
… | |
| 74 | # |
99 | # |
| 75 | # get_libdir_override lib64 |
100 | # get_libdir_override lib64 |
| 76 | # |
101 | # |
| 77 | # Travis Tilley <lv@gentoo.org> (31 Aug 2004) |
102 | # Travis Tilley <lv@gentoo.org> (31 Aug 2004) |
| 78 | 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..." |
| 79 | CONF_LIBDIR="$1" |
105 | CONF_LIBDIR="$1" |
| 80 | CONF_LIBDIR_OVERRIDE="$1" |
106 | CONF_LIBDIR_OVERRIDE="$1" |
| 81 | } |
107 | } |
| 82 | |
108 | |
| 83 | # This function generate linker scripts in /usr/lib for dynamic |
109 | # This function generate linker scripts in /usr/lib for dynamic |
| … | |
… | |
| 97 | # to point to the latest version of the library present. |
123 | # to point to the latest version of the library present. |
| 98 | # |
124 | # |
| 99 | # <azarah@gentoo.org> (26 Oct 2002) |
125 | # <azarah@gentoo.org> (26 Oct 2002) |
| 100 | # |
126 | # |
| 101 | gen_usr_ldscript() { |
127 | gen_usr_ldscript() { |
|
|
128 | local libdir="$(get_libdir)" |
| 102 | # Just make sure it exists |
129 | # Just make sure it exists |
| 103 | dodir /usr/$(get_libdir) |
130 | dodir /usr/${libdir} |
| 104 | |
131 | |
| 105 | cat > ${D}/usr/$(get_libdir)/$1 <<"END_LDSCRIPT" |
132 | cat > "${D}/usr/${libdir}/${1}" << END_LDSCRIPT |
| 106 | /* GNU ld script |
133 | /* GNU ld script |
| 107 | Because Gentoo have critical dynamic libraries |
134 | Because Gentoo have critical dynamic libraries |
| 108 | in /lib, and the static versions in /usr/lib, we |
135 | in /lib, and the static versions in /usr/lib, we |
| 109 | need to have a "fake" dynamic lib in /usr/lib, |
136 | need to have a "fake" dynamic lib in /usr/lib, |
| 110 | otherwise we run into linking problems. |
137 | otherwise we run into linking problems. |
| 111 | See bug #4411 on http://bugs.gentoo.org/ for |
138 | See bug #4411 on http://bugs.gentoo.org/ for |
| 112 | more info. */ |
139 | more info. */ |
|
|
140 | GROUP ( /${libdir}/${1} ) |
| 113 | END_LDSCRIPT |
141 | END_LDSCRIPT |
| 114 | |
142 | fperms a+x "/usr/${libdir}/${1}" |
| 115 | echo "GROUP ( /$(get_libdir)/libxxx )" >> ${D}/usr/$(get_libdir)/$1 |
|
|
| 116 | dosed "s:libxxx:$1:" /usr/$(get_libdir)/$1 |
|
|
| 117 | |
|
|
| 118 | return 0 |
|
|
| 119 | } |
143 | } |
| 120 | |
144 | |
| 121 | # Simple function to draw a line consisting of '=' the same length as $* |
145 | # Simple function to draw a line consisting of '=' the same length as $* |
| 122 | # |
146 | # |
| 123 | # <azarah@gentoo.org> (11 Nov 2002) |
147 | # <azarah@gentoo.org> (11 Nov 2002) |
| … | |
… | |
| 208 | local x="" |
232 | local x="" |
| 209 | |
233 | |
| 210 | if [ "$#" -gt 1 ] |
234 | if [ "$#" -gt 1 ] |
| 211 | then |
235 | then |
| 212 | local m="" |
236 | local m="" |
| 213 | einfo "${#} patches to apply..." |
237 | einfo "${#} patches to apply ..." |
| 214 | for m in "$@" ; do |
238 | for m in "$@" ; do |
| 215 | epatch "${m}" |
239 | epatch "${m}" |
| 216 | done |
240 | done |
| 217 | return 0 |
241 | return 0 |
| 218 | fi |
242 | fi |
| … | |
… | |
| 232 | local EPATCH_SOURCE="$1/*" |
256 | local EPATCH_SOURCE="$1/*" |
| 233 | else |
257 | else |
| 234 | local EPATCH_SOURCE="$1/*.${EPATCH_SUFFIX}" |
258 | local EPATCH_SOURCE="$1/*.${EPATCH_SUFFIX}" |
| 235 | fi |
259 | fi |
| 236 | else |
260 | else |
| 237 | if [ ! -d ${EPATCH_SOURCE} ] |
261 | if [ ! -d ${EPATCH_SOURCE} ] || [ -n "$1" ] |
| 238 | then |
262 | then |
| 239 | if [ -n "$1" -a "${EPATCH_SOURCE}" = "${WORKDIR}/patch" ] |
263 | if [ -n "$1" -a "${EPATCH_SOURCE}" = "${WORKDIR}/patch" ] |
| 240 | then |
264 | then |
| 241 | EPATCH_SOURCE="$1" |
265 | EPATCH_SOURCE="$1" |
| 242 | fi |
266 | fi |
| … | |
… | |
| 271 | ;; |
295 | ;; |
| 272 | esac |
296 | esac |
| 273 | |
297 | |
| 274 | if [ "${SINGLE_PATCH}" = "no" ] |
298 | if [ "${SINGLE_PATCH}" = "no" ] |
| 275 | then |
299 | then |
| 276 | einfo "Applying various patches (bugfixes/updates)..." |
300 | einfo "Applying various patches (bugfixes/updates) ..." |
| 277 | fi |
301 | fi |
| 278 | for x in ${EPATCH_SOURCE} |
302 | for x in ${EPATCH_SOURCE} |
| 279 | do |
303 | do |
| 280 | # New ARCH dependant patch naming scheme... |
304 | # New ARCH dependant patch naming scheme ... |
| 281 | # |
305 | # |
| 282 | # ???_arch_foo.patch |
306 | # ???_arch_foo.patch |
| 283 | # |
307 | # |
| 284 | if [ -f ${x} ] && \ |
308 | if [ -f ${x} ] && \ |
| 285 | ([ "${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}" ] || \ |
| … | |
… | |
| 300 | then |
324 | then |
| 301 | if [ -n "${EPATCH_SINGLE_MSG}" ] |
325 | if [ -n "${EPATCH_SINGLE_MSG}" ] |
| 302 | then |
326 | then |
| 303 | einfo "${EPATCH_SINGLE_MSG}" |
327 | einfo "${EPATCH_SINGLE_MSG}" |
| 304 | else |
328 | else |
| 305 | einfo "Applying ${x##*/}..." |
329 | einfo "Applying ${x##*/} ..." |
| 306 | fi |
330 | fi |
| 307 | else |
331 | else |
| 308 | einfo " ${x##*/}..." |
332 | einfo " ${x##*/} ..." |
| 309 | fi |
333 | fi |
| 310 | |
334 | |
| 311 | echo "***** ${x##*/} *****" > ${STDERR_TARGET%/*}/${x##*/}-${STDERR_TARGET##*/} |
335 | echo "***** ${x##*/} *****" > ${STDERR_TARGET%/*}/${x##*/}-${STDERR_TARGET##*/} |
| 312 | echo >> ${STDERR_TARGET%/*}/${x##*/}-${STDERR_TARGET##*/} |
336 | echo >> ${STDERR_TARGET%/*}/${x##*/}-${STDERR_TARGET##*/} |
| 313 | |
337 | |
| … | |
… | |
| 346 | |
370 | |
| 347 | 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 |
| 348 | then |
372 | then |
| 349 | draw_line "***** ${x##*/} *****" > ${STDERR_TARGET%/*}/${x##*/}-${STDERR_TARGET##*/}.real |
373 | draw_line "***** ${x##*/} *****" > ${STDERR_TARGET%/*}/${x##*/}-${STDERR_TARGET##*/}.real |
| 350 | echo >> ${STDERR_TARGET%/*}/${x##*/}-${STDERR_TARGET##*/}.real |
374 | echo >> ${STDERR_TARGET%/*}/${x##*/}-${STDERR_TARGET##*/}.real |
| 351 | echo "ACTUALLY APPLYING ${x##*/}..." >> ${STDERR_TARGET%/*}/${x##*/}-${STDERR_TARGET##*/}.real |
375 | echo "ACTUALLY APPLYING ${x##*/} ..." >> ${STDERR_TARGET%/*}/${x##*/}-${STDERR_TARGET##*/}.real |
| 352 | echo >> ${STDERR_TARGET%/*}/${x##*/}-${STDERR_TARGET##*/}.real |
376 | echo >> ${STDERR_TARGET%/*}/${x##*/}-${STDERR_TARGET##*/}.real |
| 353 | draw_line "***** ${x##*/} *****" >> ${STDERR_TARGET%/*}/${x##*/}-${STDERR_TARGET##*/}.real |
377 | draw_line "***** ${x##*/} *****" >> ${STDERR_TARGET%/*}/${x##*/}-${STDERR_TARGET##*/}.real |
| 354 | |
378 | |
| 355 | 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 |
| 356 | |
380 | |
| … | |
… | |
| 403 | # This function return true if we are using the NPTL pthreads |
427 | # This function return true if we are using the NPTL pthreads |
| 404 | # implementation. |
428 | # implementation. |
| 405 | # |
429 | # |
| 406 | # <azarah@gentoo.org> (06 March 2003) |
430 | # <azarah@gentoo.org> (06 March 2003) |
| 407 | # |
431 | # |
| 408 | |
|
|
| 409 | have_NPTL() { |
432 | have_NPTL() { |
| 410 | |
|
|
| 411 | cat > ${T}/test-nptl.c <<-"END" |
433 | cat > ${T}/test-nptl.c <<-"END" |
| 412 | #define _XOPEN_SOURCE |
434 | #define _XOPEN_SOURCE |
| 413 | #include <unistd.h> |
435 | #include <unistd.h> |
| 414 | #include <stdio.h> |
436 | #include <stdio.h> |
| 415 | |
437 | |
| … | |
… | |
| 427 | |
449 | |
| 428 | return 1; |
450 | return 1; |
| 429 | } |
451 | } |
| 430 | END |
452 | END |
| 431 | |
453 | |
| 432 | einfon "Checking for _CS_GNU_LIBPTHREAD_VERSION support in glibc ... " |
454 | einfon "Checking for _CS_GNU_LIBPTHREAD_VERSION support in glibc ..." |
| 433 | if gcc -o ${T}/nptl ${T}/test-nptl.c &> /dev/null |
455 | if gcc -o ${T}/nptl ${T}/test-nptl.c &> /dev/null |
| 434 | then |
456 | then |
| 435 | echo "yes" |
457 | echo "yes" |
| 436 | einfon "Checking what PTHREADS implementation we have ... " |
458 | einfon "Checking what PTHREADS implementation we have ..." |
| 437 | if ${T}/nptl |
459 | if ${T}/nptl |
| 438 | then |
460 | then |
| 439 | return 0 |
461 | return 0 |
| 440 | else |
462 | else |
| 441 | return 1 |
463 | return 1 |
| … | |
… | |
| 517 | |
539 | |
| 518 | if [ -n "${ADMINPARAM}" ] |
540 | if [ -n "${ADMINPARAM}" ] |
| 519 | then |
541 | then |
| 520 | if [ "${jobs}" -gt "${ADMINPARAM}" ] |
542 | if [ "${jobs}" -gt "${ADMINPARAM}" ] |
| 521 | then |
543 | then |
| 522 | einfo "Setting make jobs to \"-j${ADMINPARAM}\" to ensure successful merge..." |
544 | einfo "Setting make jobs to \"-j${ADMINPARAM}\" to ensure successful merge ..." |
| 523 | export MAKEOPTS="${MAKEOPTS} -j${ADMINPARAM}" |
545 | export MAKEOPTS="${MAKEOPTS} -j${ADMINPARAM}" |
| 524 | else |
546 | else |
| 525 | einfo "Setting make jobs to \"-j${jobs}\" to ensure successful merge..." |
547 | einfo "Setting make jobs to \"-j${jobs}\" to ensure successful merge ..." |
| 526 | export MAKEOPTS="${MAKEOPTS} -j${jobs}" |
548 | export MAKEOPTS="${MAKEOPTS} -j${jobs}" |
| 527 | fi |
549 | fi |
| 528 | fi |
550 | fi |
| 529 | } |
551 | } |
| 530 | |
552 | |
| 531 | # Cheap replacement for when debianutils (and thus mktemp) |
553 | # Cheap replacement for when debianutils (and thus mktemp) |
| 532 | # does not exist on the users system |
554 | # does not exist on the users system |
| 533 | # vapier@gentoo.org |
555 | # vapier@gentoo.org |
| 534 | # |
556 | # |
| 535 | # Takes just 1 parameter (the directory to create tmpfile in) |
557 | # Takes just 1 optional parameter (the directory to create tmpfile in) |
| 536 | mymktemp() { |
558 | emktemp() { |
|
|
559 | local exe="touch" |
|
|
560 | [ "$1" == "-d" ] && exe="mkdir" && shift |
| 537 | local topdir="$1" |
561 | local topdir="$1" |
| 538 | |
562 | |
| 539 | [ -z "${topdir}" ] && topdir=/tmp |
563 | if [ -z "${topdir}" ] |
| 540 | if [ "`which mktemp 2>/dev/null`" ] |
|
|
| 541 | then |
564 | then |
| 542 | mktemp -p ${topdir} |
565 | [ -z "${T}" ] \ |
| 543 | 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 |
| 544 | local tmp="${topdir}/tmp.${RANDOM}.${RANDOM}.${RANDOM}" |
574 | tmp="${topdir}/tmp.${RANDOM}.${RANDOM}.${RANDOM}" |
| 545 | touch ${tmp} |
575 | done |
|
|
576 | ${exe} "${tmp}" |
| 546 | echo ${tmp} |
577 | echo "${tmp}" |
|
|
578 | else |
|
|
579 | [ "${exe}" == "touch" ] \ |
|
|
580 | && exe="-p" \ |
|
|
581 | || exe="-d" |
|
|
582 | mktemp ${exe} "${topdir}" |
| 547 | fi |
583 | fi |
| 548 | } |
584 | } |
| 549 | |
585 | |
| 550 | # Small wrapper for getent (Linux) and nidump (Mac OS X) |
586 | # Small wrapper for getent (Linux), nidump (Mac OS X), |
| 551 | # used in enewuser()/enewgroup() |
587 | # and pw (FreeBSD) used in enewuser()/enewgroup() |
| 552 | # Joe Jezak <josejx@gmail.com> and usata@gentoo.org |
588 | # Joe Jezak <josejx@gmail.com> and usata@gentoo.org |
|
|
589 | # FBSD stuff: Aaron Walker <ka0ttic@gentoo.org> |
| 553 | # |
590 | # |
| 554 | # egetent(database, key) |
591 | # egetent(database, key) |
| 555 | egetent() { |
592 | egetent() { |
| 556 | if [ "${ARCH}" == "macos" ] ; then |
593 | if useq ppc-macos ; then |
| 557 | case "$2" in |
594 | case "$2" in |
| 558 | *[!0-9]*) # Non numeric |
595 | *[!0-9]*) # Non numeric |
| 559 | nidump $1 . | awk -F":" "{ if (\$1 ~ /^$2$/) {print \$0;exit;} }" |
596 | nidump $1 . | awk -F":" "{ if (\$1 ~ /^$2$/) {print \$0;exit;} }" |
| 560 | ;; |
597 | ;; |
| 561 | *) # Numeric |
598 | *) # Numeric |
| 562 | nidump $1 . | awk -F":" "{ if (\$3 == $2) {print \$0;exit;} }" |
599 | nidump $1 . | awk -F":" "{ if (\$3 == $2) {print \$0;exit;} }" |
| 563 | ;; |
600 | ;; |
| 564 | esac |
601 | esac |
|
|
602 | elif useq x86-fbsd ; then |
|
|
603 | local action |
|
|
604 | if [ "$1" == "passwd" ] |
|
|
605 | then |
|
|
606 | action="user" |
| 565 | else |
607 | else |
|
|
608 | action="group" |
|
|
609 | fi |
|
|
610 | pw show "${action}" "$2" -q |
|
|
611 | else |
|
|
612 | which nscd >& /dev/null && nscd -i "$1" |
| 566 | getent $1 $2 |
613 | getent "$1" "$2" |
| 567 | fi |
614 | fi |
| 568 | } |
615 | } |
| 569 | |
616 | |
| 570 | # Simplify/standardize adding users to the system |
617 | # Simplify/standardize adding users to the system |
| 571 | # vapier@gentoo.org |
618 | # vapier@gentoo.org |
| … | |
… | |
| 617 | euid="next" |
664 | euid="next" |
| 618 | fi |
665 | fi |
| 619 | if [ "${euid}" == "next" ] |
666 | if [ "${euid}" == "next" ] |
| 620 | then |
667 | then |
| 621 | local pwrange |
668 | local pwrange |
| 622 | if [ "${ARCH}" == "macos" ] ; then |
669 | if [ "${USERLAND}" == "BSD" ] ; then |
| 623 | pwrange="`jot 898 101`" |
670 | pwrange="`jot 898 101`" |
| 624 | else |
671 | else |
| 625 | pwrange="`seq 101 999`" |
672 | pwrange="`seq 101 999`" |
| 626 | fi |
673 | fi |
| 627 | for euid in ${pwrange} ; do |
674 | for euid in ${pwrange} ; do |
| … | |
… | |
| 639 | then |
686 | then |
| 640 | eerror "A shell was specified but it does not exist !" |
687 | eerror "A shell was specified but it does not exist !" |
| 641 | die "${eshell} does not exist" |
688 | die "${eshell} does not exist" |
| 642 | fi |
689 | fi |
| 643 | else |
690 | else |
|
|
691 | if [ "${USERLAND}" == "BSD" ] |
|
|
692 | then |
|
|
693 | eshell="/usr/bin/false" |
|
|
694 | else |
| 644 | eshell="/bin/false" |
695 | eshell="/bin/false" |
|
|
696 | fi |
| 645 | fi |
697 | fi |
| 646 | einfo " - Shell: ${eshell}" |
698 | einfo " - Shell: ${eshell}" |
| 647 | opts="${opts} -s ${eshell}" |
699 | opts="${opts} -s ${eshell}" |
| 648 | |
700 | |
| 649 | # handle homedir |
701 | # handle homedir |
| … | |
… | |
| 658 | # handle groups |
710 | # handle groups |
| 659 | local egroups="$1"; shift |
711 | local egroups="$1"; shift |
| 660 | if [ ! -z "${egroups}" ] |
712 | if [ ! -z "${egroups}" ] |
| 661 | then |
713 | then |
| 662 | local oldifs="${IFS}" |
714 | local oldifs="${IFS}" |
|
|
715 | local defgroup="" exgroups="" |
|
|
716 | |
| 663 | export IFS="," |
717 | export IFS="," |
| 664 | for g in ${egroups} |
718 | for g in ${egroups} |
| 665 | do |
719 | do |
|
|
720 | export IFS="${oldifs}" |
| 666 | if [ -z "`egetent group \"${g}\"`" ] |
721 | if [ -z "`egetent group \"${g}\"`" ] |
| 667 | then |
722 | then |
| 668 | eerror "You must add group ${g} to the system first" |
723 | eerror "You must add group ${g} to the system first" |
| 669 | die "${g} is not a valid GID" |
724 | die "${g} is not a valid GID" |
| 670 | fi |
725 | fi |
|
|
726 | if [ -z "${defgroup}" ] |
|
|
727 | then |
|
|
728 | defgroup="${g}" |
|
|
729 | else |
|
|
730 | exgroups="${exgroups},${g}" |
|
|
731 | fi |
|
|
732 | export IFS="," |
| 671 | done |
733 | done |
| 672 | export IFS="${oldifs}" |
734 | export IFS="${oldifs}" |
|
|
735 | |
| 673 | opts="${opts} -g ${egroups}" |
736 | opts="${opts} -g ${defgroup}" |
|
|
737 | if [ ! -z "${exgroups}" ] |
|
|
738 | then |
|
|
739 | opts="${opts} -G ${exgroups:1}" |
|
|
740 | fi |
| 674 | else |
741 | else |
| 675 | egroups="(none)" |
742 | egroups="(none)" |
| 676 | fi |
743 | fi |
| 677 | einfo " - Groups: ${egroups}" |
744 | einfo " - Groups: ${egroups}" |
| 678 | |
745 | |
| 679 | # handle extra and add the user |
746 | # handle extra and add the user |
| 680 | local eextra="$@" |
747 | local eextra="$@" |
| 681 | local oldsandbox="${SANDBOX_ON}" |
748 | local oldsandbox="${SANDBOX_ON}" |
| 682 | export SANDBOX_ON="0" |
749 | export SANDBOX_ON="0" |
| 683 | if [ "${ARCH}" == "macos" ]; |
750 | if useq ppc-macos |
| 684 | then |
751 | then |
| 685 | ### Make the user |
752 | ### Make the user |
| 686 | if [ -z "${eextra}" ] |
753 | if [ -z "${eextra}" ] |
| 687 | then |
754 | then |
| 688 | dscl . create /users/${euser} uid ${euid} |
755 | dscl . create /users/${euser} uid ${euid} |
| 689 | dscl . create /users/${euser} shell ${eshell} |
756 | dscl . create /users/${euser} shell ${eshell} |
| 690 | dscl . create /users/${euser} home ${ehome} |
757 | dscl . create /users/${euser} home ${ehome} |
| 691 | dscl . create /users/${euser} realname "added by portage for ${PN}" |
758 | dscl . create /users/${euser} realname "added by portage for ${PN}" |
| 692 | ### Add the user to the groups specified |
759 | ### Add the user to the groups specified |
|
|
760 | local oldifs="${IFS}" |
|
|
761 | export IFS="," |
| 693 | for g in ${egroups} |
762 | for g in ${egroups} |
| 694 | do |
763 | do |
| 695 | dscl . merge /groups/${g} users ${euser} |
764 | dscl . merge /groups/${g} users ${euser} |
| 696 | done |
765 | done |
|
|
766 | export IFS="${oldifs}" |
| 697 | else |
767 | else |
| 698 | einfo "Extra options are not supported on macos yet" |
768 | einfo "Extra options are not supported on macos yet" |
| 699 | einfo "Please report the ebuild along with the info below" |
769 | einfo "Please report the ebuild along with the info below" |
| 700 | einfo "eextra: ${eextra}" |
770 | einfo "eextra: ${eextra}" |
| 701 | die "Required function missing" |
771 | die "Required function missing" |
|
|
772 | fi |
|
|
773 | elif use x86-fbsd ; then |
|
|
774 | if [ -z "${eextra}" ] |
|
|
775 | then |
|
|
776 | pw useradd ${euser} ${opts} \ |
|
|
777 | -c "added by portage for ${PN}" \ |
|
|
778 | die "enewuser failed" |
|
|
779 | else |
|
|
780 | einfo " - Extra: ${eextra}" |
|
|
781 | pw useradd ${euser} ${opts} \ |
|
|
782 | -c ${eextra} || die "enewuser failed" |
| 702 | fi |
783 | fi |
| 703 | else |
784 | else |
| 704 | if [ -z "${eextra}" ] |
785 | if [ -z "${eextra}" ] |
| 705 | then |
786 | then |
| 706 | useradd ${opts} ${euser} \ |
787 | useradd ${opts} ${euser} \ |
| … | |
… | |
| 757 | then |
838 | then |
| 758 | if [ "${egid}" -gt 0 ] |
839 | if [ "${egid}" -gt 0 ] |
| 759 | then |
840 | then |
| 760 | if [ -z "`egetent group ${egid}`" ] |
841 | if [ -z "`egetent group ${egid}`" ] |
| 761 | then |
842 | then |
| 762 | if [ "${ARCH}" == "macos" ] ; then |
843 | if useq ppc-macos ; then |
| 763 | opts="${opts} ${egid}" |
844 | opts="${opts} ${egid}" |
| 764 | else |
845 | else |
| 765 | opts="${opts} -g ${egid}" |
846 | opts="${opts} -g ${egid}" |
| 766 | fi |
847 | fi |
| 767 | else |
848 | else |
| … | |
… | |
| 781 | opts="${opts} ${eextra}" |
862 | opts="${opts} ${eextra}" |
| 782 | |
863 | |
| 783 | # add the group |
864 | # add the group |
| 784 | local oldsandbox="${SANDBOX_ON}" |
865 | local oldsandbox="${SANDBOX_ON}" |
| 785 | export SANDBOX_ON="0" |
866 | export SANDBOX_ON="0" |
| 786 | if [ "${ARCH}" == "macos" ]; |
867 | if useq ppc-macos ; then |
| 787 | then |
|
|
| 788 | if [ ! -z "${eextra}" ]; |
868 | if [ ! -z "${eextra}" ]; |
| 789 | then |
869 | then |
| 790 | einfo "Extra options are not supported on macos yet" |
870 | einfo "Extra options are not supported on macos yet" |
| 791 | einfo "Please report the ebuild along with the info below" |
871 | einfo "Please report the ebuild along with the info below" |
| 792 | einfo "eextra: ${eextra}" |
872 | einfo "eextra: ${eextra}" |
| 793 | die "Required function missing" |
873 | die "Required function missing" |
| 794 | fi |
874 | fi |
| 795 | |
875 | |
| 796 | # If we need the next available |
876 | # If we need the next available |
| 797 | case ${egid} in |
877 | case ${egid} in |
| 798 | *[!0-9]*) # Non numeric |
878 | *[!0-9]*) # Non numeric |
| 799 | for egid in `jot 898 101`; do |
879 | for egid in `jot 898 101`; do |
| 800 | [ -z "`egetent group ${egid}`" ] && break |
880 | [ -z "`egetent group ${egid}`" ] && break |
| 801 | done |
881 | done |
| 802 | esac |
882 | esac |
| 803 | dscl . create /groups/${egroup} gid ${egid} |
883 | dscl . create /groups/${egroup} gid ${egid} |
| 804 | dscl . create /groups/${egroup} passwd '*' |
884 | dscl . create /groups/${egroup} passwd '*' |
|
|
885 | elif use x86-fbsd ; then |
|
|
886 | case ${egid} in |
|
|
887 | *[!0-9]*) # Non numeric |
|
|
888 | for egid in `jot 898 101`; do |
|
|
889 | [ -z "`egetent group ${egid}`" ] && break |
|
|
890 | done |
|
|
891 | esac |
|
|
892 | pw groupadd ${egroup} -g ${egid} || die "enewgroup failed" |
| 805 | else |
893 | else |
| 806 | groupadd ${opts} ${egroup} || die "enewgroup failed" |
894 | groupadd ${opts} ${egroup} || die "enewgroup failed" |
| 807 | fi |
895 | fi |
| 808 | export SANDBOX_ON="${oldsandbox}" |
896 | export SANDBOX_ON="${oldsandbox}" |
| 809 | } |
897 | } |
| 810 | |
898 | |
| 811 | # Simple script to replace 'dos2unix' binaries |
899 | # Simple script to replace 'dos2unix' binaries |
| 812 | # vapier@gentoo.org |
900 | # vapier@gentoo.org |
| 813 | # |
901 | # |
| 814 | # edos2unix(file, <more files>...) |
902 | # edos2unix(file, <more files> ...) |
| 815 | edos2unix() { |
903 | edos2unix() { |
| 816 | for f in "$@" |
904 | for f in "$@" |
| 817 | do |
905 | do |
| 818 | cp "${f}" ${T}/edos2unix |
906 | cp "${f}" ${T}/edos2unix |
| 819 | sed 's/\r$//' ${T}/edos2unix > "${f}" |
907 | sed 's/\r$//' ${T}/edos2unix > "${f}" |
| … | |
… | |
| 821 | } |
909 | } |
| 822 | |
910 | |
| 823 | # Make a desktop file ! |
911 | # Make a desktop file ! |
| 824 | # Great for making those icons in kde/gnome startmenu ! |
912 | # Great for making those icons in kde/gnome startmenu ! |
| 825 | # Amaze your friends ! Get the women ! Join today ! |
913 | # Amaze your friends ! Get the women ! Join today ! |
| 826 | # gnome2 /usr/share/applications |
|
|
| 827 | # gnome1 /usr/share/gnome/apps/ |
|
|
| 828 | # KDE ${KDEDIR}/share/applnk /usr/share/applnk |
|
|
| 829 | # |
914 | # |
| 830 | # make_desktop_entry(<binary>, [name], [icon], [type], [path]) |
915 | # make_desktop_entry(<binary>, [name], [icon], [type], [path]) |
| 831 | # |
916 | # |
| 832 | # binary: what binary does the app run with ? |
917 | # binary: what binary does the app run with ? |
| 833 | # name: the name that will show up in the menu |
918 | # name: the name that will show up in the menu |
| 834 | # icon: give your little like a pretty little icon ... |
919 | # icon: give your little like a pretty little icon ... |
| 835 | # this can be relative (to /usr/share/pixmaps) or |
920 | # this can be relative (to /usr/share/pixmaps) or |
| 836 | # a full path to an icon |
921 | # a full path to an icon |
| 837 | # type: what kind of application is this ? for categories: |
922 | # type: what kind of application is this ? for categories: |
| 838 | # http://www.freedesktop.org/standards/menu-spec/ |
923 | # http://www.freedesktop.org/standards/menu-spec/ |
| 839 | # path: if your app needs to startup in a specific dir |
924 | # path: if your app needs to startup in a specific dir |
| 840 | make_desktop_entry() { |
925 | make_desktop_entry() { |
| 841 | [ -z "$1" ] && eerror "You must specify the executable" && return 1 |
926 | [ -z "$1" ] && eerror "make_desktop_entry: You must specify the executable" && return 1 |
| 842 | |
927 | |
| 843 | local exec="${1}" |
928 | local exec="${1}" |
| 844 | local name="${2:-${PN}}" |
929 | local name="${2:-${PN}}" |
| 845 | local icon="${3:-${PN}.png}" |
930 | local icon="${3:-${PN}.png}" |
| 846 | local type="${4}" |
931 | local type="${4}" |
| 847 | local subdir="${6}" |
932 | local subdir="${6}" |
| 848 | local path="${5:-${GAMES_PREFIX}}" |
933 | local path="${5:-${GAMES_BINDIR}}" |
| 849 | if [ -z "${type}" ] |
934 | if [ -z "${type}" ] |
| 850 | then |
935 | then |
| 851 | case ${CATEGORY} in |
936 | case ${CATEGORY} in |
| 852 | "app-emulation") |
937 | "app-emulation") |
| 853 | type=Emulator |
938 | type=Emulator |
| … | |
… | |
| 878 | Exec=${exec} |
963 | Exec=${exec} |
| 879 | Path=${path} |
964 | Path=${path} |
| 880 | Icon=${icon} |
965 | Icon=${icon} |
| 881 | Categories=Application;${type};" > "${desktop}" |
966 | Categories=Application;${type};" > "${desktop}" |
| 882 | |
967 | |
| 883 | if [ -d "/usr/share/applications" ] |
|
|
| 884 | then |
|
|
| 885 | insinto /usr/share/applications |
968 | insinto /usr/share/applications |
| 886 | doins "${desktop}" |
969 | doins "${desktop}" |
| 887 | fi |
|
|
| 888 | |
|
|
| 889 | #if [ -d "/usr/share/gnome/apps" ] |
|
|
| 890 | #then |
|
|
| 891 | # insinto /usr/share/gnome/apps/Games |
|
|
| 892 | # doins ${desktop} |
|
|
| 893 | #fi |
|
|
| 894 | |
|
|
| 895 | #if [ ! -z "`ls /usr/kde/* 2>/dev/null`" ] |
|
|
| 896 | #then |
|
|
| 897 | # for ver in /usr/kde/* |
|
|
| 898 | # do |
|
|
| 899 | # insinto ${ver}/share/applnk/Games |
|
|
| 900 | # doins ${desktop} |
|
|
| 901 | # done |
|
|
| 902 | #fi |
|
|
| 903 | |
|
|
| 904 | if [ -d "/usr/share/applnk" ] |
|
|
| 905 | then |
|
|
| 906 | insinto /usr/share/applnk/${subdir} |
|
|
| 907 | doins "${desktop}" |
|
|
| 908 | fi |
|
|
| 909 | |
970 | |
| 910 | return 0 |
971 | return 0 |
| 911 | } |
972 | } |
| 912 | |
973 | |
| 913 | # for internal use only (unpack_pdv and unpack_makeself) |
974 | # for internal use only (unpack_pdv and unpack_makeself) |
| … | |
… | |
| 962 | echo ">>> Unpacking ${shrtsrc} to ${PWD}" |
1023 | echo ">>> Unpacking ${shrtsrc} to ${PWD}" |
| 963 | local metaskip=`tail -c ${sizeoff_t} ${src} | hexdump -e \"%i\"` |
1024 | local metaskip=`tail -c ${sizeoff_t} ${src} | hexdump -e \"%i\"` |
| 964 | 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\"` |
| 965 | |
1026 | |
| 966 | # grab metadata for debug reasons |
1027 | # grab metadata for debug reasons |
| 967 | local metafile="`mymktemp ${T}`" |
1028 | local metafile="$(emktemp)" |
| 968 | tail -c +$((${metaskip}+1)) ${src} > ${metafile} |
1029 | tail -c +$((${metaskip}+1)) ${src} > ${metafile} |
| 969 | |
1030 | |
| 970 | # rip out the final file name from the metadata |
1031 | # rip out the final file name from the metadata |
| 971 | local datafile="`tail -c +$((${metaskip}+1)) ${src} | strings | head -n 1`" |
1032 | local datafile="`tail -c +$((${metaskip}+1)) ${src} | strings | head -n 1`" |
| 972 | datafile="`basename ${datafile}`" |
1033 | datafile="`basename ${datafile}`" |
| 973 | |
1034 | |
| 974 | # now lets uncompress/untar the file if need be |
1035 | # now lets uncompress/untar the file if need be |
| 975 | local tmpfile="`mymktemp ${T}`" |
1036 | local tmpfile="$(emktemp)" |
| 976 | 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} |
| 977 | |
1038 | |
| 978 | local iscompressed="`file -b ${tmpfile}`" |
1039 | local iscompressed="`file -b ${tmpfile}`" |
| 979 | if [ "${iscompressed:0:8}" == "compress" ] ; then |
1040 | if [ "${iscompressed:0:8}" == "compress" ] ; then |
| 980 | iscompressed=1 |
1041 | iscompressed=1 |
| … | |
… | |
| 1025 | # Unpack those pesky makeself generated files ... |
1086 | # Unpack those pesky makeself generated files ... |
| 1026 | # They're shell scripts with the binary package tagged onto |
1087 | # They're shell scripts with the binary package tagged onto |
| 1027 | # the end of the archive. Loki utilized the format as does |
1088 | # the end of the archive. Loki utilized the format as does |
| 1028 | # many other game companies. |
1089 | # many other game companies. |
| 1029 | # |
1090 | # |
| 1030 | # Usage: unpack_makeself [file to unpack] [offset] |
1091 | # Usage: unpack_makeself [file to unpack] [offset] [tail|dd] |
| 1031 | # - If the file is not specified then unpack will utilize ${A}. |
1092 | # - If the file is not specified then unpack will utilize ${A}. |
| 1032 | # - If the offset is not specified then we will attempt to extract |
1093 | # - If the offset is not specified then we will attempt to extract |
| 1033 | # the proper offset from the script itself. |
1094 | # the proper offset from the script itself. |
| 1034 | unpack_makeself() { |
1095 | unpack_makeself() { |
| 1035 | local src="`find_unpackable_file $1`" |
1096 | local src="$(find_unpackable_file "$1")" |
| 1036 | local skip="$2" |
1097 | local skip="$2" |
|
|
1098 | local exe="$3" |
| 1037 | |
1099 | |
| 1038 | local shrtsrc="`basename ${src}`" |
1100 | local shrtsrc="$(basename "${src}")" |
| 1039 | echo ">>> Unpacking ${shrtsrc} to ${PWD}" |
1101 | echo ">>> Unpacking ${shrtsrc} to ${PWD}" |
| 1040 | if [ -z "${skip}" ] |
1102 | if [ -z "${skip}" ] |
| 1041 | then |
1103 | then |
| 1042 | local ver="`grep -a '#.*Makeself' ${src} | awk '{print $NF}'`" |
1104 | local ver="`grep -a '#.*Makeself' ${src} | awk '{print $NF}'`" |
| 1043 | local skip=0 |
1105 | local skip=0 |
|
|
1106 | exe=tail |
| 1044 | case ${ver} in |
1107 | case ${ver} in |
| 1045 | 1.5.*) # tested 1.5.{3,4,5} ... guessing 1.5.x series is same |
1108 | 1.5.*) # tested 1.5.{3,4,5} ... guessing 1.5.x series is same |
| 1046 | skip=`grep -a ^skip= ${src} | cut -d= -f2` |
1109 | skip=$(grep -a ^skip= "${src}" | cut -d= -f2) |
| 1047 | ;; |
1110 | ;; |
| 1048 | 2.0|2.0.1) |
1111 | 2.0|2.0.1) |
| 1049 | skip=`grep -a ^$'\t'tail ${src} | awk '{print $2}' | cut -b2-` |
1112 | skip=$(grep -a ^$'\t'tail "${src}" | awk '{print $2}' | cut -b2-) |
| 1050 | ;; |
1113 | ;; |
| 1051 | 2.1.1) |
1114 | 2.1.1) |
| 1052 | skip=`grep -a ^offset= ${src} | awk '{print $2}' | cut -b2-` |
1115 | skip=$(grep -a ^offset= "${src}" | awk '{print $2}' | cut -b2-) |
| 1053 | let skip="skip + 1" |
1116 | let skip="skip + 1" |
| 1054 | ;; |
1117 | ;; |
| 1055 | 2.1.2) |
1118 | 2.1.2) |
| 1056 | skip=`grep -a ^offset= ${src} | awk '{print $3}' | head -n 1` |
1119 | skip=$(grep -a ^offset= "${src}" | awk '{print $3}' | head -n 1) |
| 1057 | let skip="skip + 1" |
1120 | let skip="skip + 1" |
| 1058 | ;; |
1121 | ;; |
| 1059 | 2.1.3) |
1122 | 2.1.3) |
| 1060 | skip=`grep -a ^offset= ${src} | awk '{print $3}'` |
1123 | skip=`grep -a ^offset= "${src}" | awk '{print $3}'` |
| 1061 | let skip="skip + 1" |
1124 | let skip="skip + 1" |
|
|
1125 | ;; |
|
|
1126 | 2.1.4) |
|
|
1127 | skip=$(grep -a offset=.*head.*wc "${src}" | awk '{print $3}' | head -n 1) |
|
|
1128 | skip=$(head -n ${skip} "${src}" | wc -c) |
|
|
1129 | exe="dd" |
| 1062 | ;; |
1130 | ;; |
| 1063 | *) |
1131 | *) |
| 1064 | eerror "I'm sorry, but I was unable to support the Makeself file." |
1132 | eerror "I'm sorry, but I was unable to support the Makeself file." |
| 1065 | eerror "The version I detected was '${ver}'." |
1133 | eerror "The version I detected was '${ver}'." |
| 1066 | eerror "Please file a bug about the file ${shrtsrc} at" |
1134 | eerror "Please file a bug about the file ${shrtsrc} at" |
| … | |
… | |
| 1068 | die "makeself version '${ver}' not supported" |
1136 | die "makeself version '${ver}' not supported" |
| 1069 | ;; |
1137 | ;; |
| 1070 | esac |
1138 | esac |
| 1071 | debug-print "Detected Makeself version ${ver} ... using ${skip} as offset" |
1139 | debug-print "Detected Makeself version ${ver} ... using ${skip} as offset" |
| 1072 | fi |
1140 | fi |
|
|
1141 | case ${exe} in |
|
|
1142 | tail) exe="tail -n +${skip} '${src}'";; |
|
|
1143 | dd) exe="dd ibs=${skip} skip=1 obs=1024 conv=sync if='${src}'";; |
|
|
1144 | *) die "makeself cant handle exe '${exe}'" |
|
|
1145 | esac |
| 1073 | |
1146 | |
| 1074 | # 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 |
| 1075 | local tmpfile="`mymktemp ${T}`" |
1148 | local tmpfile="$(emktemp)" |
| 1076 | tail -n +${skip} ${src} 2>/dev/null | head -c 512 > ${tmpfile} |
1149 | eval ${exe} 2>/dev/null | head -c 512 > "${tmpfile}" |
| 1077 | local filetype="`file -b ${tmpfile}`" |
1150 | local filetype="$(file -b "${tmpfile}")" |
| 1078 | case ${filetype} in |
1151 | case ${filetype} in |
| 1079 | *tar\ archive) |
1152 | *tar\ archive) |
| 1080 | tail -n +${skip} ${src} | tar --no-same-owner -xf - |
1153 | eval ${exe} | tar --no-same-owner -xf - |
| 1081 | ;; |
1154 | ;; |
| 1082 | bzip2*) |
1155 | bzip2*) |
| 1083 | tail -n +${skip} ${src} | bzip2 -dc | tar --no-same-owner -xf - |
1156 | eval ${exe} | bzip2 -dc | tar --no-same-owner -xf - |
| 1084 | ;; |
1157 | ;; |
| 1085 | gzip*) |
1158 | gzip*) |
| 1086 | tail -n +${skip} ${src} | tar --no-same-owner -xzf - |
1159 | eval ${exe} | tar --no-same-owner -xzf - |
| 1087 | ;; |
1160 | ;; |
| 1088 | compress*) |
1161 | compress*) |
| 1089 | tail -n +${skip} ${src} | gunzip | tar --no-same-owner -xf - |
1162 | eval ${exe} | gunzip | tar --no-same-owner -xf - |
| 1090 | ;; |
1163 | ;; |
| 1091 | *) |
1164 | *) |
| 1092 | eerror "Unknown filetype \"${filetype}\" ?" |
1165 | eerror "Unknown filetype \"${filetype}\" ?" |
| 1093 | false |
1166 | false |
| 1094 | ;; |
1167 | ;; |
| … | |
… | |
| 1116 | [ ! -f "${lic}" ] && die "Could not find requested license ${src}" |
1189 | [ ! -f "${lic}" ] && die "Could not find requested license ${src}" |
| 1117 | local l="`basename ${lic}`" |
1190 | local l="`basename ${lic}`" |
| 1118 | |
1191 | |
| 1119 | # here is where we check for the licenses the user already |
1192 | # here is where we check for the licenses the user already |
| 1120 | # accepted ... if we don't find a match, we make the user accept |
1193 | # accepted ... if we don't find a match, we make the user accept |
|
|
1194 | local shopts=$- |
| 1121 | local alic |
1195 | local alic |
|
|
1196 | set -o noglob #so that bash doesn't expand "*" |
| 1122 | for alic in "${ACCEPT_LICENSE}" ; do |
1197 | for alic in ${ACCEPT_LICENSE} ; do |
| 1123 | [ "${alic}" == "*" ] && return 0 |
1198 | if [[ ${alic} == * || ${alic} == ${l} ]]; then |
| 1124 | [ "${alic}" == "${l}" ] && return 0 |
1199 | set +o noglob; set -${shopts} #reset old shell opts |
|
|
1200 | return 0 |
|
|
1201 | fi |
| 1125 | done |
1202 | done |
|
|
1203 | set +o noglob; set -$shopts #reset old shell opts |
| 1126 | |
1204 | |
| 1127 | local licmsg="`mymktemp ${T}`" |
1205 | local licmsg="$(emktemp)" |
| 1128 | cat << EOF > ${licmsg} |
1206 | cat << EOF > ${licmsg} |
| 1129 | ********************************************************** |
1207 | ********************************************************** |
| 1130 | The following license outlines the terms of use of this |
1208 | The following license outlines the terms of use of this |
| 1131 | package. You MUST accept this license for installation to |
1209 | package. You MUST accept this license for installation to |
| 1132 | continue. When you are done viewing, hit 'q'. If you |
1210 | continue. When you are done viewing, hit 'q'. If you |
| … | |
… | |
| 1318 | read |
1396 | read |
| 1319 | fi |
1397 | fi |
| 1320 | done |
1398 | done |
| 1321 | } |
1399 | } |
| 1322 | |
1400 | |
| 1323 | # Make sure that LINGUAS only contains languages that |
1401 | # Make sure that LINGUAS only contains languages that |
| 1324 | # a package can support |
1402 | # a package can support |
| 1325 | # |
1403 | # |
| 1326 | # usage: strip-linguas <allow LINGUAS> |
1404 | # usage: strip-linguas <allow LINGUAS> |
| 1327 | # strip-linguas -i <directories of .po files> |
1405 | # strip-linguas -i <directories of .po files> |
| 1328 | # strip-linguas -u <directories of .po files> |
1406 | # strip-linguas -u <directories of .po files> |
| 1329 | # |
1407 | # |
| 1330 | # The first form allows you to specify a list of LINGUAS. |
1408 | # The first form allows you to specify a list of LINGUAS. |
| 1331 | # The -i builds a list of po files found in all the |
1409 | # The -i builds a list of po files found in all the |
| 1332 | # directories and uses the intersection of the lists. |
1410 | # directories and uses the intersection of the lists. |
| 1333 | # The -u builds a list of po files found in all the |
1411 | # The -u builds a list of po files found in all the |
| 1334 | # directories and uses the union of the lists. |
1412 | # directories and uses the union of the lists. |
| 1335 | strip-linguas() { |
1413 | strip-linguas() { |
| 1336 | local ls newls |
1414 | local ls newls |
| 1337 | if [ "$1" == "-i" ] || [ "$1" == "-u" ] ; then |
1415 | if [ "$1" == "-i" ] || [ "$1" == "-u" ] ; then |
| 1338 | local op="$1"; shift |
1416 | local op="$1"; shift |
| … | |
… | |
| 1360 | |
1438 | |
| 1361 | ls=" ${ls} " |
1439 | ls=" ${ls} " |
| 1362 | newls="" |
1440 | newls="" |
| 1363 | for f in ${LINGUAS} ; do |
1441 | for f in ${LINGUAS} ; do |
| 1364 | if [ "${ls/ ${f} /}" != "${ls}" ] ; then |
1442 | if [ "${ls/ ${f} /}" != "${ls}" ] ; then |
| 1365 | nl="${newls} ${f}" |
1443 | newls="${newls} ${f}" |
| 1366 | else |
1444 | else |
| 1367 | ewarn "Sorry, but ${PN} does not support the ${f} LINGUA" |
1445 | ewarn "Sorry, but ${PN} does not support the ${f} LINGUA" |
| 1368 | fi |
1446 | fi |
| 1369 | done |
1447 | done |
| 1370 | if [ -z "${newls}" ] ; then |
1448 | if [ -z "${newls}" ] ; then |
| 1371 | unset LINGUAS |
1449 | unset LINGUAS |
| 1372 | else |
1450 | else |
| 1373 | export LINGUAS="${newls}" |
1451 | export LINGUAS="${newls}" |
| 1374 | fi |
1452 | fi |
| 1375 | } |
1453 | } |
|
|
1454 | |
|
|
1455 | # moved from kernel.eclass since they are generally useful outside of |
|
|
1456 | # kernel.eclass -iggy (20041002) |
|
|
1457 | |
|
|
1458 | # the following functions are useful in kernel module ebuilds, etc. |
|
|
1459 | # for an example see ivtv or drbd ebuilds |
|
|
1460 | |
|
|
1461 | # set's ARCH to match what the kernel expects |
|
|
1462 | set_arch_to_kernel() { |
|
|
1463 | export EUTILS_ECLASS_PORTAGE_ARCH="${ARCH}" |
|
|
1464 | case ${ARCH} in |
|
|
1465 | x86) export ARCH="i386";; |
|
|
1466 | amd64) export ARCH="x86_64";; |
|
|
1467 | hppa) export ARCH="parisc";; |
|
|
1468 | mips) export ARCH="mips";; |
|
|
1469 | *) export ARCH="${ARCH}";; |
|
|
1470 | esac |
|
|
1471 | } |
|
|
1472 | |
|
|
1473 | # set's ARCH back to what portage expects |
|
|
1474 | set_arch_to_portage() { |
|
|
1475 | export ARCH="${EUTILS_ECLASS_PORTAGE_ARCH}" |
|
|
1476 | } |
|
|
1477 | |
|
|
1478 | # Jeremy Huddleston <eradicator@gentoo.org>: |
|
|
1479 | # preserve_old_lib /path/to/libblah.so.0 |
|
|
1480 | # preserve_old_lib_notify /path/to/libblah.so.0 |
|
|
1481 | # |
|
|
1482 | # These functions are useful when a lib in your package changes --soname. Such |
|
|
1483 | # an example might be from libogg.so.0 to libogg.so.1. Removing libogg.so.0 |
|
|
1484 | # would break packages that link against it. Most people get around this |
|
|
1485 | # by using the portage SLOT mechanism, but that is not always a relevant |
|
|
1486 | # solution, so instead you can add the following to your ebuilds: |
|
|
1487 | # |
|
|
1488 | # src_install() { |
|
|
1489 | # ... |
|
|
1490 | # preserve_old_lib /usr/$(get_libdir)/libogg.so.0 |
|
|
1491 | # ... |
|
|
1492 | # } |
|
|
1493 | # |
|
|
1494 | # pkg_postinst() { |
|
|
1495 | # ... |
|
|
1496 | # preserve_old_lib_notify /usr/$(get_libdir)/libogg.so.0 |
|
|
1497 | # ... |
|
|
1498 | # } |
|
|
1499 | |
|
|
1500 | preserve_old_lib() { |
|
|
1501 | LIB=$1 |
|
|
1502 | |
|
|
1503 | if [ -n "${LIB}" -a -f "${ROOT}${LIB}" ]; then |
|
|
1504 | SONAME=`basename ${LIB}` |
|
|
1505 | DIRNAME=`dirname ${LIB}` |
|
|
1506 | |
|
|
1507 | dodir ${DIRNAME} |
|
|
1508 | cp ${ROOT}${LIB} ${D}${DIRNAME} |
|
|
1509 | touch ${D}${LIB} |
|
|
1510 | fi |
|
|
1511 | } |
|
|
1512 | |
|
|
1513 | preserve_old_lib_notify() { |
|
|
1514 | LIB=$1 |
|
|
1515 | |
|
|
1516 | if [ -n "${LIB}" -a -f "${ROOT}${LIB}" ]; then |
|
|
1517 | SONAME=`basename ${LIB}` |
|
|
1518 | |
|
|
1519 | einfo "An old version of an installed library was detected on your system." |
|
|
1520 | einfo "In order to avoid breaking packages that link against is, this older 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:" |
|
|
1523 | einfo " revdep-rebuild --soname ${SONAME}" |
|
|
1524 | einfo |
|
|
1525 | einfo "After doing that, you can safely remove ${LIB}" |
|
|
1526 | einfo "Note: 'emerge gentoolkit' to get revdep-rebuild" |
|
|
1527 | fi |
|
|
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 <DEPEND ATOM> <List of USE flags> |
|
|
1534 | # ex: built_with_use xchat gtk2 |
|
|
1535 | built_with_use() { |
|
|
1536 | local PKG=$(portageq best_version ${ROOT} $1) |
|
|
1537 | local USEFILE="${ROOT}/var/db/pkg/${PKG}/USE" |
|
|
1538 | [[ ! -e ${USEFILE} ]] && return 1 |
|
|
1539 | |
|
|
1540 | local USE_BUILT=$(<${USEFILE}) |
|
|
1541 | |
|
|
1542 | shift |
|
|
1543 | while [ $# -gt 0 ] ; do |
|
|
1544 | has $1 ${USE_BUILT} || return 1 |
|
|
1545 | shift |
|
|
1546 | done |
|
|
1547 | return 0 |
|
|
1548 | } |
|
|
1549 | |
|
|
1550 | # Many configure scripts wrongly bail when a C++ compiler |
|
|
1551 | # could not be detected. #73450 |
|
|
1552 | epunt_cxx() { |
|
|
1553 | local dir=$1 |
|
|
1554 | [[ -z ${dir} ]] && dir=${S} |
|
|
1555 | ebegin "Removing useless C++ checks" |
|
|
1556 | local f |
|
|
1557 | for f in $(find ${dir} -name configure) ; do |
|
|
1558 | patch -p0 "${f}" "${PORTDIR}/eclass/ELT-patches/nocxx/nocxx.patch" > /dev/null |
|
|
1559 | done |
|
|
1560 | eend 0 |
|
|
1561 | } |
|
|
1562 | |
|
|
1563 | # get_abi_var <VAR> [<ABI>] |
|
|
1564 | # returns the value of ${<VAR>_<ABI>} which should be set in make.defaults |
|
|
1565 | # |
|
|
1566 | # This code is for testing purposes only with the sparc64-multilib ${PROFILE_ARCH} |
|
|
1567 | # and getting a more multilib-aware portage layout. It may end up being used, but for now |
|
|
1568 | # it is subject to removal if a better way is worked out. |
|
|
1569 | # |
|
|
1570 | # ex: |
|
|
1571 | # CFLAGS=$(get_abi_var CFLAGS sparc32) # CFLAGS=-m32 |
|
|
1572 | # |
|
|
1573 | # Note that the prefered method is to set CC="$(tc-getCC) $(get_abi_CFLAGS)" |
|
|
1574 | # This will hopefully be added to portage soon... |
|
|
1575 | # |
|
|
1576 | # If <ABI> is not specified, ${ABI} is used. |
|
|
1577 | # If <ABI> is not specified and ${ABI} is not defined, ${DEFAULT_ABI} is used. |
|
|
1578 | # If <ABI> is not specified and ${ABI} and ${DEFAULT_ABI} are not defined, we return an empty string. |
|
|
1579 | # |
|
|
1580 | # Jeremy Huddleston <eradicator@gentoo.org> |
|
|
1581 | get_abi_var() { |
|
|
1582 | local flag=$1 |
|
|
1583 | local abi |
|
|
1584 | if [ $# -gt 1 ]; then |
|
|
1585 | abi=$1 |
|
|
1586 | elif [ -n "${ABI}" ]; then |
|
|
1587 | abi=${ABI} |
|
|
1588 | elif [ -n "${DEFAULT_ABI}" ]; then |
|
|
1589 | abi=${DEFAULT_ABI} |
|
|
1590 | else |
|
|
1591 | return "" |
|
|
1592 | fi |
|
|
1593 | eval echo \${${flag}_${abi}} |
|
|
1594 | } |
|
|
1595 | |
|
|
1596 | get_abi_CFLAGS() { get_abi_var CFLAGS $1; } |
|
|
1597 | get_abi_CXXFLAGS() { get_abi_var CXXFLAGS $1; } |
|
|
1598 | get_abi_ASFLAGS() { get_abi_var ASFLAGS $1; } |
|
|
1599 | get_abi_LIBDIR() { get_abi_var LIBDIR $1; } |
|
|
1600 | |