| 1 | # Copyright 1999-2009 Gentoo Foundation |
1 | # Copyright 1999-2011 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.341 2010/03/23 03:40:18 vapier Exp $ |
3 | # $Header: /var/cvsroot/gentoo-x86/eclass/eutils.eclass,v 1.373 2011/12/16 23:38:41 vapier Exp $ |
| 4 | |
4 | |
| 5 | # @ECLASS: eutils.eclass |
5 | # @ECLASS: eutils.eclass |
| 6 | # @MAINTAINER: |
6 | # @MAINTAINER: |
| 7 | # base-system@gentoo.org |
7 | # base-system@gentoo.org |
| 8 | # @BLURB: many extra (but common) functions that are used in ebuilds |
8 | # @BLURB: many extra (but common) functions that are used in ebuilds |
| … | |
… | |
| 13 | # home rather than having multiple ebuilds implementing the same thing. |
13 | # home rather than having multiple ebuilds implementing the same thing. |
| 14 | # |
14 | # |
| 15 | # Due to the nature of this eclass, some functions may have maintainers |
15 | # Due to the nature of this eclass, some functions may have maintainers |
| 16 | # different from the overall eclass! |
16 | # different from the overall eclass! |
| 17 | |
17 | |
|
|
18 | if [[ ${___ECLASS_ONCE_EUTILS} != "recur -_+^+_- spank" ]] ; then |
|
|
19 | ___ECLASS_ONCE_EUTILS="recur -_+^+_- spank" |
|
|
20 | |
| 18 | inherit multilib portability |
21 | inherit multilib portability user |
| 19 | |
22 | |
| 20 | DESCRIPTION="Based on the ${ECLASS} eclass" |
23 | DESCRIPTION="Based on the ${ECLASS} eclass" |
| 21 | |
24 | |
| 22 | if has "${EAPI:-0}" 0 1 2; then |
25 | if has "${EAPI:-0}" 0 1 2; then |
| 23 | |
26 | |
| … | |
… | |
| 61 | ewarn "QA Notice: epause is not defined in EAPI=${EAPI}, please file a bug at http://bugs.gentoo.org" |
64 | ewarn "QA Notice: epause is not defined in EAPI=${EAPI}, please file a bug at http://bugs.gentoo.org" |
| 62 | } |
65 | } |
| 63 | |
66 | |
| 64 | fi |
67 | fi |
| 65 | |
68 | |
|
|
69 | # @FUNCTION: eqawarn |
|
|
70 | # @USAGE: [message] |
|
|
71 | # @DESCRIPTION: |
|
|
72 | # Proxy to ewarn for package managers that don't provide eqawarn and use the PM |
|
|
73 | # implementation if available. Reuses PORTAGE_ELOG_CLASSES as set by the dev |
|
|
74 | # profile. |
|
|
75 | if ! declare -F eqawarn >/dev/null ; then |
|
|
76 | eqawarn() { |
|
|
77 | has qa ${PORTAGE_ELOG_CLASSES} && ewarn "$@" |
|
|
78 | : |
|
|
79 | } |
|
|
80 | fi |
|
|
81 | |
| 66 | # @FUNCTION: ecvs_clean |
82 | # @FUNCTION: ecvs_clean |
| 67 | # @USAGE: [list of dirs] |
83 | # @USAGE: [list of dirs] |
| 68 | # @DESCRIPTION: |
84 | # @DESCRIPTION: |
| 69 | # Remove CVS directories recursiveley. Useful when a source tarball contains |
85 | # Remove CVS directories recursiveley. Useful when a source tarball contains |
| 70 | # internal CVS directories. Defaults to $PWD. |
86 | # internal CVS directories. Defaults to $PWD. |
| … | |
… | |
| 80 | # Remove .svn directories recursiveley. Useful when a source tarball contains |
96 | # Remove .svn directories recursiveley. Useful when a source tarball contains |
| 81 | # internal Subversion directories. Defaults to $PWD. |
97 | # internal Subversion directories. Defaults to $PWD. |
| 82 | esvn_clean() { |
98 | esvn_clean() { |
| 83 | [[ -z $* ]] && set -- . |
99 | [[ -z $* ]] && set -- . |
| 84 | find "$@" -type d -name '.svn' -prune -print0 | xargs -0 rm -rf |
100 | find "$@" -type d -name '.svn' -prune -print0 | xargs -0 rm -rf |
|
|
101 | } |
|
|
102 | |
|
|
103 | # @FUNCTION: estack_push |
|
|
104 | # @USAGE: <stack> [items to push] |
|
|
105 | # @DESCRIPTION: |
|
|
106 | # Push any number of items onto the specified stack. Pick a name that |
|
|
107 | # is a valid variable (i.e. stick to alphanumerics), and push as many |
|
|
108 | # items as you like onto the stack at once. |
|
|
109 | # |
|
|
110 | # The following code snippet will echo 5, then 4, then 3, then ... |
|
|
111 | # @CODE |
|
|
112 | # estack_push mystack 1 2 3 4 5 |
|
|
113 | # while estack_pop mystack i ; do |
|
|
114 | # echo "${i}" |
|
|
115 | # done |
|
|
116 | # @CODE |
|
|
117 | estack_push() { |
|
|
118 | [[ $# -eq 0 ]] && die "estack_push: incorrect # of arguments" |
|
|
119 | local stack_name="__ESTACK_$1__" ; shift |
|
|
120 | eval ${stack_name}+=\( \"\$@\" \) |
|
|
121 | } |
|
|
122 | |
|
|
123 | # @FUNCTION: estack_pop |
|
|
124 | # @USAGE: <stack> [variable] |
|
|
125 | # @DESCRIPTION: |
|
|
126 | # Pop a single item off the specified stack. If a variable is specified, |
|
|
127 | # the popped item is stored there. If no more items are available, return |
|
|
128 | # 1, else return 0. See estack_push for more info. |
|
|
129 | estack_pop() { |
|
|
130 | [[ $# -eq 0 || $# -gt 2 ]] && die "estack_pop: incorrect # of arguments" |
|
|
131 | |
|
|
132 | # We use the fugly __estack_xxx var names to avoid collision with |
|
|
133 | # passing back the return value. If we used "local i" and the |
|
|
134 | # caller ran `estack_pop ... i`, we'd end up setting the local |
|
|
135 | # copy of "i" rather than the caller's copy. The __estack_xxx |
|
|
136 | # garbage is preferable to using $1/$2 everywhere as that is a |
|
|
137 | # bit harder to read. |
|
|
138 | local __estack_name="__ESTACK_$1__" ; shift |
|
|
139 | local __estack_retvar=$1 ; shift |
|
|
140 | eval local __estack_i=\${#${__estack_name}[@]} |
|
|
141 | # Don't warn -- let the caller interpret this as a failure |
|
|
142 | # or as normal behavior (akin to `shift`) |
|
|
143 | [[ $(( --__estack_i )) -eq -1 ]] && return 1 |
|
|
144 | |
|
|
145 | if [[ -n ${__estack_retvar} ]] ; then |
|
|
146 | eval ${__estack_retvar}=\"\${${__estack_name}[${__estack_i}]}\" |
|
|
147 | fi |
|
|
148 | eval unset ${__estack_name}[${__estack_i}] |
| 85 | } |
149 | } |
| 86 | |
150 | |
| 87 | # @FUNCTION: eshopts_push |
151 | # @FUNCTION: eshopts_push |
| 88 | # @USAGE: [options to `set` or `shopt`] |
152 | # @USAGE: [options to `set` or `shopt`] |
| 89 | # @DESCRIPTION: |
153 | # @DESCRIPTION: |
| … | |
… | |
| 108 | # eshopts_pop |
172 | # eshopts_pop |
| 109 | # @CODE |
173 | # @CODE |
| 110 | eshopts_push() { |
174 | eshopts_push() { |
| 111 | # have to assume __ESHOPTS_SAVE__ isn't screwed with |
175 | # have to assume __ESHOPTS_SAVE__ isn't screwed with |
| 112 | # as a `declare -a` here will reset its value |
176 | # as a `declare -a` here will reset its value |
| 113 | local i=${#__ESHOPTS_SAVE__[@]} |
|
|
| 114 | if [[ $1 == -[su] ]] ; then |
177 | if [[ $1 == -[su] ]] ; then |
| 115 | __ESHOPTS_SAVE__[$i]=$(shopt -p) |
178 | estack_push eshopts "$(shopt -p)" |
| 116 | [[ $# -eq 0 ]] && return 0 |
179 | [[ $# -eq 0 ]] && return 0 |
| 117 | shopt "$@" || die "eshopts_push: bad options to shopt: $*" |
180 | shopt "$@" || die "${FUNCNAME}: bad options to shopt: $*" |
| 118 | else |
181 | else |
| 119 | __ESHOPTS_SAVE__[$i]=$- |
182 | estack_push eshopts $- |
| 120 | [[ $# -eq 0 ]] && return 0 |
183 | [[ $# -eq 0 ]] && return 0 |
| 121 | set "$@" || die "eshopts_push: bad options to set: $*" |
184 | set "$@" || die "${FUNCNAME}: bad options to set: $*" |
| 122 | fi |
185 | fi |
| 123 | } |
186 | } |
| 124 | |
187 | |
| 125 | # @FUNCTION: eshopts_pop |
188 | # @FUNCTION: eshopts_pop |
| 126 | # @USAGE: |
189 | # @USAGE: |
| 127 | # @DESCRIPTION: |
190 | # @DESCRIPTION: |
| 128 | # Restore the shell options to the state saved with the corresponding |
191 | # Restore the shell options to the state saved with the corresponding |
| 129 | # eshopts_push call. See that function for more details. |
192 | # eshopts_push call. See that function for more details. |
| 130 | eshopts_pop() { |
193 | eshopts_pop() { |
| 131 | [[ $# -ne 0 ]] && die "eshopts_pop takes no arguments" |
194 | local s |
| 132 | local i=$(( ${#__ESHOPTS_SAVE__[@]} - 1 )) |
195 | estack_pop eshopts s || die "${FUNCNAME}: unbalanced push" |
| 133 | [[ ${i} -eq -1 ]] && die "eshopts_{push,pop}: unbalanced pair" |
|
|
| 134 | local s=${__ESHOPTS_SAVE__[$i]} |
|
|
| 135 | unset __ESHOPTS_SAVE__[$i] |
|
|
| 136 | if [[ ${s} == "shopt -"* ]] ; then |
196 | if [[ ${s} == "shopt -"* ]] ; then |
| 137 | eval "${s}" || die "eshopts_pop: sanity: invalid shopt options: ${s}" |
197 | eval "${s}" || die "${FUNCNAME}: sanity: invalid shopt options: ${s}" |
| 138 | else |
198 | else |
| 139 | set +$- || die "eshopts_pop: sanity: invalid shell settings: $-" |
199 | set +$- || die "${FUNCNAME}: sanity: invalid shell settings: $-" |
| 140 | set -${s} || die "eshopts_pop: sanity: unable to restore saved shell settings: ${s}" |
200 | set -${s} || die "${FUNCNAME}: sanity: unable to restore saved shell settings: ${s}" |
| 141 | fi |
201 | fi |
|
|
202 | } |
|
|
203 | |
|
|
204 | # @FUNCTION: eumask_push |
|
|
205 | # @USAGE: <new umask> |
|
|
206 | # @DESCRIPTION: |
|
|
207 | # Set the umask to the new value specified while saving the previous |
|
|
208 | # value onto a stack. Useful for temporarily changing the umask. |
|
|
209 | eumask_push() { |
|
|
210 | estack_push eumask "$(umask)" |
|
|
211 | umask "$@" || die "${FUNCNAME}: bad options to umask: $*" |
|
|
212 | } |
|
|
213 | |
|
|
214 | # @FUNCTION: eumask_pop |
|
|
215 | # @USAGE: |
|
|
216 | # @DESCRIPTION: |
|
|
217 | # Restore the previous umask state. |
|
|
218 | eumask_pop() { |
|
|
219 | local s |
|
|
220 | estack_pop eumask s || die "${FUNCNAME}: unbalanced push" |
|
|
221 | umask ${s} || die "${FUNCNAME}: sanity: could not restore umask: ${s}" |
| 142 | } |
222 | } |
| 143 | |
223 | |
| 144 | # @VARIABLE: EPATCH_SOURCE |
224 | # @VARIABLE: EPATCH_SOURCE |
| 145 | # @DESCRIPTION: |
225 | # @DESCRIPTION: |
| 146 | # Default directory to search for patches. |
226 | # Default directory to search for patches. |
| … | |
… | |
| 189 | # If you do not specify any options, then epatch will default to the directory |
269 | # If you do not specify any options, then epatch will default to the directory |
| 190 | # specified by EPATCH_SOURCE. |
270 | # specified by EPATCH_SOURCE. |
| 191 | # |
271 | # |
| 192 | # When processing directories, epatch will apply all patches that match: |
272 | # When processing directories, epatch will apply all patches that match: |
| 193 | # @CODE |
273 | # @CODE |
| 194 | # ${EPATCH_FORCE} == "yes" |
274 | # if ${EPATCH_FORCE} != "yes" |
| 195 | # ??_${ARCH}_foo.${EPATCH_SUFFIX} |
275 | # ??_${ARCH}_foo.${EPATCH_SUFFIX} |
| 196 | # else |
276 | # else |
| 197 | # *.${EPATCH_SUFFIX} |
277 | # *.${EPATCH_SUFFIX} |
| 198 | # @CODE |
278 | # @CODE |
| 199 | # The leading ?? are typically numbers used to force consistent patch ordering. |
279 | # The leading ?? are typically numbers used to force consistent patch ordering. |
| … | |
… | |
| 238 | local EPATCH_SUFFIX=$1 |
318 | local EPATCH_SUFFIX=$1 |
| 239 | |
319 | |
| 240 | elif [[ -d $1 ]] ; then |
320 | elif [[ -d $1 ]] ; then |
| 241 | # Some people like to make dirs of patches w/out suffixes (vim) |
321 | # Some people like to make dirs of patches w/out suffixes (vim) |
| 242 | set -- "$1"/*${EPATCH_SUFFIX:+."${EPATCH_SUFFIX}"} |
322 | set -- "$1"/*${EPATCH_SUFFIX:+."${EPATCH_SUFFIX}"} |
|
|
323 | |
|
|
324 | elif [[ -f ${EPATCH_SOURCE}/$1 ]] ; then |
|
|
325 | # Re-use EPATCH_SOURCE as a search dir |
|
|
326 | epatch "${EPATCH_SOURCE}/$1" |
|
|
327 | return $? |
| 243 | |
328 | |
| 244 | else |
329 | else |
| 245 | # sanity check ... if it isn't a dir or file, wtf man ? |
330 | # sanity check ... if it isn't a dir or file, wtf man ? |
| 246 | [[ $# -ne 0 ]] && EPATCH_SOURCE=$1 |
331 | [[ $# -ne 0 ]] && EPATCH_SOURCE=$1 |
| 247 | echo |
332 | echo |
| … | |
… | |
| 278 | # ???_arch_foo.patch |
363 | # ???_arch_foo.patch |
| 279 | # Else, skip this input altogether |
364 | # Else, skip this input altogether |
| 280 | local a=${patchname#*_} # strip the ???_ |
365 | local a=${patchname#*_} # strip the ???_ |
| 281 | a=${a%%_*} # strip the _foo.patch |
366 | a=${a%%_*} # strip the _foo.patch |
| 282 | if ! [[ ${SINGLE_PATCH} == "yes" || \ |
367 | if ! [[ ${SINGLE_PATCH} == "yes" || \ |
| 283 | ${EPATCH_FORCE} == "yes" || \ |
368 | ${EPATCH_FORCE} == "yes" || \ |
| 284 | ${a} == all || \ |
369 | ${a} == all || \ |
| 285 | ${a} == ${ARCH} ]] |
370 | ${a} == ${ARCH} ]] |
| 286 | then |
371 | then |
| 287 | continue |
372 | continue |
| 288 | fi |
373 | fi |
| 289 | |
374 | |
| 290 | # Let people filter things dynamically |
375 | # Let people filter things dynamically |
| … | |
… | |
| 318 | local STDERR_TARGET="${T}/${patchname}.out" |
403 | local STDERR_TARGET="${T}/${patchname}.out" |
| 319 | if [[ -e ${STDERR_TARGET} ]] ; then |
404 | if [[ -e ${STDERR_TARGET} ]] ; then |
| 320 | STDERR_TARGET="${T}/${patchname}-$$.out" |
405 | STDERR_TARGET="${T}/${patchname}-$$.out" |
| 321 | fi |
406 | fi |
| 322 | |
407 | |
| 323 | printf "***** %s *****\n\n" "${patchname}" > "${STDERR_TARGET}" |
408 | printf "***** %s *****\nPWD: %s\n\n" "${patchname}" "${PWD}" > "${STDERR_TARGET}" |
| 324 | |
409 | |
| 325 | # Decompress the patch if need be |
410 | # Decompress the patch if need be |
| 326 | local count=0 |
411 | local count=0 |
| 327 | local PATCH_TARGET |
412 | local PATCH_TARGET |
| 328 | if [[ -n ${PIPE_CMD} ]] ; then |
413 | if [[ -n ${PIPE_CMD} ]] ; then |
| … | |
… | |
| 347 | local abs_paths=$(egrep -n '^[-+]{3} /' "${PATCH_TARGET}" | awk '$2 != "/dev/null" { print }') |
432 | local abs_paths=$(egrep -n '^[-+]{3} /' "${PATCH_TARGET}" | awk '$2 != "/dev/null" { print }') |
| 348 | if [[ -n ${abs_paths} ]] ; then |
433 | if [[ -n ${abs_paths} ]] ; then |
| 349 | count=1 |
434 | count=1 |
| 350 | printf "NOTE: skipping -p0 due to absolute paths in patch:\n%s\n" "${abs_paths}" >> "${STDERR_TARGET}" |
435 | printf "NOTE: skipping -p0 due to absolute paths in patch:\n%s\n" "${abs_paths}" >> "${STDERR_TARGET}" |
| 351 | fi |
436 | fi |
|
|
437 | # Similar reason, but with relative paths. |
|
|
438 | local rel_paths=$(egrep -n '^[-+]{3} [^ ]*[.][.]/' "${PATCH_TARGET}") |
|
|
439 | if [[ -n ${rel_paths} ]] ; then |
|
|
440 | eqawarn "QA Notice: Your patch uses relative paths '../'." |
|
|
441 | eqawarn " In the future this will cause a failure." |
|
|
442 | eqawarn "${rel_paths}" |
|
|
443 | fi |
| 352 | |
444 | |
| 353 | # Dynamically detect the correct -p# ... i'm lazy, so shoot me :/ |
445 | # Dynamically detect the correct -p# ... i'm lazy, so shoot me :/ |
| 354 | while [[ ${count} -lt 5 ]] ; do |
446 | while [[ ${count} -lt 5 ]] ; do |
| 355 | # Generate some useful debug info ... |
447 | # Generate some useful debug info ... |
| 356 | ( |
448 | ( |
| 357 | _epatch_draw_line "***** ${patchname} *****" |
449 | _epatch_draw_line "***** ${patchname} *****" |
| 358 | echo |
450 | echo |
| 359 | echo "PATCH COMMAND: patch -p${count} ${EPATCH_OPTS} < '${PATCH_TARGET}'" |
451 | echo "PATCH COMMAND: patch -p${count} ${EPATCH_OPTS} < '${PATCH_TARGET}'" |
| 360 | echo |
452 | echo |
| 361 | _epatch_draw_line "***** ${patchname} *****" |
453 | _epatch_draw_line "***** ${patchname} *****" |
|
|
454 | patch -p${count} ${EPATCH_OPTS} --dry-run -f < "${PATCH_TARGET}" 2>&1 |
|
|
455 | ret=$? |
|
|
456 | echo |
|
|
457 | echo "patch program exited with status ${ret}" |
|
|
458 | exit ${ret} |
| 362 | ) >> "${STDERR_TARGET}" |
459 | ) >> "${STDERR_TARGET}" |
| 363 | |
460 | |
| 364 | if (patch -p${count} ${EPATCH_OPTS} --dry-run -f < "${PATCH_TARGET}") >> "${STDERR_TARGET}" 2>&1 ; then |
461 | if [ $? -eq 0 ] ; then |
| 365 | ( |
462 | ( |
| 366 | _epatch_draw_line "***** ${patchname} *****" |
463 | _epatch_draw_line "***** ${patchname} *****" |
| 367 | echo |
464 | echo |
| 368 | echo "ACTUALLY APPLYING ${patchname} ..." |
465 | echo "ACTUALLY APPLYING ${patchname} ..." |
| 369 | echo |
466 | echo |
| 370 | _epatch_draw_line "***** ${patchname} *****" |
467 | _epatch_draw_line "***** ${patchname} *****" |
| 371 | patch -p${count} ${EPATCH_OPTS} < "${PATCH_TARGET}" 2>&1 |
468 | patch -p${count} ${EPATCH_OPTS} < "${PATCH_TARGET}" 2>&1 |
|
|
469 | ret=$? |
|
|
470 | echo |
|
|
471 | echo "patch program exited with status ${ret}" |
|
|
472 | exit ${ret} |
| 372 | ) >> "${STDERR_TARGET}" |
473 | ) >> "${STDERR_TARGET}" |
| 373 | |
474 | |
| 374 | if [ $? -ne 0 ] ; then |
475 | if [ $? -ne 0 ] ; then |
| 375 | echo |
476 | echo |
| 376 | eerror "A dry-run of patch command succeeded, but actually" |
477 | eerror "A dry-run of patch command succeeded, but actually" |
| … | |
… | |
| 407 | done |
508 | done |
| 408 | |
509 | |
| 409 | [[ ${SINGLE_PATCH} == "no" ]] && einfo "Done with patching" |
510 | [[ ${SINGLE_PATCH} == "no" ]] && einfo "Done with patching" |
| 410 | : # everything worked |
511 | : # everything worked |
| 411 | } |
512 | } |
|
|
513 | |
|
|
514 | # @FUNCTION: epatch_user |
|
|
515 | # @USAGE: |
|
|
516 | # @DESCRIPTION: |
|
|
517 | # Applies user-provided patches to the source tree. The patches are |
|
|
518 | # taken from /etc/portage/patches/<CATEGORY>/<PF|P|PN>/, where the first |
|
|
519 | # of these three directories to exist will be the one to use, ignoring |
|
|
520 | # any more general directories which might exist as well. |
|
|
521 | # |
|
|
522 | # User patches are intended for quick testing of patches without ebuild |
|
|
523 | # modifications, as well as for permanent customizations a user might |
|
|
524 | # desire. Obviously, there can be no official support for arbitrarily |
|
|
525 | # patched ebuilds. So whenever a build log in a bug report mentions that |
|
|
526 | # user patches were applied, the user should be asked to reproduce the |
|
|
527 | # problem without these. |
|
|
528 | # |
|
|
529 | # Not all ebuilds do call this function, so placing patches in the |
|
|
530 | # stated directory might or might not work, depending on the package and |
|
|
531 | # the eclasses it inherits and uses. It is safe to call the function |
|
|
532 | # repeatedly, so it is always possible to add a call at the ebuild |
|
|
533 | # level. The first call is the time when the patches will be |
|
|
534 | # applied. |
|
|
535 | # |
|
|
536 | # Ideally, this function should be called after gentoo-specific patches |
|
|
537 | # have been applied, so that their code can be modified as well, but |
|
|
538 | # before calls to e.g. eautoreconf, as the user patches might affect |
|
|
539 | # autotool input files as well. |
| 412 | epatch_user() { |
540 | epatch_user() { |
| 413 | [[ $# -ne 0 ]] && die "epatch_user takes no options" |
541 | [[ $# -ne 0 ]] && die "epatch_user takes no options" |
|
|
542 | |
|
|
543 | # Allow multiple calls to this function; ignore all but the first |
|
|
544 | local applied="${T}/epatch_user.applied" |
|
|
545 | [[ -e ${applied} ]] && return 2 |
| 414 | |
546 | |
| 415 | # don't clobber any EPATCH vars that the parent might want |
547 | # don't clobber any EPATCH vars that the parent might want |
| 416 | local EPATCH_SOURCE check base=${PORTAGE_CONFIGROOT%/}/etc/portage/patches |
548 | local EPATCH_SOURCE check base=${PORTAGE_CONFIGROOT%/}/etc/portage/patches |
| 417 | for check in {${CATEGORY}/${PF},${CATEGORY}/${P},${CATEGORY}/${PN}}; do |
549 | for check in {${CATEGORY}/${PF},${CATEGORY}/${P},${CATEGORY}/${PN}}; do |
| 418 | EPATCH_SOURCE=${base}/${CTARGET}/${check} |
550 | EPATCH_SOURCE=${base}/${CTARGET}/${check} |
| … | |
… | |
| 422 | EPATCH_SOURCE=${EPATCH_SOURCE} \ |
554 | EPATCH_SOURCE=${EPATCH_SOURCE} \ |
| 423 | EPATCH_SUFFIX="patch" \ |
555 | EPATCH_SUFFIX="patch" \ |
| 424 | EPATCH_FORCE="yes" \ |
556 | EPATCH_FORCE="yes" \ |
| 425 | EPATCH_MULTI_MSG="Applying user patches from ${EPATCH_SOURCE} ..." \ |
557 | EPATCH_MULTI_MSG="Applying user patches from ${EPATCH_SOURCE} ..." \ |
| 426 | epatch |
558 | epatch |
| 427 | break |
559 | echo "${EPATCH_SOURCE}" > "${applied}" |
|
|
560 | return 0 |
| 428 | fi |
561 | fi |
| 429 | done |
562 | done |
|
|
563 | echo "none" > "${applied}" |
|
|
564 | return 1 |
| 430 | } |
565 | } |
| 431 | |
566 | |
| 432 | # @FUNCTION: emktemp |
567 | # @FUNCTION: emktemp |
| 433 | # @USAGE: [temp dir] |
568 | # @USAGE: [temp dir] |
| 434 | # @DESCRIPTION: |
569 | # @DESCRIPTION: |
| … | |
… | |
| 462 | TMPDIR="${topdir}" mktemp -dt tmp.XXXXXXXXXX |
597 | TMPDIR="${topdir}" mktemp -dt tmp.XXXXXXXXXX |
| 463 | fi |
598 | fi |
| 464 | fi |
599 | fi |
| 465 | } |
600 | } |
| 466 | |
601 | |
| 467 | # @FUNCTION: egetent |
|
|
| 468 | # @USAGE: <database> <key> |
|
|
| 469 | # @MAINTAINER: |
|
|
| 470 | # base-system@gentoo.org (Linux) |
|
|
| 471 | # Joe Jezak <josejx@gmail.com> (OS X) |
|
|
| 472 | # usata@gentoo.org (OS X) |
|
|
| 473 | # Aaron Walker <ka0ttic@gentoo.org> (FreeBSD) |
|
|
| 474 | # @DESCRIPTION: |
|
|
| 475 | # Small wrapper for getent (Linux), |
|
|
| 476 | # nidump (< Mac OS X 10.5), dscl (Mac OS X 10.5), |
|
|
| 477 | # and pw (FreeBSD) used in enewuser()/enewgroup() |
|
|
| 478 | egetent() { |
|
|
| 479 | case ${CHOST} in |
|
|
| 480 | *-darwin[678]) |
|
|
| 481 | case "$2" in |
|
|
| 482 | *[!0-9]*) # Non numeric |
|
|
| 483 | nidump $1 . | awk -F":" "{ if (\$1 ~ /^$2$/) {print \$0;exit;} }" |
|
|
| 484 | ;; |
|
|
| 485 | *) # Numeric |
|
|
| 486 | nidump $1 . | awk -F":" "{ if (\$3 == $2) {print \$0;exit;} }" |
|
|
| 487 | ;; |
|
|
| 488 | esac |
|
|
| 489 | ;; |
|
|
| 490 | *-darwin*) |
|
|
| 491 | local mytype=$1 |
|
|
| 492 | [[ "passwd" == $mytype ]] && mytype="Users" |
|
|
| 493 | [[ "group" == $mytype ]] && mytype="Groups" |
|
|
| 494 | case "$2" in |
|
|
| 495 | *[!0-9]*) # Non numeric |
|
|
| 496 | dscl . -read /$mytype/$2 2>/dev/null |grep RecordName |
|
|
| 497 | ;; |
|
|
| 498 | *) # Numeric |
|
|
| 499 | local mykey="UniqueID" |
|
|
| 500 | [[ $mytype == "Groups" ]] && mykey="PrimaryGroupID" |
|
|
| 501 | dscl . -search /$mytype $mykey $2 2>/dev/null |
|
|
| 502 | ;; |
|
|
| 503 | esac |
|
|
| 504 | ;; |
|
|
| 505 | *-freebsd*|*-dragonfly*) |
|
|
| 506 | local opts action="user" |
|
|
| 507 | [[ $1 == "passwd" ]] || action="group" |
|
|
| 508 | |
|
|
| 509 | # lookup by uid/gid |
|
|
| 510 | if [[ $2 == [[:digit:]]* ]] ; then |
|
|
| 511 | [[ ${action} == "user" ]] && opts="-u" || opts="-g" |
|
|
| 512 | fi |
|
|
| 513 | |
|
|
| 514 | pw show ${action} ${opts} "$2" -q |
|
|
| 515 | ;; |
|
|
| 516 | *-netbsd*|*-openbsd*) |
|
|
| 517 | grep "$2:\*:" /etc/$1 |
|
|
| 518 | ;; |
|
|
| 519 | *) |
|
|
| 520 | type -p nscd >& /dev/null && nscd -i "$1" |
|
|
| 521 | getent "$1" "$2" |
|
|
| 522 | ;; |
|
|
| 523 | esac |
|
|
| 524 | } |
|
|
| 525 | |
|
|
| 526 | # @FUNCTION: enewuser |
|
|
| 527 | # @USAGE: <user> [uid] [shell] [homedir] [groups] [params] |
|
|
| 528 | # @DESCRIPTION: |
|
|
| 529 | # Same as enewgroup, you are not required to understand how to properly add |
|
|
| 530 | # a user to the system. The only required parameter is the username. |
|
|
| 531 | # Default uid is (pass -1 for this) next available, default shell is |
|
|
| 532 | # /bin/false, default homedir is /dev/null, there are no default groups, |
|
|
| 533 | # and default params sets the comment as 'added by portage for ${PN}'. |
|
|
| 534 | enewuser() { |
|
|
| 535 | case ${EBUILD_PHASE} in |
|
|
| 536 | unpack|compile|test|install) |
|
|
| 537 | eerror "'enewuser()' called from '${EBUILD_PHASE}()' which is not a pkg_* function." |
|
|
| 538 | eerror "Package fails at QA and at life. Please file a bug." |
|
|
| 539 | die "Bad package! enewuser is only for use in pkg_* functions!" |
|
|
| 540 | esac |
|
|
| 541 | |
|
|
| 542 | # get the username |
|
|
| 543 | local euser=$1; shift |
|
|
| 544 | if [[ -z ${euser} ]] ; then |
|
|
| 545 | eerror "No username specified !" |
|
|
| 546 | die "Cannot call enewuser without a username" |
|
|
| 547 | fi |
|
|
| 548 | |
|
|
| 549 | # lets see if the username already exists |
|
|
| 550 | if [[ -n $(egetent passwd "${euser}") ]] ; then |
|
|
| 551 | return 0 |
|
|
| 552 | fi |
|
|
| 553 | einfo "Adding user '${euser}' to your system ..." |
|
|
| 554 | |
|
|
| 555 | # options to pass to useradd |
|
|
| 556 | local opts= |
|
|
| 557 | |
|
|
| 558 | # handle uid |
|
|
| 559 | local euid=$1; shift |
|
|
| 560 | if [[ -n ${euid} && ${euid} != -1 ]] ; then |
|
|
| 561 | if [[ ${euid} -gt 0 ]] ; then |
|
|
| 562 | if [[ -n $(egetent passwd ${euid}) ]] ; then |
|
|
| 563 | euid="next" |
|
|
| 564 | fi |
|
|
| 565 | else |
|
|
| 566 | eerror "Userid given but is not greater than 0 !" |
|
|
| 567 | die "${euid} is not a valid UID" |
|
|
| 568 | fi |
|
|
| 569 | else |
|
|
| 570 | euid="next" |
|
|
| 571 | fi |
|
|
| 572 | if [[ ${euid} == "next" ]] ; then |
|
|
| 573 | for ((euid = 101; euid <= 999; euid++)); do |
|
|
| 574 | [[ -z $(egetent passwd ${euid}) ]] && break |
|
|
| 575 | done |
|
|
| 576 | fi |
|
|
| 577 | opts="${opts} -u ${euid}" |
|
|
| 578 | einfo " - Userid: ${euid}" |
|
|
| 579 | |
|
|
| 580 | # handle shell |
|
|
| 581 | local eshell=$1; shift |
|
|
| 582 | if [[ ! -z ${eshell} ]] && [[ ${eshell} != "-1" ]] ; then |
|
|
| 583 | if [[ ! -e ${ROOT}${eshell} ]] ; then |
|
|
| 584 | eerror "A shell was specified but it does not exist !" |
|
|
| 585 | die "${eshell} does not exist in ${ROOT}" |
|
|
| 586 | fi |
|
|
| 587 | if [[ ${eshell} == */false || ${eshell} == */nologin ]] ; then |
|
|
| 588 | eerror "Do not specify ${eshell} yourself, use -1" |
|
|
| 589 | die "Pass '-1' as the shell parameter" |
|
|
| 590 | fi |
|
|
| 591 | else |
|
|
| 592 | for shell in /sbin/nologin /usr/sbin/nologin /bin/false /usr/bin/false /dev/null ; do |
|
|
| 593 | [[ -x ${ROOT}${shell} ]] && break |
|
|
| 594 | done |
|
|
| 595 | |
|
|
| 596 | if [[ ${shell} == "/dev/null" ]] ; then |
|
|
| 597 | eerror "Unable to identify the shell to use, proceeding with userland default." |
|
|
| 598 | case ${USERLAND} in |
|
|
| 599 | GNU) shell="/bin/false" ;; |
|
|
| 600 | BSD) shell="/sbin/nologin" ;; |
|
|
| 601 | Darwin) shell="/usr/sbin/nologin" ;; |
|
|
| 602 | *) die "Unable to identify the default shell for userland ${USERLAND}" |
|
|
| 603 | esac |
|
|
| 604 | fi |
|
|
| 605 | |
|
|
| 606 | eshell=${shell} |
|
|
| 607 | fi |
|
|
| 608 | einfo " - Shell: ${eshell}" |
|
|
| 609 | opts="${opts} -s ${eshell}" |
|
|
| 610 | |
|
|
| 611 | # handle homedir |
|
|
| 612 | local ehome=$1; shift |
|
|
| 613 | if [[ -z ${ehome} ]] || [[ ${ehome} == "-1" ]] ; then |
|
|
| 614 | ehome="/dev/null" |
|
|
| 615 | fi |
|
|
| 616 | einfo " - Home: ${ehome}" |
|
|
| 617 | opts="${opts} -d ${ehome}" |
|
|
| 618 | |
|
|
| 619 | # handle groups |
|
|
| 620 | local egroups=$1; shift |
|
|
| 621 | if [[ ! -z ${egroups} ]] ; then |
|
|
| 622 | local oldifs=${IFS} |
|
|
| 623 | local defgroup="" exgroups="" |
|
|
| 624 | |
|
|
| 625 | export IFS="," |
|
|
| 626 | for g in ${egroups} ; do |
|
|
| 627 | export IFS=${oldifs} |
|
|
| 628 | if [[ -z $(egetent group "${g}") ]] ; then |
|
|
| 629 | eerror "You must add group ${g} to the system first" |
|
|
| 630 | die "${g} is not a valid GID" |
|
|
| 631 | fi |
|
|
| 632 | if [[ -z ${defgroup} ]] ; then |
|
|
| 633 | defgroup=${g} |
|
|
| 634 | else |
|
|
| 635 | exgroups="${exgroups},${g}" |
|
|
| 636 | fi |
|
|
| 637 | export IFS="," |
|
|
| 638 | done |
|
|
| 639 | export IFS=${oldifs} |
|
|
| 640 | |
|
|
| 641 | opts="${opts} -g ${defgroup}" |
|
|
| 642 | if [[ ! -z ${exgroups} ]] ; then |
|
|
| 643 | opts="${opts} -G ${exgroups:1}" |
|
|
| 644 | fi |
|
|
| 645 | else |
|
|
| 646 | egroups="(none)" |
|
|
| 647 | fi |
|
|
| 648 | einfo " - Groups: ${egroups}" |
|
|
| 649 | |
|
|
| 650 | # handle extra and add the user |
|
|
| 651 | local oldsandbox=${SANDBOX_ON} |
|
|
| 652 | export SANDBOX_ON="0" |
|
|
| 653 | case ${CHOST} in |
|
|
| 654 | *-darwin*) |
|
|
| 655 | ### Make the user |
|
|
| 656 | if [[ -z $@ ]] ; then |
|
|
| 657 | dscl . create /users/${euser} uid ${euid} |
|
|
| 658 | dscl . create /users/${euser} shell ${eshell} |
|
|
| 659 | dscl . create /users/${euser} home ${ehome} |
|
|
| 660 | dscl . create /users/${euser} realname "added by portage for ${PN}" |
|
|
| 661 | ### Add the user to the groups specified |
|
|
| 662 | local oldifs=${IFS} |
|
|
| 663 | export IFS="," |
|
|
| 664 | for g in ${egroups} ; do |
|
|
| 665 | dscl . merge /groups/${g} users ${euser} |
|
|
| 666 | done |
|
|
| 667 | export IFS=${oldifs} |
|
|
| 668 | else |
|
|
| 669 | einfo "Extra options are not supported on Darwin yet" |
|
|
| 670 | einfo "Please report the ebuild along with the info below" |
|
|
| 671 | einfo "eextra: $@" |
|
|
| 672 | die "Required function missing" |
|
|
| 673 | fi |
|
|
| 674 | ;; |
|
|
| 675 | *-freebsd*|*-dragonfly*) |
|
|
| 676 | if [[ -z $@ ]] ; then |
|
|
| 677 | pw useradd ${euser} ${opts} \ |
|
|
| 678 | -c "added by portage for ${PN}" \ |
|
|
| 679 | die "enewuser failed" |
|
|
| 680 | else |
|
|
| 681 | einfo " - Extra: $@" |
|
|
| 682 | pw useradd ${euser} ${opts} \ |
|
|
| 683 | "$@" || die "enewuser failed" |
|
|
| 684 | fi |
|
|
| 685 | ;; |
|
|
| 686 | |
|
|
| 687 | *-netbsd*) |
|
|
| 688 | if [[ -z $@ ]] ; then |
|
|
| 689 | useradd ${opts} ${euser} || die "enewuser failed" |
|
|
| 690 | else |
|
|
| 691 | einfo " - Extra: $@" |
|
|
| 692 | useradd ${opts} ${euser} "$@" || die "enewuser failed" |
|
|
| 693 | fi |
|
|
| 694 | ;; |
|
|
| 695 | |
|
|
| 696 | *-openbsd*) |
|
|
| 697 | if [[ -z $@ ]] ; then |
|
|
| 698 | useradd -u ${euid} -s ${eshell} \ |
|
|
| 699 | -d ${ehome} -c "Added by portage for ${PN}" \ |
|
|
| 700 | -g ${egroups} ${euser} || die "enewuser failed" |
|
|
| 701 | else |
|
|
| 702 | einfo " - Extra: $@" |
|
|
| 703 | useradd -u ${euid} -s ${eshell} \ |
|
|
| 704 | -d ${ehome} -c "Added by portage for ${PN}" \ |
|
|
| 705 | -g ${egroups} ${euser} "$@" || die "enewuser failed" |
|
|
| 706 | fi |
|
|
| 707 | ;; |
|
|
| 708 | |
|
|
| 709 | *) |
|
|
| 710 | if [[ -z $@ ]] ; then |
|
|
| 711 | useradd ${opts} \ |
|
|
| 712 | -c "added by portage for ${PN}" \ |
|
|
| 713 | ${euser} \ |
|
|
| 714 | || die "enewuser failed" |
|
|
| 715 | else |
|
|
| 716 | einfo " - Extra: $@" |
|
|
| 717 | useradd ${opts} "$@" \ |
|
|
| 718 | ${euser} \ |
|
|
| 719 | || die "enewuser failed" |
|
|
| 720 | fi |
|
|
| 721 | ;; |
|
|
| 722 | esac |
|
|
| 723 | |
|
|
| 724 | if [[ ! -e ${ROOT}/${ehome} ]] ; then |
|
|
| 725 | einfo " - Creating ${ehome} in ${ROOT}" |
|
|
| 726 | mkdir -p "${ROOT}/${ehome}" |
|
|
| 727 | chown ${euser} "${ROOT}/${ehome}" |
|
|
| 728 | chmod 755 "${ROOT}/${ehome}" |
|
|
| 729 | fi |
|
|
| 730 | |
|
|
| 731 | export SANDBOX_ON=${oldsandbox} |
|
|
| 732 | } |
|
|
| 733 | |
|
|
| 734 | # @FUNCTION: enewgroup |
|
|
| 735 | # @USAGE: <group> [gid] |
|
|
| 736 | # @DESCRIPTION: |
|
|
| 737 | # This function does not require you to understand how to properly add a |
|
|
| 738 | # group to the system. Just give it a group name to add and enewgroup will |
|
|
| 739 | # do the rest. You may specify the gid for the group or allow the group to |
|
|
| 740 | # allocate the next available one. |
|
|
| 741 | enewgroup() { |
|
|
| 742 | case ${EBUILD_PHASE} in |
|
|
| 743 | unpack|compile|test|install) |
|
|
| 744 | eerror "'enewgroup()' called from '${EBUILD_PHASE}()' which is not a pkg_* function." |
|
|
| 745 | eerror "Package fails at QA and at life. Please file a bug." |
|
|
| 746 | die "Bad package! enewgroup is only for use in pkg_* functions!" |
|
|
| 747 | esac |
|
|
| 748 | |
|
|
| 749 | # get the group |
|
|
| 750 | local egroup="$1"; shift |
|
|
| 751 | if [ -z "${egroup}" ] |
|
|
| 752 | then |
|
|
| 753 | eerror "No group specified !" |
|
|
| 754 | die "Cannot call enewgroup without a group" |
|
|
| 755 | fi |
|
|
| 756 | |
|
|
| 757 | # see if group already exists |
|
|
| 758 | if [[ -n $(egetent group "${egroup}") ]]; then |
|
|
| 759 | return 0 |
|
|
| 760 | fi |
|
|
| 761 | einfo "Adding group '${egroup}' to your system ..." |
|
|
| 762 | |
|
|
| 763 | # options to pass to useradd |
|
|
| 764 | local opts= |
|
|
| 765 | |
|
|
| 766 | # handle gid |
|
|
| 767 | local egid="$1"; shift |
|
|
| 768 | if [ ! -z "${egid}" ] |
|
|
| 769 | then |
|
|
| 770 | if [ "${egid}" -gt 0 ] |
|
|
| 771 | then |
|
|
| 772 | if [ -z "`egetent group ${egid}`" ] |
|
|
| 773 | then |
|
|
| 774 | if [[ "${CHOST}" == *-darwin* ]]; then |
|
|
| 775 | opts="${opts} ${egid}" |
|
|
| 776 | else |
|
|
| 777 | opts="${opts} -g ${egid}" |
|
|
| 778 | fi |
|
|
| 779 | else |
|
|
| 780 | egid="next available; requested gid taken" |
|
|
| 781 | fi |
|
|
| 782 | else |
|
|
| 783 | eerror "Groupid given but is not greater than 0 !" |
|
|
| 784 | die "${egid} is not a valid GID" |
|
|
| 785 | fi |
|
|
| 786 | else |
|
|
| 787 | egid="next available" |
|
|
| 788 | fi |
|
|
| 789 | einfo " - Groupid: ${egid}" |
|
|
| 790 | |
|
|
| 791 | # handle extra |
|
|
| 792 | local eextra="$@" |
|
|
| 793 | opts="${opts} ${eextra}" |
|
|
| 794 | |
|
|
| 795 | # add the group |
|
|
| 796 | local oldsandbox="${SANDBOX_ON}" |
|
|
| 797 | export SANDBOX_ON="0" |
|
|
| 798 | case ${CHOST} in |
|
|
| 799 | *-darwin*) |
|
|
| 800 | if [ ! -z "${eextra}" ]; |
|
|
| 801 | then |
|
|
| 802 | einfo "Extra options are not supported on Darwin/OS X yet" |
|
|
| 803 | einfo "Please report the ebuild along with the info below" |
|
|
| 804 | einfo "eextra: ${eextra}" |
|
|
| 805 | die "Required function missing" |
|
|
| 806 | fi |
|
|
| 807 | |
|
|
| 808 | # If we need the next available |
|
|
| 809 | case ${egid} in |
|
|
| 810 | *[!0-9]*) # Non numeric |
|
|
| 811 | for ((egid = 101; egid <= 999; egid++)); do |
|
|
| 812 | [[ -z $(egetent group ${egid}) ]] && break |
|
|
| 813 | done |
|
|
| 814 | esac |
|
|
| 815 | dscl . create /groups/${egroup} gid ${egid} |
|
|
| 816 | dscl . create /groups/${egroup} passwd '*' |
|
|
| 817 | ;; |
|
|
| 818 | |
|
|
| 819 | *-freebsd*|*-dragonfly*) |
|
|
| 820 | case ${egid} in |
|
|
| 821 | *[!0-9]*) # Non numeric |
|
|
| 822 | for ((egid = 101; egid <= 999; egid++)); do |
|
|
| 823 | [[ -z $(egetent group ${egid}) ]] && break |
|
|
| 824 | done |
|
|
| 825 | esac |
|
|
| 826 | pw groupadd ${egroup} -g ${egid} || die "enewgroup failed" |
|
|
| 827 | ;; |
|
|
| 828 | |
|
|
| 829 | *-netbsd*) |
|
|
| 830 | case ${egid} in |
|
|
| 831 | *[!0-9]*) # Non numeric |
|
|
| 832 | for ((egid = 101; egid <= 999; egid++)); do |
|
|
| 833 | [[ -z $(egetent group ${egid}) ]] && break |
|
|
| 834 | done |
|
|
| 835 | esac |
|
|
| 836 | groupadd -g ${egid} ${egroup} || die "enewgroup failed" |
|
|
| 837 | ;; |
|
|
| 838 | |
|
|
| 839 | *) |
|
|
| 840 | groupadd ${opts} ${egroup} || die "enewgroup failed" |
|
|
| 841 | ;; |
|
|
| 842 | esac |
|
|
| 843 | export SANDBOX_ON="${oldsandbox}" |
|
|
| 844 | } |
|
|
| 845 | |
|
|
| 846 | # @FUNCTION: edos2unix |
602 | # @FUNCTION: edos2unix |
| 847 | # @USAGE: <file> [more files ...] |
603 | # @USAGE: <file> [more files ...] |
| 848 | # @DESCRIPTION: |
604 | # @DESCRIPTION: |
| 849 | # A handy replacement for dos2unix, recode, fixdos, etc... This allows you |
605 | # A handy replacement for dos2unix, recode, fixdos, etc... This allows you |
| 850 | # to remove all of these text utilities from DEPEND variables because this |
606 | # to remove all of these text utilities from DEPEND variables because this |
| 851 | # is a script based solution. Just give it a list of files to convert and |
607 | # is a script based solution. Just give it a list of files to convert and |
| 852 | # they will all be changed from the DOS CRLF format to the UNIX LF format. |
608 | # they will all be changed from the DOS CRLF format to the UNIX LF format. |
| 853 | edos2unix() { |
609 | edos2unix() { |
| 854 | echo "$@" | xargs sed -i 's/\r$//' |
610 | [[ $# -eq 0 ]] && return 0 |
|
|
611 | sed -i 's/\r$//' -- "$@" || die |
| 855 | } |
612 | } |
| 856 | |
613 | |
| 857 | # Make a desktop file ! |
614 | # Make a desktop file ! |
| 858 | # Great for making those icons in kde/gnome startmenu ! |
615 | # Great for making those icons in kde/gnome startmenu ! |
| 859 | # Amaze your friends ! Get the women ! Join today ! |
616 | # Amaze your friends ! Get the women ! Join today ! |
| … | |
… | |
| 1031 | if [[ ${fields:-=} != *=* ]] ; then |
788 | if [[ ${fields:-=} != *=* ]] ; then |
| 1032 | # 5th arg used to be value to Path= |
789 | # 5th arg used to be value to Path= |
| 1033 | ewarn "make_desktop_entry: update your 5th arg to read Path=${fields}" |
790 | ewarn "make_desktop_entry: update your 5th arg to read Path=${fields}" |
| 1034 | fields="Path=${fields}" |
791 | fields="Path=${fields}" |
| 1035 | fi |
792 | fi |
| 1036 | [[ -n ${fields} ]] && printf "${fields}\n" >> "${desktop}" |
793 | [[ -n ${fields} ]] && printf '%b\n' "${fields}" >> "${desktop}" |
| 1037 | |
794 | |
| 1038 | ( |
795 | ( |
| 1039 | # wrap the env here so that the 'insinto' call |
796 | # wrap the env here so that the 'insinto' call |
| 1040 | # doesn't corrupt the env of the caller |
797 | # doesn't corrupt the env of the caller |
| 1041 | insinto /usr/share/applications |
798 | insinto /usr/share/applications |
| … | |
… | |
| 1327 | [[ -z ${src} ]] && die "Could not locate source for '${src_input}'" |
1084 | [[ -z ${src} ]] && die "Could not locate source for '${src_input}'" |
| 1328 | |
1085 | |
| 1329 | local shrtsrc=$(basename "${src}") |
1086 | local shrtsrc=$(basename "${src}") |
| 1330 | echo ">>> Unpacking ${shrtsrc} to ${PWD}" |
1087 | echo ">>> Unpacking ${shrtsrc} to ${PWD}" |
| 1331 | if [[ -z ${skip} ]] ; then |
1088 | if [[ -z ${skip} ]] ; then |
| 1332 | local ver=$(grep -a '#.*Makeself' "${src}" | awk '{print $NF}') |
1089 | local ver=$(grep -m1 -a '#.*Makeself' "${src}" | awk '{print $NF}') |
| 1333 | local skip=0 |
1090 | local skip=0 |
| 1334 | exe=tail |
1091 | exe=tail |
| 1335 | case ${ver} in |
1092 | case ${ver} in |
| 1336 | 1.5.*|1.6.0-nv) # tested 1.5.{3,4,5} ... guessing 1.5.x series is same |
1093 | 1.5.*|1.6.0-nv) # tested 1.5.{3,4,5} ... guessing 1.5.x series is same |
| 1337 | skip=$(grep -a ^skip= "${src}" | cut -d= -f2) |
1094 | skip=$(grep -a ^skip= "${src}" | cut -d= -f2) |
| … | |
… | |
| 1339 | 2.0|2.0.1) |
1096 | 2.0|2.0.1) |
| 1340 | skip=$(grep -a ^$'\t'tail "${src}" | awk '{print $2}' | cut -b2-) |
1097 | skip=$(grep -a ^$'\t'tail "${src}" | awk '{print $2}' | cut -b2-) |
| 1341 | ;; |
1098 | ;; |
| 1342 | 2.1.1) |
1099 | 2.1.1) |
| 1343 | skip=$(grep -a ^offset= "${src}" | awk '{print $2}' | cut -b2-) |
1100 | skip=$(grep -a ^offset= "${src}" | awk '{print $2}' | cut -b2-) |
| 1344 | let skip="skip + 1" |
1101 | (( skip++ )) |
| 1345 | ;; |
1102 | ;; |
| 1346 | 2.1.2) |
1103 | 2.1.2) |
| 1347 | skip=$(grep -a ^offset= "${src}" | awk '{print $3}' | head -n 1) |
1104 | skip=$(grep -a ^offset= "${src}" | awk '{print $3}' | head -n 1) |
| 1348 | let skip="skip + 1" |
1105 | (( skip++ )) |
| 1349 | ;; |
1106 | ;; |
| 1350 | 2.1.3) |
1107 | 2.1.3) |
| 1351 | skip=`grep -a ^offset= "${src}" | awk '{print $3}'` |
1108 | skip=`grep -a ^offset= "${src}" | awk '{print $3}'` |
| 1352 | let skip="skip + 1" |
1109 | (( skip++ )) |
| 1353 | ;; |
1110 | ;; |
| 1354 | 2.1.4|2.1.5) |
1111 | 2.1.4|2.1.5) |
| 1355 | skip=$(grep -a offset=.*head.*wc "${src}" | awk '{print $3}' | head -n 1) |
1112 | skip=$(grep -a offset=.*head.*wc "${src}" | awk '{print $3}' | head -n 1) |
| 1356 | skip=$(head -n ${skip} "${src}" | wc -c) |
1113 | skip=$(head -n ${skip} "${src}" | wc -c) |
| 1357 | exe="dd" |
1114 | exe="dd" |
| … | |
… | |
| 1366 | esac |
1123 | esac |
| 1367 | debug-print "Detected Makeself version ${ver} ... using ${skip} as offset" |
1124 | debug-print "Detected Makeself version ${ver} ... using ${skip} as offset" |
| 1368 | fi |
1125 | fi |
| 1369 | case ${exe} in |
1126 | case ${exe} in |
| 1370 | tail) exe="tail -n +${skip} '${src}'";; |
1127 | tail) exe="tail -n +${skip} '${src}'";; |
| 1371 | dd) exe="dd ibs=${skip} skip=1 obs=1024 conv=sync if='${src}'";; |
1128 | dd) exe="dd ibs=${skip} skip=1 if='${src}'";; |
| 1372 | *) die "makeself cant handle exe '${exe}'" |
1129 | *) die "makeself cant handle exe '${exe}'" |
| 1373 | esac |
1130 | esac |
| 1374 | |
1131 | |
| 1375 | # lets grab the first few bytes of the file to figure out what kind of archive it is |
1132 | # lets grab the first few bytes of the file to figure out what kind of archive it is |
| 1376 | local tmpfile=$(emktemp) |
1133 | local filetype tmpfile=$(emktemp) |
| 1377 | eval ${exe} 2>/dev/null | head -c 512 > "${tmpfile}" |
1134 | eval ${exe} 2>/dev/null | head -c 512 > "${tmpfile}" |
| 1378 | local filetype=$(file -b "${tmpfile}") |
1135 | filetype=$(file -b "${tmpfile}") || die |
| 1379 | case ${filetype} in |
1136 | case ${filetype} in |
| 1380 | *tar\ archive*) |
1137 | *tar\ archive*) |
| 1381 | eval ${exe} | tar --no-same-owner -xf - |
1138 | eval ${exe} | tar --no-same-owner -xf - |
| 1382 | ;; |
1139 | ;; |
| 1383 | bzip2*) |
1140 | bzip2*) |
| … | |
… | |
| 1393 | eerror "Unknown filetype \"${filetype}\" ?" |
1150 | eerror "Unknown filetype \"${filetype}\" ?" |
| 1394 | false |
1151 | false |
| 1395 | ;; |
1152 | ;; |
| 1396 | esac |
1153 | esac |
| 1397 | assert "failure unpacking (${filetype}) makeself ${shrtsrc} ('${ver}' +${skip})" |
1154 | assert "failure unpacking (${filetype}) makeself ${shrtsrc} ('${ver}' +${skip})" |
| 1398 | } |
|
|
| 1399 | |
|
|
| 1400 | # @FUNCTION: check_license |
|
|
| 1401 | # @USAGE: [license] |
|
|
| 1402 | # @DESCRIPTION: |
|
|
| 1403 | # Display a license for user to accept. If no license is |
|
|
| 1404 | # specified, then ${LICENSE} is used. |
|
|
| 1405 | check_license() { |
|
|
| 1406 | local lic=$1 |
|
|
| 1407 | if [ -z "${lic}" ] ; then |
|
|
| 1408 | lic="${PORTDIR}/licenses/${LICENSE}" |
|
|
| 1409 | else |
|
|
| 1410 | if [ -e "${PORTDIR}/licenses/${lic}" ] ; then |
|
|
| 1411 | lic="${PORTDIR}/licenses/${lic}" |
|
|
| 1412 | elif [ -e "${PWD}/${lic}" ] ; then |
|
|
| 1413 | lic="${PWD}/${lic}" |
|
|
| 1414 | elif [ -e "${lic}" ] ; then |
|
|
| 1415 | lic="${lic}" |
|
|
| 1416 | fi |
|
|
| 1417 | fi |
|
|
| 1418 | local l="`basename ${lic}`" |
|
|
| 1419 | |
|
|
| 1420 | # here is where we check for the licenses the user already |
|
|
| 1421 | # accepted ... if we don't find a match, we make the user accept |
|
|
| 1422 | local alic |
|
|
| 1423 | eshopts_push -o noglob # so that bash doesn't expand "*" |
|
|
| 1424 | for alic in ${ACCEPT_LICENSE} ; do |
|
|
| 1425 | if [[ ${alic} == ${l} ]]; then |
|
|
| 1426 | eshopts_pop |
|
|
| 1427 | return 0 |
|
|
| 1428 | fi |
|
|
| 1429 | done |
|
|
| 1430 | eshopts_pop |
|
|
| 1431 | [ ! -f "${lic}" ] && die "Could not find requested license ${lic}" |
|
|
| 1432 | |
|
|
| 1433 | local licmsg=$(emktemp) |
|
|
| 1434 | cat <<-EOF > ${licmsg} |
|
|
| 1435 | ********************************************************** |
|
|
| 1436 | The following license outlines the terms of use of this |
|
|
| 1437 | package. You MUST accept this license for installation to |
|
|
| 1438 | continue. When you are done viewing, hit 'q'. If you |
|
|
| 1439 | CTRL+C out of this, the install will not run! |
|
|
| 1440 | ********************************************************** |
|
|
| 1441 | |
|
|
| 1442 | EOF |
|
|
| 1443 | cat ${lic} >> ${licmsg} |
|
|
| 1444 | ${PAGER:-less} ${licmsg} || die "Could not execute pager (${PAGER}) to accept ${lic}" |
|
|
| 1445 | einfon "Do you accept the terms of this license (${l})? [yes/no] " |
|
|
| 1446 | read alic |
|
|
| 1447 | case ${alic} in |
|
|
| 1448 | yes|Yes|y|Y) |
|
|
| 1449 | return 0 |
|
|
| 1450 | ;; |
|
|
| 1451 | *) |
|
|
| 1452 | echo;echo;echo |
|
|
| 1453 | eerror "You MUST accept the license to continue! Exiting!" |
|
|
| 1454 | die "Failed to accept license" |
|
|
| 1455 | ;; |
|
|
| 1456 | esac |
|
|
| 1457 | } |
1155 | } |
| 1458 | |
1156 | |
| 1459 | # @FUNCTION: cdrom_get_cds |
1157 | # @FUNCTION: cdrom_get_cds |
| 1460 | # @USAGE: <file on cd1> [file on cd2] [file on cd3] [...] |
1158 | # @USAGE: <file on cd1> [file on cd2] [file on cd3] [...] |
| 1461 | # @DESCRIPTION: |
1159 | # @DESCRIPTION: |
| … | |
… | |
| 1509 | export CDROM_ROOT=${CD_ROOT_1:-${CD_ROOT}} |
1207 | export CDROM_ROOT=${CD_ROOT_1:-${CD_ROOT}} |
| 1510 | einfo "Found CD #${CDROM_CURRENT_CD} root at ${CDROM_ROOT}" |
1208 | einfo "Found CD #${CDROM_CURRENT_CD} root at ${CDROM_ROOT}" |
| 1511 | export CDROM_SET=-1 |
1209 | export CDROM_SET=-1 |
| 1512 | for f in ${CDROM_CHECK_1//:/ } ; do |
1210 | for f in ${CDROM_CHECK_1//:/ } ; do |
| 1513 | ((++CDROM_SET)) |
1211 | ((++CDROM_SET)) |
| 1514 | [[ -e ${CD_ROOT}/${f} ]] && break |
1212 | [[ -e ${CDROM_ROOT}/${f} ]] && break |
| 1515 | done |
1213 | done |
| 1516 | export CDROM_MATCH=${f} |
1214 | export CDROM_MATCH=${f} |
| 1517 | return |
1215 | return |
| 1518 | fi |
1216 | fi |
| 1519 | |
1217 | |
| … | |
… | |
| 1693 | else |
1391 | else |
| 1694 | newls="" |
1392 | newls="" |
| 1695 | fi |
1393 | fi |
| 1696 | for f in $(find "$d" -name '*.po' -exec basename {} .po ';') ; do |
1394 | for f in $(find "$d" -name '*.po' -exec basename {} .po ';') ; do |
| 1697 | if [[ ${op} == "-i" ]] ; then |
1395 | if [[ ${op} == "-i" ]] ; then |
| 1698 | hasq ${f} ${ls} && newls="${newls} ${f}" |
1396 | has ${f} ${ls} && newls="${newls} ${f}" |
| 1699 | else |
1397 | else |
| 1700 | hasq ${f} ${ls} || newls="${newls} ${f}" |
1398 | has ${f} ${ls} || newls="${newls} ${f}" |
| 1701 | fi |
1399 | fi |
| 1702 | done |
1400 | done |
| 1703 | ls=${newls} |
1401 | ls=${newls} |
| 1704 | done |
1402 | done |
| 1705 | else |
1403 | else |
| … | |
… | |
| 1707 | fi |
1405 | fi |
| 1708 | |
1406 | |
| 1709 | nols="" |
1407 | nols="" |
| 1710 | newls="" |
1408 | newls="" |
| 1711 | for f in ${LINGUAS} ; do |
1409 | for f in ${LINGUAS} ; do |
| 1712 | if hasq ${f} ${ls} ; then |
1410 | if has ${f} ${ls} ; then |
| 1713 | newls="${newls} ${f}" |
1411 | newls="${newls} ${f}" |
| 1714 | else |
1412 | else |
| 1715 | nols="${nols} ${f}" |
1413 | nols="${nols} ${f}" |
| 1716 | fi |
1414 | fi |
| 1717 | done |
1415 | done |
| … | |
… | |
| 1772 | ewarn "the libraries are not being removed. You need to run revdep-rebuild" |
1470 | ewarn "the libraries are not being removed. You need to run revdep-rebuild" |
| 1773 | ewarn "in order to remove these old dependencies. If you do not have this" |
1471 | ewarn "in order to remove these old dependencies. If you do not have this" |
| 1774 | ewarn "helper program, simply emerge the 'gentoolkit' package." |
1472 | ewarn "helper program, simply emerge the 'gentoolkit' package." |
| 1775 | ewarn |
1473 | ewarn |
| 1776 | fi |
1474 | fi |
|
|
1475 | # temp hack for #348634 #357225 |
|
|
1476 | [[ ${PN} == "mpfr" ]] && lib=${lib##*/} |
| 1777 | ewarn " # revdep-rebuild --library ${lib##*/}" |
1477 | ewarn " # revdep-rebuild --library '${lib}'" |
| 1778 | done |
1478 | done |
| 1779 | if [[ ${notice} -eq 1 ]] ; then |
1479 | if [[ ${notice} -eq 1 ]] ; then |
| 1780 | ewarn |
1480 | ewarn |
| 1781 | ewarn "Once you've finished running revdep-rebuild, it should be safe to" |
1481 | ewarn "Once you've finished running revdep-rebuild, it should be safe to" |
| 1782 | ewarn "delete the old libraries. Here is a copy & paste for the lazy:" |
1482 | ewarn "delete the old libraries. Here is a copy & paste for the lazy:" |
| … | |
… | |
| 1928 | else |
1628 | else |
| 1929 | newbin "${tmpwrapper}" "${wrapper}" || die |
1629 | newbin "${tmpwrapper}" "${wrapper}" || die |
| 1930 | fi |
1630 | fi |
| 1931 | } |
1631 | } |
| 1932 | |
1632 | |
| 1933 | # @FUNCTION: prepalldocs |
1633 | # @FUNCTION: path_exists |
| 1934 | # @USAGE: |
1634 | # @USAGE: [-a|-o] <paths> |
| 1935 | # @DESCRIPTION: |
1635 | # @DESCRIPTION: |
| 1936 | # Compress files in /usr/share/doc which are not already |
1636 | # Check if the specified paths exist. Works for all types of paths |
| 1937 | # compressed, excluding /usr/share/doc/${PF}/html. |
1637 | # (files/dirs/etc...). The -a and -o flags control the requirements |
| 1938 | # Uses the ecompressdir to do the compression. |
1638 | # of the paths. They correspond to "and" and "or" logic. So the -a |
| 1939 | # 2009-02-18 by betelgeuse: |
1639 | # flag means all the paths must exist while the -o flag means at least |
| 1940 | # Commented because ecompressdir is even more internal to |
1640 | # one of the paths must exist. The default behavior is "and". If no |
| 1941 | # Portage than prepalldocs (it's not even mentioned in man 5 |
1641 | # paths are specified, then the return value is "false". |
| 1942 | # ebuild). Please submit a better version for review to gentoo-dev |
1642 | path_exists() { |
| 1943 | # if you want prepalldocs here. |
1643 | local opt=$1 |
| 1944 | #prepalldocs() { |
1644 | [[ ${opt} == -[ao] ]] && shift || opt="-a" |
| 1945 | # if [[ -n $1 ]] ; then |
|
|
| 1946 | # ewarn "prepalldocs: invalid usage; takes no arguments" |
|
|
| 1947 | # fi |
|
|
| 1948 | |
1645 | |
| 1949 | # cd "${D}" |
1646 | # no paths -> return false |
| 1950 | # [[ -d usr/share/doc ]] || return 0 |
1647 | # same behavior as: [[ -e "" ]] |
|
|
1648 | [[ $# -eq 0 ]] && return 1 |
| 1951 | |
1649 | |
| 1952 | # find usr/share/doc -exec gzip {} + |
1650 | local p r=0 |
| 1953 | # ecompressdir --ignore /usr/share/doc/${PF}/html |
1651 | for p in "$@" ; do |
| 1954 | # ecompressdir --queue /usr/share/doc |
1652 | [[ -e ${p} ]] |
| 1955 | #} |
1653 | : $(( r += $? )) |
|
|
1654 | done |
|
|
1655 | |
|
|
1656 | case ${opt} in |
|
|
1657 | -a) return $(( r != 0 )) ;; |
|
|
1658 | -o) return $(( r == $# )) ;; |
|
|
1659 | esac |
|
|
1660 | } |
|
|
1661 | |
|
|
1662 | # @FUNCTION: in_iuse |
|
|
1663 | # @USAGE: <flag> |
|
|
1664 | # @DESCRIPTION: |
|
|
1665 | # Determines whether the given flag is in IUSE. Strips IUSE default prefixes |
|
|
1666 | # as necessary. |
|
|
1667 | # |
|
|
1668 | # Note that this function should not be used in the global scope. |
|
|
1669 | in_iuse() { |
|
|
1670 | debug-print-function ${FUNCNAME} "${@}" |
|
|
1671 | [[ ${#} -eq 1 ]] || die "Invalid args to ${FUNCNAME}()" |
|
|
1672 | |
|
|
1673 | local flag=${1} |
|
|
1674 | local liuse=( ${IUSE} ) |
|
|
1675 | |
|
|
1676 | has "${flag}" "${liuse[@]#[+-]}" |
|
|
1677 | } |
|
|
1678 | |
|
|
1679 | # @FUNCTION: use_if_iuse |
|
|
1680 | # @USAGE: <flag> |
|
|
1681 | # @DESCRIPTION: |
|
|
1682 | # Return true if the given flag is in USE and IUSE. |
|
|
1683 | # |
|
|
1684 | # Note that this function should not be used in the global scope. |
|
|
1685 | use_if_iuse() { |
|
|
1686 | in_iuse $1 || return 1 |
|
|
1687 | use $1 |
|
|
1688 | } |
|
|
1689 | |
|
|
1690 | # @FUNCTION: usex |
|
|
1691 | # @USAGE: <USE flag> [true output] [false output] [true suffix] [false suffix] |
|
|
1692 | # @DESCRIPTION: |
|
|
1693 | # If USE flag is set, echo [true output][true suffix] (defaults to "yes"), |
|
|
1694 | # otherwise echo [false output][false suffix] (defaults to "no"). |
|
|
1695 | usex() { use "$1" && echo "${2-yes}$4" || echo "${3-no}$5" ; } #382963 |
|
|
1696 | |
|
|
1697 | check_license() { die "you no longer need this as portage supports ACCEPT_LICENSE itself"; } |
|
|
1698 | |
|
|
1699 | fi |