| 1 | # Copyright 1999-2002 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.91 2004/07/23 11:11:57 usata Exp $ |
|
|
4 | # |
| 3 | # Author: Martin Schlemmer <azarah@gentoo.org> |
5 | # Author: Martin Schlemmer <azarah@gentoo.org> |
| 4 | # $Header: /var/cvsroot/gentoo-x86/eclass/eutils.eclass,v 1.9 2002/12/01 15:48:27 azarah Exp $ |
6 | # |
| 5 | # This eclass is for general purpose functions that most ebuilds |
7 | # This eclass is for general purpose functions that most ebuilds |
| 6 | # have to implement themselves. |
8 | # have to implement themselves. |
| 7 | # |
9 | # |
| 8 | # NB: If you add anything, please comment it! |
10 | # NB: If you add anything, please comment it! |
| 9 | |
11 | |
| 10 | ECLASS=eutils |
12 | ECLASS=eutils |
| 11 | INHERITED="$INHERITED $ECLASS" |
13 | INHERITED="$INHERITED $ECLASS" |
| 12 | |
14 | |
| 13 | newdepend sys-devel/patch |
15 | DEPEND="!bootstrap? ( sys-devel/patch )" |
| 14 | |
16 | |
| 15 | DESCRIPTION="Based on the ${ECLASS} eclass" |
17 | DESCRIPTION="Based on the ${ECLASS} eclass" |
| 16 | |
18 | |
| 17 | # This function generate linker scripts in /usr/lib for dynamic |
19 | # This function generate linker scripts in /usr/lib for dynamic |
| 18 | # libs in /lib. This is to fix linking problems when you have |
20 | # libs in /lib. This is to fix linking problems when you have |
| … | |
… | |
| 34 | # |
36 | # |
| 35 | gen_usr_ldscript() { |
37 | gen_usr_ldscript() { |
| 36 | |
38 | |
| 37 | # Just make sure it exists |
39 | # Just make sure it exists |
| 38 | dodir /usr/lib |
40 | dodir /usr/lib |
| 39 | |
41 | |
| 40 | cat > ${D}/usr/lib/$1 <<"END_LDSCRIPT" |
42 | cat > ${D}/usr/lib/$1 <<"END_LDSCRIPT" |
| 41 | /* GNU ld script |
43 | /* GNU ld script |
| 42 | Because Gentoo have critical dynamic libraries |
44 | Because Gentoo have critical dynamic libraries |
| 43 | in /lib, and the static versions in /usr/lib, we |
45 | in /lib, and the static versions in /usr/lib, we |
| 44 | need to have a "fake" dynamic lib in /usr/lib, |
46 | need to have a "fake" dynamic lib in /usr/lib, |
| … | |
… | |
| 68 | return 0 |
70 | return 0 |
| 69 | fi |
71 | fi |
| 70 | |
72 | |
| 71 | # Get the length of $* |
73 | # Get the length of $* |
| 72 | str_length="$(echo -n "$*" | wc -m)" |
74 | str_length="$(echo -n "$*" | wc -m)" |
| 73 | |
75 | |
| 74 | while [ "$i" -lt "${str_length}" ] |
76 | while [ "$i" -lt "${str_length}" ] |
| 75 | do |
77 | do |
| 76 | echo -n "=" |
78 | echo -n "=" |
| 77 | |
79 | |
| 78 | i=$((i + 1)) |
80 | i=$((i + 1)) |
| 79 | done |
81 | done |
| 80 | |
82 | |
| 81 | echo |
83 | echo |
| 82 | |
84 | |
| … | |
… | |
| 86 | # Default directory where patches are located |
88 | # Default directory where patches are located |
| 87 | EPATCH_SOURCE="${WORKDIR}/patch" |
89 | EPATCH_SOURCE="${WORKDIR}/patch" |
| 88 | # Default extension for patches |
90 | # Default extension for patches |
| 89 | EPATCH_SUFFIX="patch.bz2" |
91 | EPATCH_SUFFIX="patch.bz2" |
| 90 | # Default options for patch |
92 | # Default options for patch |
|
|
93 | # Set -g0 to keep RCS, ClearCase, Perforce and SCCS happy. Bug #24571 |
| 91 | EPATCH_OPTS="" |
94 | EPATCH_OPTS="-g0" |
| 92 | # List of patches not to apply. Not this is only file names, |
95 | # List of patches not to apply. Not this is only file names, |
| 93 | # and not the full path .. |
96 | # and not the full path .. |
| 94 | EPATCH_EXCLUDE="" |
97 | EPATCH_EXCLUDE="" |
| 95 | # Change the printed message for a single patch. |
98 | # Change the printed message for a single patch. |
| 96 | EPATCH_SINGLE_MSG="" |
99 | EPATCH_SINGLE_MSG="" |
|
|
100 | # Force applying bulk patches even if not following the style: |
|
|
101 | # |
|
|
102 | # ??_${ARCH}_foo.${EPATCH_SUFFIX} |
|
|
103 | # |
|
|
104 | EPATCH_FORCE="no" |
| 97 | |
105 | |
| 98 | # This function is for bulk patching, or in theory for just one |
106 | # This function is for bulk patching, or in theory for just one |
| 99 | # or two patches. |
107 | # or two patches. |
| 100 | # |
108 | # |
| 101 | # It should work with .bz2, .gz, .zip and plain text patches. |
109 | # It should work with .bz2, .gz, .zip and plain text patches. |
| … | |
… | |
| 143 | fi |
151 | fi |
| 144 | |
152 | |
| 145 | if [ -n "$1" -a -f "$1" ] |
153 | if [ -n "$1" -a -f "$1" ] |
| 146 | then |
154 | then |
| 147 | SINGLE_PATCH="yes" |
155 | SINGLE_PATCH="yes" |
| 148 | |
156 | |
| 149 | local EPATCH_SOURCE="$1" |
157 | local EPATCH_SOURCE="$1" |
| 150 | local EPATCH_SUFFIX="${1##*\.}" |
158 | local EPATCH_SUFFIX="${1##*\.}" |
| 151 | |
159 | |
| 152 | elif [ -n "$1" -a -d "$1" ] |
160 | elif [ -n "$1" -a -d "$1" ] |
| 153 | then |
161 | then |
|
|
162 | # Allow no extension if EPATCH_FORCE=yes ... used by vim for example ... |
|
|
163 | if [ "${EPATCH_FORCE}" = "yes" ] && [ -z "${EPATCH_SUFFIX}" ] |
|
|
164 | then |
|
|
165 | local EPATCH_SOURCE="$1/*" |
|
|
166 | else |
| 154 | local EPATCH_SOURCE="$1/*.${EPATCH_SUFFIX}" |
167 | local EPATCH_SOURCE="$1/*.${EPATCH_SUFFIX}" |
|
|
168 | fi |
| 155 | else |
169 | else |
| 156 | if [ ! -d ${EPATCH_SOURCE} ] |
170 | if [ ! -d ${EPATCH_SOURCE} ] |
| 157 | then |
171 | then |
|
|
172 | if [ -n "$1" -a "${EPATCH_SOURCE}" = "${WORKDIR}/patch" ] |
|
|
173 | then |
|
|
174 | EPATCH_SOURCE="$1" |
|
|
175 | fi |
|
|
176 | |
| 158 | echo |
177 | echo |
| 159 | eerror "Cannot find \$EPATCH_SOURCE!" |
178 | eerror "Cannot find \$EPATCH_SOURCE! Value for \$EPATCH_SOURCE is:" |
|
|
179 | eerror |
|
|
180 | eerror " ${EPATCH_SOURCE}" |
| 160 | echo |
181 | echo |
| 161 | die "Cannot find \$EPATCH_SOURCE!" |
182 | die "Cannot find \$EPATCH_SOURCE!" |
| 162 | fi |
183 | fi |
| 163 | |
184 | |
| 164 | local EPATCH_SOURCE="${EPATCH_SOURCE}/*.${EPATCH_SUFFIX}" |
185 | local EPATCH_SOURCE="${EPATCH_SOURCE}/*.${EPATCH_SUFFIX}" |
| 165 | fi |
186 | fi |
| 166 | |
187 | |
| 167 | case ${EPATCH_SUFFIX##*\.} in |
188 | case ${EPATCH_SUFFIX##*\.} in |
| 168 | bz2) |
189 | bz2) |
| … | |
… | |
| 192 | # New ARCH dependant patch naming scheme... |
213 | # New ARCH dependant patch naming scheme... |
| 193 | # |
214 | # |
| 194 | # ???_arch_foo.patch |
215 | # ???_arch_foo.patch |
| 195 | # |
216 | # |
| 196 | if [ -f ${x} ] && \ |
217 | if [ -f ${x} ] && \ |
| 197 | [ "${SINGLE_PATCH}" = "yes" -o "${x/_all_}" != "${x}" -o "`eval echo \$\{x/_${ARCH}_\}`" != "${x}" ] |
218 | ([ "${SINGLE_PATCH}" = "yes" -o "${x/_all_}" != "${x}" -o "`eval echo \$\{x/_${ARCH}_\}`" != "${x}" ] || \ |
|
|
219 | [ "${EPATCH_FORCE}" = "yes" ]) |
| 198 | then |
220 | then |
| 199 | local count=0 |
221 | local count=0 |
| 200 | local popts="${EPATCH_OPTS}" |
222 | local popts="${EPATCH_OPTS}" |
| 201 | |
223 | |
| 202 | if [ -n "${EPATCH_EXCLUDE}" ] |
224 | if [ -n "${EPATCH_EXCLUDE}" ] |
| … | |
… | |
| 204 | if [ "`eval echo \$\{EPATCH_EXCLUDE/${x##*/}\}`" != "${EPATCH_EXCLUDE}" ] |
226 | if [ "`eval echo \$\{EPATCH_EXCLUDE/${x##*/}\}`" != "${EPATCH_EXCLUDE}" ] |
| 205 | then |
227 | then |
| 206 | continue |
228 | continue |
| 207 | fi |
229 | fi |
| 208 | fi |
230 | fi |
| 209 | |
231 | |
| 210 | if [ "${SINGLE_PATCH}" = "yes" ] |
232 | if [ "${SINGLE_PATCH}" = "yes" ] |
| 211 | then |
233 | then |
| 212 | if [ -n "${EPATCH_SINGLE_MSG}" ] |
234 | if [ -n "${EPATCH_SINGLE_MSG}" ] |
| 213 | then |
235 | then |
| 214 | einfo "${EPATCH_SINGLE_MSG}" |
236 | einfo "${EPATCH_SINGLE_MSG}" |
| … | |
… | |
| 234 | echo -n "PIPE_COMMAND: " >> ${STDERR_TARGET%/*}/${x##*/}-${STDERR_TARGET##*/} |
256 | echo -n "PIPE_COMMAND: " >> ${STDERR_TARGET%/*}/${x##*/}-${STDERR_TARGET##*/} |
| 235 | echo "${PIPE_CMD} ${x} > ${PATCH_TARGET}" >> ${STDERR_TARGET%/*}/${x##*/}-${STDERR_TARGET##*/} |
257 | echo "${PIPE_CMD} ${x} > ${PATCH_TARGET}" >> ${STDERR_TARGET%/*}/${x##*/}-${STDERR_TARGET##*/} |
| 236 | else |
258 | else |
| 237 | PATCH_TARGET="${x}" |
259 | PATCH_TARGET="${x}" |
| 238 | fi |
260 | fi |
| 239 | |
261 | |
| 240 | echo -n "PATCH COMMAND: " >> ${STDERR_TARGET%/*}/${x##*/}-${STDERR_TARGET##*/} |
262 | echo -n "PATCH COMMAND: " >> ${STDERR_TARGET%/*}/${x##*/}-${STDERR_TARGET##*/} |
| 241 | echo "patch ${popts} -p${count} < ${PATCH_TARGET}" >> ${STDERR_TARGET%/*}/${x##*/}-${STDERR_TARGET##*/} |
263 | echo "patch -p${count} ${popts} < ${PATCH_TARGET}" >> ${STDERR_TARGET%/*}/${x##*/}-${STDERR_TARGET##*/} |
| 242 | |
264 | |
| 243 | echo >> ${STDERR_TARGET%/*}/${x##*/}-${STDERR_TARGET##*/} |
265 | echo >> ${STDERR_TARGET%/*}/${x##*/}-${STDERR_TARGET##*/} |
| 244 | draw_line "***** ${x##*/} *****" >> ${STDERR_TARGET%/*}/${x##*/}-${STDERR_TARGET##*/} |
266 | draw_line "***** ${x##*/} *****" >> ${STDERR_TARGET%/*}/${x##*/}-${STDERR_TARGET##*/} |
| 245 | |
267 | |
| 246 | if [ "${PATCH_SUFFIX}" != "patch" ] |
268 | if [ "${PATCH_SUFFIX}" != "patch" ] |
| 247 | then |
269 | then |
| … | |
… | |
| 252 | #die "Could not extract patch!" |
274 | #die "Could not extract patch!" |
| 253 | count=5 |
275 | count=5 |
| 254 | break |
276 | break |
| 255 | fi |
277 | fi |
| 256 | fi |
278 | fi |
| 257 | |
279 | |
| 258 | if patch ${popts} --dry-run -f -p${count} < ${PATCH_TARGET} >> ${STDERR_TARGET%/*}/${x##*/}-${STDERR_TARGET##*/} 2>&1 |
280 | if (cat ${PATCH_TARGET} | patch -p${count} ${popts} --dry-run -f) >> ${STDERR_TARGET%/*}/${x##*/}-${STDERR_TARGET##*/} 2>&1 |
| 259 | then |
281 | then |
| 260 | draw_line "***** ${x##*/} *****" > ${STDERR_TARGET%/*}/${x##*/}-${STDERR_TARGET##*/}.real |
282 | draw_line "***** ${x##*/} *****" > ${STDERR_TARGET%/*}/${x##*/}-${STDERR_TARGET##*/}.real |
| 261 | echo >> ${STDERR_TARGET%/*}/${x##*/}-${STDERR_TARGET##*/}.real |
283 | echo >> ${STDERR_TARGET%/*}/${x##*/}-${STDERR_TARGET##*/}.real |
| 262 | echo "ACTUALLY APPLYING ${x##*/}..." >> ${STDERR_TARGET%/*}/${x##*/}-${STDERR_TARGET##*/}.real |
284 | echo "ACTUALLY APPLYING ${x##*/}..." >> ${STDERR_TARGET%/*}/${x##*/}-${STDERR_TARGET##*/}.real |
| 263 | echo >> ${STDERR_TARGET%/*}/${x##*/}-${STDERR_TARGET##*/}.real |
285 | echo >> ${STDERR_TARGET%/*}/${x##*/}-${STDERR_TARGET##*/}.real |
| 264 | draw_line "***** ${x##*/} *****" >> ${STDERR_TARGET%/*}/${x##*/}-${STDERR_TARGET##*/}.real |
286 | draw_line "***** ${x##*/} *****" >> ${STDERR_TARGET%/*}/${x##*/}-${STDERR_TARGET##*/}.real |
| 265 | |
287 | |
| 266 | patch ${popts} -p${count} < ${PATCH_TARGET} >> ${STDERR_TARGET%/*}/${x##*/}-${STDERR_TARGET##*/}.real 2>&1 |
288 | cat ${PATCH_TARGET} | patch -p${count} ${popts} >> ${STDERR_TARGET%/*}/${x##*/}-${STDERR_TARGET##*/}.real 2>&1 |
| 267 | |
289 | |
| 268 | if [ "$?" -ne 0 ] |
290 | if [ "$?" -ne 0 ] |
| 269 | then |
291 | then |
| 270 | cat ${STDERR_TARGET%/*}/${x##*/}-${STDERR_TARGET##*/}.real >> ${STDERR_TARGET%/*}/${x##*/}-${STDERR_TARGET##*/} |
292 | cat ${STDERR_TARGET%/*}/${x##*/}-${STDERR_TARGET##*/}.real >> ${STDERR_TARGET%/*}/${x##*/}-${STDERR_TARGET##*/} |
| 271 | echo |
293 | echo |
| … | |
… | |
| 274 | #die "Real world sux compared to the dreamworld!" |
296 | #die "Real world sux compared to the dreamworld!" |
| 275 | count=5 |
297 | count=5 |
| 276 | fi |
298 | fi |
| 277 | |
299 | |
| 278 | rm -f ${STDERR_TARGET%/*}/${x##*/}-${STDERR_TARGET##*/}.real |
300 | rm -f ${STDERR_TARGET%/*}/${x##*/}-${STDERR_TARGET##*/}.real |
| 279 | |
301 | |
| 280 | break |
302 | break |
| 281 | fi |
303 | fi |
| 282 | |
304 | |
| 283 | count=$((count + 1)) |
305 | count=$((count + 1)) |
| 284 | done |
306 | done |
| … | |
… | |
| 309 | then |
331 | then |
| 310 | einfo "Done with patching" |
332 | einfo "Done with patching" |
| 311 | fi |
333 | fi |
| 312 | } |
334 | } |
| 313 | |
335 | |
|
|
336 | # This function return true if we are using the NPTL pthreads |
|
|
337 | # implementation. |
|
|
338 | # |
|
|
339 | # <azarah@gentoo.org> (06 March 2003) |
|
|
340 | # |
|
|
341 | |
|
|
342 | have_NPTL() { |
|
|
343 | |
|
|
344 | cat > ${T}/test-nptl.c <<-"END" |
|
|
345 | #define _XOPEN_SOURCE |
|
|
346 | #include <unistd.h> |
|
|
347 | #include <stdio.h> |
|
|
348 | |
|
|
349 | int main() |
|
|
350 | { |
|
|
351 | char buf[255]; |
|
|
352 | char *str = buf; |
|
|
353 | |
|
|
354 | confstr(_CS_GNU_LIBPTHREAD_VERSION, str, 255); |
|
|
355 | if (NULL != str) { |
|
|
356 | printf("%s\n", str); |
|
|
357 | if (NULL != strstr(str, "NPTL")) |
|
|
358 | return 0; |
|
|
359 | } |
|
|
360 | |
|
|
361 | return 1; |
|
|
362 | } |
|
|
363 | END |
|
|
364 | |
|
|
365 | einfon "Checking for _CS_GNU_LIBPTHREAD_VERSION support in glibc ... " |
|
|
366 | if gcc -o ${T}/nptl ${T}/test-nptl.c &> /dev/null |
|
|
367 | then |
|
|
368 | echo "yes" |
|
|
369 | einfon "Checking what PTHREADS implementation we have ... " |
|
|
370 | if ${T}/nptl |
|
|
371 | then |
|
|
372 | return 0 |
|
|
373 | else |
|
|
374 | return 1 |
|
|
375 | fi |
|
|
376 | else |
|
|
377 | echo "no" |
|
|
378 | fi |
|
|
379 | |
|
|
380 | return 1 |
|
|
381 | } |
|
|
382 | |
|
|
383 | # This function check how many cpu's are present, and then set |
|
|
384 | # -j in MAKEOPTS accordingly. |
|
|
385 | # |
|
|
386 | # Thanks to nall <nall@gentoo.org> for this. |
|
|
387 | # |
|
|
388 | get_number_of_jobs() { |
|
|
389 | local jobs=0 |
|
|
390 | |
|
|
391 | if [ ! -r /proc/cpuinfo ] |
|
|
392 | then |
|
|
393 | return 1 |
|
|
394 | fi |
|
|
395 | |
|
|
396 | # This bit is from H?kan Wessberg <nacka-gentoo@refug.org>, bug #13565. |
|
|
397 | if [ "`egrep "^[[:space:]]*MAKEOPTS=" /etc/make.conf | wc -l`" -gt 0 ] |
|
|
398 | then |
|
|
399 | ADMINOPTS="`egrep "^[[:space:]]*MAKEOPTS=" /etc/make.conf | cut -d= -f2 | sed 's/\"//g'`" |
|
|
400 | ADMINPARAM="`echo ${ADMINOPTS} | gawk '{match($0, /-j *[0-9]*/, opt); print opt[0]}'`" |
|
|
401 | ADMINPARAM="${ADMINPARAM/-j}" |
|
|
402 | fi |
|
|
403 | |
|
|
404 | export MAKEOPTS="`echo ${MAKEOPTS} | sed -e 's:-j *[0-9]*::g'`" |
|
|
405 | |
|
|
406 | if [ "${ARCH}" = "amd64" -o "${ARCH}" = "x86" -o "${ARCH}" = "hppa" -o \ |
|
|
407 | "${ARCH}" = "arm" -o "${ARCH}" = "mips" -o "${ARCH}" = "ia64" ] |
|
|
408 | then |
|
|
409 | # these archs will always have "[Pp]rocessor" |
|
|
410 | jobs="$((`grep -c ^[Pp]rocessor /proc/cpuinfo` * 2))" |
|
|
411 | |
|
|
412 | elif [ "${ARCH}" = "sparc" -o "${ARCH}" = "sparc64" ] |
|
|
413 | then |
|
|
414 | # sparc always has "ncpus active" |
|
|
415 | jobs="$((`grep "^ncpus active" /proc/cpuinfo | sed -e "s/^.*: //"` * 2))" |
|
|
416 | |
|
|
417 | elif [ "${ARCH}" = "alpha" ] |
|
|
418 | then |
|
|
419 | # alpha has "cpus active", but only when compiled with SMP |
|
|
420 | if [ "`grep -c "^cpus active" /proc/cpuinfo`" -eq 1 ] |
|
|
421 | then |
|
|
422 | jobs="$((`grep "^cpus active" /proc/cpuinfo | sed -e "s/^.*: //"` * 2))" |
|
|
423 | else |
|
|
424 | jobs=2 |
|
|
425 | fi |
|
|
426 | |
|
|
427 | elif [ "${ARCH}" = "ppc" -o "${ARCH}" = "ppc64" ] |
|
|
428 | then |
|
|
429 | # ppc has "processor", but only when compiled with SMP |
|
|
430 | if [ "`grep -c "^processor" /proc/cpuinfo`" -eq 1 ] |
|
|
431 | then |
|
|
432 | jobs="$((`grep -c ^processor /proc/cpuinfo` * 2))" |
|
|
433 | else |
|
|
434 | jobs=2 |
|
|
435 | fi |
|
|
436 | elif [ "${ARCH}" = "s390" ] |
|
|
437 | then |
|
|
438 | # s390 has "# processors : " |
|
|
439 | jobs="$((`grep "^\# processors" /proc/cpuinfo | sed -e "s/^.*: //"` * 2))" |
|
|
440 | else |
|
|
441 | jobs="$((`grep -c ^cpu /proc/cpuinfo` * 2))" |
|
|
442 | die "Unknown ARCH -- ${ARCH}!" |
|
|
443 | fi |
|
|
444 | |
|
|
445 | # Make sure the number is valid ... |
|
|
446 | if [ "${jobs}" -lt 1 ] |
|
|
447 | then |
|
|
448 | jobs=1 |
|
|
449 | fi |
|
|
450 | |
|
|
451 | if [ -n "${ADMINPARAM}" ] |
|
|
452 | then |
|
|
453 | if [ "${jobs}" -gt "${ADMINPARAM}" ] |
|
|
454 | then |
|
|
455 | einfo "Setting make jobs to \"-j${ADMINPARAM}\" to ensure successful merge..." |
|
|
456 | export MAKEOPTS="${MAKEOPTS} -j${ADMINPARAM}" |
|
|
457 | else |
|
|
458 | einfo "Setting make jobs to \"-j${jobs}\" to ensure successful merge..." |
|
|
459 | export MAKEOPTS="${MAKEOPTS} -j${jobs}" |
|
|
460 | fi |
|
|
461 | fi |
|
|
462 | } |
|
|
463 | |
|
|
464 | # Cheap replacement for when debianutils (and thus mktemp) |
|
|
465 | # does not exist on the users system |
|
|
466 | # vapier@gentoo.org |
|
|
467 | # |
|
|
468 | # Takes just 1 parameter (the directory to create tmpfile in) |
|
|
469 | mymktemp() { |
|
|
470 | local topdir="$1" |
|
|
471 | |
|
|
472 | [ -z "${topdir}" ] && topdir=/tmp |
|
|
473 | if [ "`which mktemp 2>/dev/null`" ] |
|
|
474 | then |
|
|
475 | mktemp -p ${topdir} |
|
|
476 | else |
|
|
477 | local tmp="${topdir}/tmp.${RANDOM}.${RANDOM}.${RANDOM}" |
|
|
478 | touch ${tmp} |
|
|
479 | echo ${tmp} |
|
|
480 | fi |
|
|
481 | } |
|
|
482 | |
|
|
483 | # Small wrapper for getent (Linux) and nidump (Mac OS X) |
|
|
484 | # used in enewuser()/enewgroup() |
|
|
485 | # Joe Jezak <josejx@gmail.com> and usata@gentoo.org |
|
|
486 | # |
|
|
487 | # egetent(database, key) |
|
|
488 | egetent() { |
|
|
489 | if [ "${ARCH}" == "macos" ] ; then |
|
|
490 | case "$2" in |
|
|
491 | *[!0-9]*) # Non numeric |
|
|
492 | nidump $1 . | awk -F":" "{ if (\$1 ~ /^$2$/) {print \$0;exit;} }" |
|
|
493 | ;; |
|
|
494 | *) # Numeric |
|
|
495 | nidump $1 . | awk -F":" "{ if (\$3 == $2) {print \$0;exit;} }" |
|
|
496 | ;; |
|
|
497 | esac |
|
|
498 | else |
|
|
499 | getent $1 $2 |
|
|
500 | fi |
|
|
501 | } |
|
|
502 | |
|
|
503 | # Simplify/standardize adding users to the system |
|
|
504 | # vapier@gentoo.org |
|
|
505 | # |
|
|
506 | # enewuser(username, uid, shell, homedir, groups, extra options) |
|
|
507 | # |
|
|
508 | # Default values if you do not specify any: |
|
|
509 | # username: REQUIRED ! |
|
|
510 | # uid: next available (see useradd(8)) |
|
|
511 | # note: pass -1 to get default behavior |
|
|
512 | # shell: /bin/false |
|
|
513 | # homedir: /dev/null |
|
|
514 | # groups: none |
|
|
515 | # extra: comment of 'added by portage for ${PN}' |
|
|
516 | enewuser() { |
|
|
517 | # get the username |
|
|
518 | local euser="$1"; shift |
|
|
519 | if [ -z "${euser}" ] |
|
|
520 | then |
|
|
521 | eerror "No username specified !" |
|
|
522 | die "Cannot call enewuser without a username" |
|
|
523 | fi |
|
|
524 | |
|
|
525 | # lets see if the username already exists |
|
|
526 | if [ "${euser}" == "`egetent passwd \"${euser}\" | cut -d: -f1`" ] |
|
|
527 | then |
|
|
528 | return 0 |
|
|
529 | fi |
|
|
530 | einfo "Adding user '${euser}' to your system ..." |
|
|
531 | |
|
|
532 | # options to pass to useradd |
|
|
533 | local opts= |
|
|
534 | |
|
|
535 | # handle uid |
|
|
536 | local euid="$1"; shift |
|
|
537 | if [ ! -z "${euid}" ] && [ "${euid}" != "-1" ] |
|
|
538 | then |
|
|
539 | if [ "${euid}" -gt 0 ] |
|
|
540 | then |
|
|
541 | if [ ! -z "`egetent passwd ${euid}`" ] |
|
|
542 | then |
|
|
543 | euid="next" |
|
|
544 | fi |
|
|
545 | else |
|
|
546 | eerror "Userid given but is not greater than 0 !" |
|
|
547 | die "${euid} is not a valid UID" |
|
|
548 | fi |
|
|
549 | else |
|
|
550 | euid="next" |
|
|
551 | fi |
|
|
552 | if [ "${euid}" == "next" ] |
|
|
553 | then |
|
|
554 | local pwrange |
|
|
555 | if [ "${ARCH}" == "macos" ] ; then |
|
|
556 | pwrange="`jot 898 101`" |
|
|
557 | else |
|
|
558 | pwrange="`seq 101 999`" |
|
|
559 | fi |
|
|
560 | for euid in ${pwrange} ; do |
|
|
561 | [ -z "`egetent passwd ${euid}`" ] && break |
|
|
562 | done |
|
|
563 | fi |
|
|
564 | opts="${opts} -u ${euid}" |
|
|
565 | einfo " - Userid: ${euid}" |
|
|
566 | |
|
|
567 | # handle shell |
|
|
568 | local eshell="$1"; shift |
|
|
569 | if [ ! -z "${eshell}" ] && [ "${eshell}" != "-1" ] |
|
|
570 | then |
|
|
571 | if [ ! -e "${eshell}" ] |
|
|
572 | then |
|
|
573 | eerror "A shell was specified but it does not exist !" |
|
|
574 | die "${eshell} does not exist" |
|
|
575 | fi |
|
|
576 | else |
|
|
577 | eshell="/bin/false" |
|
|
578 | fi |
|
|
579 | einfo " - Shell: ${eshell}" |
|
|
580 | opts="${opts} -s ${eshell}" |
|
|
581 | |
|
|
582 | # handle homedir |
|
|
583 | local ehome="$1"; shift |
|
|
584 | if [ -z "${ehome}" ] && [ "${eshell}" != "-1" ] |
|
|
585 | then |
|
|
586 | ehome="/dev/null" |
|
|
587 | fi |
|
|
588 | einfo " - Home: ${ehome}" |
|
|
589 | opts="${opts} -d ${ehome}" |
|
|
590 | |
|
|
591 | # handle groups |
|
|
592 | local egroups="$1"; shift |
|
|
593 | if [ ! -z "${egroups}" ] |
|
|
594 | then |
|
|
595 | local oldifs="${IFS}" |
|
|
596 | export IFS="," |
|
|
597 | for g in ${egroups} |
|
|
598 | do |
|
|
599 | if [ -z "`egetent group \"${g}\"`" ] |
|
|
600 | then |
|
|
601 | eerror "You must add group ${g} to the system first" |
|
|
602 | die "${g} is not a valid GID" |
|
|
603 | fi |
|
|
604 | done |
|
|
605 | export IFS="${oldifs}" |
|
|
606 | opts="${opts} -g ${egroups}" |
|
|
607 | else |
|
|
608 | egroups="(none)" |
|
|
609 | fi |
|
|
610 | einfo " - Groups: ${egroups}" |
|
|
611 | |
|
|
612 | # handle extra and add the user |
|
|
613 | local eextra="$@" |
|
|
614 | local oldsandbox="${SANDBOX_ON}" |
|
|
615 | export SANDBOX_ON="0" |
|
|
616 | if [ "${ARCH}" == "macos" ]; |
|
|
617 | then |
|
|
618 | ### Make the user |
|
|
619 | if [ -z "${eextra}" ] |
|
|
620 | then |
|
|
621 | dscl . create /users/${euser} uid ${euid} |
|
|
622 | dscl . create /users/${euser} shell ${eshell} |
|
|
623 | dscl . create /users/${euser} home ${ehome} |
|
|
624 | dscl . create /users/${euser} realname "added by portage for ${PN}" |
|
|
625 | ### Add the user to the groups specified |
|
|
626 | for g in ${egroups} |
|
|
627 | do |
|
|
628 | dscl . merge /groups/${g} users ${euser} |
|
|
629 | done |
|
|
630 | else |
|
|
631 | einfo "Extra options are not supported on macos yet" |
|
|
632 | einfo "Please report the ebuild along with the info below" |
|
|
633 | einfo "eextra: ${eextra}" |
|
|
634 | die "Required function missing" |
|
|
635 | fi |
|
|
636 | else |
|
|
637 | if [ -z "${eextra}" ] |
|
|
638 | then |
|
|
639 | useradd ${opts} ${euser} \ |
|
|
640 | -c "added by portage for ${PN}" \ |
|
|
641 | || die "enewuser failed" |
|
|
642 | else |
|
|
643 | einfo " - Extra: ${eextra}" |
|
|
644 | useradd ${opts} ${euser} ${eextra} \ |
|
|
645 | || die "enewuser failed" |
|
|
646 | fi |
|
|
647 | fi |
|
|
648 | export SANDBOX_ON="${oldsandbox}" |
|
|
649 | |
|
|
650 | if [ ! -e "${ehome}" ] && [ ! -e "${D}/${ehome}" ] |
|
|
651 | then |
|
|
652 | einfo " - Creating ${ehome} in ${D}" |
|
|
653 | dodir ${ehome} |
|
|
654 | fowners ${euser} ${ehome} |
|
|
655 | fperms 755 ${ehome} |
|
|
656 | fi |
|
|
657 | } |
|
|
658 | |
|
|
659 | # Simplify/standardize adding groups to the system |
|
|
660 | # vapier@gentoo.org |
|
|
661 | # |
|
|
662 | # enewgroup(group, gid) |
|
|
663 | # |
|
|
664 | # Default values if you do not specify any: |
|
|
665 | # groupname: REQUIRED ! |
|
|
666 | # gid: next available (see groupadd(8)) |
|
|
667 | # extra: none |
|
|
668 | enewgroup() { |
|
|
669 | # get the group |
|
|
670 | local egroup="$1"; shift |
|
|
671 | if [ -z "${egroup}" ] |
|
|
672 | then |
|
|
673 | eerror "No group specified !" |
|
|
674 | die "Cannot call enewgroup without a group" |
|
|
675 | fi |
|
|
676 | |
|
|
677 | # see if group already exists |
|
|
678 | if [ "${egroup}" == "`egetent group \"${egroup}\" | cut -d: -f1`" ] |
|
|
679 | then |
|
|
680 | return 0 |
|
|
681 | fi |
|
|
682 | einfo "Adding group '${egroup}' to your system ..." |
|
|
683 | |
|
|
684 | # options to pass to useradd |
|
|
685 | local opts= |
|
|
686 | |
|
|
687 | # handle gid |
|
|
688 | local egid="$1"; shift |
|
|
689 | if [ ! -z "${egid}" ] |
|
|
690 | then |
|
|
691 | if [ "${egid}" -gt 0 ] |
|
|
692 | then |
|
|
693 | if [ -z "`egetent group ${egid}`" ] |
|
|
694 | then |
|
|
695 | if [ "${ARCH}" == "macos" ] ; then |
|
|
696 | opts="${opts} ${egid}" |
|
|
697 | else |
|
|
698 | opts="${opts} -g ${egid}" |
|
|
699 | fi |
|
|
700 | else |
|
|
701 | egid="next available; requested gid taken" |
|
|
702 | fi |
|
|
703 | else |
|
|
704 | eerror "Groupid given but is not greater than 0 !" |
|
|
705 | die "${egid} is not a valid GID" |
|
|
706 | fi |
|
|
707 | else |
|
|
708 | egid="next available" |
|
|
709 | fi |
|
|
710 | einfo " - Groupid: ${egid}" |
|
|
711 | |
|
|
712 | # handle extra |
|
|
713 | local eextra="$@" |
|
|
714 | opts="${opts} ${eextra}" |
|
|
715 | |
|
|
716 | # add the group |
|
|
717 | local oldsandbox="${SANDBOX_ON}" |
|
|
718 | export SANDBOX_ON="0" |
|
|
719 | if [ "${ARCH}" == "macos" ]; |
|
|
720 | then |
|
|
721 | if [ ! -z "${eextra}" ]; |
|
|
722 | then |
|
|
723 | einfo "Extra options are not supported on macos yet" |
|
|
724 | einfo "Please report the ebuild along with the info below" |
|
|
725 | einfo "eextra: ${eextra}" |
|
|
726 | die "Required function missing" |
|
|
727 | fi |
|
|
728 | |
|
|
729 | # If we need the next available |
|
|
730 | case ${egid} in |
|
|
731 | *[!0-9]*) # Non numeric |
|
|
732 | for egid in `jot 898 101`; do |
|
|
733 | [ -z "`egetent group ${egid}`" ] && break |
|
|
734 | done |
|
|
735 | esac |
|
|
736 | dscl . create /groups/${egroup} gid ${egid} |
|
|
737 | dscl . create /groups/${egroup} passwd '*' |
|
|
738 | else |
|
|
739 | groupadd ${opts} ${egroup} || die "enewgroup failed" |
|
|
740 | fi |
|
|
741 | export SANDBOX_ON="${oldsandbox}" |
|
|
742 | } |
|
|
743 | |
|
|
744 | # Simple script to replace 'dos2unix' binaries |
|
|
745 | # vapier@gentoo.org |
|
|
746 | # |
|
|
747 | # edos2unix(file, <more files>...) |
|
|
748 | edos2unix() { |
|
|
749 | for f in "$@" |
|
|
750 | do |
|
|
751 | cp "${f}" ${T}/edos2unix |
|
|
752 | sed 's/\r$//' ${T}/edos2unix > "${f}" |
|
|
753 | done |
|
|
754 | } |
|
|
755 | |
|
|
756 | # Make a desktop file ! |
|
|
757 | # Great for making those icons in kde/gnome startmenu ! |
|
|
758 | # Amaze your friends ! Get the women ! Join today ! |
|
|
759 | # gnome2 /usr/share/applications |
|
|
760 | # gnome1 /usr/share/gnome/apps/ |
|
|
761 | # KDE ${KDEDIR}/share/applnk /usr/share/applnk |
|
|
762 | # |
|
|
763 | # make_desktop_entry(<binary>, [name], [icon], [type], [path]) |
|
|
764 | # |
|
|
765 | # binary: what binary does the app run with ? |
|
|
766 | # name: the name that will show up in the menu |
|
|
767 | # icon: give your little like a pretty little icon ... |
|
|
768 | # this can be relative (to /usr/share/pixmaps) or |
|
|
769 | # a full path to an icon |
|
|
770 | # type: what kind of application is this ? for categories: |
|
|
771 | # http://www.freedesktop.org/standards/menu-spec/ |
|
|
772 | # path: if your app needs to startup in a specific dir |
|
|
773 | make_desktop_entry() { |
|
|
774 | [ -z "$1" ] && eerror "You must specify the executable" && return 1 |
|
|
775 | |
|
|
776 | local exec="${1}" |
|
|
777 | local name="${2:-${PN}}" |
|
|
778 | local icon="${3:-${PN}.png}" |
|
|
779 | local type="${4}" |
|
|
780 | local subdir="${6}" |
|
|
781 | local path="${5:-${GAMES_PREFIX}}" |
|
|
782 | if [ -z "${type}" ] |
|
|
783 | then |
|
|
784 | case ${CATEGORY} in |
|
|
785 | "app-emulation") |
|
|
786 | type=Emulator |
|
|
787 | subdir="Emulation" |
|
|
788 | ;; |
|
|
789 | "games-"*) |
|
|
790 | type=Game |
|
|
791 | subdir="Games" |
|
|
792 | ;; |
|
|
793 | "net-"*) |
|
|
794 | type=Network |
|
|
795 | subdir="${type}" |
|
|
796 | ;; |
|
|
797 | *) |
|
|
798 | type= |
|
|
799 | subdir= |
|
|
800 | ;; |
|
|
801 | esac |
|
|
802 | fi |
|
|
803 | local desktop="${T}/${exec}.desktop" |
|
|
804 | |
|
|
805 | echo "[Desktop Entry] |
|
|
806 | Encoding=UTF-8 |
|
|
807 | Version=0.9.2 |
|
|
808 | Name=${name} |
|
|
809 | Type=Application |
|
|
810 | Comment=${DESCRIPTION} |
|
|
811 | Exec=${exec} |
|
|
812 | Path=${path} |
|
|
813 | Icon=${icon} |
|
|
814 | Categories=Application;${type};" > ${desktop} |
|
|
815 | |
|
|
816 | if [ -d "/usr/share/applications" ] |
|
|
817 | then |
|
|
818 | insinto /usr/share/applications |
|
|
819 | doins ${desktop} |
|
|
820 | fi |
|
|
821 | |
|
|
822 | #if [ -d "/usr/share/gnome/apps" ] |
|
|
823 | #then |
|
|
824 | # insinto /usr/share/gnome/apps/Games |
|
|
825 | # doins ${desktop} |
|
|
826 | #fi |
|
|
827 | |
|
|
828 | #if [ ! -z "`ls /usr/kde/* 2>/dev/null`" ] |
|
|
829 | #then |
|
|
830 | # for ver in /usr/kde/* |
|
|
831 | # do |
|
|
832 | # insinto ${ver}/share/applnk/Games |
|
|
833 | # doins ${desktop} |
|
|
834 | # done |
|
|
835 | #fi |
|
|
836 | |
|
|
837 | if [ -d "/usr/share/applnk" ] |
|
|
838 | then |
|
|
839 | insinto /usr/share/applnk/${subdir} |
|
|
840 | doins ${desktop} |
|
|
841 | fi |
|
|
842 | |
|
|
843 | return 0 |
|
|
844 | } |
|
|
845 | |
|
|
846 | # for internal use only (unpack_pdv and unpack_makeself) |
|
|
847 | find_unpackable_file() { |
|
|
848 | local src="$1" |
|
|
849 | if [ -z "${src}" ] |
|
|
850 | then |
|
|
851 | src="${DISTDIR}/${A}" |
|
|
852 | else |
|
|
853 | if [ -e "${DISTDIR}/${src}" ] |
|
|
854 | then |
|
|
855 | src="${DISTDIR}/${src}" |
|
|
856 | elif [ -e "${PWD}/${src}" ] |
|
|
857 | then |
|
|
858 | src="${PWD}/${src}" |
|
|
859 | elif [ -e "${src}" ] |
|
|
860 | then |
|
|
861 | src="${src}" |
|
|
862 | fi |
|
|
863 | fi |
|
|
864 | [ ! -e "${src}" ] && die "Could not find requested archive ${src}" |
|
|
865 | echo "${src}" |
|
|
866 | } |
|
|
867 | |
|
|
868 | # Unpack those pesky pdv generated files ... |
|
|
869 | # They're self-unpacking programs with the binary package stuffed in |
|
|
870 | # the middle of the archive. Valve seems to use it a lot ... too bad |
|
|
871 | # it seems to like to segfault a lot :(. So lets take it apart ourselves. |
|
|
872 | # |
|
|
873 | # Usage: unpack_pdv [file to unpack] [size of off_t] |
|
|
874 | # - you have to specify the off_t size ... i have no idea how to extract that |
|
|
875 | # information out of the binary executable myself. basically you pass in |
|
|
876 | # the size of the off_t type (in bytes) on the machine that built the pdv |
|
|
877 | # archive. one way to determine this is by running the following commands: |
|
|
878 | # strings <pdv archive> | grep lseek |
|
|
879 | # strace -elseek <pdv archive> |
|
|
880 | # basically look for the first lseek command (we do the strings/grep because |
|
|
881 | # sometimes the function call is _llseek or something) and steal the 2nd |
|
|
882 | # parameter. here is an example: |
|
|
883 | # root@vapier 0 pdv_unpack # strings hldsupdatetool.bin | grep lseek |
|
|
884 | # lseek |
|
|
885 | # root@vapier 0 pdv_unpack # strace -elseek ./hldsupdatetool.bin |
|
|
886 | # lseek(3, -4, SEEK_END) = 2981250 |
|
|
887 | # thus we would pass in the value of '4' as the second parameter. |
|
|
888 | unpack_pdv() { |
|
|
889 | local src="`find_unpackable_file $1`" |
|
|
890 | local sizeoff_t="$2" |
|
|
891 | |
|
|
892 | [ -z "${sizeoff_t}" ] && die "No idea what off_t size was used for this pdv :(" |
|
|
893 | |
|
|
894 | local shrtsrc="`basename ${src}`" |
|
|
895 | echo ">>> Unpacking ${shrtsrc} to ${PWD}" |
|
|
896 | local metaskip=`tail -c ${sizeoff_t} ${src} | hexdump -e \"%i\"` |
|
|
897 | local tailskip=`tail -c $((${sizeoff_t}*2)) ${src} | head -c ${sizeoff_t} | hexdump -e \"%i\"` |
|
|
898 | |
|
|
899 | # grab metadata for debug reasons |
|
|
900 | local metafile="`mymktemp ${T}`" |
|
|
901 | tail -c +$((${metaskip}+1)) ${src} > ${metafile} |
|
|
902 | |
|
|
903 | # rip out the final file name from the metadata |
|
|
904 | local datafile="`tail -c +$((${metaskip}+1)) ${src} | strings | head -n 1`" |
|
|
905 | datafile="`basename ${datafile}`" |
|
|
906 | |
|
|
907 | # now lets uncompress/untar the file if need be |
|
|
908 | local tmpfile="`mymktemp ${T}`" |
|
|
909 | tail -c +$((${tailskip}+1)) ${src} 2>/dev/null | head -c 512 > ${tmpfile} |
|
|
910 | |
|
|
911 | local iscompressed="`file -b ${tmpfile}`" |
|
|
912 | if [ "${iscompressed:0:8}" == "compress" ] ; then |
|
|
913 | iscompressed=1 |
|
|
914 | mv ${tmpfile}{,.Z} |
|
|
915 | gunzip ${tmpfile} |
|
|
916 | else |
|
|
917 | iscompressed=0 |
|
|
918 | fi |
|
|
919 | local istar="`file -b ${tmpfile}`" |
|
|
920 | if [ "${istar:0:9}" == "POSIX tar" ] ; then |
|
|
921 | istar=1 |
|
|
922 | else |
|
|
923 | istar=0 |
|
|
924 | fi |
|
|
925 | |
|
|
926 | #for some reason gzip dies with this ... dd cant provide buffer fast enough ? |
|
|
927 | #dd if=${src} ibs=${metaskip} count=1 \ |
|
|
928 | # | dd ibs=${tailskip} skip=1 \ |
|
|
929 | # | gzip -dc \ |
|
|
930 | # > ${datafile} |
|
|
931 | if [ ${iscompressed} -eq 1 ] ; then |
|
|
932 | if [ ${istar} -eq 1 ] ; then |
|
|
933 | tail -c +$((${tailskip}+1)) ${src} 2>/dev/null \ |
|
|
934 | | head -c $((${metaskip}-${tailskip})) \ |
|
|
935 | | tar -xzf - |
|
|
936 | else |
|
|
937 | tail -c +$((${tailskip}+1)) ${src} 2>/dev/null \ |
|
|
938 | | head -c $((${metaskip}-${tailskip})) \ |
|
|
939 | | gzip -dc \ |
|
|
940 | > ${datafile} |
|
|
941 | fi |
|
|
942 | else |
|
|
943 | if [ ${istar} -eq 1 ] ; then |
|
|
944 | tail -c +$((${tailskip}+1)) ${src} 2>/dev/null \ |
|
|
945 | | head -c $((${metaskip}-${tailskip})) \ |
|
|
946 | | tar --no-same-owner -xf - |
|
|
947 | else |
|
|
948 | tail -c +$((${tailskip}+1)) ${src} 2>/dev/null \ |
|
|
949 | | head -c $((${metaskip}-${tailskip})) \ |
|
|
950 | > ${datafile} |
|
|
951 | fi |
|
|
952 | fi |
|
|
953 | true |
|
|
954 | #[ -s "${datafile}" ] || die "failure unpacking pdv ('${metaskip}' '${tailskip}' '${datafile}')" |
|
|
955 | #assert "failure unpacking pdv ('${metaskip}' '${tailskip}' '${datafile}')" |
|
|
956 | } |
|
|
957 | |
|
|
958 | # Unpack those pesky makeself generated files ... |
|
|
959 | # They're shell scripts with the binary package tagged onto |
|
|
960 | # the end of the archive. Loki utilized the format as does |
|
|
961 | # many other game companies. |
|
|
962 | # |
|
|
963 | # Usage: unpack_makeself [file to unpack] [offset] |
|
|
964 | # - If the file is not specified then unpack will utilize ${A}. |
|
|
965 | # - If the offset is not specified then we will attempt to extract |
|
|
966 | # the proper offset from the script itself. |
|
|
967 | unpack_makeself() { |
|
|
968 | local src="`find_unpackable_file $1`" |
|
|
969 | local skip="$2" |
|
|
970 | |
|
|
971 | local shrtsrc="`basename ${src}`" |
|
|
972 | echo ">>> Unpacking ${shrtsrc} to ${PWD}" |
|
|
973 | if [ -z "${skip}" ] |
|
|
974 | then |
|
|
975 | local ver="`grep -a '#.*Makeself' ${src} | awk '{print $NF}'`" |
|
|
976 | local skip=0 |
|
|
977 | case ${ver} in |
|
|
978 | 1.5.*) # tested 1.5.{3,4,5} ... guessing 1.5.x series is same |
|
|
979 | skip=`grep -a ^skip= ${src} | cut -d= -f2` |
|
|
980 | ;; |
|
|
981 | 2.0|2.0.1) |
|
|
982 | skip=`grep -a ^$'\t'tail ${src} | awk '{print $2}' | cut -b2-` |
|
|
983 | ;; |
|
|
984 | 2.1.1) |
|
|
985 | skip=`grep -a ^offset= ${src} | awk '{print $2}' | cut -b2-` |
|
|
986 | let skip="skip + 1" |
|
|
987 | ;; |
|
|
988 | 2.1.2) |
|
|
989 | skip=`grep -a ^offset= ${src} | awk '{print $3}' | head -n 1` |
|
|
990 | let skip="skip + 1" |
|
|
991 | ;; |
|
|
992 | 2.1.3) |
|
|
993 | skip=`grep -a ^offset= ${src} | awk '{print $3}'` |
|
|
994 | let skip="skip + 1" |
|
|
995 | ;; |
|
|
996 | *) |
|
|
997 | eerror "I'm sorry, but I was unable to support the Makeself file." |
|
|
998 | eerror "The version I detected was '${ver}'." |
|
|
999 | eerror "Please file a bug about the file ${shrtsrc} at" |
|
|
1000 | eerror "http://bugs.gentoo.org/ so that support can be added." |
|
|
1001 | die "makeself version '${ver}' not supported" |
|
|
1002 | ;; |
|
|
1003 | esac |
|
|
1004 | debug-print "Detected Makeself version ${ver} ... using ${skip} as offset" |
|
|
1005 | fi |
|
|
1006 | |
|
|
1007 | # lets grab the first few bytes of the file to figure out what kind of archive it is |
|
|
1008 | local tmpfile="`mymktemp ${T}`" |
|
|
1009 | tail -n +${skip} ${src} 2>/dev/null | head -c 512 > ${tmpfile} |
|
|
1010 | local filetype="`file -b ${tmpfile}`" |
|
|
1011 | case ${filetype} in |
|
|
1012 | *tar\ archive) |
|
|
1013 | tail -n +${skip} ${src} | tar --no-same-owner -xf - |
|
|
1014 | ;; |
|
|
1015 | bzip2*) |
|
|
1016 | tail -n +${skip} ${src} | bzip2 -dc | tar --no-same-owner -xf - |
|
|
1017 | ;; |
|
|
1018 | gzip*) |
|
|
1019 | tail -n +${skip} ${src} | tar --no-same-owner -xzf - |
|
|
1020 | ;; |
|
|
1021 | *) |
|
|
1022 | false |
|
|
1023 | ;; |
|
|
1024 | esac |
|
|
1025 | assert "failure unpacking (${filetype}) makeself ${shrtsrc} ('${ver}' +${skip})" |
|
|
1026 | } |
|
|
1027 | |
|
|
1028 | # Display a license for user to accept. |
|
|
1029 | # |
|
|
1030 | # Usage: check_license [license] |
|
|
1031 | # - If the file is not specified then ${LICENSE} is used. |
|
|
1032 | check_license() { |
|
|
1033 | local lic=$1 |
|
|
1034 | if [ -z "${lic}" ] ; then |
|
|
1035 | lic="${PORTDIR}/licenses/${LICENSE}" |
|
|
1036 | else |
|
|
1037 | if [ -e "${PORTDIR}/licenses/${src}" ] ; then |
|
|
1038 | lic="${PORTDIR}/licenses/${src}" |
|
|
1039 | elif [ -e "${PWD}/${src}" ] ; then |
|
|
1040 | lic="${PWD}/${src}" |
|
|
1041 | elif [ -e "${src}" ] ; then |
|
|
1042 | lic="${src}" |
|
|
1043 | fi |
|
|
1044 | fi |
|
|
1045 | [ ! -f "${lic}" ] && die "Could not find requested license ${src}" |
|
|
1046 | local l="`basename ${lic}`" |
|
|
1047 | |
|
|
1048 | # here is where we check for the licenses the user already |
|
|
1049 | # accepted ... if we don't find a match, we make the user accept |
|
|
1050 | local alic |
|
|
1051 | for alic in "${ACCEPT_LICENSE}" ; do |
|
|
1052 | [ "${alic}" == "*" ] && return 0 |
|
|
1053 | [ "${alic}" == "${l}" ] && return 0 |
|
|
1054 | done |
|
|
1055 | |
|
|
1056 | local licmsg="`mymktemp ${T}`" |
|
|
1057 | cat << EOF > ${licmsg} |
|
|
1058 | ********************************************************** |
|
|
1059 | The following license outlines the terms of use of this |
|
|
1060 | package. You MUST accept this license for installation to |
|
|
1061 | continue. When you are done viewing, hit 'q'. If you |
|
|
1062 | CTRL+C out of this, the install will not run! |
|
|
1063 | ********************************************************** |
|
|
1064 | |
|
|
1065 | EOF |
|
|
1066 | cat ${lic} >> ${licmsg} |
|
|
1067 | ${PAGER:-less} ${licmsg} || die "Could not execute pager (${PAGER}) to accept ${lic}" |
|
|
1068 | einfon "Do you accept the terms of this license (${l})? [yes/no] " |
|
|
1069 | read alic |
|
|
1070 | case ${alic} in |
|
|
1071 | yes|Yes|y|Y) |
|
|
1072 | return 0 |
|
|
1073 | ;; |
|
|
1074 | *) |
|
|
1075 | echo;echo;echo |
|
|
1076 | eerror "You MUST accept the license to continue! Exiting!" |
|
|
1077 | die "Failed to accept license" |
|
|
1078 | ;; |
|
|
1079 | esac |
|
|
1080 | } |
|
|
1081 | |
|
|
1082 | # Aquire cd(s) for those lovely cd-based emerges. Yes, this violates |
|
|
1083 | # the whole 'non-interactive' policy, but damnit I want CD support ! |
|
|
1084 | # |
|
|
1085 | # with these cdrom functions we handle all the user interaction and |
|
|
1086 | # standardize everything. all you have to do is call cdrom_get_cds() |
|
|
1087 | # and when the function returns, you can assume that the cd has been |
|
|
1088 | # found at CDROM_ROOT. |
|
|
1089 | # |
|
|
1090 | # normally the cdrom functions will refer to the cds as 'cd #1', 'cd #2', |
|
|
1091 | # etc... if you want to give the cds better names, then just export |
|
|
1092 | # the CDROM_NAME_X variables before calling cdrom_get_cds(). |
|
|
1093 | # |
|
|
1094 | # for those multi cd ebuilds, see the cdrom_load_next_cd() below. |
|
|
1095 | # |
|
|
1096 | # Usage: cdrom_get_cds <file on cd1> [file on cd2] [file on cd3] [...] |
|
|
1097 | # - this will attempt to locate a cd based upon a file that is on |
|
|
1098 | # the cd ... the more files you give this function, the more cds |
|
|
1099 | # the cdrom functions will handle |
|
|
1100 | cdrom_get_cds() { |
|
|
1101 | # first we figure out how many cds we're dealing with by |
|
|
1102 | # the # of files they gave us |
|
|
1103 | local cdcnt=0 |
|
|
1104 | local f= |
|
|
1105 | for f in "$@" ; do |
|
|
1106 | cdcnt=$((cdcnt + 1)) |
|
|
1107 | export CDROM_CHECK_${cdcnt}="$f" |
|
|
1108 | done |
|
|
1109 | export CDROM_TOTAL_CDS=${cdcnt} |
|
|
1110 | export CDROM_CURRENT_CD=1 |
|
|
1111 | |
|
|
1112 | # now we see if the user gave use CD_ROOT ... |
|
|
1113 | # if they did, let's just believe them that it's correct |
|
|
1114 | if [ ! -z "${CD_ROOT}" ] ; then |
|
|
1115 | export CDROM_ROOT="${CD_ROOT}" |
|
|
1116 | einfo "Found CD #${CDROM_CURRENT_CD} root at ${CDROM_ROOT}" |
|
|
1117 | return |
|
|
1118 | fi |
|
|
1119 | # do the same for CD_ROOT_X |
|
|
1120 | if [ ! -z "${CD_ROOT_1}" ] ; then |
|
|
1121 | local var= |
|
|
1122 | cdcnt=0 |
|
|
1123 | while [ ${cdcnt} -lt ${CDROM_TOTAL_CDS} ] ; do |
|
|
1124 | cdcnt=$((cdcnt + 1)) |
|
|
1125 | var="CD_ROOT_${cdcnt}" |
|
|
1126 | if [ -z "${!var}" ] ; then |
|
|
1127 | eerror "You must either use just the CD_ROOT" |
|
|
1128 | eerror "or specify ALL the CD_ROOT_X variables." |
|
|
1129 | eerror "In this case, you will need ${CDROM_TOTAL_CDS} CD_ROOT_X variables." |
|
|
1130 | die "could not locate CD_ROOT_${cdcnt}" |
|
|
1131 | fi |
|
|
1132 | export CDROM_ROOTS_${cdcnt}="${!var}" |
|
|
1133 | done |
|
|
1134 | export CDROM_ROOT=${CDROM_ROOTS_1} |
|
|
1135 | einfo "Found CD #${CDROM_CURRENT_CD} root at ${CDROM_ROOT}" |
|
|
1136 | return |
|
|
1137 | fi |
|
|
1138 | |
|
|
1139 | if [ ${CDROM_TOTAL_CDS} -eq 1 ] ; then |
|
|
1140 | einfon "This ebuild will need the " |
|
|
1141 | if [ -z "${CDROM_NAME}" ] ; then |
|
|
1142 | echo "cdrom for ${PN}." |
|
|
1143 | else |
|
|
1144 | echo "${CDROM_NAME}." |
|
|
1145 | fi |
|
|
1146 | echo |
|
|
1147 | einfo "If you do not have the CD, but have the data files" |
|
|
1148 | einfo "mounted somewhere on your filesystem, just export" |
|
|
1149 | einfo "the variable CD_ROOT so that it points to the" |
|
|
1150 | einfo "directory containing the files." |
|
|
1151 | echo |
|
|
1152 | else |
|
|
1153 | einfo "This package will need access to ${CDROM_TOTAL_CDS} cds." |
|
|
1154 | cdcnt=0 |
|
|
1155 | while [ ${cdcnt} -lt ${CDROM_TOTAL_CDS} ] ; do |
|
|
1156 | cdcnt=$((cdcnt + 1)) |
|
|
1157 | var="CDROM_NAME_${cdcnt}" |
|
|
1158 | [ ! -z "${!var}" ] && einfo " CD ${cdcnt}: ${!var}" |
|
|
1159 | done |
|
|
1160 | echo |
|
|
1161 | einfo "If you do not have the CDs, but have the data files" |
|
|
1162 | einfo "mounted somewhere on your filesystem, just export" |
|
|
1163 | einfo "the following variables so they point to the right place:" |
|
|
1164 | einfon "" |
|
|
1165 | cdcnt=0 |
|
|
1166 | while [ ${cdcnt} -lt ${CDROM_TOTAL_CDS} ] ; do |
|
|
1167 | cdcnt=$((cdcnt + 1)) |
|
|
1168 | echo -n " CD_ROOT_${cdcnt}" |
|
|
1169 | done |
|
|
1170 | echo |
|
|
1171 | einfo "Or, if you have all the files in the same place, or" |
|
|
1172 | einfo "you only have one cdrom, you can export CD_ROOT" |
|
|
1173 | einfo "and that place will be used as the same data source" |
|
|
1174 | einfo "for all the CDs." |
|
|
1175 | echo |
|
|
1176 | fi |
|
|
1177 | export CDROM_CURRENT_CD=0 |
|
|
1178 | cdrom_load_next_cd |
|
|
1179 | } |
|
|
1180 | |
|
|
1181 | # this is only used when you need access to more than one cd. |
|
|
1182 | # when you have finished using the first cd, just call this function. |
|
|
1183 | # when it returns, CDROM_ROOT will be pointing to the second cd. |
|
|
1184 | # remember, you can only go forward in the cd chain, you can't go back. |
|
|
1185 | cdrom_load_next_cd() { |
|
|
1186 | export CDROM_CURRENT_CD=$((CDROM_CURRENT_CD + 1)) |
|
|
1187 | local var= |
|
|
1188 | |
|
|
1189 | if [ ! -z "${CD_ROOT}" ] ; then |
|
|
1190 | einfo "Using same root as before for CD #${CDROM_CURRENT_CD}" |
|
|
1191 | return |
|
|
1192 | fi |
|
|
1193 | |
|
|
1194 | unset CDROM_ROOT |
|
|
1195 | var=CDROM_ROOTS_${CDROM_CURRENT_CD} |
|
|
1196 | if [ -z "${!var}" ] ; then |
|
|
1197 | var="CDROM_CHECK_${CDROM_CURRENT_CD}" |
|
|
1198 | cdrom_locate_file_on_cd ${!var} |
|
|
1199 | else |
|
|
1200 | export CDROM_ROOT="${!var}" |
|
|
1201 | fi |
|
|
1202 | |
|
|
1203 | einfo "Found CD #${CDROM_CURRENT_CD} root at ${CDROM_ROOT}" |
|
|
1204 | } |
|
|
1205 | |
|
|
1206 | # this is used internally by the cdrom_get_cds() and cdrom_load_next_cd() |
|
|
1207 | # functions. this should *never* be called from an ebuild. |
|
|
1208 | # all it does is try to locate a give file on a cd ... if the cd isn't |
|
|
1209 | # found, then a message asking for the user to insert the cdrom will be |
|
|
1210 | # displayed and we'll hang out here until: |
|
|
1211 | # (1) the file is found on a mounted cdrom |
|
|
1212 | # (2) the user hits CTRL+C |
|
|
1213 | cdrom_locate_file_on_cd() { |
|
|
1214 | while [ -z "${CDROM_ROOT}" ] ; do |
|
|
1215 | local dir="$(dirname ${@})" |
|
|
1216 | local file="$(basename ${@})" |
|
|
1217 | local mline="" |
|
|
1218 | local showedmsg=0 |
|
|
1219 | |
|
|
1220 | for mline in `mount | egrep -e '(iso|cdrom)' | awk '{print $3}'` ; do |
|
|
1221 | [ -d "${mline}/${dir}" ] || continue |
|
|
1222 | [ ! -z "$(find ${mline}/${dir} -iname ${file} -maxdepth 1)" ] \ |
|
|
1223 | && export CDROM_ROOT=${mline} |
|
|
1224 | done |
|
|
1225 | |
|
|
1226 | if [ -z "${CDROM_ROOT}" ] ; then |
|
|
1227 | echo |
|
|
1228 | if [ ${showedmsg} -eq 0 ] ; then |
|
|
1229 | if [ ${CDROM_TOTAL_CDS} -eq 1 ] ; then |
|
|
1230 | if [ -z "${CDROM_NAME}" ] ; then |
|
|
1231 | einfo "Please insert the cdrom for ${PN} now !" |
|
|
1232 | else |
|
|
1233 | einfo "Please insert the ${CDROM_NAME} cdrom now !" |
|
|
1234 | fi |
|
|
1235 | else |
|
|
1236 | if [ -z "${CDROM_NAME_1}" ] ; then |
|
|
1237 | einfo "Please insert cd #${CDROM_CURRENT_CD} for ${PN} now !" |
|
|
1238 | else |
|
|
1239 | local var="CDROM_NAME_${CDROM_CURRENT_CD}" |
|
|
1240 | einfo "Please insert+mount the ${!var} cdrom now !" |
|
|
1241 | fi |
|
|
1242 | fi |
|
|
1243 | showedmsg=1 |
|
|
1244 | fi |
|
|
1245 | einfo "Press return to scan for the cd again" |
|
|
1246 | einfo "or hit CTRL+C to abort the emerge." |
|
|
1247 | read |
|
|
1248 | fi |
|
|
1249 | done |
|
|
1250 | } |