| 1 | # Copyright 1999-2003 Gentoo Technologies, Inc. |
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.73 2003/12/01 20:13:00 vapier Exp $ |
3 | # $Header: /var/cvsroot/gentoo-x86/eclass/eutils.eclass,v 1.137 2005/01/07 11:21:42 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. |
| … | |
… | |
| 10 | # NB: If you add anything, please comment it! |
10 | # NB: If you add anything, please comment it! |
| 11 | |
11 | |
| 12 | ECLASS=eutils |
12 | ECLASS=eutils |
| 13 | INHERITED="$INHERITED $ECLASS" |
13 | INHERITED="$INHERITED $ECLASS" |
| 14 | |
14 | |
| 15 | newdepend "!bootstrap? ( sys-devel/patch )" |
15 | DEPEND="!bootstrap? ( sys-devel/patch )" |
| 16 | |
16 | |
| 17 | DESCRIPTION="Based on the ${ECLASS} eclass" |
17 | DESCRIPTION="Based on the ${ECLASS} eclass" |
|
|
18 | |
|
|
19 | # Wait for the supplied number of seconds. If no argument is supplied, defaults |
|
|
20 | # to five seconds. If the EPAUSE_IGNORE env var is set, don't wait. If we're not |
|
|
21 | # outputting to a terminal, don't wait. For compatability purposes, the argument |
|
|
22 | # must be an integer greater than zero. |
|
|
23 | # Bug 62950, Ciaran McCreesh <ciaranm@gentoo.org> (05 Sep 2004) |
|
|
24 | epause() { |
|
|
25 | if [ -z "$EPAUSE_IGNORE" ] && [ -t 1 ] ; then |
|
|
26 | sleep ${1:-5} |
|
|
27 | fi |
|
|
28 | } |
|
|
29 | |
|
|
30 | # Beep the specified number of times (defaults to five). If our output |
|
|
31 | # is not a terminal, don't beep. If the EBEEP_IGNORE env var is set, |
|
|
32 | # don't beep. |
|
|
33 | # Bug 62950, Ciaran McCreesh <ciaranm@gentoo.org> (05 Sep 2004) |
|
|
34 | ebeep() { |
|
|
35 | local n |
|
|
36 | if [ -z "$EBEEP_IGNORE" ] && [ -t 1 ] ; then |
|
|
37 | for ((n=1 ; n <= ${1:-5} ; n++)) ; do |
|
|
38 | echo -ne "\a" |
|
|
39 | sleep 0.1 &>/dev/null ; sleep 0,1 &>/dev/null |
|
|
40 | echo -ne "\a" |
|
|
41 | sleep 1 |
|
|
42 | done |
|
|
43 | fi |
|
|
44 | } |
|
|
45 | |
|
|
46 | # This function simply returns the desired lib directory. With portage |
|
|
47 | # 2.0.51, we now have support for installing libraries to lib32/lib64 |
|
|
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 |
|
|
50 | # where lib is named directly with $(get_libdir) if possible. |
|
|
51 | # |
|
|
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 | get_libdir() { |
|
|
60 | LIBDIR_TEST=$(type econf) |
|
|
61 | if [ ! -z "${CONF_LIBDIR_OVERRIDE}" ] ; then |
|
|
62 | # if there is an override, we want to use that... always. |
|
|
63 | CONF_LIBDIR="${CONF_LIBDIR_OVERRIDE}" |
|
|
64 | # We don't need to know the verison of portage. We only need to know |
|
|
65 | # if there is support for CONF_LIBDIR in econf and co. |
|
|
66 | # Danny van Dyk <kugelfang@gentoo.org> 2004/17/09 |
|
|
67 | #elif portageq has_version / '<sys-apps/portage-2.0.51_pre20' ; then |
|
|
68 | # # and if there isnt an override, and we're using a version of |
|
|
69 | # # portage without CONF_LIBDIR support, force the use of lib. dolib |
|
|
70 | # # and friends from portage 2.0.50 wont be too happy otherwise. |
|
|
71 | # CONF_LIBDIR="lib" |
|
|
72 | #fi |
|
|
73 | elif [ -n "$(get_abi_LIBDIR)" ]; then # Using eradicator's LIBDIR_<abi> approach... |
|
|
74 | CONF_LIBDIR="$(get_abi_LIBDIR)" |
|
|
75 | elif [ "${LIBDIR_TEST/CONF_LIBDIR}" == "${LIBDIR_TEST}" ]; then # we don't have CONF_LIBDIR support |
|
|
76 | # will be <portage-2.0.51_pre20 |
|
|
77 | CONF_LIBDIR="lib" |
|
|
78 | fi |
|
|
79 | # and of course, default to lib if CONF_LIBDIR isnt set |
|
|
80 | echo ${CONF_LIBDIR:=lib} |
|
|
81 | unset LIBDIR_TEST |
|
|
82 | } |
|
|
83 | |
|
|
84 | get_multilibdir() { |
|
|
85 | [ -n "$(get_abi_LIBDIR)" ] && die "get_multilibdir called, but it shouldn't be needed with the new multilib approach. Please file a bug at http://bugs.gentoo.org and assign it to eradicator@gentoo.org" |
|
|
86 | echo ${CONF_MULTILIBDIR:=lib32} |
|
|
87 | } |
|
|
88 | |
|
|
89 | # Sometimes you need to override the value returned by get_libdir. A good |
|
|
90 | # example of this is xorg-x11, where lib32 isnt a supported configuration, |
|
|
91 | # and where lib64 -must- be used on amd64 (for applications that need lib |
|
|
92 | # to be 32bit, such as adobe acrobat). Note that this override also bypasses |
|
|
93 | # portage version sanity checking. |
|
|
94 | # get_libdir_override expects one argument, the result get_libdir should |
|
|
95 | # return: |
|
|
96 | # |
|
|
97 | # get_libdir_override lib64 |
|
|
98 | # |
|
|
99 | # Travis Tilley <lv@gentoo.org> (31 Aug 2004) |
|
|
100 | get_libdir_override() { |
|
|
101 | [ -n "$(get_abi_LIBDIR)" ] && die "get_libdir_override called, but it shouldn't be needed with the new multilib approach. Please file a bug at http://bugs.gentoo.org and assign it to eradicator@gentoo.org" |
|
|
102 | CONF_LIBDIR="$1" |
|
|
103 | CONF_LIBDIR_OVERRIDE="$1" |
|
|
104 | } |
| 18 | |
105 | |
| 19 | # This function generate linker scripts in /usr/lib for dynamic |
106 | # This function generate linker scripts in /usr/lib for dynamic |
| 20 | # libs in /lib. This is to fix linking problems when you have |
107 | # libs in /lib. This is to fix linking problems when you have |
| 21 | # the .so in /lib, and the .a in /usr/lib. What happens is that |
108 | # the .so in /lib, and the .a in /usr/lib. What happens is that |
| 22 | # in some cases when linking dynamic, the .a in /usr/lib is used |
109 | # in some cases when linking dynamic, the .a in /usr/lib is used |
| … | |
… | |
| 33 | # to point to the latest version of the library present. |
120 | # to point to the latest version of the library present. |
| 34 | # |
121 | # |
| 35 | # <azarah@gentoo.org> (26 Oct 2002) |
122 | # <azarah@gentoo.org> (26 Oct 2002) |
| 36 | # |
123 | # |
| 37 | gen_usr_ldscript() { |
124 | gen_usr_ldscript() { |
| 38 | |
125 | local libdir="$(get_libdir)" |
| 39 | # Just make sure it exists |
126 | # Just make sure it exists |
| 40 | dodir /usr/lib |
127 | dodir /usr/${libdir} |
| 41 | |
128 | |
| 42 | cat > ${D}/usr/lib/$1 <<"END_LDSCRIPT" |
129 | cat > "${D}/usr/${libdir}/${1}" << END_LDSCRIPT |
| 43 | /* GNU ld script |
130 | /* GNU ld script |
| 44 | Because Gentoo have critical dynamic libraries |
131 | Because Gentoo have critical dynamic libraries |
| 45 | in /lib, and the static versions in /usr/lib, we |
132 | in /lib, and the static versions in /usr/lib, we |
| 46 | need to have a "fake" dynamic lib in /usr/lib, |
133 | need to have a "fake" dynamic lib in /usr/lib, |
| 47 | otherwise we run into linking problems. |
134 | otherwise we run into linking problems. |
| 48 | See bug #4411 on http://bugs.gentoo.org/ for |
135 | See bug #4411 on http://bugs.gentoo.org/ for |
| 49 | more info. */ |
136 | more info. */ |
| 50 | GROUP ( /lib/libxxx ) |
137 | GROUP ( /${libdir}/${1} ) |
| 51 | END_LDSCRIPT |
138 | END_LDSCRIPT |
| 52 | |
139 | fperms a+x "/usr/${libdir}/${1}" |
| 53 | dosed "s:libxxx:$1:" /usr/lib/$1 |
|
|
| 54 | |
|
|
| 55 | return 0 |
|
|
| 56 | } |
140 | } |
| 57 | |
141 | |
| 58 | # Simple function to draw a line consisting of '=' the same length as $* |
142 | # Simple function to draw a line consisting of '=' the same length as $* |
| 59 | # |
143 | # |
| 60 | # <azarah@gentoo.org> (11 Nov 2002) |
144 | # <azarah@gentoo.org> (11 Nov 2002) |
| … | |
… | |
| 144 | local SINGLE_PATCH="no" |
228 | local SINGLE_PATCH="no" |
| 145 | local x="" |
229 | local x="" |
| 146 | |
230 | |
| 147 | if [ "$#" -gt 1 ] |
231 | if [ "$#" -gt 1 ] |
| 148 | then |
232 | then |
| 149 | eerror "Invalid arguments to epatch()" |
233 | local m="" |
| 150 | die "Invalid arguments to epatch()" |
234 | einfo "${#} patches to apply ..." |
|
|
235 | for m in "$@" ; do |
|
|
236 | epatch "${m}" |
|
|
237 | done |
|
|
238 | return 0 |
| 151 | fi |
239 | fi |
| 152 | |
240 | |
| 153 | if [ -n "$1" -a -f "$1" ] |
241 | if [ -n "$1" -a -f "$1" ] |
| 154 | then |
242 | then |
| 155 | SINGLE_PATCH="yes" |
243 | SINGLE_PATCH="yes" |
| … | |
… | |
| 165 | local EPATCH_SOURCE="$1/*" |
253 | local EPATCH_SOURCE="$1/*" |
| 166 | else |
254 | else |
| 167 | local EPATCH_SOURCE="$1/*.${EPATCH_SUFFIX}" |
255 | local EPATCH_SOURCE="$1/*.${EPATCH_SUFFIX}" |
| 168 | fi |
256 | fi |
| 169 | else |
257 | else |
| 170 | if [ ! -d ${EPATCH_SOURCE} ] |
258 | if [ ! -d ${EPATCH_SOURCE} ] || [ -n "$1" ] |
| 171 | then |
259 | then |
| 172 | if [ -n "$1" -a "${EPATCH_SOURCE}" = "${WORKDIR}/patch" ] |
260 | if [ -n "$1" -a "${EPATCH_SOURCE}" = "${WORKDIR}/patch" ] |
| 173 | then |
261 | then |
| 174 | EPATCH_SOURCE="$1" |
262 | EPATCH_SOURCE="$1" |
| 175 | fi |
263 | fi |
| … | |
… | |
| 204 | ;; |
292 | ;; |
| 205 | esac |
293 | esac |
| 206 | |
294 | |
| 207 | if [ "${SINGLE_PATCH}" = "no" ] |
295 | if [ "${SINGLE_PATCH}" = "no" ] |
| 208 | then |
296 | then |
| 209 | einfo "Applying various patches (bugfixes/updates)..." |
297 | einfo "Applying various patches (bugfixes/updates) ..." |
| 210 | fi |
298 | fi |
| 211 | for x in ${EPATCH_SOURCE} |
299 | for x in ${EPATCH_SOURCE} |
| 212 | do |
300 | do |
| 213 | # New ARCH dependant patch naming scheme... |
301 | # New ARCH dependant patch naming scheme ... |
| 214 | # |
302 | # |
| 215 | # ???_arch_foo.patch |
303 | # ???_arch_foo.patch |
| 216 | # |
304 | # |
| 217 | if [ -f ${x} ] && \ |
305 | if [ -f ${x} ] && \ |
| 218 | ([ "${SINGLE_PATCH}" = "yes" -o "${x/_all_}" != "${x}" -o "`eval echo \$\{x/_${ARCH}_\}`" != "${x}" ] || \ |
306 | ([ "${SINGLE_PATCH}" = "yes" -o "${x/_all_}" != "${x}" -o "`eval echo \$\{x/_${ARCH}_\}`" != "${x}" ] || \ |
| … | |
… | |
| 233 | then |
321 | then |
| 234 | if [ -n "${EPATCH_SINGLE_MSG}" ] |
322 | if [ -n "${EPATCH_SINGLE_MSG}" ] |
| 235 | then |
323 | then |
| 236 | einfo "${EPATCH_SINGLE_MSG}" |
324 | einfo "${EPATCH_SINGLE_MSG}" |
| 237 | else |
325 | else |
| 238 | einfo "Applying ${x##*/}..." |
326 | einfo "Applying ${x##*/} ..." |
| 239 | fi |
327 | fi |
| 240 | else |
328 | else |
| 241 | einfo " ${x##*/}..." |
329 | einfo " ${x##*/} ..." |
| 242 | fi |
330 | fi |
| 243 | |
331 | |
| 244 | echo "***** ${x##*/} *****" > ${STDERR_TARGET%/*}/${x##*/}-${STDERR_TARGET##*/} |
332 | echo "***** ${x##*/} *****" > ${STDERR_TARGET%/*}/${x##*/}-${STDERR_TARGET##*/} |
| 245 | echo >> ${STDERR_TARGET%/*}/${x##*/}-${STDERR_TARGET##*/} |
333 | echo >> ${STDERR_TARGET%/*}/${x##*/}-${STDERR_TARGET##*/} |
| 246 | |
334 | |
| … | |
… | |
| 258 | else |
346 | else |
| 259 | PATCH_TARGET="${x}" |
347 | PATCH_TARGET="${x}" |
| 260 | fi |
348 | fi |
| 261 | |
349 | |
| 262 | echo -n "PATCH COMMAND: " >> ${STDERR_TARGET%/*}/${x##*/}-${STDERR_TARGET##*/} |
350 | echo -n "PATCH COMMAND: " >> ${STDERR_TARGET%/*}/${x##*/}-${STDERR_TARGET##*/} |
| 263 | echo "patch ${popts} -p${count} < ${PATCH_TARGET}" >> ${STDERR_TARGET%/*}/${x##*/}-${STDERR_TARGET##*/} |
351 | echo "patch -p${count} ${popts} < ${PATCH_TARGET}" >> ${STDERR_TARGET%/*}/${x##*/}-${STDERR_TARGET##*/} |
| 264 | |
352 | |
| 265 | echo >> ${STDERR_TARGET%/*}/${x##*/}-${STDERR_TARGET##*/} |
353 | echo >> ${STDERR_TARGET%/*}/${x##*/}-${STDERR_TARGET##*/} |
| 266 | draw_line "***** ${x##*/} *****" >> ${STDERR_TARGET%/*}/${x##*/}-${STDERR_TARGET##*/} |
354 | draw_line "***** ${x##*/} *****" >> ${STDERR_TARGET%/*}/${x##*/}-${STDERR_TARGET##*/} |
| 267 | |
355 | |
| 268 | if [ "${PATCH_SUFFIX}" != "patch" ] |
356 | if [ "${PATCH_SUFFIX}" != "patch" ] |
| … | |
… | |
| 275 | count=5 |
363 | count=5 |
| 276 | break |
364 | break |
| 277 | fi |
365 | fi |
| 278 | fi |
366 | fi |
| 279 | |
367 | |
| 280 | if (cat ${PATCH_TARGET} | patch ${popts} --dry-run -f -p${count}) >> ${STDERR_TARGET%/*}/${x##*/}-${STDERR_TARGET##*/} 2>&1 |
368 | if (cat ${PATCH_TARGET} | patch -p${count} ${popts} --dry-run -f) >> ${STDERR_TARGET%/*}/${x##*/}-${STDERR_TARGET##*/} 2>&1 |
| 281 | then |
369 | then |
| 282 | draw_line "***** ${x##*/} *****" > ${STDERR_TARGET%/*}/${x##*/}-${STDERR_TARGET##*/}.real |
370 | draw_line "***** ${x##*/} *****" > ${STDERR_TARGET%/*}/${x##*/}-${STDERR_TARGET##*/}.real |
| 283 | echo >> ${STDERR_TARGET%/*}/${x##*/}-${STDERR_TARGET##*/}.real |
371 | echo >> ${STDERR_TARGET%/*}/${x##*/}-${STDERR_TARGET##*/}.real |
| 284 | echo "ACTUALLY APPLYING ${x##*/}..." >> ${STDERR_TARGET%/*}/${x##*/}-${STDERR_TARGET##*/}.real |
372 | echo "ACTUALLY APPLYING ${x##*/} ..." >> ${STDERR_TARGET%/*}/${x##*/}-${STDERR_TARGET##*/}.real |
| 285 | echo >> ${STDERR_TARGET%/*}/${x##*/}-${STDERR_TARGET##*/}.real |
373 | echo >> ${STDERR_TARGET%/*}/${x##*/}-${STDERR_TARGET##*/}.real |
| 286 | draw_line "***** ${x##*/} *****" >> ${STDERR_TARGET%/*}/${x##*/}-${STDERR_TARGET##*/}.real |
374 | draw_line "***** ${x##*/} *****" >> ${STDERR_TARGET%/*}/${x##*/}-${STDERR_TARGET##*/}.real |
| 287 | |
375 | |
| 288 | cat ${PATCH_TARGET} | patch ${popts} -p${count} >> ${STDERR_TARGET%/*}/${x##*/}-${STDERR_TARGET##*/}.real 2>&1 |
376 | cat ${PATCH_TARGET} | patch -p${count} ${popts} >> ${STDERR_TARGET%/*}/${x##*/}-${STDERR_TARGET##*/}.real 2>&1 |
| 289 | |
377 | |
| 290 | if [ "$?" -ne 0 ] |
378 | if [ "$?" -ne 0 ] |
| 291 | then |
379 | then |
| 292 | cat ${STDERR_TARGET%/*}/${x##*/}-${STDERR_TARGET##*/}.real >> ${STDERR_TARGET%/*}/${x##*/}-${STDERR_TARGET##*/} |
380 | cat ${STDERR_TARGET%/*}/${x##*/}-${STDERR_TARGET##*/}.real >> ${STDERR_TARGET%/*}/${x##*/}-${STDERR_TARGET##*/} |
| 293 | echo |
381 | echo |
| … | |
… | |
| 336 | # This function return true if we are using the NPTL pthreads |
424 | # This function return true if we are using the NPTL pthreads |
| 337 | # implementation. |
425 | # implementation. |
| 338 | # |
426 | # |
| 339 | # <azarah@gentoo.org> (06 March 2003) |
427 | # <azarah@gentoo.org> (06 March 2003) |
| 340 | # |
428 | # |
| 341 | |
|
|
| 342 | have_NPTL() { |
429 | have_NPTL() { |
| 343 | |
|
|
| 344 | cat > ${T}/test-nptl.c <<-"END" |
430 | cat > ${T}/test-nptl.c <<-"END" |
| 345 | #define _XOPEN_SOURCE |
431 | #define _XOPEN_SOURCE |
| 346 | #include <unistd.h> |
432 | #include <unistd.h> |
| 347 | #include <stdio.h> |
433 | #include <stdio.h> |
| 348 | |
434 | |
| … | |
… | |
| 360 | |
446 | |
| 361 | return 1; |
447 | return 1; |
| 362 | } |
448 | } |
| 363 | END |
449 | END |
| 364 | |
450 | |
| 365 | einfon "Checking for _CS_GNU_LIBPTHREAD_VERSION support in glibc ... " |
451 | einfon "Checking for _CS_GNU_LIBPTHREAD_VERSION support in glibc ..." |
| 366 | if gcc -o ${T}/nptl ${T}/test-nptl.c &> /dev/null |
452 | if gcc -o ${T}/nptl ${T}/test-nptl.c &> /dev/null |
| 367 | then |
453 | then |
| 368 | echo "yes" |
454 | echo "yes" |
| 369 | einfon "Checking what PTHREADS implementation we have ... " |
455 | einfon "Checking what PTHREADS implementation we have ..." |
| 370 | if ${T}/nptl |
456 | if ${T}/nptl |
| 371 | then |
457 | then |
| 372 | return 0 |
458 | return 0 |
| 373 | else |
459 | else |
| 374 | return 1 |
460 | return 1 |
| … | |
… | |
| 422 | jobs="$((`grep "^cpus active" /proc/cpuinfo | sed -e "s/^.*: //"` * 2))" |
508 | jobs="$((`grep "^cpus active" /proc/cpuinfo | sed -e "s/^.*: //"` * 2))" |
| 423 | else |
509 | else |
| 424 | jobs=2 |
510 | jobs=2 |
| 425 | fi |
511 | fi |
| 426 | |
512 | |
| 427 | elif [ "${ARCH}" = "ppc" ] |
513 | elif [ "${ARCH}" = "ppc" -o "${ARCH}" = "ppc64" ] |
| 428 | then |
514 | then |
| 429 | # ppc has "processor", but only when compiled with SMP |
515 | # ppc has "processor", but only when compiled with SMP |
| 430 | if [ "`grep -c "^processor" /proc/cpuinfo`" -eq 1 ] |
516 | if [ "`grep -c "^processor" /proc/cpuinfo`" -eq 1 ] |
| 431 | then |
517 | then |
| 432 | jobs="$((`grep -c ^processor /proc/cpuinfo` * 2))" |
518 | jobs="$((`grep -c ^processor /proc/cpuinfo` * 2))" |
| 433 | else |
519 | else |
| 434 | jobs=2 |
520 | jobs=2 |
| 435 | fi |
521 | fi |
|
|
522 | elif [ "${ARCH}" = "s390" ] |
|
|
523 | then |
|
|
524 | # s390 has "# processors : " |
|
|
525 | jobs="$((`grep "^\# processors" /proc/cpuinfo | sed -e "s/^.*: //"` * 2))" |
| 436 | else |
526 | else |
| 437 | jobs="$((`grep -c ^cpu /proc/cpuinfo` * 2))" |
527 | jobs="$((`grep -c ^cpu /proc/cpuinfo` * 2))" |
| 438 | die "Unknown ARCH -- ${ARCH}!" |
528 | die "Unknown ARCH -- ${ARCH}!" |
| 439 | fi |
529 | fi |
| 440 | |
530 | |
| … | |
… | |
| 446 | |
536 | |
| 447 | if [ -n "${ADMINPARAM}" ] |
537 | if [ -n "${ADMINPARAM}" ] |
| 448 | then |
538 | then |
| 449 | if [ "${jobs}" -gt "${ADMINPARAM}" ] |
539 | if [ "${jobs}" -gt "${ADMINPARAM}" ] |
| 450 | then |
540 | then |
| 451 | einfo "Setting make jobs to \"-j${ADMINPARAM}\" to ensure successful merge..." |
541 | einfo "Setting make jobs to \"-j${ADMINPARAM}\" to ensure successful merge ..." |
| 452 | export MAKEOPTS="${MAKEOPTS} -j${ADMINPARAM}" |
542 | export MAKEOPTS="${MAKEOPTS} -j${ADMINPARAM}" |
| 453 | else |
543 | else |
| 454 | einfo "Setting make jobs to \"-j${jobs}\" to ensure successful merge..." |
544 | einfo "Setting make jobs to \"-j${jobs}\" to ensure successful merge ..." |
| 455 | export MAKEOPTS="${MAKEOPTS} -j${jobs}" |
545 | export MAKEOPTS="${MAKEOPTS} -j${jobs}" |
| 456 | fi |
546 | fi |
| 457 | fi |
547 | fi |
| 458 | } |
548 | } |
| 459 | |
549 | |
| 460 | # Cheap replacement for when debianutils (and thus mktemp) |
550 | # Cheap replacement for when debianutils (and thus mktemp) |
| 461 | # do not exist on the users system |
551 | # does not exist on the users system |
| 462 | # vapier@gentoo.org |
552 | # vapier@gentoo.org |
| 463 | # |
553 | # |
| 464 | # Takes just 1 parameter (the directory to create tmpfile in) |
554 | # Takes just 1 optional parameter (the directory to create tmpfile in) |
| 465 | mymktemp() { |
555 | emktemp() { |
|
|
556 | local exe="touch" |
|
|
557 | [ "$1" == "-d" ] && exe="mkdir" && shift |
| 466 | local topdir="$1" |
558 | local topdir="$1" |
| 467 | |
559 | |
| 468 | [ -z "${topdir}" ] && topdir=/tmp |
560 | if [ -z "${topdir}" ] |
| 469 | if [ "`which mktemp 2>/dev/null`" ] |
|
|
| 470 | then |
561 | then |
| 471 | mktemp -p ${topdir} |
562 | [ -z "${T}" ] \ |
| 472 | else |
563 | && topdir="/tmp" \ |
|
|
564 | || topdir="${T}" |
|
|
565 | fi |
|
|
566 | |
|
|
567 | if [ -z "$(type -p mktemp)" ] |
|
|
568 | then |
|
|
569 | local tmp=/ |
|
|
570 | while [ -e "${tmp}" ] ; do |
| 473 | local tmp="${topdir}/tmp.${RANDOM}.${RANDOM}.${RANDOM}" |
571 | tmp="${topdir}/tmp.${RANDOM}.${RANDOM}.${RANDOM}" |
| 474 | touch ${tmp} |
572 | done |
|
|
573 | ${exe} "${tmp}" |
| 475 | echo ${tmp} |
574 | echo "${tmp}" |
|
|
575 | else |
|
|
576 | [ "${exe}" == "touch" ] \ |
|
|
577 | && exe="-p" \ |
|
|
578 | || exe="-d" |
|
|
579 | mktemp ${exe} "${topdir}" |
|
|
580 | fi |
|
|
581 | } |
|
|
582 | |
|
|
583 | # Small wrapper for getent (Linux), nidump (Mac OS X), |
|
|
584 | # and pw (FreeBSD) used in enewuser()/enewgroup() |
|
|
585 | # Joe Jezak <josejx@gmail.com> and usata@gentoo.org |
|
|
586 | # FBSD stuff: Aaron Walker <ka0ttic@gentoo.org> |
|
|
587 | # |
|
|
588 | # egetent(database, key) |
|
|
589 | egetent() { |
|
|
590 | if useq ppc-macos ; then |
|
|
591 | case "$2" in |
|
|
592 | *[!0-9]*) # Non numeric |
|
|
593 | nidump $1 . | awk -F":" "{ if (\$1 ~ /^$2$/) {print \$0;exit;} }" |
|
|
594 | ;; |
|
|
595 | *) # Numeric |
|
|
596 | nidump $1 . | awk -F":" "{ if (\$3 == $2) {print \$0;exit;} }" |
|
|
597 | ;; |
|
|
598 | esac |
|
|
599 | elif useq x86-fbsd ; then |
|
|
600 | local action |
|
|
601 | if [ "$1" == "passwd" ] |
|
|
602 | then |
|
|
603 | action="user" |
|
|
604 | else |
|
|
605 | action="group" |
|
|
606 | fi |
|
|
607 | pw show "${action}" "$2" -q |
|
|
608 | else |
|
|
609 | which nscd >& /dev/null && nscd -i "$1" |
|
|
610 | getent "$1" "$2" |
| 476 | fi |
611 | fi |
| 477 | } |
612 | } |
| 478 | |
613 | |
| 479 | # Simplify/standardize adding users to the system |
614 | # Simplify/standardize adding users to the system |
| 480 | # vapier@gentoo.org |
615 | # vapier@gentoo.org |
| … | |
… | |
| 496 | then |
631 | then |
| 497 | eerror "No username specified !" |
632 | eerror "No username specified !" |
| 498 | die "Cannot call enewuser without a username" |
633 | die "Cannot call enewuser without a username" |
| 499 | fi |
634 | fi |
| 500 | |
635 | |
| 501 | # setup a file for testing usernames/groups |
|
|
| 502 | local tmpfile="`mymktemp ${T}`" |
|
|
| 503 | chown ${euser} ${tmpfile} >& /dev/null |
|
|
| 504 | local realuser="`ls -l ${tmpfile} | awk '{print $3}'`" |
|
|
| 505 | |
|
|
| 506 | # see if user already exists |
636 | # lets see if the username already exists |
| 507 | if [ "${euser}" == "${realuser}" ] |
637 | if [ "${euser}" == "`egetent passwd \"${euser}\" | cut -d: -f1`" ] |
| 508 | then |
638 | then |
| 509 | return 0 |
639 | return 0 |
| 510 | fi |
640 | fi |
| 511 | einfo "Adding user '${euser}' to your system ..." |
641 | einfo "Adding user '${euser}' to your system ..." |
| 512 | |
642 | |
| … | |
… | |
| 517 | local euid="$1"; shift |
647 | local euid="$1"; shift |
| 518 | if [ ! -z "${euid}" ] && [ "${euid}" != "-1" ] |
648 | if [ ! -z "${euid}" ] && [ "${euid}" != "-1" ] |
| 519 | then |
649 | then |
| 520 | if [ "${euid}" -gt 0 ] |
650 | if [ "${euid}" -gt 0 ] |
| 521 | then |
651 | then |
| 522 | opts="${opts} -u ${euid}" |
652 | if [ ! -z "`egetent passwd ${euid}`" ] |
|
|
653 | then |
|
|
654 | euid="next" |
|
|
655 | fi |
| 523 | else |
656 | else |
| 524 | eerror "Userid given but is not greater than 0 !" |
657 | eerror "Userid given but is not greater than 0 !" |
| 525 | die "${euid} is not a valid UID" |
658 | die "${euid} is not a valid UID" |
| 526 | fi |
659 | fi |
| 527 | else |
660 | else |
| 528 | euid="next available" |
661 | euid="next" |
|
|
662 | fi |
|
|
663 | if [ "${euid}" == "next" ] |
|
|
664 | then |
|
|
665 | local pwrange |
|
|
666 | if [ "${USERLAND}" == "BSD" ] ; then |
|
|
667 | pwrange="`jot 898 101`" |
|
|
668 | else |
|
|
669 | pwrange="`seq 101 999`" |
| 529 | fi |
670 | fi |
|
|
671 | for euid in ${pwrange} ; do |
|
|
672 | [ -z "`egetent passwd ${euid}`" ] && break |
|
|
673 | done |
|
|
674 | fi |
|
|
675 | opts="${opts} -u ${euid}" |
| 530 | einfo " - Userid: ${euid}" |
676 | einfo " - Userid: ${euid}" |
| 531 | |
677 | |
| 532 | # handle shell |
678 | # handle shell |
| 533 | local eshell="$1"; shift |
679 | local eshell="$1"; shift |
| 534 | if [ ! -z "${eshell}" ] && [ "${eshell}" != "-1" ] |
680 | if [ ! -z "${eshell}" ] && [ "${eshell}" != "-1" ] |
| … | |
… | |
| 537 | then |
683 | then |
| 538 | eerror "A shell was specified but it does not exist !" |
684 | eerror "A shell was specified but it does not exist !" |
| 539 | die "${eshell} does not exist" |
685 | die "${eshell} does not exist" |
| 540 | fi |
686 | fi |
| 541 | else |
687 | else |
|
|
688 | if [ "${USERLAND}" == "BSD" ] |
|
|
689 | then |
|
|
690 | eshell="/usr/bin/false" |
|
|
691 | else |
| 542 | eshell="/bin/false" |
692 | eshell="/bin/false" |
|
|
693 | fi |
| 543 | fi |
694 | fi |
| 544 | einfo " - Shell: ${eshell}" |
695 | einfo " - Shell: ${eshell}" |
| 545 | opts="${opts} -s ${eshell}" |
696 | opts="${opts} -s ${eshell}" |
| 546 | |
697 | |
| 547 | # handle homedir |
698 | # handle homedir |
| … | |
… | |
| 555 | |
706 | |
| 556 | # handle groups |
707 | # handle groups |
| 557 | local egroups="$1"; shift |
708 | local egroups="$1"; shift |
| 558 | if [ ! -z "${egroups}" ] |
709 | if [ ! -z "${egroups}" ] |
| 559 | then |
710 | then |
| 560 | local realgroup= |
|
|
| 561 | local oldifs="${IFS}" |
711 | local oldifs="${IFS}" |
|
|
712 | local defgroup="" exgroups="" |
|
|
713 | |
| 562 | export IFS="," |
714 | export IFS="," |
| 563 | for g in ${egroups} |
715 | for g in ${egroups} |
| 564 | do |
716 | do |
| 565 | chgrp ${g} ${tmpfile} >& /dev/null |
717 | export IFS="${oldifs}" |
| 566 | realgroup="`ls -l ${tmpfile} | awk '{print $4}'`" |
718 | if [ -z "`egetent group \"${g}\"`" ] |
| 567 | if [ "${g}" != "${realgroup}" ] |
|
|
| 568 | then |
719 | then |
| 569 | eerror "You must add ${g} to the system first" |
720 | eerror "You must add group ${g} to the system first" |
| 570 | die "${g} is not a valid GID" |
721 | die "${g} is not a valid GID" |
| 571 | fi |
722 | fi |
|
|
723 | if [ -z "${defgroup}" ] |
|
|
724 | then |
|
|
725 | defgroup="${g}" |
|
|
726 | else |
|
|
727 | exgroups="${exgroups},${g}" |
|
|
728 | fi |
|
|
729 | export IFS="," |
| 572 | done |
730 | done |
| 573 | export IFS="${oldifs}" |
731 | export IFS="${oldifs}" |
|
|
732 | |
| 574 | opts="${opts} -g ${egroups}" |
733 | opts="${opts} -g ${defgroup}" |
|
|
734 | if [ ! -z "${exgroups}" ] |
|
|
735 | then |
|
|
736 | opts="${opts} -G ${exgroups:1}" |
|
|
737 | fi |
| 575 | else |
738 | else |
| 576 | egroups="(none)" |
739 | egroups="(none)" |
| 577 | fi |
740 | fi |
| 578 | einfo " - Groups: ${egroups}" |
741 | einfo " - Groups: ${egroups}" |
| 579 | |
742 | |
| 580 | # handle extra and add the user |
743 | # handle extra and add the user |
| 581 | local eextra="$@" |
744 | local eextra="$@" |
| 582 | local oldsandbox="${SANDBOX_ON}" |
745 | local oldsandbox="${SANDBOX_ON}" |
| 583 | export SANDBOX_ON="0" |
746 | export SANDBOX_ON="0" |
|
|
747 | if useq ppc-macos |
|
|
748 | then |
|
|
749 | ### Make the user |
| 584 | if [ -z "${eextra}" ] |
750 | if [ -z "${eextra}" ] |
| 585 | then |
751 | then |
| 586 | useradd ${opts} ${euser} \ |
752 | dscl . create /users/${euser} uid ${euid} |
|
|
753 | dscl . create /users/${euser} shell ${eshell} |
|
|
754 | dscl . create /users/${euser} home ${ehome} |
|
|
755 | dscl . create /users/${euser} realname "added by portage for ${PN}" |
|
|
756 | ### Add the user to the groups specified |
|
|
757 | local oldifs="${IFS}" |
|
|
758 | export IFS="," |
|
|
759 | for g in ${egroups} |
|
|
760 | do |
|
|
761 | dscl . merge /groups/${g} users ${euser} |
|
|
762 | done |
|
|
763 | export IFS="${oldifs}" |
|
|
764 | else |
|
|
765 | einfo "Extra options are not supported on macos yet" |
|
|
766 | einfo "Please report the ebuild along with the info below" |
|
|
767 | einfo "eextra: ${eextra}" |
|
|
768 | die "Required function missing" |
|
|
769 | fi |
|
|
770 | elif use x86-fbsd ; then |
|
|
771 | if [ -z "${eextra}" ] |
|
|
772 | then |
|
|
773 | pw useradd ${euser} ${opts} \ |
| 587 | -c "added by portage for ${PN}" \ |
774 | -c "added by portage for ${PN}" \ |
| 588 | || die "enewuser failed" |
775 | die "enewuser failed" |
| 589 | else |
776 | else |
| 590 | einfo " - Extra: ${eextra}" |
777 | einfo " - Extra: ${eextra}" |
|
|
778 | pw useradd ${euser} ${opts} \ |
|
|
779 | -c ${eextra} || die "enewuser failed" |
|
|
780 | fi |
|
|
781 | else |
|
|
782 | if [ -z "${eextra}" ] |
|
|
783 | then |
|
|
784 | useradd ${opts} ${euser} \ |
|
|
785 | -c "added by portage for ${PN}" \ |
|
|
786 | || die "enewuser failed" |
|
|
787 | else |
|
|
788 | einfo " - Extra: ${eextra}" |
| 591 | useradd ${opts} ${euser} ${eextra} \ |
789 | useradd ${opts} ${euser} ${eextra} \ |
| 592 | || die "enewuser failed" |
790 | || die "enewuser failed" |
|
|
791 | fi |
| 593 | fi |
792 | fi |
| 594 | export SANDBOX_ON="${oldsandbox}" |
793 | export SANDBOX_ON="${oldsandbox}" |
| 595 | |
794 | |
| 596 | if [ ! -e "${ehome}" ] && [ ! -e "${D}/${ehome}" ] |
795 | if [ ! -e "${ehome}" ] && [ ! -e "${D}/${ehome}" ] |
| 597 | then |
796 | then |
| … | |
… | |
| 618 | then |
817 | then |
| 619 | eerror "No group specified !" |
818 | eerror "No group specified !" |
| 620 | die "Cannot call enewgroup without a group" |
819 | die "Cannot call enewgroup without a group" |
| 621 | fi |
820 | fi |
| 622 | |
821 | |
| 623 | # setup a file for testing groupname |
|
|
| 624 | local tmpfile="`mymktemp ${T}`" |
|
|
| 625 | chgrp ${egroup} ${tmpfile} >& /dev/null |
|
|
| 626 | local realgroup="`ls -l ${tmpfile} | awk '{print $4}'`" |
|
|
| 627 | |
|
|
| 628 | # see if group already exists |
822 | # see if group already exists |
| 629 | if [ "${egroup}" == "${realgroup}" ] |
823 | if [ "${egroup}" == "`egetent group \"${egroup}\" | cut -d: -f1`" ] |
| 630 | then |
824 | then |
| 631 | return 0 |
825 | return 0 |
| 632 | fi |
826 | fi |
| 633 | einfo "Adding group '${egroup}' to your system ..." |
827 | einfo "Adding group '${egroup}' to your system ..." |
| 634 | |
828 | |
| … | |
… | |
| 639 | local egid="$1"; shift |
833 | local egid="$1"; shift |
| 640 | if [ ! -z "${egid}" ] |
834 | if [ ! -z "${egid}" ] |
| 641 | then |
835 | then |
| 642 | if [ "${egid}" -gt 0 ] |
836 | if [ "${egid}" -gt 0 ] |
| 643 | then |
837 | then |
|
|
838 | if [ -z "`egetent group ${egid}`" ] |
|
|
839 | then |
|
|
840 | if useq ppc-macos ; then |
|
|
841 | opts="${opts} ${egid}" |
|
|
842 | else |
| 644 | opts="${opts} -g ${egid}" |
843 | opts="${opts} -g ${egid}" |
|
|
844 | fi |
|
|
845 | else |
|
|
846 | egid="next available; requested gid taken" |
|
|
847 | fi |
| 645 | else |
848 | else |
| 646 | eerror "Groupid given but is not greater than 0 !" |
849 | eerror "Groupid given but is not greater than 0 !" |
| 647 | die "${egid} is not a valid GID" |
850 | die "${egid} is not a valid GID" |
| 648 | fi |
851 | fi |
| 649 | else |
852 | else |
| … | |
… | |
| 656 | opts="${opts} ${eextra}" |
859 | opts="${opts} ${eextra}" |
| 657 | |
860 | |
| 658 | # add the group |
861 | # add the group |
| 659 | local oldsandbox="${SANDBOX_ON}" |
862 | local oldsandbox="${SANDBOX_ON}" |
| 660 | export SANDBOX_ON="0" |
863 | export SANDBOX_ON="0" |
|
|
864 | if useq ppc-macos ; then |
|
|
865 | if [ ! -z "${eextra}" ]; |
|
|
866 | then |
|
|
867 | einfo "Extra options are not supported on macos yet" |
|
|
868 | einfo "Please report the ebuild along with the info below" |
|
|
869 | einfo "eextra: ${eextra}" |
|
|
870 | die "Required function missing" |
|
|
871 | fi |
|
|
872 | |
|
|
873 | # If we need the next available |
|
|
874 | case ${egid} in |
|
|
875 | *[!0-9]*) # Non numeric |
|
|
876 | for egid in `jot 898 101`; do |
|
|
877 | [ -z "`egetent group ${egid}`" ] && break |
|
|
878 | done |
|
|
879 | esac |
|
|
880 | dscl . create /groups/${egroup} gid ${egid} |
|
|
881 | dscl . create /groups/${egroup} passwd '*' |
|
|
882 | elif use x86-fbsd ; then |
|
|
883 | case ${egid} in |
|
|
884 | *[!0-9]*) # Non numeric |
|
|
885 | for egid in `jot 898 101`; do |
|
|
886 | [ -z "`egetent group ${egid}`" ] && break |
|
|
887 | done |
|
|
888 | esac |
|
|
889 | pw groupadd ${egroup} -g ${egid} || die "enewgroup failed" |
|
|
890 | else |
| 661 | groupadd ${opts} ${egroup} || die "enewgroup failed" |
891 | groupadd ${opts} ${egroup} || die "enewgroup failed" |
|
|
892 | fi |
| 662 | export SANDBOX_ON="${oldsandbox}" |
893 | export SANDBOX_ON="${oldsandbox}" |
| 663 | } |
894 | } |
| 664 | |
895 | |
| 665 | # Simple script to replace 'dos2unix' binaries |
896 | # Simple script to replace 'dos2unix' binaries |
| 666 | # vapier@gentoo.org |
897 | # vapier@gentoo.org |
| 667 | # |
898 | # |
| 668 | # edos2unix(file, <more files>...) |
899 | # edos2unix(file, <more files> ...) |
| 669 | edos2unix() { |
900 | edos2unix() { |
| 670 | for f in "$@" |
901 | for f in "$@" |
| 671 | do |
902 | do |
| 672 | cp "${f}" ${T}/edos2unix |
903 | cp "${f}" ${T}/edos2unix |
| 673 | sed 's/\r$//' ${T}/edos2unix > "${f}" |
904 | sed 's/\r$//' ${T}/edos2unix > "${f}" |
| 674 | done |
905 | done |
| 675 | } |
906 | } |
| 676 | |
907 | |
|
|
908 | |
|
|
909 | ############################################################## |
|
|
910 | # START: Handle .desktop files and menu entries # |
|
|
911 | # maybe this should be separated into a new eclass some time # |
|
|
912 | # lanius@gentoo.org # |
|
|
913 | ############################################################## |
|
|
914 | |
| 677 | # Make a desktop file ! |
915 | # Make a desktop file ! |
| 678 | # Great for making those icons in kde/gnome startmenu ! |
916 | # Great for making those icons in kde/gnome startmenu ! |
| 679 | # Amaze your friends ! Get the women ! Join today ! |
917 | # Amaze your friends ! Get the women ! Join today ! |
| 680 | # gnome2 /usr/share/applications |
|
|
| 681 | # gnome1 /usr/share/gnome/apps/ |
|
|
| 682 | # KDE ${KDEDIR}/share/applnk /usr/share/applnk |
|
|
| 683 | # |
918 | # |
| 684 | # make_desktop_entry(<binary>, [name], [icon], [type], [path]) |
919 | # make_desktop_entry(<binary>, [name], [icon], [type], [path]) |
| 685 | # |
920 | # |
| 686 | # binary: what binary does the app run with ? |
921 | # binary: what binary does the app run with ? |
| 687 | # name: the name that will show up in the menu |
922 | # name: the name that will show up in the menu |
| 688 | # icon: give your little like a pretty little icon ... |
923 | # icon: give your little like a pretty little icon ... |
| 689 | # this can be relative (to /usr/share/pixmaps) or |
924 | # this can be relative (to /usr/share/pixmaps) or |
| 690 | # a full path to an icon |
925 | # a full path to an icon |
| 691 | # type: what kind of application is this ? for categories: |
926 | # type: what kind of application is this ? for categories: |
| 692 | # http://www.freedesktop.org/standards/menu/draft/menu-spec/menu-spec.html |
927 | # http://www.freedesktop.org/standards/menu-spec/ |
| 693 | # path: if your app needs to startup in a specific dir |
928 | # path: if your app needs to startup in a specific dir |
| 694 | make_desktop_entry() { |
929 | make_desktop_entry() { |
| 695 | [ -z "$1" ] && eerror "You must specify the executable" && return 1 |
930 | [ -z "$1" ] && eerror "make_desktop_entry: You must specify the executable" && return 1 |
| 696 | |
931 | |
| 697 | local exec="${1}" |
932 | local exec="${1}" |
| 698 | local name="${2:-${PN}}" |
933 | local name="${2:-${PN}}" |
| 699 | local icon="${3:-${PN}.png}" |
934 | local icon="${3:-${PN}.png}" |
| 700 | local type="${4}" |
935 | local type="${4}" |
|
|
936 | local subdir="${6}" |
| 701 | local path="${5:-${GAMES_PREFIX}}" |
937 | local path="${5:-${GAMES_BINDIR}}" |
| 702 | if [ -z "${type}" ] |
938 | if [ -z "${type}" ] |
| 703 | then |
939 | then |
| 704 | case ${CATEGORY} in |
940 | case ${CATEGORY} in |
| 705 | "app-emulation") |
941 | "app-emulation") |
| 706 | type=Emulator |
942 | type=Emulator |
|
|
943 | subdir="Emulation" |
| 707 | ;; |
944 | ;; |
| 708 | "games-"*) |
945 | "games-"*) |
| 709 | type=Game |
946 | type=Game |
|
|
947 | subdir="Games" |
| 710 | ;; |
948 | ;; |
| 711 | "net-"*) |
949 | "net-"*) |
| 712 | type=Network; |
950 | type=Network |
|
|
951 | subdir="${type}" |
| 713 | ;; |
952 | ;; |
| 714 | *) |
953 | *) |
| 715 | type= |
954 | type= |
|
|
955 | subdir= |
| 716 | ;; |
956 | ;; |
| 717 | esac |
957 | esac |
| 718 | fi |
958 | fi |
| 719 | local desktop="${T}/${exec}.desktop" |
959 | local desktop="${T}/${exec}.desktop" |
| 720 | |
960 | |
| … | |
… | |
| 725 | Type=Application |
965 | Type=Application |
| 726 | Comment=${DESCRIPTION} |
966 | Comment=${DESCRIPTION} |
| 727 | Exec=${exec} |
967 | Exec=${exec} |
| 728 | Path=${path} |
968 | Path=${path} |
| 729 | Icon=${icon} |
969 | Icon=${icon} |
| 730 | Categories=Application;${type};" > ${desktop} |
970 | Categories=Application;${type};" > "${desktop}" |
| 731 | |
971 | |
| 732 | if [ -d "/usr/share/applications" ] |
|
|
| 733 | then |
|
|
| 734 | insinto /usr/share/applications |
972 | insinto /usr/share/applications |
| 735 | doins ${desktop} |
973 | doins "${desktop}" |
| 736 | fi |
|
|
| 737 | |
|
|
| 738 | #if [ -d "/usr/share/gnome/apps" ] |
|
|
| 739 | #then |
|
|
| 740 | # insinto /usr/share/gnome/apps/Games |
|
|
| 741 | # doins ${desktop} |
|
|
| 742 | #fi |
|
|
| 743 | |
|
|
| 744 | #if [ ! -z "`ls /usr/kde/* 2>/dev/null`" ] |
|
|
| 745 | #then |
|
|
| 746 | # for ver in /usr/kde/* |
|
|
| 747 | # do |
|
|
| 748 | # insinto ${ver}/share/applnk/Games |
|
|
| 749 | # doins ${desktop} |
|
|
| 750 | # done |
|
|
| 751 | #fi |
|
|
| 752 | |
|
|
| 753 | if [ -d "/usr/share/applnk" ] |
|
|
| 754 | then |
|
|
| 755 | insinto /usr/share/applnk/${type} |
|
|
| 756 | doins ${desktop} |
|
|
| 757 | fi |
|
|
| 758 | |
974 | |
| 759 | return 0 |
975 | return 0 |
| 760 | } |
976 | } |
| 761 | |
977 | |
| 762 | # new convenience patch wrapper function to eventually replace epatch(), |
978 | # Make a GDM/KDM Session file |
| 763 | # $PATCHES, $PATCHES1, src_unpack:patch, src_unpack:autopatch and |
979 | # |
| 764 | # /usr/bin/patch |
980 | # make_desktop_entry(<title>, <command>) |
| 765 | # Features: |
981 | # title: File to execute to start the Window Manager |
| 766 | # - bulk patch handling similar to epatch()'s |
982 | # command: Name of the Window Manager |
| 767 | # - automatic patch level detection like epatch()'s |
|
|
| 768 | # - automatic patch uncompression like epatch()'s |
|
|
| 769 | # - doesn't have the --dry-run overhead of epatch() - inspects patchfiles |
|
|
| 770 | # manually instead |
|
|
| 771 | # - once I decide it's production-ready, it'll be called from base_src_unpack |
|
|
| 772 | # to handle $PATCHES to avoid defining src_unpack just to use xpatch |
|
|
| 773 | |
983 | |
| 774 | # accepts zero or more parameters specifying patchfiles and/or patchdirs |
984 | make_session_desktop() { |
| 775 | |
985 | |
| 776 | # known issues: |
986 | [ -z "$1" ] && eerror "make_session_desktop: You must specify the title" && return 1 |
| 777 | # - only supports unified style patches (does anyone _really_ use anything |
987 | [ -z "$2" ] && eerror "make_session_desktop: You must specify the command" && return 1 |
| 778 | # else?) |
|
|
| 779 | # - because it doesn't use --dry-run there is a risk of it failing |
|
|
| 780 | # to find the files to patch, ie detect the patchlevel, properly. It doesn't use |
|
|
| 781 | # any of the backup heuristics that patch employs to discover a filename. |
|
|
| 782 | # however, this isn't dangerous because if it works for the developer who's |
|
|
| 783 | # writing the ebuild, it'll always work for the users, and if it doesn't, |
|
|
| 784 | # then we'll fix it :-) |
|
|
| 785 | # - no support as yet for patches applying outside $S (and not directly in $WORKDIR). |
|
|
| 786 | xpatch() { |
|
|
| 787 | |
988 | |
| 788 | debug-print-function ${FUNCNAME} $* |
989 | local title="${1}" |
|
|
990 | local command="${2}" |
|
|
991 | local desktop="${T}/${wm}.desktop" |
| 789 | |
992 | |
|
|
993 | echo "[Desktop Entry] |
|
|
994 | Encoding=UTF-8 |
|
|
995 | Name=${title} |
|
|
996 | Comment=This session logs you into ${title} |
|
|
997 | Exec=${command} |
|
|
998 | TryExec=${command} |
|
|
999 | Type=Application" > "${desktop}" |
|
|
1000 | |
|
|
1001 | insinto /usr/share/xsessions |
|
|
1002 | doins "${desktop}" |
|
|
1003 | |
|
|
1004 | return 0 |
|
|
1005 | } |
|
|
1006 | |
|
|
1007 | domenu() { |
| 790 | local list= |
1008 | local i |
| 791 | local list2= |
1009 | local j |
| 792 | declare -i plevel |
1010 | insinto /usr/share/applications |
| 793 | |
|
|
| 794 | # parse patch sources |
|
|
| 795 | for x in $* |
1011 | for i in ${@} |
| 796 | do |
1012 | do |
| 797 | debug-print "${FUNCNAME}: parsing parameter ${x}" |
|
|
| 798 | if [ -f "${x}" ] |
1013 | if [ -f "${i}" ]; |
| 799 | then |
1014 | then |
| 800 | list="${list} ${x}" |
1015 | doins ${i} |
| 801 | elif [ -d "${x}" ] |
1016 | elif [ -d "${i}" ]; |
| 802 | then |
1017 | then |
| 803 | # handles patchdirs like epatch() for now: no recursion. |
1018 | for j in ${i}/*.desktop |
| 804 | # patches are sorted by filename, so with an xy_foo naming scheme you'll get the right order. |
|
|
| 805 | # only patches with _$ARCH_ or _all_ in their filenames are applied. |
|
|
| 806 | for file in `ls -A ${x}` |
|
|
| 807 | do |
1019 | do |
| 808 | debug-print "${FUNCNAME}: parsing in subdir: file ${file}" |
1020 | doins ${j} |
| 809 | if [ -f "${x}/${file}" -a "${file}" != "${file/_all_}" -o \ |
|
|
| 810 | "${file}" != "${file/_$ARCH_}" ] |
|
|
| 811 | then |
|
|
| 812 | list2="${list2} ${x}/${file}" |
|
|
| 813 | fi |
|
|
| 814 | done |
1021 | done |
| 815 | list="`echo ${list2} | sort` ${list}" |
|
|
| 816 | else |
|
|
| 817 | die "Couldn't find ${x}" |
|
|
| 818 | fi |
1022 | fi |
| 819 | done |
1023 | done |
|
|
1024 | } |
| 820 | |
1025 | |
| 821 | debug-print "${FUNCNAME}: final list of patches: ${list}" |
1026 | doicon() { |
| 822 | |
1027 | local i |
|
|
1028 | local j |
|
|
1029 | insinto /usr/share/pixmaps |
| 823 | for x in ${list}; |
1030 | for i in ${@} |
| 824 | do |
1031 | do |
| 825 | debug-print "${FUNCNAME}: processing ${x}" |
1032 | if [ -f "${i}" ]; |
| 826 | # deal with compressed files. /usr/bin/file is in the system profile, or should be. |
1033 | then |
| 827 | case "`/usr/bin/file -b ${x}`" in |
1034 | doins ${i} |
| 828 | *gzip*) |
1035 | elif [ -d "${i}" ]; |
| 829 | patchfile="${T}/current.patch" |
1036 | then |
| 830 | ungzip -c "${x}" > "${patchfile}" |
1037 | for j in ${i}/*.png |
| 831 | ;; |
|
|
| 832 | *bzip2*) |
|
|
| 833 | patchfile="${T}/current.patch" |
|
|
| 834 | bunzip2 -c "${x}" > "${patchfile}" |
|
|
| 835 | ;; |
|
|
| 836 | *text*) |
|
|
| 837 | patchfile="${x}" |
|
|
| 838 | ;; |
|
|
| 839 | *) |
|
|
| 840 | die "Could not determine filetype of patch ${x}" |
|
|
| 841 | ;; |
|
|
| 842 | esac |
|
|
| 843 | debug-print "${FUNCNAME}: patchfile=${patchfile}" |
|
|
| 844 | |
|
|
| 845 | # determine patchlevel. supports p0 and higher with either $S or $WORKDIR as base. |
|
|
| 846 | target="`/bin/grep -m 1 '^+++ ' ${patchfile}`" |
|
|
| 847 | debug-print "${FUNCNAME}: raw target=${target}" |
|
|
| 848 | # strip target down to the path/filename, remove leading +++ |
|
|
| 849 | target="${target/+++ }"; target="${target%% *}" |
|
|
| 850 | # duplicate slashes are discarded by patch wrt the patchlevel. therefore we need |
|
|
| 851 | # to discard them as well to calculate the correct patchlevel. |
|
|
| 852 | target="${target//\/\//\/}" |
|
|
| 853 | debug-print "${FUNCNAME}: stripped target=${target}" |
|
|
| 854 | |
|
|
| 855 | # look for target |
|
|
| 856 | for basedir in "${S}" "${WORKDIR}" "${PWD}"; do |
|
|
| 857 | debug-print "${FUNCNAME}: looking in basedir=${basedir}" |
|
|
| 858 | cd "${basedir}" |
|
|
| 859 | |
|
|
| 860 | # try stripping leading directories |
|
|
| 861 | target2="${target}" |
|
|
| 862 | plevel=0 |
|
|
| 863 | debug-print "${FUNCNAME}: trying target2=${target2}, plevel=${plevel}" |
|
|
| 864 | while [ ! -f "${target2}" ] |
|
|
| 865 | do |
1038 | do |
| 866 | target2="${target2#*/}" # removes piece of target2 upto the first occurence of / |
1039 | doins ${j} |
| 867 | plevel=$((plevel+1)) |
|
|
| 868 | debug-print "${FUNCNAME}: trying target2=${target2}, plevel=${plevel}" |
|
|
| 869 | [ "${target2}" == "${target2/\/}" ] && break |
|
|
| 870 | done |
1040 | done |
| 871 | test -f "${target2}" && break |
1041 | fi |
| 872 | |
|
|
| 873 | # try stripping filename - needed to support patches creating new files |
|
|
| 874 | target2="${target%/*}" |
|
|
| 875 | plevel=0 |
|
|
| 876 | debug-print "${FUNCNAME}: trying target2=${target2}, plevel=${plevel}" |
|
|
| 877 | while [ ! -d "${target2}" ] |
|
|
| 878 | do |
|
|
| 879 | target2="${target2#*/}" # removes piece of target2 upto the first occurence of / |
|
|
| 880 | plevel=$((plevel+1)) |
|
|
| 881 | debug-print "${FUNCNAME}: trying target2=${target2}, plevel=${plevel}" |
|
|
| 882 | [ "${target2}" == "${target2/\/}" ] && break |
|
|
| 883 | done |
|
|
| 884 | test -d "${target2}" && break |
|
|
| 885 | |
|
|
| 886 | done |
|
|
| 887 | |
|
|
| 888 | test -f "${basedir}/${target2}" || test -d "${basedir}/${target2}" \ |
|
|
| 889 | || die "Could not determine patchlevel for ${x}" |
|
|
| 890 | debug-print "${FUNCNAME}: determined plevel=${plevel}" |
|
|
| 891 | # do the patching |
|
|
| 892 | ebegin "Applying patch ${x##*/}..." |
|
|
| 893 | /usr/bin/patch -p${plevel} < "${patchfile}" > /dev/null \ |
|
|
| 894 | || die "Failed to apply patch ${x}" |
|
|
| 895 | eend $? |
|
|
| 896 | |
|
|
| 897 | done |
1042 | done |
| 898 | |
|
|
| 899 | } |
1043 | } |
|
|
1044 | |
|
|
1045 | ############################################################## |
|
|
1046 | # END: Handle .desktop files and menu entries # |
|
|
1047 | ############################################################## |
|
|
1048 | |
| 900 | |
1049 | |
| 901 | # for internal use only (unpack_pdv and unpack_makeself) |
1050 | # for internal use only (unpack_pdv and unpack_makeself) |
| 902 | find_unpackable_file() { |
1051 | find_unpackable_file() { |
| 903 | local src="$1" |
1052 | local src="$1" |
| 904 | if [ -z "${src}" ] |
1053 | if [ -z "${src}" ] |
| … | |
… | |
| 950 | echo ">>> Unpacking ${shrtsrc} to ${PWD}" |
1099 | echo ">>> Unpacking ${shrtsrc} to ${PWD}" |
| 951 | local metaskip=`tail -c ${sizeoff_t} ${src} | hexdump -e \"%i\"` |
1100 | local metaskip=`tail -c ${sizeoff_t} ${src} | hexdump -e \"%i\"` |
| 952 | local tailskip=`tail -c $((${sizeoff_t}*2)) ${src} | head -c ${sizeoff_t} | hexdump -e \"%i\"` |
1101 | local tailskip=`tail -c $((${sizeoff_t}*2)) ${src} | head -c ${sizeoff_t} | hexdump -e \"%i\"` |
| 953 | |
1102 | |
| 954 | # grab metadata for debug reasons |
1103 | # grab metadata for debug reasons |
| 955 | local metafile="`mymktemp ${T}`" |
1104 | local metafile="$(emktemp)" |
| 956 | tail -c +$((${metaskip}+1)) ${src} > ${metafile} |
1105 | tail -c +$((${metaskip}+1)) ${src} > ${metafile} |
| 957 | |
1106 | |
| 958 | # rip out the final file name from the metadata |
1107 | # rip out the final file name from the metadata |
| 959 | local datafile="`tail -c +$((${metaskip}+1)) ${src} | strings | head -n 1`" |
1108 | local datafile="`tail -c +$((${metaskip}+1)) ${src} | strings | head -n 1`" |
| 960 | datafile="`basename ${datafile}`" |
1109 | datafile="`basename ${datafile}`" |
| 961 | |
1110 | |
| 962 | # now lets uncompress/untar the file if need be |
1111 | # now lets uncompress/untar the file if need be |
| 963 | local tmpfile="`mymktemp ${T}`" |
1112 | local tmpfile="$(emktemp)" |
| 964 | tail -c +$((${tailskip}+1)) ${src} 2>/dev/null | head -c 512 > ${tmpfile} |
1113 | tail -c +$((${tailskip}+1)) ${src} 2>/dev/null | head -c 512 > ${tmpfile} |
| 965 | |
1114 | |
| 966 | local iscompressed="`file -b ${tmpfile}`" |
1115 | local iscompressed="`file -b ${tmpfile}`" |
| 967 | if [ "${iscompressed:0:8}" == "compress" ] ; then |
1116 | if [ "${iscompressed:0:8}" == "compress" ] ; then |
| 968 | iscompressed=1 |
1117 | iscompressed=1 |
| … | |
… | |
| 1013 | # Unpack those pesky makeself generated files ... |
1162 | # Unpack those pesky makeself generated files ... |
| 1014 | # They're shell scripts with the binary package tagged onto |
1163 | # They're shell scripts with the binary package tagged onto |
| 1015 | # the end of the archive. Loki utilized the format as does |
1164 | # the end of the archive. Loki utilized the format as does |
| 1016 | # many other game companies. |
1165 | # many other game companies. |
| 1017 | # |
1166 | # |
| 1018 | # Usage: unpack_makeself [file to unpack] [offset] |
1167 | # Usage: unpack_makeself [file to unpack] [offset] [tail|dd] |
| 1019 | # - If the file is not specified then unpack will utilize ${A}. |
1168 | # - If the file is not specified then unpack will utilize ${A}. |
| 1020 | # - If the offset is not specified then we will attempt to extract |
1169 | # - If the offset is not specified then we will attempt to extract |
| 1021 | # the proper offset from the script itself. |
1170 | # the proper offset from the script itself. |
| 1022 | unpack_makeself() { |
1171 | unpack_makeself() { |
| 1023 | local src="`find_unpackable_file $1`" |
1172 | local src="$(find_unpackable_file "$1")" |
| 1024 | local skip="$2" |
1173 | local skip="$2" |
|
|
1174 | local exe="$3" |
| 1025 | |
1175 | |
| 1026 | local shrtsrc="`basename ${src}`" |
1176 | local shrtsrc="$(basename "${src}")" |
| 1027 | echo ">>> Unpacking ${shrtsrc} to ${PWD}" |
1177 | echo ">>> Unpacking ${shrtsrc} to ${PWD}" |
| 1028 | if [ -z "${skip}" ] |
1178 | if [ -z "${skip}" ] |
| 1029 | then |
1179 | then |
| 1030 | local ver="`grep -a '#.*Makeself' ${src} | awk '{print $NF}'`" |
1180 | local ver="`grep -a '#.*Makeself' ${src} | awk '{print $NF}'`" |
| 1031 | local skip=0 |
1181 | local skip=0 |
|
|
1182 | exe=tail |
| 1032 | case ${ver} in |
1183 | case ${ver} in |
| 1033 | 1.5.*) # tested 1.5.{3,4,5} ... guessing 1.5.x series is same |
1184 | 1.5.*) # tested 1.5.{3,4,5} ... guessing 1.5.x series is same |
| 1034 | skip=`grep -a ^skip= ${src} | cut -d= -f2` |
1185 | skip=$(grep -a ^skip= "${src}" | cut -d= -f2) |
| 1035 | ;; |
1186 | ;; |
| 1036 | 2.0|2.0.1) |
1187 | 2.0|2.0.1) |
| 1037 | skip=`grep -a ^$'\t'tail ${src} | awk '{print $2}' | cut -b2-` |
1188 | skip=$(grep -a ^$'\t'tail "${src}" | awk '{print $2}' | cut -b2-) |
| 1038 | ;; |
1189 | ;; |
| 1039 | 2.1.1) |
1190 | 2.1.1) |
| 1040 | skip=`grep -a ^offset= ${src} | awk '{print $2}' | cut -b2-` |
1191 | skip=$(grep -a ^offset= "${src}" | awk '{print $2}' | cut -b2-) |
| 1041 | let skip="skip + 1" |
1192 | let skip="skip + 1" |
| 1042 | ;; |
1193 | ;; |
| 1043 | 2.1.2) |
1194 | 2.1.2) |
| 1044 | skip=`grep -a ^offset= ${src} | awk '{print $3}' | head -n 1` |
1195 | skip=$(grep -a ^offset= "${src}" | awk '{print $3}' | head -n 1) |
| 1045 | let skip="skip + 1" |
1196 | let skip="skip + 1" |
| 1046 | ;; |
1197 | ;; |
| 1047 | 2.1.3) |
1198 | 2.1.3) |
| 1048 | skip=`grep -a ^offset= ${src} | awk '{print $3}'` |
1199 | skip=`grep -a ^offset= "${src}" | awk '{print $3}'` |
| 1049 | let skip="skip + 1" |
1200 | let skip="skip + 1" |
|
|
1201 | ;; |
|
|
1202 | 2.1.4) |
|
|
1203 | skip=$(grep -a offset=.*head.*wc "${src}" | awk '{print $3}' | head -n 1) |
|
|
1204 | skip=$(head -n ${skip} "${src}" | wc -c) |
|
|
1205 | exe="dd" |
| 1050 | ;; |
1206 | ;; |
| 1051 | *) |
1207 | *) |
| 1052 | eerror "I'm sorry, but I was unable to support the Makeself file." |
1208 | eerror "I'm sorry, but I was unable to support the Makeself file." |
| 1053 | eerror "The version I detected was '${ver}'." |
1209 | eerror "The version I detected was '${ver}'." |
| 1054 | eerror "Please file a bug about the file ${shrtsrc} at" |
1210 | eerror "Please file a bug about the file ${shrtsrc} at" |
| … | |
… | |
| 1056 | die "makeself version '${ver}' not supported" |
1212 | die "makeself version '${ver}' not supported" |
| 1057 | ;; |
1213 | ;; |
| 1058 | esac |
1214 | esac |
| 1059 | debug-print "Detected Makeself version ${ver} ... using ${skip} as offset" |
1215 | debug-print "Detected Makeself version ${ver} ... using ${skip} as offset" |
| 1060 | fi |
1216 | fi |
|
|
1217 | case ${exe} in |
|
|
1218 | tail) exe="tail -n +${skip} '${src}'";; |
|
|
1219 | dd) exe="dd ibs=${skip} skip=1 obs=1024 conv=sync if='${src}'";; |
|
|
1220 | *) die "makeself cant handle exe '${exe}'" |
|
|
1221 | esac |
| 1061 | |
1222 | |
| 1062 | # lets grab the first few bytes of the file to figure out what kind of archive it is |
1223 | # lets grab the first few bytes of the file to figure out what kind of archive it is |
| 1063 | local tmpfile="`mymktemp ${T}`" |
1224 | local tmpfile="$(emktemp)" |
| 1064 | tail -n +${skip} ${src} 2>/dev/null | head -c 512 > ${tmpfile} |
1225 | eval ${exe} 2>/dev/null | head -c 512 > "${tmpfile}" |
| 1065 | local filetype="`file -b ${tmpfile}`" |
1226 | local filetype="$(file -b "${tmpfile}")" |
| 1066 | case ${filetype} in |
1227 | case ${filetype} in |
| 1067 | *tar\ archive) |
1228 | *tar\ archive) |
| 1068 | tail -n +${skip} ${src} | tar --no-same-owner -xf - |
1229 | eval ${exe} | tar --no-same-owner -xf - |
| 1069 | ;; |
1230 | ;; |
| 1070 | bzip2*) |
1231 | bzip2*) |
| 1071 | tail -n +${skip} ${src} | bzip2 -dc | tar --no-same-owner -xf - |
1232 | eval ${exe} | bzip2 -dc | tar --no-same-owner -xf - |
| 1072 | ;; |
1233 | ;; |
| 1073 | gzip*) |
1234 | gzip*) |
| 1074 | tail -n +${skip} ${src} | tar --no-same-owner -xzf - |
1235 | eval ${exe} | tar --no-same-owner -xzf - |
|
|
1236 | ;; |
|
|
1237 | compress*) |
|
|
1238 | eval ${exe} | gunzip | tar --no-same-owner -xf - |
| 1075 | ;; |
1239 | ;; |
| 1076 | *) |
1240 | *) |
|
|
1241 | eerror "Unknown filetype \"${filetype}\" ?" |
| 1077 | false |
1242 | false |
| 1078 | ;; |
1243 | ;; |
| 1079 | esac |
1244 | esac |
| 1080 | assert "failure unpacking (${filetype}) makeself ${shrtsrc} ('${ver}' +${skip})" |
1245 | assert "failure unpacking (${filetype}) makeself ${shrtsrc} ('${ver}' +${skip})" |
| 1081 | } |
1246 | } |
| … | |
… | |
| 1100 | [ ! -f "${lic}" ] && die "Could not find requested license ${src}" |
1265 | [ ! -f "${lic}" ] && die "Could not find requested license ${src}" |
| 1101 | local l="`basename ${lic}`" |
1266 | local l="`basename ${lic}`" |
| 1102 | |
1267 | |
| 1103 | # here is where we check for the licenses the user already |
1268 | # here is where we check for the licenses the user already |
| 1104 | # accepted ... if we don't find a match, we make the user accept |
1269 | # accepted ... if we don't find a match, we make the user accept |
|
|
1270 | local shopts=$- |
| 1105 | local alic |
1271 | local alic |
|
|
1272 | set -o noglob #so that bash doesn't expand "*" |
| 1106 | for alic in ${ACCEPT_LICENSE} ; do |
1273 | for alic in ${ACCEPT_LICENSE} ; do |
| 1107 | [ "${alic}" == "*" ] && return 0 |
1274 | if [[ ${alic} == * || ${alic} == ${l} ]]; then |
| 1108 | [ "${alic}" == "${l}" ] && return 0 |
1275 | set +o noglob; set -${shopts} #reset old shell opts |
|
|
1276 | return 0 |
|
|
1277 | fi |
| 1109 | done |
1278 | done |
|
|
1279 | set +o noglob; set -$shopts #reset old shell opts |
| 1110 | |
1280 | |
| 1111 | local licmsg="`mymktemp ${T}`" |
1281 | local licmsg="$(emktemp)" |
| 1112 | cat << EOF > ${licmsg} |
1282 | cat << EOF > ${licmsg} |
| 1113 | ********************************************************** |
1283 | ********************************************************** |
| 1114 | The following license outlines the terms of use of this |
1284 | The following license outlines the terms of use of this |
| 1115 | package. You MUST accept this license for installation to |
1285 | package. You MUST accept this license for installation to |
| 1116 | continue. When you are done viewing, hit 'q'. If you |
1286 | continue. When you are done viewing, hit 'q'. If you |
| … | |
… | |
| 1131 | eerror "You MUST accept the license to continue! Exiting!" |
1301 | eerror "You MUST accept the license to continue! Exiting!" |
| 1132 | die "Failed to accept license" |
1302 | die "Failed to accept license" |
| 1133 | ;; |
1303 | ;; |
| 1134 | esac |
1304 | esac |
| 1135 | } |
1305 | } |
|
|
1306 | |
|
|
1307 | # Aquire cd(s) for those lovely cd-based emerges. Yes, this violates |
|
|
1308 | # the whole 'non-interactive' policy, but damnit I want CD support ! |
|
|
1309 | # |
|
|
1310 | # with these cdrom functions we handle all the user interaction and |
|
|
1311 | # standardize everything. all you have to do is call cdrom_get_cds() |
|
|
1312 | # and when the function returns, you can assume that the cd has been |
|
|
1313 | # found at CDROM_ROOT. |
|
|
1314 | # |
|
|
1315 | # normally the cdrom functions will refer to the cds as 'cd #1', 'cd #2', |
|
|
1316 | # etc... if you want to give the cds better names, then just export |
|
|
1317 | # the CDROM_NAME_X variables before calling cdrom_get_cds(). |
|
|
1318 | # |
|
|
1319 | # for those multi cd ebuilds, see the cdrom_load_next_cd() below. |
|
|
1320 | # |
|
|
1321 | # Usage: cdrom_get_cds <file on cd1> [file on cd2] [file on cd3] [...] |
|
|
1322 | # - this will attempt to locate a cd based upon a file that is on |
|
|
1323 | # the cd ... the more files you give this function, the more cds |
|
|
1324 | # the cdrom functions will handle |
|
|
1325 | cdrom_get_cds() { |
|
|
1326 | # first we figure out how many cds we're dealing with by |
|
|
1327 | # the # of files they gave us |
|
|
1328 | local cdcnt=0 |
|
|
1329 | local f= |
|
|
1330 | for f in "$@" ; do |
|
|
1331 | cdcnt=$((cdcnt + 1)) |
|
|
1332 | export CDROM_CHECK_${cdcnt}="$f" |
|
|
1333 | done |
|
|
1334 | export CDROM_TOTAL_CDS=${cdcnt} |
|
|
1335 | export CDROM_CURRENT_CD=1 |
|
|
1336 | |
|
|
1337 | # now we see if the user gave use CD_ROOT ... |
|
|
1338 | # if they did, let's just believe them that it's correct |
|
|
1339 | if [[ ! -z ${CD_ROOT} ]] ; then |
|
|
1340 | export CDROM_ROOT=${CD_ROOT} |
|
|
1341 | einfo "Found CD #${CDROM_CURRENT_CD} root at ${CDROM_ROOT}" |
|
|
1342 | return |
|
|
1343 | fi |
|
|
1344 | # do the same for CD_ROOT_X |
|
|
1345 | if [[ ! -z ${CD_ROOT_1} ]] ; then |
|
|
1346 | local var= |
|
|
1347 | cdcnt=0 |
|
|
1348 | while [[ ${cdcnt} -lt ${CDROM_TOTAL_CDS} ]] ; do |
|
|
1349 | cdcnt=$((cdcnt + 1)) |
|
|
1350 | var="CD_ROOT_${cdcnt}" |
|
|
1351 | if [[ -z ${!var} ]] ; then |
|
|
1352 | eerror "You must either use just the CD_ROOT" |
|
|
1353 | eerror "or specify ALL the CD_ROOT_X variables." |
|
|
1354 | eerror "In this case, you will need ${CDROM_TOTAL_CDS} CD_ROOT_X variables." |
|
|
1355 | die "could not locate CD_ROOT_${cdcnt}" |
|
|
1356 | fi |
|
|
1357 | export CDROM_ROOTS_${cdcnt}="${!var}" |
|
|
1358 | done |
|
|
1359 | export CDROM_ROOT=${CDROM_ROOTS_1} |
|
|
1360 | einfo "Found CD #${CDROM_CURRENT_CD} root at ${CDROM_ROOT}" |
|
|
1361 | return |
|
|
1362 | fi |
|
|
1363 | |
|
|
1364 | if [[ ${CDROM_TOTAL_CDS} -eq 1 ]] ; then |
|
|
1365 | einfon "This ebuild will need the " |
|
|
1366 | if [[ -z ${CDROM_NAME} ]] ; then |
|
|
1367 | echo "cdrom for ${PN}." |
|
|
1368 | else |
|
|
1369 | echo "${CDROM_NAME}." |
|
|
1370 | fi |
|
|
1371 | echo |
|
|
1372 | einfo "If you do not have the CD, but have the data files" |
|
|
1373 | einfo "mounted somewhere on your filesystem, just export" |
|
|
1374 | einfo "the variable CD_ROOT so that it points to the" |
|
|
1375 | einfo "directory containing the files." |
|
|
1376 | echo |
|
|
1377 | einfo "For example:" |
|
|
1378 | einfo "export CD_ROOT=/mnt/cdrom" |
|
|
1379 | echo |
|
|
1380 | else |
|
|
1381 | einfo "This package will need access to ${CDROM_TOTAL_CDS} cds." |
|
|
1382 | cdcnt=0 |
|
|
1383 | while [[ ${cdcnt} -lt ${CDROM_TOTAL_CDS} ]] ; do |
|
|
1384 | cdcnt=$((cdcnt + 1)) |
|
|
1385 | var="CDROM_NAME_${cdcnt}" |
|
|
1386 | [[ ! -z ${!var} ]] && einfo " CD ${cdcnt}: ${!var}" |
|
|
1387 | done |
|
|
1388 | echo |
|
|
1389 | einfo "If you do not have the CDs, but have the data files" |
|
|
1390 | einfo "mounted somewhere on your filesystem, just export" |
|
|
1391 | einfo "the following variables so they point to the right place:" |
|
|
1392 | einfon "" |
|
|
1393 | cdcnt=0 |
|
|
1394 | while [[ ${cdcnt} -lt ${CDROM_TOTAL_CDS} ]] ; do |
|
|
1395 | cdcnt=$((cdcnt + 1)) |
|
|
1396 | echo -n " CD_ROOT_${cdcnt}" |
|
|
1397 | done |
|
|
1398 | echo |
|
|
1399 | einfo "Or, if you have all the files in the same place, or" |
|
|
1400 | einfo "you only have one cdrom, you can export CD_ROOT" |
|
|
1401 | einfo "and that place will be used as the same data source" |
|
|
1402 | einfo "for all the CDs." |
|
|
1403 | echo |
|
|
1404 | einfo "For example:" |
|
|
1405 | einfo "export CD_ROOT_1=/mnt/cdrom" |
|
|
1406 | echo |
|
|
1407 | fi |
|
|
1408 | export CDROM_CURRENT_CD=0 |
|
|
1409 | cdrom_load_next_cd |
|
|
1410 | } |
|
|
1411 | |
|
|
1412 | # this is only used when you need access to more than one cd. |
|
|
1413 | # when you have finished using the first cd, just call this function. |
|
|
1414 | # when it returns, CDROM_ROOT will be pointing to the second cd. |
|
|
1415 | # remember, you can only go forward in the cd chain, you can't go back. |
|
|
1416 | cdrom_load_next_cd() { |
|
|
1417 | export CDROM_CURRENT_CD=$((CDROM_CURRENT_CD + 1)) |
|
|
1418 | local var= |
|
|
1419 | |
|
|
1420 | if [[ ! -z ${CD_ROOT} ]] ; then |
|
|
1421 | einfo "Using same root as before for CD #${CDROM_CURRENT_CD}" |
|
|
1422 | return |
|
|
1423 | fi |
|
|
1424 | |
|
|
1425 | unset CDROM_ROOT |
|
|
1426 | var=CDROM_ROOTS_${CDROM_CURRENT_CD} |
|
|
1427 | if [[ -z ${!var} ]] ; then |
|
|
1428 | var="CDROM_CHECK_${CDROM_CURRENT_CD}" |
|
|
1429 | cdrom_locate_file_on_cd ${!var} |
|
|
1430 | else |
|
|
1431 | export CDROM_ROOT=${!var} |
|
|
1432 | fi |
|
|
1433 | |
|
|
1434 | einfo "Found CD #${CDROM_CURRENT_CD} root at ${CDROM_ROOT}" |
|
|
1435 | } |
|
|
1436 | |
|
|
1437 | # this is used internally by the cdrom_get_cds() and cdrom_load_next_cd() |
|
|
1438 | # functions. this should *never* be called from an ebuild. |
|
|
1439 | # all it does is try to locate a give file on a cd ... if the cd isn't |
|
|
1440 | # found, then a message asking for the user to insert the cdrom will be |
|
|
1441 | # displayed and we'll hang out here until: |
|
|
1442 | # (1) the file is found on a mounted cdrom |
|
|
1443 | # (2) the user hits CTRL+C |
|
|
1444 | cdrom_locate_file_on_cd() { |
|
|
1445 | while [[ -z ${CDROM_ROOT} ]] ; do |
|
|
1446 | local dir="$(dirname ${@})" |
|
|
1447 | local file="$(basename ${@})" |
|
|
1448 | local mline="" |
|
|
1449 | local showedmsg=0 |
|
|
1450 | |
|
|
1451 | for mline in $(mount | egrep -e '(iso|cdrom)' | awk '{print $3}') ; do |
|
|
1452 | [[ -d ${mline}/${dir} ]] || continue |
|
|
1453 | [[ ! -z $(find ${mline}/${dir} -iname ${file} -maxdepth 1) ]] \ |
|
|
1454 | && export CDROM_ROOT=${mline} |
|
|
1455 | done |
|
|
1456 | |
|
|
1457 | if [[ -z ${CDROM_ROOT} ]] ; then |
|
|
1458 | echo |
|
|
1459 | if [[ ${showedmsg} -eq 0 ]] ; then |
|
|
1460 | if [[ ${CDROM_TOTAL_CDS} -eq 1 ]] ; then |
|
|
1461 | if [[ -z ${CDROM_NAME} ]] ; then |
|
|
1462 | einfo "Please insert the cdrom for ${PN} now !" |
|
|
1463 | else |
|
|
1464 | einfo "Please insert the ${CDROM_NAME} cdrom now !" |
|
|
1465 | fi |
|
|
1466 | else |
|
|
1467 | if [[ -z ${CDROM_NAME_1} ]] ; then |
|
|
1468 | einfo "Please insert cd #${CDROM_CURRENT_CD} for ${PN} now !" |
|
|
1469 | else |
|
|
1470 | local var="CDROM_NAME_${CDROM_CURRENT_CD}" |
|
|
1471 | einfo "Please insert+mount the ${!var} cdrom now !" |
|
|
1472 | fi |
|
|
1473 | fi |
|
|
1474 | showedmsg=1 |
|
|
1475 | fi |
|
|
1476 | einfo "Press return to scan for the cd again" |
|
|
1477 | einfo "or hit CTRL+C to abort the emerge." |
|
|
1478 | read |
|
|
1479 | fi |
|
|
1480 | done |
|
|
1481 | } |
|
|
1482 | |
|
|
1483 | # Make sure that LINGUAS only contains languages that |
|
|
1484 | # a package can support |
|
|
1485 | # |
|
|
1486 | # usage: strip-linguas <allow LINGUAS> |
|
|
1487 | # strip-linguas -i <directories of .po files> |
|
|
1488 | # strip-linguas -u <directories of .po files> |
|
|
1489 | # |
|
|
1490 | # The first form allows you to specify a list of LINGUAS. |
|
|
1491 | # The -i builds a list of po files found in all the |
|
|
1492 | # directories and uses the intersection of the lists. |
|
|
1493 | # The -u builds a list of po files found in all the |
|
|
1494 | # directories and uses the union of the lists. |
|
|
1495 | strip-linguas() { |
|
|
1496 | local ls newls |
|
|
1497 | if [ "$1" == "-i" ] || [ "$1" == "-u" ] ; then |
|
|
1498 | local op="$1"; shift |
|
|
1499 | ls=" $(find "$1" -name '*.po' -printf '%f ') "; shift |
|
|
1500 | local d f |
|
|
1501 | for d in "$@" ; do |
|
|
1502 | if [ "${op}" == "-u" ] ; then |
|
|
1503 | newls="${ls}" |
|
|
1504 | else |
|
|
1505 | newls="" |
|
|
1506 | fi |
|
|
1507 | for f in $(find "$d" -name '*.po' -printf '%f ') ; do |
|
|
1508 | if [ "${op}" == "-i" ] ; then |
|
|
1509 | [ "${ls/ ${f} /}" != "${ls}" ] && newls="${newls} ${f}" |
|
|
1510 | else |
|
|
1511 | [ "${ls/ ${f} /}" == "${ls}" ] && newls="${newls} ${f}" |
|
|
1512 | fi |
|
|
1513 | done |
|
|
1514 | ls="${newls}" |
|
|
1515 | done |
|
|
1516 | ls="${ls//.po}" |
|
|
1517 | else |
|
|
1518 | ls="$@" |
|
|
1519 | fi |
|
|
1520 | |
|
|
1521 | ls=" ${ls} " |
|
|
1522 | newls="" |
|
|
1523 | for f in ${LINGUAS} ; do |
|
|
1524 | if [ "${ls/ ${f} /}" != "${ls}" ] ; then |
|
|
1525 | newls="${newls} ${f}" |
|
|
1526 | else |
|
|
1527 | ewarn "Sorry, but ${PN} does not support the ${f} LINGUA" |
|
|
1528 | fi |
|
|
1529 | done |
|
|
1530 | if [ -z "${newls}" ] ; then |
|
|
1531 | unset LINGUAS |
|
|
1532 | else |
|
|
1533 | export LINGUAS="${newls}" |
|
|
1534 | fi |
|
|
1535 | } |
|
|
1536 | |
|
|
1537 | # moved from kernel.eclass since they are generally useful outside of |
|
|
1538 | # kernel.eclass -iggy (20041002) |
|
|
1539 | |
|
|
1540 | # the following functions are useful in kernel module ebuilds, etc. |
|
|
1541 | # for an example see ivtv or drbd ebuilds |
|
|
1542 | |
|
|
1543 | # set's ARCH to match what the kernel expects |
|
|
1544 | set_arch_to_kernel() { |
|
|
1545 | export EUTILS_ECLASS_PORTAGE_ARCH="${ARCH}" |
|
|
1546 | case ${ARCH} in |
|
|
1547 | x86) export ARCH="i386";; |
|
|
1548 | amd64) export ARCH="x86_64";; |
|
|
1549 | hppa) export ARCH="parisc";; |
|
|
1550 | mips) export ARCH="mips";; |
|
|
1551 | *) export ARCH="${ARCH}";; |
|
|
1552 | esac |
|
|
1553 | } |
|
|
1554 | |
|
|
1555 | # set's ARCH back to what portage expects |
|
|
1556 | set_arch_to_portage() { |
|
|
1557 | export ARCH="${EUTILS_ECLASS_PORTAGE_ARCH}" |
|
|
1558 | } |
|
|
1559 | |
|
|
1560 | # Jeremy Huddleston <eradicator@gentoo.org>: |
|
|
1561 | # preserve_old_lib /path/to/libblah.so.0 |
|
|
1562 | # preserve_old_lib_notify /path/to/libblah.so.0 |
|
|
1563 | # |
|
|
1564 | # These functions are useful when a lib in your package changes --soname. Such |
|
|
1565 | # an example might be from libogg.so.0 to libogg.so.1. Removing libogg.so.0 |
|
|
1566 | # would break packages that link against it. Most people get around this |
|
|
1567 | # by using the portage SLOT mechanism, but that is not always a relevant |
|
|
1568 | # solution, so instead you can add the following to your ebuilds: |
|
|
1569 | # |
|
|
1570 | # src_install() { |
|
|
1571 | # ... |
|
|
1572 | # preserve_old_lib /usr/$(get_libdir)/libogg.so.0 |
|
|
1573 | # ... |
|
|
1574 | # } |
|
|
1575 | # |
|
|
1576 | # pkg_postinst() { |
|
|
1577 | # ... |
|
|
1578 | # preserve_old_lib_notify /usr/$(get_libdir)/libogg.so.0 |
|
|
1579 | # ... |
|
|
1580 | # } |
|
|
1581 | |
|
|
1582 | preserve_old_lib() { |
|
|
1583 | LIB=$1 |
|
|
1584 | |
|
|
1585 | if [ -n "${LIB}" -a -f "${ROOT}${LIB}" ]; then |
|
|
1586 | SONAME=`basename ${LIB}` |
|
|
1587 | DIRNAME=`dirname ${LIB}` |
|
|
1588 | |
|
|
1589 | dodir ${DIRNAME} |
|
|
1590 | cp ${ROOT}${LIB} ${D}${DIRNAME} |
|
|
1591 | touch ${D}${LIB} |
|
|
1592 | fi |
|
|
1593 | } |
|
|
1594 | |
|
|
1595 | preserve_old_lib_notify() { |
|
|
1596 | LIB=$1 |
|
|
1597 | |
|
|
1598 | if [ -n "${LIB}" -a -f "${ROOT}${LIB}" ]; then |
|
|
1599 | SONAME=`basename ${LIB}` |
|
|
1600 | |
|
|
1601 | einfo "An old version of an installed library was detected on your system." |
|
|
1602 | einfo "In order to avoid breaking packages that link against is, this older version" |
|
|
1603 | einfo "is not being removed. In order to make full use of this newer version," |
|
|
1604 | einfo "you will need to execute the following command:" |
|
|
1605 | einfo " revdep-rebuild --soname ${SONAME}" |
|
|
1606 | einfo |
|
|
1607 | einfo "After doing that, you can safely remove ${LIB}" |
|
|
1608 | einfo "Note: 'emerge gentoolkit' to get revdep-rebuild" |
|
|
1609 | fi |
|
|
1610 | } |
|
|
1611 | |
|
|
1612 | # Hack for people to figure out if a package was built with |
|
|
1613 | # certain USE flags |
|
|
1614 | # |
|
|
1615 | # Usage: built_with_use [-a|-o] <DEPEND ATOM> <List of USE flags> |
|
|
1616 | # ex: built_with_use xchat gtk2 |
|
|
1617 | # |
|
|
1618 | # Flags: -a all USE flags should be utilized |
|
|
1619 | # -o at least one USE flag should be utilized |
|
|
1620 | # Note: the default flag is '-a' |
|
|
1621 | built_with_use() { |
|
|
1622 | local opt=$1 |
|
|
1623 | [[ ${opt:0:1} = "-" ]] && shift || opt="-a" |
|
|
1624 | |
|
|
1625 | local PKG=$(best_version $1) |
|
|
1626 | shift |
|
|
1627 | |
|
|
1628 | local USEFILE="${ROOT}/var/db/pkg/${PKG}/USE" |
|
|
1629 | [[ ! -e ${USEFILE} ]] && return 1 |
|
|
1630 | |
|
|
1631 | local USE_BUILT=$(<${USEFILE}) |
|
|
1632 | while [[ $# -gt 0 ]] ; do |
|
|
1633 | if [[ ${opt} = "-o" ]] ; then |
|
|
1634 | has $1 ${USE_BUILT} && return 0 |
|
|
1635 | else |
|
|
1636 | has $1 ${USE_BUILT} || return 1 |
|
|
1637 | fi |
|
|
1638 | shift |
|
|
1639 | done |
|
|
1640 | [[ ${opt} = "-a" ]] |
|
|
1641 | } |
|
|
1642 | |
|
|
1643 | # Many configure scripts wrongly bail when a C++ compiler |
|
|
1644 | # could not be detected. #73450 |
|
|
1645 | epunt_cxx() { |
|
|
1646 | local dir=$1 |
|
|
1647 | [[ -z ${dir} ]] && dir=${S} |
|
|
1648 | ebegin "Removing useless C++ checks" |
|
|
1649 | local f |
|
|
1650 | for f in $(find ${dir} -name configure) ; do |
|
|
1651 | patch -p0 "${f}" "${PORTDIR}/eclass/ELT-patches/nocxx/nocxx.patch" > /dev/null |
|
|
1652 | done |
|
|
1653 | eend 0 |
|
|
1654 | } |
|
|
1655 | |
|
|
1656 | # get_abi_var <VAR> [<ABI>] |
|
|
1657 | # returns the value of ${<VAR>_<ABI>} which should be set in make.defaults |
|
|
1658 | # |
|
|
1659 | # ex: |
|
|
1660 | # CFLAGS=$(get_abi_var CFLAGS sparc32) # CFLAGS=-m32 |
|
|
1661 | # |
|
|
1662 | # Note that the prefered method is to set CC="$(tc-getCC) $(get_abi_CFLAGS)" |
|
|
1663 | # This will hopefully be added to portage soon... |
|
|
1664 | # |
|
|
1665 | # If <ABI> is not specified, ${ABI} is used. |
|
|
1666 | # If <ABI> is not specified and ${ABI} is not defined, ${DEFAULT_ABI} is used. |
|
|
1667 | # If <ABI> is not specified and ${ABI} and ${DEFAULT_ABI} are not defined, we return an empty string. |
|
|
1668 | # |
|
|
1669 | # Jeremy Huddleston <eradicator@gentoo.org> |
|
|
1670 | get_abi_var() { |
|
|
1671 | local flag=${1} |
|
|
1672 | local abi |
|
|
1673 | if [ $# -gt 1 ]; then |
|
|
1674 | abi=${2} |
|
|
1675 | elif [ -n "${ABI}" ]; then |
|
|
1676 | abi=${ABI} |
|
|
1677 | elif [ -n "${DEFAULT_ABI}" ]; then |
|
|
1678 | abi=${DEFAULT_ABI} |
|
|
1679 | else |
|
|
1680 | return 1 |
|
|
1681 | fi |
|
|
1682 | |
|
|
1683 | local var="${flag}_${abi}" |
|
|
1684 | echo ${!var} |
|
|
1685 | } |
|
|
1686 | |
|
|
1687 | get_abi_CFLAGS() { get_abi_var CFLAGS ${@}; } |
|
|
1688 | get_abi_CXXFLAGS() { get_abi_var CXXFLAGS ${@}; } |
|
|
1689 | get_abi_ASFLAGS() { get_abi_var ASFLAGS ${@}; } |
|
|
1690 | get_abi_LIBDIR() { get_abi_var LIBDIR ${@}; } |