| 1 | # Copyright 1999-2003 Gentoo Technologies, Inc. |
1 | # Copyright 1999-2003 Gentoo Technologies, Inc. |
| 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.26 2003/03/06 20:35:26 azarah Exp $ |
3 | # $Header: /var/cvsroot/gentoo-x86/eclass/eutils.eclass,v 1.69 2003/11/26 22:13:35 mr_bones_ 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. |
| … | |
… | |
| 36 | # |
36 | # |
| 37 | gen_usr_ldscript() { |
37 | gen_usr_ldscript() { |
| 38 | |
38 | |
| 39 | # Just make sure it exists |
39 | # Just make sure it exists |
| 40 | dodir /usr/lib |
40 | dodir /usr/lib |
| 41 | |
41 | |
| 42 | cat > ${D}/usr/lib/$1 <<"END_LDSCRIPT" |
42 | cat > ${D}/usr/lib/$1 <<"END_LDSCRIPT" |
| 43 | /* GNU ld script |
43 | /* GNU ld script |
| 44 | Because Gentoo have critical dynamic libraries |
44 | Because Gentoo have critical dynamic libraries |
| 45 | in /lib, and the static versions in /usr/lib, we |
45 | in /lib, and the static versions in /usr/lib, we |
| 46 | need to have a "fake" dynamic lib in /usr/lib, |
46 | need to have a "fake" dynamic lib in /usr/lib, |
| … | |
… | |
| 70 | return 0 |
70 | return 0 |
| 71 | fi |
71 | fi |
| 72 | |
72 | |
| 73 | # Get the length of $* |
73 | # Get the length of $* |
| 74 | str_length="$(echo -n "$*" | wc -m)" |
74 | str_length="$(echo -n "$*" | wc -m)" |
| 75 | |
75 | |
| 76 | while [ "$i" -lt "${str_length}" ] |
76 | while [ "$i" -lt "${str_length}" ] |
| 77 | do |
77 | do |
| 78 | echo -n "=" |
78 | echo -n "=" |
| 79 | |
79 | |
| 80 | i=$((i + 1)) |
80 | i=$((i + 1)) |
| 81 | done |
81 | done |
| 82 | |
82 | |
| 83 | echo |
83 | echo |
| 84 | |
84 | |
| … | |
… | |
| 88 | # Default directory where patches are located |
88 | # Default directory where patches are located |
| 89 | EPATCH_SOURCE="${WORKDIR}/patch" |
89 | EPATCH_SOURCE="${WORKDIR}/patch" |
| 90 | # Default extension for patches |
90 | # Default extension for patches |
| 91 | EPATCH_SUFFIX="patch.bz2" |
91 | EPATCH_SUFFIX="patch.bz2" |
| 92 | # Default options for patch |
92 | # Default options for patch |
|
|
93 | # Set -g0 to keep RCS, ClearCase, Perforce and SCCS happy. Bug #24571 |
| 93 | EPATCH_OPTS="" |
94 | EPATCH_OPTS="-g0" |
| 94 | # 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, |
| 95 | # and not the full path .. |
96 | # and not the full path .. |
| 96 | EPATCH_EXCLUDE="" |
97 | EPATCH_EXCLUDE="" |
| 97 | # Change the printed message for a single patch. |
98 | # Change the printed message for a single patch. |
| 98 | 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" |
| 99 | |
105 | |
| 100 | # 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 |
| 101 | # or two patches. |
107 | # or two patches. |
| 102 | # |
108 | # |
| 103 | # It should work with .bz2, .gz, .zip and plain text patches. |
109 | # It should work with .bz2, .gz, .zip and plain text patches. |
| … | |
… | |
| 145 | fi |
151 | fi |
| 146 | |
152 | |
| 147 | if [ -n "$1" -a -f "$1" ] |
153 | if [ -n "$1" -a -f "$1" ] |
| 148 | then |
154 | then |
| 149 | SINGLE_PATCH="yes" |
155 | SINGLE_PATCH="yes" |
| 150 | |
156 | |
| 151 | local EPATCH_SOURCE="$1" |
157 | local EPATCH_SOURCE="$1" |
| 152 | local EPATCH_SUFFIX="${1##*\.}" |
158 | local EPATCH_SUFFIX="${1##*\.}" |
| 153 | |
159 | |
| 154 | elif [ -n "$1" -a -d "$1" ] |
160 | elif [ -n "$1" -a -d "$1" ] |
| 155 | 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 |
| 156 | local EPATCH_SOURCE="$1/*.${EPATCH_SUFFIX}" |
167 | local EPATCH_SOURCE="$1/*.${EPATCH_SUFFIX}" |
|
|
168 | fi |
| 157 | else |
169 | else |
| 158 | if [ ! -d ${EPATCH_SOURCE} ] |
170 | if [ ! -d ${EPATCH_SOURCE} ] |
| 159 | then |
171 | then |
| 160 | if [ -n "$1" -a "${EPATCH_SOURCE}" = "${WORKDIR}/patch" ] |
172 | if [ -n "$1" -a "${EPATCH_SOURCE}" = "${WORKDIR}/patch" ] |
| 161 | then |
173 | then |
| … | |
… | |
| 167 | eerror |
179 | eerror |
| 168 | eerror " ${EPATCH_SOURCE}" |
180 | eerror " ${EPATCH_SOURCE}" |
| 169 | echo |
181 | echo |
| 170 | die "Cannot find \$EPATCH_SOURCE!" |
182 | die "Cannot find \$EPATCH_SOURCE!" |
| 171 | fi |
183 | fi |
| 172 | |
184 | |
| 173 | local EPATCH_SOURCE="${EPATCH_SOURCE}/*.${EPATCH_SUFFIX}" |
185 | local EPATCH_SOURCE="${EPATCH_SOURCE}/*.${EPATCH_SUFFIX}" |
| 174 | fi |
186 | fi |
| 175 | |
187 | |
| 176 | case ${EPATCH_SUFFIX##*\.} in |
188 | case ${EPATCH_SUFFIX##*\.} in |
| 177 | bz2) |
189 | bz2) |
| … | |
… | |
| 201 | # New ARCH dependant patch naming scheme... |
213 | # New ARCH dependant patch naming scheme... |
| 202 | # |
214 | # |
| 203 | # ???_arch_foo.patch |
215 | # ???_arch_foo.patch |
| 204 | # |
216 | # |
| 205 | if [ -f ${x} ] && \ |
217 | if [ -f ${x} ] && \ |
| 206 | [ "${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" ]) |
| 207 | then |
220 | then |
| 208 | local count=0 |
221 | local count=0 |
| 209 | local popts="${EPATCH_OPTS}" |
222 | local popts="${EPATCH_OPTS}" |
| 210 | |
223 | |
| 211 | if [ -n "${EPATCH_EXCLUDE}" ] |
224 | if [ -n "${EPATCH_EXCLUDE}" ] |
| … | |
… | |
| 213 | if [ "`eval echo \$\{EPATCH_EXCLUDE/${x##*/}\}`" != "${EPATCH_EXCLUDE}" ] |
226 | if [ "`eval echo \$\{EPATCH_EXCLUDE/${x##*/}\}`" != "${EPATCH_EXCLUDE}" ] |
| 214 | then |
227 | then |
| 215 | continue |
228 | continue |
| 216 | fi |
229 | fi |
| 217 | fi |
230 | fi |
| 218 | |
231 | |
| 219 | if [ "${SINGLE_PATCH}" = "yes" ] |
232 | if [ "${SINGLE_PATCH}" = "yes" ] |
| 220 | then |
233 | then |
| 221 | if [ -n "${EPATCH_SINGLE_MSG}" ] |
234 | if [ -n "${EPATCH_SINGLE_MSG}" ] |
| 222 | then |
235 | then |
| 223 | einfo "${EPATCH_SINGLE_MSG}" |
236 | einfo "${EPATCH_SINGLE_MSG}" |
| … | |
… | |
| 243 | echo -n "PIPE_COMMAND: " >> ${STDERR_TARGET%/*}/${x##*/}-${STDERR_TARGET##*/} |
256 | echo -n "PIPE_COMMAND: " >> ${STDERR_TARGET%/*}/${x##*/}-${STDERR_TARGET##*/} |
| 244 | echo "${PIPE_CMD} ${x} > ${PATCH_TARGET}" >> ${STDERR_TARGET%/*}/${x##*/}-${STDERR_TARGET##*/} |
257 | echo "${PIPE_CMD} ${x} > ${PATCH_TARGET}" >> ${STDERR_TARGET%/*}/${x##*/}-${STDERR_TARGET##*/} |
| 245 | else |
258 | else |
| 246 | PATCH_TARGET="${x}" |
259 | PATCH_TARGET="${x}" |
| 247 | fi |
260 | fi |
| 248 | |
261 | |
| 249 | echo -n "PATCH COMMAND: " >> ${STDERR_TARGET%/*}/${x##*/}-${STDERR_TARGET##*/} |
262 | echo -n "PATCH COMMAND: " >> ${STDERR_TARGET%/*}/${x##*/}-${STDERR_TARGET##*/} |
| 250 | echo "patch ${popts} -p${count} < ${PATCH_TARGET}" >> ${STDERR_TARGET%/*}/${x##*/}-${STDERR_TARGET##*/} |
263 | echo "patch ${popts} -p${count} < ${PATCH_TARGET}" >> ${STDERR_TARGET%/*}/${x##*/}-${STDERR_TARGET##*/} |
| 251 | |
264 | |
| 252 | echo >> ${STDERR_TARGET%/*}/${x##*/}-${STDERR_TARGET##*/} |
265 | echo >> ${STDERR_TARGET%/*}/${x##*/}-${STDERR_TARGET##*/} |
| 253 | draw_line "***** ${x##*/} *****" >> ${STDERR_TARGET%/*}/${x##*/}-${STDERR_TARGET##*/} |
266 | draw_line "***** ${x##*/} *****" >> ${STDERR_TARGET%/*}/${x##*/}-${STDERR_TARGET##*/} |
| 254 | |
267 | |
| 255 | if [ "${PATCH_SUFFIX}" != "patch" ] |
268 | if [ "${PATCH_SUFFIX}" != "patch" ] |
| 256 | then |
269 | then |
| … | |
… | |
| 261 | #die "Could not extract patch!" |
274 | #die "Could not extract patch!" |
| 262 | count=5 |
275 | count=5 |
| 263 | break |
276 | break |
| 264 | fi |
277 | fi |
| 265 | fi |
278 | fi |
| 266 | |
279 | |
| 267 | if (cat ${PATCH_TARGET} | patch ${popts} --dry-run -f -p${count}) >> ${STDERR_TARGET%/*}/${x##*/}-${STDERR_TARGET##*/} 2>&1 |
280 | if (cat ${PATCH_TARGET} | patch ${popts} --dry-run -f -p${count}) >> ${STDERR_TARGET%/*}/${x##*/}-${STDERR_TARGET##*/} 2>&1 |
| 268 | then |
281 | then |
| 269 | draw_line "***** ${x##*/} *****" > ${STDERR_TARGET%/*}/${x##*/}-${STDERR_TARGET##*/}.real |
282 | draw_line "***** ${x##*/} *****" > ${STDERR_TARGET%/*}/${x##*/}-${STDERR_TARGET##*/}.real |
| 270 | echo >> ${STDERR_TARGET%/*}/${x##*/}-${STDERR_TARGET##*/}.real |
283 | echo >> ${STDERR_TARGET%/*}/${x##*/}-${STDERR_TARGET##*/}.real |
| 271 | echo "ACTUALLY APPLYING ${x##*/}..." >> ${STDERR_TARGET%/*}/${x##*/}-${STDERR_TARGET##*/}.real |
284 | echo "ACTUALLY APPLYING ${x##*/}..." >> ${STDERR_TARGET%/*}/${x##*/}-${STDERR_TARGET##*/}.real |
| … | |
… | |
| 283 | #die "Real world sux compared to the dreamworld!" |
296 | #die "Real world sux compared to the dreamworld!" |
| 284 | count=5 |
297 | count=5 |
| 285 | fi |
298 | fi |
| 286 | |
299 | |
| 287 | rm -f ${STDERR_TARGET%/*}/${x##*/}-${STDERR_TARGET##*/}.real |
300 | rm -f ${STDERR_TARGET%/*}/${x##*/}-${STDERR_TARGET##*/}.real |
| 288 | |
301 | |
| 289 | break |
302 | break |
| 290 | fi |
303 | fi |
| 291 | |
304 | |
| 292 | count=$((count + 1)) |
305 | count=$((count + 1)) |
| 293 | done |
306 | done |
| … | |
… | |
| 387 | ADMINPARAM="`echo ${ADMINOPTS} | gawk '{match($0, /-j *[0-9]*/, opt); print opt[0]}'`" |
400 | ADMINPARAM="`echo ${ADMINOPTS} | gawk '{match($0, /-j *[0-9]*/, opt); print opt[0]}'`" |
| 388 | ADMINPARAM="${ADMINPARAM/-j}" |
401 | ADMINPARAM="${ADMINPARAM/-j}" |
| 389 | fi |
402 | fi |
| 390 | |
403 | |
| 391 | export MAKEOPTS="`echo ${MAKEOPTS} | sed -e 's:-j *[0-9]*::g'`" |
404 | export MAKEOPTS="`echo ${MAKEOPTS} | sed -e 's:-j *[0-9]*::g'`" |
| 392 | |
405 | |
| 393 | if [ "${ARCH}" = "x86" -o "${ARCH}" = "hppa" -o \ |
406 | if [ "${ARCH}" = "amd64" -o "${ARCH}" = "x86" -o "${ARCH}" = "hppa" -o \ |
| 394 | "${ARCH}" = "arm" -o "${ARCH}" = "mips" ] |
407 | "${ARCH}" = "arm" -o "${ARCH}" = "mips" -o "${ARCH}" = "ia64" ] |
| 395 | then |
408 | then |
| 396 | # these archs will always have "[Pp]rocessor" |
409 | # these archs will always have "[Pp]rocessor" |
| 397 | jobs="$((`grep -c ^[Pp]rocessor /proc/cpuinfo` * 2))" |
410 | jobs="$((`grep -c ^[Pp]rocessor /proc/cpuinfo` * 2))" |
| 398 | |
411 | |
| 399 | elif [ "${ARCH}" = "sparc" -o "${ARCH}" = "sparc64" ] |
412 | elif [ "${ARCH}" = "sparc" -o "${ARCH}" = "sparc64" ] |
| 400 | then |
413 | then |
| 401 | # sparc always has "ncpus active" |
414 | # sparc always has "ncpus active" |
| 402 | jobs="$((`grep "^ncpus active" /proc/cpuinfo | sed -e "s/^.*: //"` * 2))" |
415 | jobs="$((`grep "^ncpus active" /proc/cpuinfo | sed -e "s/^.*: //"` * 2))" |
| 403 | |
416 | |
| 404 | elif [ "${ARCH}" = "alpha" ] |
417 | elif [ "${ARCH}" = "alpha" ] |
| 405 | then |
418 | then |
| 406 | # alpha has "cpus active", but only when compiled with SMP |
419 | # alpha has "cpus active", but only when compiled with SMP |
| 407 | if [ "`grep -c "^cpus active" /proc/cpuinfo`" -eq 1 ] |
420 | if [ "`grep -c "^cpus active" /proc/cpuinfo`" -eq 1 ] |
| 408 | then |
421 | then |
| 409 | jobs="$((`grep "^cpus active" /proc/cpuinfo | sed -e "s/^.*: //"` * 2))" |
422 | jobs="$((`grep "^cpus active" /proc/cpuinfo | sed -e "s/^.*: //"` * 2))" |
| 410 | else |
423 | else |
| 411 | jobs=2 |
424 | jobs=2 |
| 412 | fi |
425 | fi |
| 413 | |
426 | |
| 414 | elif [ "${ARCH}" = "ppc" ] |
427 | elif [ "${ARCH}" = "ppc" ] |
| 415 | then |
428 | then |
| 416 | # ppc has "processor", but only when compiled with SMP |
429 | # ppc has "processor", but only when compiled with SMP |
| 417 | if [ "`grep -c "^processor" /proc/cpuinfo`" -eq 1 ] |
430 | if [ "`grep -c "^processor" /proc/cpuinfo`" -eq 1 ] |
| 418 | then |
431 | then |
| … | |
… | |
| 428 | # Make sure the number is valid ... |
441 | # Make sure the number is valid ... |
| 429 | if [ "${jobs}" -lt 1 ] |
442 | if [ "${jobs}" -lt 1 ] |
| 430 | then |
443 | then |
| 431 | jobs=1 |
444 | jobs=1 |
| 432 | fi |
445 | fi |
| 433 | |
446 | |
| 434 | if [ -n "${ADMINPARAM}" ] |
447 | if [ -n "${ADMINPARAM}" ] |
| 435 | then |
448 | then |
| 436 | if [ "${jobs}" -gt "${ADMINPARAM}" ] |
449 | if [ "${jobs}" -gt "${ADMINPARAM}" ] |
| 437 | then |
450 | then |
| 438 | einfo "Setting make jobs to \"-j${ADMINPARAM}\" to ensure successful merge..." |
451 | einfo "Setting make jobs to \"-j${ADMINPARAM}\" to ensure successful merge..." |
| … | |
… | |
| 442 | export MAKEOPTS="${MAKEOPTS} -j${jobs}" |
455 | export MAKEOPTS="${MAKEOPTS} -j${jobs}" |
| 443 | fi |
456 | fi |
| 444 | fi |
457 | fi |
| 445 | } |
458 | } |
| 446 | |
459 | |
|
|
460 | # Cheap replacement for when debianutils (and thus mktemp) |
|
|
461 | # do not exist on the users system |
|
|
462 | # vapier@gentoo.org |
|
|
463 | # |
|
|
464 | # Takes just 1 parameter (the directory to create tmpfile in) |
|
|
465 | mymktemp() { |
|
|
466 | local topdir="$1" |
|
|
467 | |
|
|
468 | [ -z "${topdir}" ] && topdir=/tmp |
|
|
469 | if [ "`which mktemp 2>/dev/null`" ] |
|
|
470 | then |
|
|
471 | mktemp -p ${topdir} |
|
|
472 | else |
|
|
473 | local tmp="${topdir}/tmp.${RANDOM}.${RANDOM}.${RANDOM}" |
|
|
474 | touch ${tmp} |
|
|
475 | echo ${tmp} |
|
|
476 | fi |
|
|
477 | } |
|
|
478 | |
| 447 | # Simplify/standardize adding users to the system |
479 | # Simplify/standardize adding users to the system |
| 448 | # vapier@gentoo.org |
480 | # vapier@gentoo.org |
| 449 | # |
481 | # |
| 450 | # enewuser(username, uid, shell, homedir, groups, extra options) |
482 | # enewuser(username, uid, shell, homedir, groups, extra options) |
| 451 | # |
483 | # |
| 452 | # Default values if you do not specify any: |
484 | # Default values if you do not specify any: |
| 453 | # username: REQUIRED ! |
485 | # username: REQUIRED ! |
| 454 | # uid: next available (see useradd(8)) |
486 | # uid: next available (see useradd(8)) |
|
|
487 | # note: pass -1 to get default behavior |
| 455 | # shell: /bin/false |
488 | # shell: /bin/false |
| 456 | # homedir: /dev/null |
489 | # homedir: /dev/null |
| 457 | # groups: none |
490 | # groups: none |
| 458 | # extra: comment of 'added by portage for ${PN}' |
491 | # extra: comment of 'added by portage for ${PN}' |
| 459 | enewuser() { |
492 | enewuser() { |
| 460 | # get the username |
493 | # get the username |
| 461 | local euser="$1"; shift |
494 | local euser="$1"; shift |
| 462 | if [ -z "${euser}" ] ; then |
495 | if [ -z "${euser}" ] |
|
|
496 | then |
| 463 | eerror "No username specified !" |
497 | eerror "No username specified !" |
| 464 | die "Cannot call enewuser without a username" |
498 | die "Cannot call enewuser without a username" |
| 465 | fi |
499 | fi |
| 466 | einfo "Adding user '${euser}' to your system ..." |
|
|
| 467 | |
500 | |
| 468 | # setup a file for testing usernames/groups |
501 | # setup a file for testing usernames/groups |
| 469 | local tmpfile="`mktemp -p ${T}`" |
502 | local tmpfile="`mymktemp ${T}`" |
| 470 | touch ${tmpfile} |
|
|
| 471 | chown ${euser} ${tmpfile} >& /dev/null |
503 | chown ${euser} ${tmpfile} >& /dev/null |
| 472 | local realuser="`ls -l ${tmpfile} | awk '{print $3}'`" |
504 | local realuser="`ls -l ${tmpfile} | awk '{print $3}'`" |
| 473 | |
505 | |
| 474 | # see if user already exists |
506 | # see if user already exists |
| 475 | if [ "${euser}" == "${realuser}" ] ; then |
507 | if [ "${euser}" == "${realuser}" ] |
| 476 | einfo "${euser} already exists on your system :)" |
508 | then |
| 477 | return 0 |
509 | return 0 |
| 478 | fi |
510 | fi |
|
|
511 | einfo "Adding user '${euser}' to your system ..." |
| 479 | |
512 | |
| 480 | # options to pass to useradd |
513 | # options to pass to useradd |
| 481 | local opts="" |
514 | local opts= |
| 482 | |
515 | |
| 483 | # handle uid |
516 | # handle uid |
| 484 | local euid="$1"; shift |
517 | local euid="$1"; shift |
| 485 | if [ ! -z "${euid}" ] ; then |
518 | if [ ! -z "${euid}" ] && [ "${euid}" != "-1" ] |
|
|
519 | then |
| 486 | if [ ${euid} -gt 0 ] ; then |
520 | if [ "${euid}" -gt 0 ] |
|
|
521 | then |
| 487 | opts="${opts} -u ${euid}" |
522 | opts="${opts} -u ${euid}" |
| 488 | else |
523 | else |
| 489 | eerror "Userid given but is not greater than 0 !" |
524 | eerror "Userid given but is not greater than 0 !" |
| 490 | die "${euid} is not a valid UID" |
525 | die "${euid} is not a valid UID" |
| 491 | fi |
526 | fi |
| … | |
… | |
| 494 | fi |
529 | fi |
| 495 | einfo " - Userid: ${euid}" |
530 | einfo " - Userid: ${euid}" |
| 496 | |
531 | |
| 497 | # handle shell |
532 | # handle shell |
| 498 | local eshell="$1"; shift |
533 | local eshell="$1"; shift |
| 499 | if [ ! -z "${eshell}" ] ; then |
534 | if [ ! -z "${eshell}" ] && [ "${eshell}" != "-1" ] |
|
|
535 | then |
| 500 | if [ ! -e ${eshell} ] ; then |
536 | if [ ! -e "${eshell}" ] |
|
|
537 | then |
| 501 | eerror "A shell was specified but it does not exist !" |
538 | eerror "A shell was specified but it does not exist !" |
| 502 | die "${eshell} does not exist" |
539 | die "${eshell} does not exist" |
| 503 | fi |
540 | fi |
| 504 | else |
541 | else |
| 505 | eshell=/bin/false |
542 | eshell="/bin/false" |
| 506 | fi |
543 | fi |
| 507 | einfo " - Shell: ${eshell}" |
544 | einfo " - Shell: ${eshell}" |
| 508 | opts="${opts} -s ${eshell}" |
545 | opts="${opts} -s ${eshell}" |
| 509 | |
546 | |
| 510 | # handle homedir |
547 | # handle homedir |
| 511 | local ehome="$1"; shift |
548 | local ehome="$1"; shift |
| 512 | if [ -z "${ehome}" ] ; then |
549 | if [ -z "${ehome}" ] && [ "${eshell}" != "-1" ] |
|
|
550 | then |
| 513 | ehome=/dev/null |
551 | ehome="/dev/null" |
| 514 | fi |
552 | fi |
| 515 | einfo " - Home: ${ehome}" |
553 | einfo " - Home: ${ehome}" |
| 516 | opts="${opts} -d ${ehome}" |
554 | opts="${opts} -d ${ehome}" |
| 517 | |
555 | |
| 518 | # handle groups |
556 | # handle groups |
| 519 | local egroups="$1"; shift |
557 | local egroups="$1"; shift |
| 520 | if [ ! -z "${egroups}" ] ; then |
558 | if [ ! -z "${egroups}" ] |
|
|
559 | then |
| 521 | local realgroup |
560 | local realgroup= |
| 522 | local oldifs="${IFS}" |
561 | local oldifs="${IFS}" |
| 523 | export IFS="," |
562 | export IFS="," |
| 524 | for g in ${egroups} ; do |
563 | for g in ${egroups} |
|
|
564 | do |
| 525 | chgrp ${g} ${tmpfile} >& /dev/null |
565 | chgrp ${g} ${tmpfile} >& /dev/null |
| 526 | realgroup="`ls -l ${tmpfile} | awk '{print $4}'`" |
566 | realgroup="`ls -l ${tmpfile} | awk '{print $4}'`" |
| 527 | if [ "${g}" != "${realgroup}" ] ; then |
567 | if [ "${g}" != "${realgroup}" ] |
|
|
568 | then |
| 528 | eerror "You must add ${g} to the system first" |
569 | eerror "You must add ${g} to the system first" |
| 529 | die "${g} is not a valid GID" |
570 | die "${g} is not a valid GID" |
| 530 | fi |
571 | fi |
| 531 | done |
572 | done |
| 532 | export IFS="${oldifs}" |
573 | export IFS="${oldifs}" |
| … | |
… | |
| 536 | fi |
577 | fi |
| 537 | einfo " - Groups: ${egroups}" |
578 | einfo " - Groups: ${egroups}" |
| 538 | |
579 | |
| 539 | # handle extra and add the user |
580 | # handle extra and add the user |
| 540 | local eextra="$@" |
581 | local eextra="$@" |
| 541 | local oldsandbox="${oldsandbox}" |
582 | local oldsandbox="${SANDBOX_ON}" |
| 542 | export SANDBOX_ON="0" |
583 | export SANDBOX_ON="0" |
| 543 | if [ -z "${eextra}" ] ; then |
584 | if [ -z "${eextra}" ] |
|
|
585 | then |
| 544 | useradd ${opts} ${euser} \ |
586 | useradd ${opts} ${euser} \ |
| 545 | -c "added by portage for ${PN}" \ |
587 | -c "added by portage for ${PN}" \ |
| 546 | || die "enewuser failed" |
588 | || die "enewuser failed" |
| 547 | else |
589 | else |
| 548 | einfo " - Extra: ${eextra}" |
590 | einfo " - Extra: ${eextra}" |
| 549 | useradd ${opts} ${euser} ${eextra} \ |
591 | useradd ${opts} ${euser} ${eextra} \ |
| 550 | || die "enewuser failed" |
592 | || die "enewuser failed" |
| 551 | fi |
593 | fi |
| 552 | export SANDBOX_ON="${oldsandbox}" |
594 | export SANDBOX_ON="${oldsandbox}" |
| 553 | |
595 | |
| 554 | if [ ! -e ${ehome} ] && [ ! -e ${D}/${ehome} ] ; then |
596 | if [ ! -e "${ehome}" ] && [ ! -e "${D}/${ehome}" ] |
|
|
597 | then |
| 555 | einfo " - Creating ${ehome} in ${D}" |
598 | einfo " - Creating ${ehome} in ${D}" |
| 556 | dodir ${ehome} |
599 | dodir ${ehome} |
| 557 | fperms ${euser} ${ehome} |
600 | fowners ${euser} ${ehome} |
|
|
601 | fperms 755 ${ehome} |
| 558 | fi |
602 | fi |
| 559 | } |
603 | } |
| 560 | |
604 | |
| 561 | # Simplify/standardize adding groups to the system |
605 | # Simplify/standardize adding groups to the system |
| 562 | # vapier@gentoo.org |
606 | # vapier@gentoo.org |
| … | |
… | |
| 568 | # gid: next available (see groupadd(8)) |
612 | # gid: next available (see groupadd(8)) |
| 569 | # extra: none |
613 | # extra: none |
| 570 | enewgroup() { |
614 | enewgroup() { |
| 571 | # get the group |
615 | # get the group |
| 572 | local egroup="$1"; shift |
616 | local egroup="$1"; shift |
| 573 | if [ -z "${egroup}" ] ; then |
617 | if [ -z "${egroup}" ] |
|
|
618 | then |
| 574 | eerror "No group specified !" |
619 | eerror "No group specified !" |
| 575 | die "Cannot call enewgroup without a group" |
620 | die "Cannot call enewgroup without a group" |
| 576 | fi |
621 | fi |
| 577 | einfo "Adding group '${egroup}' to your system ..." |
|
|
| 578 | |
622 | |
| 579 | # setup a file for testing groupname |
623 | # setup a file for testing groupname |
| 580 | local tmpfile="`mktemp -p ${T}`" |
624 | local tmpfile="`mymktemp ${T}`" |
| 581 | touch ${tmpfile} |
|
|
| 582 | chgrp ${egroup} ${tmpfile} >& /dev/null |
625 | chgrp ${egroup} ${tmpfile} >& /dev/null |
| 583 | local realgroup="`ls -l ${tmpfile} | awk '{print $4}'`" |
626 | local realgroup="`ls -l ${tmpfile} | awk '{print $4}'`" |
| 584 | |
627 | |
| 585 | # see if group already exists |
628 | # see if group already exists |
| 586 | if [ "${egroup}" == "${realgroup}" ] ; then |
629 | if [ "${egroup}" == "${realgroup}" ] |
| 587 | einfo "${egroup} already exists on your system :)" |
630 | then |
| 588 | return 0 |
631 | return 0 |
| 589 | fi |
632 | fi |
|
|
633 | einfo "Adding group '${egroup}' to your system ..." |
| 590 | |
634 | |
| 591 | # options to pass to useradd |
635 | # options to pass to useradd |
| 592 | local opts="" |
636 | local opts= |
| 593 | |
637 | |
| 594 | # handle gid |
638 | # handle gid |
| 595 | local egid="$1"; shift |
639 | local egid="$1"; shift |
| 596 | if [ ! -z "${egid}" ] ; then |
640 | if [ ! -z "${egid}" ] |
|
|
641 | then |
| 597 | if [ ${egid} -gt 0 ] ; then |
642 | if [ "${egid}" -gt 0 ] |
|
|
643 | then |
| 598 | opts="${opts} -g ${egid}" |
644 | opts="${opts} -g ${egid}" |
| 599 | else |
645 | else |
| 600 | eerror "Groupid given but is not greater than 0 !" |
646 | eerror "Groupid given but is not greater than 0 !" |
| 601 | die "${egid} is not a valid GID" |
647 | die "${egid} is not a valid GID" |
| 602 | fi |
648 | fi |
| … | |
… | |
| 608 | # handle extra |
654 | # handle extra |
| 609 | local eextra="$@" |
655 | local eextra="$@" |
| 610 | opts="${opts} ${eextra}" |
656 | opts="${opts} ${eextra}" |
| 611 | |
657 | |
| 612 | # add the group |
658 | # add the group |
| 613 | local oldsandbox="${oldsandbox}" |
659 | local oldsandbox="${SANDBOX_ON}" |
| 614 | export SANDBOX_ON="0" |
660 | export SANDBOX_ON="0" |
| 615 | groupadd ${opts} ${egroup} || die "enewgroup failed" |
661 | groupadd ${opts} ${egroup} || die "enewgroup failed" |
| 616 | export SANDBOX_ON="${oldsandbox}" |
662 | export SANDBOX_ON="${oldsandbox}" |
| 617 | } |
663 | } |
| 618 | |
664 | |
| 619 | # Simple script to replace 'dos2unix' binaries |
665 | # Simple script to replace 'dos2unix' binaries |
| 620 | # vapier@gentoo.org |
666 | # vapier@gentoo.org |
| 621 | # |
667 | # |
| 622 | # edos2unix(file, <more files>...) |
668 | # edos2unix(file, <more files>...) |
| 623 | edos2unix() { |
669 | edos2unix() { |
| 624 | for f in $@ ; do |
670 | for f in "$@" |
| 625 | cp ${f} ${T}/ |
671 | do |
| 626 | sed 's/\r$//' ${T}/${f} > ${f} |
672 | cp "${f}" ${T}/edos2unix |
|
|
673 | sed 's/\r$//' ${T}/edos2unix > "${f}" |
| 627 | done |
674 | done |
| 628 | } |
675 | } |
|
|
676 | |
|
|
677 | # Make a desktop file ! |
|
|
678 | # Great for making those icons in kde/gnome startmenu ! |
|
|
679 | # 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 | # |
|
|
684 | # make_desktop_entry(<binary>, [name], [icon], [type], [path]) |
|
|
685 | # |
|
|
686 | # binary: what binary does the app run with ? |
|
|
687 | # name: the name that will show up in the menu |
|
|
688 | # icon: give your little like a pretty little icon ... |
|
|
689 | # this can be relative (to /usr/share/pixmaps) or |
|
|
690 | # a full path to an icon |
|
|
691 | # type: what kind of application is this ? for categories: |
|
|
692 | # http://www.freedesktop.org/standards/menu/draft/menu-spec/menu-spec.html |
|
|
693 | # path: if your app needs to startup in a specific dir |
|
|
694 | make_desktop_entry() { |
|
|
695 | [ -z "$1" ] && eerror "You must specify the executable" && return 1 |
|
|
696 | |
|
|
697 | local exec="${1}" |
|
|
698 | local name="${2:-${PN}}" |
|
|
699 | local icon="${3:-${PN}.png}" |
|
|
700 | local type="${4}" |
|
|
701 | local path="${5:-${GAMES_PREFIX}}" |
|
|
702 | if [ -z "${type}" ] |
|
|
703 | then |
|
|
704 | case ${CATEGORY} in |
|
|
705 | "app-emulation") |
|
|
706 | type=Emulator |
|
|
707 | ;; |
|
|
708 | "games-"*) |
|
|
709 | type=Game |
|
|
710 | ;; |
|
|
711 | "net-"*) |
|
|
712 | type=Network; |
|
|
713 | ;; |
|
|
714 | *) |
|
|
715 | type= |
|
|
716 | ;; |
|
|
717 | esac |
|
|
718 | fi |
|
|
719 | local desktop="${T}/${exec}.desktop" |
|
|
720 | |
|
|
721 | echo "[Desktop Entry] |
|
|
722 | Encoding=UTF-8 |
|
|
723 | Version=0.9.2 |
|
|
724 | Name=${name} |
|
|
725 | Type=Application |
|
|
726 | Comment=${DESCRIPTION} |
|
|
727 | Exec=${exec} |
|
|
728 | Path=${path} |
|
|
729 | Icon=${icon} |
|
|
730 | Categories=Application;${type};" > ${desktop} |
|
|
731 | |
|
|
732 | if [ -d "/usr/share/applications" ] |
|
|
733 | then |
|
|
734 | insinto /usr/share/applications |
|
|
735 | 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 | |
|
|
759 | return 0 |
|
|
760 | } |
|
|
761 | |
|
|
762 | # new convenience patch wrapper function to eventually replace epatch(), |
|
|
763 | # $PATCHES, $PATCHES1, src_unpack:patch, src_unpack:autopatch and |
|
|
764 | # /usr/bin/patch |
|
|
765 | # Features: |
|
|
766 | # - bulk patch handling similar to epatch()'s |
|
|
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 | |
|
|
774 | # accepts zero or more parameters specifying patchfiles and/or patchdirs |
|
|
775 | |
|
|
776 | # known issues: |
|
|
777 | # - only supports unified style patches (does anyone _really_ use anything |
|
|
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 | |
|
|
788 | debug-print-function ${FUNCNAME} $* |
|
|
789 | |
|
|
790 | local list= |
|
|
791 | local list2= |
|
|
792 | declare -i plevel |
|
|
793 | |
|
|
794 | # parse patch sources |
|
|
795 | for x in $* |
|
|
796 | do |
|
|
797 | debug-print "${FUNCNAME}: parsing parameter ${x}" |
|
|
798 | if [ -f "${x}" ] |
|
|
799 | then |
|
|
800 | list="${list} ${x}" |
|
|
801 | elif [ -d "${x}" ] |
|
|
802 | then |
|
|
803 | # handles patchdirs like epatch() for now: no recursion. |
|
|
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 |
|
|
808 | debug-print "${FUNCNAME}: parsing in subdir: file ${file}" |
|
|
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 |
|
|
815 | list="`echo ${list2} | sort` ${list}" |
|
|
816 | else |
|
|
817 | die "Couldn't find ${x}" |
|
|
818 | fi |
|
|
819 | done |
|
|
820 | |
|
|
821 | debug-print "${FUNCNAME}: final list of patches: ${list}" |
|
|
822 | |
|
|
823 | for x in ${list}; |
|
|
824 | do |
|
|
825 | debug-print "${FUNCNAME}: processing ${x}" |
|
|
826 | # deal with compressed files. /usr/bin/file is in the system profile, or should be. |
|
|
827 | case "`/usr/bin/file -b ${x}`" in |
|
|
828 | *gzip*) |
|
|
829 | patchfile="${T}/current.patch" |
|
|
830 | ungzip -c "${x}" > "${patchfile}" |
|
|
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 |
|
|
866 | target2="${target2#*/}" # removes piece of target2 upto the first occurence of / |
|
|
867 | plevel=$((plevel+1)) |
|
|
868 | debug-print "${FUNCNAME}: trying target2=${target2}, plevel=${plevel}" |
|
|
869 | [ "${target2}" == "${target2/\/}" ] && break |
|
|
870 | done |
|
|
871 | test -f "${target2}" && break |
|
|
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 |
|
|
898 | |
|
|
899 | } |
|
|
900 | |
|
|
901 | # Unpack those pesky makeself generated files ... |
|
|
902 | # They're shell scripts with the binary package tagged onto |
|
|
903 | # the end of the archive. Loki utilized the format as does |
|
|
904 | # many other game companies. |
|
|
905 | # |
|
|
906 | # Usage: unpack_makeself [file to unpack] [offset] |
|
|
907 | # - If the file is not specified then unpack will utilize ${A}. |
|
|
908 | # - If the offset is not specified then we will attempt to extract |
|
|
909 | # the proper offset from the script itself. |
|
|
910 | unpack_makeself() { |
|
|
911 | local src="$1" |
|
|
912 | local skip="$2" |
|
|
913 | |
|
|
914 | if [ -z "${src}" ] |
|
|
915 | then |
|
|
916 | src="${DISTDIR}/${A}" |
|
|
917 | else |
|
|
918 | if [ -e "${DISTDIR}/${src}" ] |
|
|
919 | then |
|
|
920 | src="${DISTDIR}/${src}" |
|
|
921 | elif [ -e "${PWD}/${src}" ] |
|
|
922 | then |
|
|
923 | src="${PWD}/${src}" |
|
|
924 | elif [ -e "${src}" ] |
|
|
925 | then |
|
|
926 | src="${src}" |
|
|
927 | fi |
|
|
928 | fi |
|
|
929 | [ ! -e "${src}" ] && die "Could not find requested makeself archive ${src}" |
|
|
930 | |
|
|
931 | local shrtsrc="`basename ${src}`" |
|
|
932 | echo ">>> Unpacking ${shrtsrc} to ${PWD}" |
|
|
933 | if [ -z "${skip}" ] |
|
|
934 | then |
|
|
935 | local ver="`grep -a '#.*Makeself' ${src} | awk '{print $NF}'`" |
|
|
936 | local skip=0 |
|
|
937 | case ${ver} in |
|
|
938 | 1.5.*) # tested 1.5.{3,4,5} ... guessing 1.5.x series is same |
|
|
939 | skip=`grep -a ^skip= ${src} | cut -d= -f2` |
|
|
940 | ;; |
|
|
941 | 2.0|2.0.1) |
|
|
942 | skip=`grep -a ^$'\t'tail ${src} | awk '{print $2}' | cut -b2-` |
|
|
943 | ;; |
|
|
944 | 2.1.1) |
|
|
945 | skip=`grep -a ^offset= ${src} | awk '{print $2}' | cut -b2-` |
|
|
946 | let skip="skip + 1" |
|
|
947 | ;; |
|
|
948 | 2.1.2) |
|
|
949 | skip=`grep -a ^offset= ${src} | awk '{print $3}' | head -n 1` |
|
|
950 | let skip="skip + 1" |
|
|
951 | ;; |
|
|
952 | 2.1.3) |
|
|
953 | skip=`grep -a ^offset= ${src} | awk '{print $3}'` |
|
|
954 | let skip="skip + 1" |
|
|
955 | ;; |
|
|
956 | *) |
|
|
957 | eerror "I'm sorry, but I was unable to support the Makeself file." |
|
|
958 | eerror "The version I detected was '${ver}'." |
|
|
959 | eerror "Please file a bug about the file ${shrtsrc} at" |
|
|
960 | eerror "http://bugs.gentoo.org/ so that support can be added." |
|
|
961 | die "makeself version '${ver}' not supported" |
|
|
962 | ;; |
|
|
963 | esac |
|
|
964 | debug-print "Detected Makeself version ${ver} ... using ${skip} as offset" |
|
|
965 | fi |
|
|
966 | |
|
|
967 | # lets grab the first few bytes of the file to figure out what kind of archive it is |
|
|
968 | local tmpfile="`mymktemp ${T}`" |
|
|
969 | tail -n +${skip} ${src} 2>/dev/null | head -c 512 > ${tmpfile} |
|
|
970 | local filetype="`file -b ${tmpfile}`" |
|
|
971 | case ${filetype} in |
|
|
972 | *tar\ archive) |
|
|
973 | tail -n +${skip} ${src} | tar -xf - |
|
|
974 | ;; |
|
|
975 | bzip2*) |
|
|
976 | tail -n +${skip} ${src} | bzip2 -dc | tar -xf - |
|
|
977 | ;; |
|
|
978 | gzip*) |
|
|
979 | tail -n +${skip} ${src} | tar -xzf - |
|
|
980 | ;; |
|
|
981 | *) |
|
|
982 | false |
|
|
983 | ;; |
|
|
984 | esac |
|
|
985 | assert "failure unpacking (${filetype}) makeself ${shrtsrc} ('${ver}' +${skip})" |
|
|
986 | } |
|
|
987 | |
|
|
988 | # Display a license for user to accept. |
|
|
989 | # |
|
|
990 | # Usage: check_license [license] |
|
|
991 | # - If the file is not specified then ${LICENSE} is used. |
|
|
992 | check_license() { |
|
|
993 | local lic=$1 |
|
|
994 | if [ -z "${lic}" ] ; then |
|
|
995 | lic="${PORTDIR}/licenses/${LICENSE}" |
|
|
996 | else |
|
|
997 | if [ -e "${PORTDIR}/licenses/${src}" ] ; then |
|
|
998 | lic="${PORTDIR}/licenses/${src}" |
|
|
999 | elif [ -e "${PWD}/${src}" ] ; then |
|
|
1000 | lic="${PWD}/${src}" |
|
|
1001 | elif [ -e "${src}" ] ; then |
|
|
1002 | lic="${src}" |
|
|
1003 | fi |
|
|
1004 | fi |
|
|
1005 | [ ! -f "${lic}" ] && die "Could not find requested license ${src}" |
|
|
1006 | local l="`basename ${lic}`" |
|
|
1007 | |
|
|
1008 | # here is where we check for the licenses the user already |
|
|
1009 | # accepted ... if we don't find a match, we make the user accept |
|
|
1010 | local alic |
|
|
1011 | for alic in ${ACCEPT_LICENSE} ; do |
|
|
1012 | [ "${alic}" == "*" ] && return 0 |
|
|
1013 | [ "${alic}" == "${l}" ] && return 0 |
|
|
1014 | done |
|
|
1015 | |
|
|
1016 | local licmsg="`mymktemp ${T}`" |
|
|
1017 | cat << EOF > ${licmsg} |
|
|
1018 | ********************************************************** |
|
|
1019 | The following license outlines the terms of use of this |
|
|
1020 | package. You MUST accept this license for installation to |
|
|
1021 | continue. When you are done viewing, hit 'q'. If you |
|
|
1022 | CTRL+C out of this, the install will not run! |
|
|
1023 | ********************************************************** |
|
|
1024 | |
|
|
1025 | EOF |
|
|
1026 | cat ${lic} >> ${licmsg} |
|
|
1027 | ${PAGER:-less} ${licmsg} || die "Could not execute pager (${PAGER}) to accept ${lic}" |
|
|
1028 | einfon "Do you accept the terms of this license (${l})? [yes/no] " |
|
|
1029 | read alic |
|
|
1030 | case ${alic} in |
|
|
1031 | yes|Yes|y|Y) |
|
|
1032 | return 0 |
|
|
1033 | ;; |
|
|
1034 | *) |
|
|
1035 | echo;echo;echo |
|
|
1036 | eerror "You MUST accept the license to continue! Exiting!" |
|
|
1037 | die "Failed to accept license" |
|
|
1038 | ;; |
|
|
1039 | esac |
|
|
1040 | } |