| 1 | # Copyright 1999-2009 Gentoo Foundation |
1 | # Copyright 1999-2012 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.349 2010/08/19 21:32:26 vapier Exp $ |
3 | # $Header: /var/cvsroot/gentoo-x86/eclass/eutils.eclass,v 1.381 2012/02/14 16:01:21 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 | |
| … | |
… | |
| 64 | fi |
67 | fi |
| 65 | |
68 | |
| 66 | # @FUNCTION: eqawarn |
69 | # @FUNCTION: eqawarn |
| 67 | # @USAGE: [message] |
70 | # @USAGE: [message] |
| 68 | # @DESCRIPTION: |
71 | # @DESCRIPTION: |
| 69 | # Proxy to einfo for package managers that don't provide eqawarn and use the PM |
72 | # Proxy to ewarn for package managers that don't provide eqawarn and use the PM |
| 70 | # implementation if available. |
73 | # implementation if available. Reuses PORTAGE_ELOG_CLASSES as set by the dev |
|
|
74 | # profile. |
| 71 | if ! declare -F eqawarn >/dev/null ; then |
75 | if ! declare -F eqawarn >/dev/null ; then |
| 72 | eqawarn() { |
76 | eqawarn() { |
| 73 | einfo "$@" |
77 | has qa ${PORTAGE_ELOG_CLASSES} && ewarn "$@" |
|
|
78 | : |
| 74 | } |
79 | } |
| 75 | fi |
80 | fi |
| 76 | |
81 | |
| 77 | # @FUNCTION: ecvs_clean |
82 | # @FUNCTION: ecvs_clean |
| 78 | # @USAGE: [list of dirs] |
83 | # @USAGE: [list of dirs] |
| … | |
… | |
| 93 | esvn_clean() { |
98 | esvn_clean() { |
| 94 | [[ -z $* ]] && set -- . |
99 | [[ -z $* ]] && set -- . |
| 95 | find "$@" -type d -name '.svn' -prune -print0 | xargs -0 rm -rf |
100 | find "$@" -type d -name '.svn' -prune -print0 | xargs -0 rm -rf |
| 96 | } |
101 | } |
| 97 | |
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}\] |
|
|
149 | } |
|
|
150 | |
| 98 | # @FUNCTION: eshopts_push |
151 | # @FUNCTION: eshopts_push |
| 99 | # @USAGE: [options to `set` or `shopt`] |
152 | # @USAGE: [options to `set` or `shopt`] |
| 100 | # @DESCRIPTION: |
153 | # @DESCRIPTION: |
| 101 | # Often times code will want to enable a shell option to change code behavior. |
154 | # Often times code will want to enable a shell option to change code behavior. |
| 102 | # Since changing shell options can easily break other pieces of code (which |
155 | # Since changing shell options can easily break other pieces of code (which |
| … | |
… | |
| 107 | # rather than `set` as there are some options only available via that. |
160 | # rather than `set` as there are some options only available via that. |
| 108 | # |
161 | # |
| 109 | # A common example is to disable shell globbing so that special meaning/care |
162 | # A common example is to disable shell globbing so that special meaning/care |
| 110 | # may be used with variables/arguments to custom functions. That would be: |
163 | # may be used with variables/arguments to custom functions. That would be: |
| 111 | # @CODE |
164 | # @CODE |
| 112 | # eshopts_push -o noglob |
165 | # eshopts_push -s noglob |
| 113 | # for x in ${foo} ; do |
166 | # for x in ${foo} ; do |
| 114 | # if ...some check... ; then |
167 | # if ...some check... ; then |
| 115 | # eshopts_pop |
168 | # eshopts_pop |
| 116 | # return 0 |
169 | # return 0 |
| 117 | # fi |
170 | # fi |
| 118 | # done |
171 | # done |
| 119 | # eshopts_pop |
172 | # eshopts_pop |
| 120 | # @CODE |
173 | # @CODE |
| 121 | eshopts_push() { |
174 | eshopts_push() { |
| 122 | # have to assume __ESHOPTS_SAVE__ isn't screwed with |
|
|
| 123 | # as a `declare -a` here will reset its value |
|
|
| 124 | local i=${#__ESHOPTS_SAVE__[@]} |
|
|
| 125 | if [[ $1 == -[su] ]] ; then |
175 | if [[ $1 == -[su] ]] ; then |
| 126 | __ESHOPTS_SAVE__[$i]=$(shopt -p) |
176 | estack_push eshopts "$(shopt -p)" |
| 127 | [[ $# -eq 0 ]] && return 0 |
177 | [[ $# -eq 0 ]] && return 0 |
| 128 | shopt "$@" || die "eshopts_push: bad options to shopt: $*" |
178 | shopt "$@" || die "${FUNCNAME}: bad options to shopt: $*" |
| 129 | else |
179 | else |
| 130 | __ESHOPTS_SAVE__[$i]=$- |
180 | estack_push eshopts $- |
| 131 | [[ $# -eq 0 ]] && return 0 |
181 | [[ $# -eq 0 ]] && return 0 |
| 132 | set "$@" || die "eshopts_push: bad options to set: $*" |
182 | set "$@" || die "${FUNCNAME}: bad options to set: $*" |
| 133 | fi |
183 | fi |
| 134 | } |
184 | } |
| 135 | |
185 | |
| 136 | # @FUNCTION: eshopts_pop |
186 | # @FUNCTION: eshopts_pop |
| 137 | # @USAGE: |
187 | # @USAGE: |
| 138 | # @DESCRIPTION: |
188 | # @DESCRIPTION: |
| 139 | # Restore the shell options to the state saved with the corresponding |
189 | # Restore the shell options to the state saved with the corresponding |
| 140 | # eshopts_push call. See that function for more details. |
190 | # eshopts_push call. See that function for more details. |
| 141 | eshopts_pop() { |
191 | eshopts_pop() { |
| 142 | [[ $# -ne 0 ]] && die "eshopts_pop takes no arguments" |
192 | local s |
| 143 | local i=$(( ${#__ESHOPTS_SAVE__[@]} - 1 )) |
193 | estack_pop eshopts s || die "${FUNCNAME}: unbalanced push" |
| 144 | [[ ${i} -eq -1 ]] && die "eshopts_{push,pop}: unbalanced pair" |
|
|
| 145 | local s=${__ESHOPTS_SAVE__[$i]} |
|
|
| 146 | unset __ESHOPTS_SAVE__[$i] |
|
|
| 147 | if [[ ${s} == "shopt -"* ]] ; then |
194 | if [[ ${s} == "shopt -"* ]] ; then |
| 148 | eval "${s}" || die "eshopts_pop: sanity: invalid shopt options: ${s}" |
195 | eval "${s}" || die "${FUNCNAME}: sanity: invalid shopt options: ${s}" |
| 149 | else |
196 | else |
| 150 | set +$- || die "eshopts_pop: sanity: invalid shell settings: $-" |
197 | set +$- || die "${FUNCNAME}: sanity: invalid shell settings: $-" |
| 151 | set -${s} || die "eshopts_pop: sanity: unable to restore saved shell settings: ${s}" |
198 | set -${s} || die "${FUNCNAME}: sanity: unable to restore saved shell settings: ${s}" |
| 152 | fi |
199 | fi |
|
|
200 | } |
|
|
201 | |
|
|
202 | # @FUNCTION: eumask_push |
|
|
203 | # @USAGE: <new umask> |
|
|
204 | # @DESCRIPTION: |
|
|
205 | # Set the umask to the new value specified while saving the previous |
|
|
206 | # value onto a stack. Useful for temporarily changing the umask. |
|
|
207 | eumask_push() { |
|
|
208 | estack_push eumask "$(umask)" |
|
|
209 | umask "$@" || die "${FUNCNAME}: bad options to umask: $*" |
|
|
210 | } |
|
|
211 | |
|
|
212 | # @FUNCTION: eumask_pop |
|
|
213 | # @USAGE: |
|
|
214 | # @DESCRIPTION: |
|
|
215 | # Restore the previous umask state. |
|
|
216 | eumask_pop() { |
|
|
217 | local s |
|
|
218 | estack_pop eumask s || die "${FUNCNAME}: unbalanced push" |
|
|
219 | umask ${s} || die "${FUNCNAME}: sanity: could not restore umask: ${s}" |
| 153 | } |
220 | } |
| 154 | |
221 | |
| 155 | # @VARIABLE: EPATCH_SOURCE |
222 | # @VARIABLE: EPATCH_SOURCE |
| 156 | # @DESCRIPTION: |
223 | # @DESCRIPTION: |
| 157 | # Default directory to search for patches. |
224 | # Default directory to search for patches. |
| … | |
… | |
| 200 | # If you do not specify any options, then epatch will default to the directory |
267 | # If you do not specify any options, then epatch will default to the directory |
| 201 | # specified by EPATCH_SOURCE. |
268 | # specified by EPATCH_SOURCE. |
| 202 | # |
269 | # |
| 203 | # When processing directories, epatch will apply all patches that match: |
270 | # When processing directories, epatch will apply all patches that match: |
| 204 | # @CODE |
271 | # @CODE |
| 205 | # ${EPATCH_FORCE} == "yes" |
272 | # if ${EPATCH_FORCE} != "yes" |
| 206 | # ??_${ARCH}_foo.${EPATCH_SUFFIX} |
273 | # ??_${ARCH}_foo.${EPATCH_SUFFIX} |
| 207 | # else |
274 | # else |
| 208 | # *.${EPATCH_SUFFIX} |
275 | # *.${EPATCH_SUFFIX} |
| 209 | # @CODE |
276 | # @CODE |
| 210 | # The leading ?? are typically numbers used to force consistent patch ordering. |
277 | # The leading ?? are typically numbers used to force consistent patch ordering. |
| … | |
… | |
| 249 | local EPATCH_SUFFIX=$1 |
316 | local EPATCH_SUFFIX=$1 |
| 250 | |
317 | |
| 251 | elif [[ -d $1 ]] ; then |
318 | elif [[ -d $1 ]] ; then |
| 252 | # Some people like to make dirs of patches w/out suffixes (vim) |
319 | # Some people like to make dirs of patches w/out suffixes (vim) |
| 253 | set -- "$1"/*${EPATCH_SUFFIX:+."${EPATCH_SUFFIX}"} |
320 | set -- "$1"/*${EPATCH_SUFFIX:+."${EPATCH_SUFFIX}"} |
|
|
321 | |
|
|
322 | elif [[ -f ${EPATCH_SOURCE}/$1 ]] ; then |
|
|
323 | # Re-use EPATCH_SOURCE as a search dir |
|
|
324 | epatch "${EPATCH_SOURCE}/$1" |
|
|
325 | return $? |
| 254 | |
326 | |
| 255 | else |
327 | else |
| 256 | # sanity check ... if it isn't a dir or file, wtf man ? |
328 | # sanity check ... if it isn't a dir or file, wtf man ? |
| 257 | [[ $# -ne 0 ]] && EPATCH_SOURCE=$1 |
329 | [[ $# -ne 0 ]] && EPATCH_SOURCE=$1 |
| 258 | echo |
330 | echo |
| … | |
… | |
| 289 | # ???_arch_foo.patch |
361 | # ???_arch_foo.patch |
| 290 | # Else, skip this input altogether |
362 | # Else, skip this input altogether |
| 291 | local a=${patchname#*_} # strip the ???_ |
363 | local a=${patchname#*_} # strip the ???_ |
| 292 | a=${a%%_*} # strip the _foo.patch |
364 | a=${a%%_*} # strip the _foo.patch |
| 293 | if ! [[ ${SINGLE_PATCH} == "yes" || \ |
365 | if ! [[ ${SINGLE_PATCH} == "yes" || \ |
| 294 | ${EPATCH_FORCE} == "yes" || \ |
366 | ${EPATCH_FORCE} == "yes" || \ |
| 295 | ${a} == all || \ |
367 | ${a} == all || \ |
| 296 | ${a} == ${ARCH} ]] |
368 | ${a} == ${ARCH} ]] |
| 297 | then |
369 | then |
| 298 | continue |
370 | continue |
| 299 | fi |
371 | fi |
| 300 | |
372 | |
| 301 | # Let people filter things dynamically |
373 | # Let people filter things dynamically |
| … | |
… | |
| 329 | local STDERR_TARGET="${T}/${patchname}.out" |
401 | local STDERR_TARGET="${T}/${patchname}.out" |
| 330 | if [[ -e ${STDERR_TARGET} ]] ; then |
402 | if [[ -e ${STDERR_TARGET} ]] ; then |
| 331 | STDERR_TARGET="${T}/${patchname}-$$.out" |
403 | STDERR_TARGET="${T}/${patchname}-$$.out" |
| 332 | fi |
404 | fi |
| 333 | |
405 | |
| 334 | printf "***** %s *****\n\n" "${patchname}" > "${STDERR_TARGET}" |
406 | printf "***** %s *****\nPWD: %s\n\n" "${patchname}" "${PWD}" > "${STDERR_TARGET}" |
| 335 | |
407 | |
| 336 | # Decompress the patch if need be |
408 | # Decompress the patch if need be |
| 337 | local count=0 |
409 | local count=0 |
| 338 | local PATCH_TARGET |
410 | local PATCH_TARGET |
| 339 | if [[ -n ${PIPE_CMD} ]] ; then |
411 | if [[ -n ${PIPE_CMD} ]] ; then |
| … | |
… | |
| 358 | local abs_paths=$(egrep -n '^[-+]{3} /' "${PATCH_TARGET}" | awk '$2 != "/dev/null" { print }') |
430 | local abs_paths=$(egrep -n '^[-+]{3} /' "${PATCH_TARGET}" | awk '$2 != "/dev/null" { print }') |
| 359 | if [[ -n ${abs_paths} ]] ; then |
431 | if [[ -n ${abs_paths} ]] ; then |
| 360 | count=1 |
432 | count=1 |
| 361 | printf "NOTE: skipping -p0 due to absolute paths in patch:\n%s\n" "${abs_paths}" >> "${STDERR_TARGET}" |
433 | printf "NOTE: skipping -p0 due to absolute paths in patch:\n%s\n" "${abs_paths}" >> "${STDERR_TARGET}" |
| 362 | fi |
434 | fi |
|
|
435 | # Similar reason, but with relative paths. |
|
|
436 | local rel_paths=$(egrep -n '^[-+]{3} [^ ]*[.][.]/' "${PATCH_TARGET}") |
|
|
437 | if [[ -n ${rel_paths} ]] ; then |
|
|
438 | eqawarn "QA Notice: Your patch uses relative paths '../'." |
|
|
439 | eqawarn " In the future this will cause a failure." |
|
|
440 | eqawarn "${rel_paths}" |
|
|
441 | fi |
| 363 | |
442 | |
| 364 | # Dynamically detect the correct -p# ... i'm lazy, so shoot me :/ |
443 | # Dynamically detect the correct -p# ... i'm lazy, so shoot me :/ |
| 365 | while [[ ${count} -lt 5 ]] ; do |
444 | while [[ ${count} -lt 5 ]] ; do |
| 366 | # Generate some useful debug info ... |
445 | # Generate some useful debug info ... |
| 367 | ( |
446 | ( |
| 368 | _epatch_draw_line "***** ${patchname} *****" |
447 | _epatch_draw_line "***** ${patchname} *****" |
| 369 | echo |
448 | echo |
| 370 | echo "PATCH COMMAND: patch -p${count} ${EPATCH_OPTS} < '${PATCH_TARGET}'" |
449 | echo "PATCH COMMAND: patch -p${count} ${EPATCH_OPTS} < '${PATCH_TARGET}'" |
| 371 | echo |
450 | echo |
| 372 | _epatch_draw_line "***** ${patchname} *****" |
451 | _epatch_draw_line "***** ${patchname} *****" |
|
|
452 | patch -p${count} ${EPATCH_OPTS} --dry-run -f < "${PATCH_TARGET}" 2>&1 |
|
|
453 | ret=$? |
|
|
454 | echo |
|
|
455 | echo "patch program exited with status ${ret}" |
|
|
456 | exit ${ret} |
| 373 | ) >> "${STDERR_TARGET}" |
457 | ) >> "${STDERR_TARGET}" |
| 374 | |
458 | |
| 375 | if (patch -p${count} ${EPATCH_OPTS} --dry-run -f < "${PATCH_TARGET}") >> "${STDERR_TARGET}" 2>&1 ; then |
459 | if [ $? -eq 0 ] ; then |
| 376 | ( |
460 | ( |
| 377 | _epatch_draw_line "***** ${patchname} *****" |
461 | _epatch_draw_line "***** ${patchname} *****" |
| 378 | echo |
462 | echo |
| 379 | echo "ACTUALLY APPLYING ${patchname} ..." |
463 | echo "ACTUALLY APPLYING ${patchname} ..." |
| 380 | echo |
464 | echo |
| 381 | _epatch_draw_line "***** ${patchname} *****" |
465 | _epatch_draw_line "***** ${patchname} *****" |
| 382 | patch -p${count} ${EPATCH_OPTS} < "${PATCH_TARGET}" 2>&1 |
466 | patch -p${count} ${EPATCH_OPTS} < "${PATCH_TARGET}" 2>&1 |
|
|
467 | ret=$? |
|
|
468 | echo |
|
|
469 | echo "patch program exited with status ${ret}" |
|
|
470 | exit ${ret} |
| 383 | ) >> "${STDERR_TARGET}" |
471 | ) >> "${STDERR_TARGET}" |
| 384 | |
472 | |
| 385 | if [ $? -ne 0 ] ; then |
473 | if [ $? -ne 0 ] ; then |
| 386 | echo |
474 | echo |
| 387 | eerror "A dry-run of patch command succeeded, but actually" |
475 | eerror "A dry-run of patch command succeeded, but actually" |
| … | |
… | |
| 418 | done |
506 | done |
| 419 | |
507 | |
| 420 | [[ ${SINGLE_PATCH} == "no" ]] && einfo "Done with patching" |
508 | [[ ${SINGLE_PATCH} == "no" ]] && einfo "Done with patching" |
| 421 | : # everything worked |
509 | : # everything worked |
| 422 | } |
510 | } |
|
|
511 | |
|
|
512 | # @FUNCTION: epatch_user |
|
|
513 | # @USAGE: |
|
|
514 | # @DESCRIPTION: |
|
|
515 | # Applies user-provided patches to the source tree. The patches are |
|
|
516 | # taken from /etc/portage/patches/<CATEGORY>/<PF|P|PN>/, where the first |
|
|
517 | # of these three directories to exist will be the one to use, ignoring |
|
|
518 | # any more general directories which might exist as well. |
|
|
519 | # |
|
|
520 | # User patches are intended for quick testing of patches without ebuild |
|
|
521 | # modifications, as well as for permanent customizations a user might |
|
|
522 | # desire. Obviously, there can be no official support for arbitrarily |
|
|
523 | # patched ebuilds. So whenever a build log in a bug report mentions that |
|
|
524 | # user patches were applied, the user should be asked to reproduce the |
|
|
525 | # problem without these. |
|
|
526 | # |
|
|
527 | # Not all ebuilds do call this function, so placing patches in the |
|
|
528 | # stated directory might or might not work, depending on the package and |
|
|
529 | # the eclasses it inherits and uses. It is safe to call the function |
|
|
530 | # repeatedly, so it is always possible to add a call at the ebuild |
|
|
531 | # level. The first call is the time when the patches will be |
|
|
532 | # applied. |
|
|
533 | # |
|
|
534 | # Ideally, this function should be called after gentoo-specific patches |
|
|
535 | # have been applied, so that their code can be modified as well, but |
|
|
536 | # before calls to e.g. eautoreconf, as the user patches might affect |
|
|
537 | # autotool input files as well. |
| 423 | epatch_user() { |
538 | epatch_user() { |
| 424 | [[ $# -ne 0 ]] && die "epatch_user takes no options" |
539 | [[ $# -ne 0 ]] && die "epatch_user takes no options" |
| 425 | |
540 | |
|
|
541 | # Allow multiple calls to this function; ignore all but the first |
|
|
542 | local applied="${T}/epatch_user.applied" |
|
|
543 | [[ -e ${applied} ]] && return 2 |
|
|
544 | |
| 426 | # don't clobber any EPATCH vars that the parent might want |
545 | # don't clobber any EPATCH vars that the parent might want |
| 427 | local EPATCH_SOURCE check base=${PORTAGE_CONFIGROOT%/}/etc/portage/patches |
546 | local EPATCH_SOURCE check base=${PORTAGE_CONFIGROOT%/}/etc/portage/patches |
| 428 | for check in {${CATEGORY}/${PF},${CATEGORY}/${P},${CATEGORY}/${PN}}; do |
547 | for check in ${CATEGORY}/{${P}-${PR},${P},${PN}}; do |
| 429 | EPATCH_SOURCE=${base}/${CTARGET}/${check} |
548 | EPATCH_SOURCE=${base}/${CTARGET}/${check} |
| 430 | [[ -r ${EPATCH_SOURCE} ]] || EPATCH_SOURCE=${base}/${CHOST}/${check} |
549 | [[ -r ${EPATCH_SOURCE} ]] || EPATCH_SOURCE=${base}/${CHOST}/${check} |
| 431 | [[ -r ${EPATCH_SOURCE} ]] || EPATCH_SOURCE=${base}/${check} |
550 | [[ -r ${EPATCH_SOURCE} ]] || EPATCH_SOURCE=${base}/${check} |
| 432 | if [[ -d ${EPATCH_SOURCE} ]] ; then |
551 | if [[ -d ${EPATCH_SOURCE} ]] ; then |
| 433 | EPATCH_SOURCE=${EPATCH_SOURCE} \ |
552 | EPATCH_SOURCE=${EPATCH_SOURCE} \ |
| 434 | EPATCH_SUFFIX="patch" \ |
553 | EPATCH_SUFFIX="patch" \ |
| 435 | EPATCH_FORCE="yes" \ |
554 | EPATCH_FORCE="yes" \ |
| 436 | EPATCH_MULTI_MSG="Applying user patches from ${EPATCH_SOURCE} ..." \ |
555 | EPATCH_MULTI_MSG="Applying user patches from ${EPATCH_SOURCE} ..." \ |
| 437 | epatch |
556 | epatch |
|
|
557 | echo "${EPATCH_SOURCE}" > "${applied}" |
| 438 | return 0 |
558 | return 0 |
| 439 | fi |
559 | fi |
| 440 | done |
560 | done |
|
|
561 | echo "none" > "${applied}" |
| 441 | return 1 |
562 | return 1 |
| 442 | } |
563 | } |
| 443 | |
564 | |
| 444 | # @FUNCTION: emktemp |
565 | # @FUNCTION: emktemp |
| 445 | # @USAGE: [temp dir] |
566 | # @USAGE: [temp dir] |
| … | |
… | |
| 474 | TMPDIR="${topdir}" mktemp -dt tmp.XXXXXXXXXX |
595 | TMPDIR="${topdir}" mktemp -dt tmp.XXXXXXXXXX |
| 475 | fi |
596 | fi |
| 476 | fi |
597 | fi |
| 477 | } |
598 | } |
| 478 | |
599 | |
| 479 | # @FUNCTION: egetent |
|
|
| 480 | # @USAGE: <database> <key> |
|
|
| 481 | # @MAINTAINER: |
|
|
| 482 | # base-system@gentoo.org (Linux) |
|
|
| 483 | # Joe Jezak <josejx@gmail.com> (OS X) |
|
|
| 484 | # usata@gentoo.org (OS X) |
|
|
| 485 | # Aaron Walker <ka0ttic@gentoo.org> (FreeBSD) |
|
|
| 486 | # @DESCRIPTION: |
|
|
| 487 | # Small wrapper for getent (Linux), |
|
|
| 488 | # nidump (< Mac OS X 10.5), dscl (Mac OS X 10.5), |
|
|
| 489 | # and pw (FreeBSD) used in enewuser()/enewgroup() |
|
|
| 490 | egetent() { |
|
|
| 491 | case ${CHOST} in |
|
|
| 492 | *-darwin[678]) |
|
|
| 493 | case "$2" in |
|
|
| 494 | *[!0-9]*) # Non numeric |
|
|
| 495 | nidump $1 . | awk -F":" "{ if (\$1 ~ /^$2$/) {print \$0;exit;} }" |
|
|
| 496 | ;; |
|
|
| 497 | *) # Numeric |
|
|
| 498 | nidump $1 . | awk -F":" "{ if (\$3 == $2) {print \$0;exit;} }" |
|
|
| 499 | ;; |
|
|
| 500 | esac |
|
|
| 501 | ;; |
|
|
| 502 | *-darwin*) |
|
|
| 503 | local mytype=$1 |
|
|
| 504 | [[ "passwd" == $mytype ]] && mytype="Users" |
|
|
| 505 | [[ "group" == $mytype ]] && mytype="Groups" |
|
|
| 506 | case "$2" in |
|
|
| 507 | *[!0-9]*) # Non numeric |
|
|
| 508 | dscl . -read /$mytype/$2 2>/dev/null |grep RecordName |
|
|
| 509 | ;; |
|
|
| 510 | *) # Numeric |
|
|
| 511 | local mykey="UniqueID" |
|
|
| 512 | [[ $mytype == "Groups" ]] && mykey="PrimaryGroupID" |
|
|
| 513 | dscl . -search /$mytype $mykey $2 2>/dev/null |
|
|
| 514 | ;; |
|
|
| 515 | esac |
|
|
| 516 | ;; |
|
|
| 517 | *-freebsd*|*-dragonfly*) |
|
|
| 518 | local opts action="user" |
|
|
| 519 | [[ $1 == "passwd" ]] || action="group" |
|
|
| 520 | |
|
|
| 521 | # lookup by uid/gid |
|
|
| 522 | if [[ $2 == [[:digit:]]* ]] ; then |
|
|
| 523 | [[ ${action} == "user" ]] && opts="-u" || opts="-g" |
|
|
| 524 | fi |
|
|
| 525 | |
|
|
| 526 | pw show ${action} ${opts} "$2" -q |
|
|
| 527 | ;; |
|
|
| 528 | *-netbsd*|*-openbsd*) |
|
|
| 529 | grep "$2:\*:" /etc/$1 |
|
|
| 530 | ;; |
|
|
| 531 | *) |
|
|
| 532 | type -p nscd >& /dev/null && nscd -i "$1" |
|
|
| 533 | getent "$1" "$2" |
|
|
| 534 | ;; |
|
|
| 535 | esac |
|
|
| 536 | } |
|
|
| 537 | |
|
|
| 538 | # @FUNCTION: enewuser |
|
|
| 539 | # @USAGE: <user> [uid] [shell] [homedir] [groups] [params] |
|
|
| 540 | # @DESCRIPTION: |
|
|
| 541 | # Same as enewgroup, you are not required to understand how to properly add |
|
|
| 542 | # a user to the system. The only required parameter is the username. |
|
|
| 543 | # Default uid is (pass -1 for this) next available, default shell is |
|
|
| 544 | # /bin/false, default homedir is /dev/null, there are no default groups, |
|
|
| 545 | # and default params sets the comment as 'added by portage for ${PN}'. |
|
|
| 546 | enewuser() { |
|
|
| 547 | case ${EBUILD_PHASE} in |
|
|
| 548 | unpack|compile|test|install) |
|
|
| 549 | eerror "'enewuser()' called from '${EBUILD_PHASE}()' which is not a pkg_* function." |
|
|
| 550 | eerror "Package fails at QA and at life. Please file a bug." |
|
|
| 551 | die "Bad package! enewuser is only for use in pkg_* functions!" |
|
|
| 552 | esac |
|
|
| 553 | |
|
|
| 554 | # get the username |
|
|
| 555 | local euser=$1; shift |
|
|
| 556 | if [[ -z ${euser} ]] ; then |
|
|
| 557 | eerror "No username specified !" |
|
|
| 558 | die "Cannot call enewuser without a username" |
|
|
| 559 | fi |
|
|
| 560 | |
|
|
| 561 | # lets see if the username already exists |
|
|
| 562 | if [[ -n $(egetent passwd "${euser}") ]] ; then |
|
|
| 563 | return 0 |
|
|
| 564 | fi |
|
|
| 565 | einfo "Adding user '${euser}' to your system ..." |
|
|
| 566 | |
|
|
| 567 | # options to pass to useradd |
|
|
| 568 | local opts= |
|
|
| 569 | |
|
|
| 570 | # handle uid |
|
|
| 571 | local euid=$1; shift |
|
|
| 572 | if [[ -n ${euid} && ${euid} != -1 ]] ; then |
|
|
| 573 | if [[ ${euid} -gt 0 ]] ; then |
|
|
| 574 | if [[ -n $(egetent passwd ${euid}) ]] ; then |
|
|
| 575 | euid="next" |
|
|
| 576 | fi |
|
|
| 577 | else |
|
|
| 578 | eerror "Userid given but is not greater than 0 !" |
|
|
| 579 | die "${euid} is not a valid UID" |
|
|
| 580 | fi |
|
|
| 581 | else |
|
|
| 582 | euid="next" |
|
|
| 583 | fi |
|
|
| 584 | if [[ ${euid} == "next" ]] ; then |
|
|
| 585 | for ((euid = 101; euid <= 999; euid++)); do |
|
|
| 586 | [[ -z $(egetent passwd ${euid}) ]] && break |
|
|
| 587 | done |
|
|
| 588 | fi |
|
|
| 589 | opts="${opts} -u ${euid}" |
|
|
| 590 | einfo " - Userid: ${euid}" |
|
|
| 591 | |
|
|
| 592 | # handle shell |
|
|
| 593 | local eshell=$1; shift |
|
|
| 594 | if [[ ! -z ${eshell} ]] && [[ ${eshell} != "-1" ]] ; then |
|
|
| 595 | if [[ ! -e ${ROOT}${eshell} ]] ; then |
|
|
| 596 | eerror "A shell was specified but it does not exist !" |
|
|
| 597 | die "${eshell} does not exist in ${ROOT}" |
|
|
| 598 | fi |
|
|
| 599 | if [[ ${eshell} == */false || ${eshell} == */nologin ]] ; then |
|
|
| 600 | eerror "Do not specify ${eshell} yourself, use -1" |
|
|
| 601 | die "Pass '-1' as the shell parameter" |
|
|
| 602 | fi |
|
|
| 603 | else |
|
|
| 604 | for shell in /sbin/nologin /usr/sbin/nologin /bin/false /usr/bin/false /dev/null ; do |
|
|
| 605 | [[ -x ${ROOT}${shell} ]] && break |
|
|
| 606 | done |
|
|
| 607 | |
|
|
| 608 | if [[ ${shell} == "/dev/null" ]] ; then |
|
|
| 609 | eerror "Unable to identify the shell to use, proceeding with userland default." |
|
|
| 610 | case ${USERLAND} in |
|
|
| 611 | GNU) shell="/bin/false" ;; |
|
|
| 612 | BSD) shell="/sbin/nologin" ;; |
|
|
| 613 | Darwin) shell="/usr/sbin/nologin" ;; |
|
|
| 614 | *) die "Unable to identify the default shell for userland ${USERLAND}" |
|
|
| 615 | esac |
|
|
| 616 | fi |
|
|
| 617 | |
|
|
| 618 | eshell=${shell} |
|
|
| 619 | fi |
|
|
| 620 | einfo " - Shell: ${eshell}" |
|
|
| 621 | opts="${opts} -s ${eshell}" |
|
|
| 622 | |
|
|
| 623 | # handle homedir |
|
|
| 624 | local ehome=$1; shift |
|
|
| 625 | if [[ -z ${ehome} ]] || [[ ${ehome} == "-1" ]] ; then |
|
|
| 626 | ehome="/dev/null" |
|
|
| 627 | fi |
|
|
| 628 | einfo " - Home: ${ehome}" |
|
|
| 629 | opts="${opts} -d ${ehome}" |
|
|
| 630 | |
|
|
| 631 | # handle groups |
|
|
| 632 | local egroups=$1; shift |
|
|
| 633 | if [[ ! -z ${egroups} ]] ; then |
|
|
| 634 | local oldifs=${IFS} |
|
|
| 635 | local defgroup="" exgroups="" |
|
|
| 636 | |
|
|
| 637 | export IFS="," |
|
|
| 638 | for g in ${egroups} ; do |
|
|
| 639 | export IFS=${oldifs} |
|
|
| 640 | if [[ -z $(egetent group "${g}") ]] ; then |
|
|
| 641 | eerror "You must add group ${g} to the system first" |
|
|
| 642 | die "${g} is not a valid GID" |
|
|
| 643 | fi |
|
|
| 644 | if [[ -z ${defgroup} ]] ; then |
|
|
| 645 | defgroup=${g} |
|
|
| 646 | else |
|
|
| 647 | exgroups="${exgroups},${g}" |
|
|
| 648 | fi |
|
|
| 649 | export IFS="," |
|
|
| 650 | done |
|
|
| 651 | export IFS=${oldifs} |
|
|
| 652 | |
|
|
| 653 | opts="${opts} -g ${defgroup}" |
|
|
| 654 | if [[ ! -z ${exgroups} ]] ; then |
|
|
| 655 | opts="${opts} -G ${exgroups:1}" |
|
|
| 656 | fi |
|
|
| 657 | else |
|
|
| 658 | egroups="(none)" |
|
|
| 659 | fi |
|
|
| 660 | einfo " - Groups: ${egroups}" |
|
|
| 661 | |
|
|
| 662 | # handle extra and add the user |
|
|
| 663 | local oldsandbox=${SANDBOX_ON} |
|
|
| 664 | export SANDBOX_ON="0" |
|
|
| 665 | case ${CHOST} in |
|
|
| 666 | *-darwin*) |
|
|
| 667 | ### Make the user |
|
|
| 668 | if [[ -z $@ ]] ; then |
|
|
| 669 | dscl . create /users/${euser} uid ${euid} |
|
|
| 670 | dscl . create /users/${euser} shell ${eshell} |
|
|
| 671 | dscl . create /users/${euser} home ${ehome} |
|
|
| 672 | dscl . create /users/${euser} realname "added by portage for ${PN}" |
|
|
| 673 | ### Add the user to the groups specified |
|
|
| 674 | local oldifs=${IFS} |
|
|
| 675 | export IFS="," |
|
|
| 676 | for g in ${egroups} ; do |
|
|
| 677 | dscl . merge /groups/${g} users ${euser} |
|
|
| 678 | done |
|
|
| 679 | export IFS=${oldifs} |
|
|
| 680 | else |
|
|
| 681 | einfo "Extra options are not supported on Darwin yet" |
|
|
| 682 | einfo "Please report the ebuild along with the info below" |
|
|
| 683 | einfo "eextra: $@" |
|
|
| 684 | die "Required function missing" |
|
|
| 685 | fi |
|
|
| 686 | ;; |
|
|
| 687 | *-freebsd*|*-dragonfly*) |
|
|
| 688 | if [[ -z $@ ]] ; then |
|
|
| 689 | pw useradd ${euser} ${opts} \ |
|
|
| 690 | -c "added by portage for ${PN}" \ |
|
|
| 691 | die "enewuser failed" |
|
|
| 692 | else |
|
|
| 693 | einfo " - Extra: $@" |
|
|
| 694 | pw useradd ${euser} ${opts} \ |
|
|
| 695 | "$@" || die "enewuser failed" |
|
|
| 696 | fi |
|
|
| 697 | ;; |
|
|
| 698 | |
|
|
| 699 | *-netbsd*) |
|
|
| 700 | if [[ -z $@ ]] ; then |
|
|
| 701 | useradd ${opts} ${euser} || die "enewuser failed" |
|
|
| 702 | else |
|
|
| 703 | einfo " - Extra: $@" |
|
|
| 704 | useradd ${opts} ${euser} "$@" || die "enewuser failed" |
|
|
| 705 | fi |
|
|
| 706 | ;; |
|
|
| 707 | |
|
|
| 708 | *-openbsd*) |
|
|
| 709 | if [[ -z $@ ]] ; then |
|
|
| 710 | useradd -u ${euid} -s ${eshell} \ |
|
|
| 711 | -d ${ehome} -c "Added by portage for ${PN}" \ |
|
|
| 712 | -g ${egroups} ${euser} || die "enewuser failed" |
|
|
| 713 | else |
|
|
| 714 | einfo " - Extra: $@" |
|
|
| 715 | useradd -u ${euid} -s ${eshell} \ |
|
|
| 716 | -d ${ehome} -c "Added by portage for ${PN}" \ |
|
|
| 717 | -g ${egroups} ${euser} "$@" || die "enewuser failed" |
|
|
| 718 | fi |
|
|
| 719 | ;; |
|
|
| 720 | |
|
|
| 721 | *) |
|
|
| 722 | if [[ -z $@ ]] ; then |
|
|
| 723 | useradd -r ${opts} \ |
|
|
| 724 | -c "added by portage for ${PN}" \ |
|
|
| 725 | ${euser} \ |
|
|
| 726 | || die "enewuser failed" |
|
|
| 727 | else |
|
|
| 728 | einfo " - Extra: $@" |
|
|
| 729 | useradd -r ${opts} "$@" \ |
|
|
| 730 | ${euser} \ |
|
|
| 731 | || die "enewuser failed" |
|
|
| 732 | fi |
|
|
| 733 | ;; |
|
|
| 734 | esac |
|
|
| 735 | |
|
|
| 736 | if [[ ! -e ${ROOT}/${ehome} ]] ; then |
|
|
| 737 | einfo " - Creating ${ehome} in ${ROOT}" |
|
|
| 738 | mkdir -p "${ROOT}/${ehome}" |
|
|
| 739 | chown ${euser} "${ROOT}/${ehome}" |
|
|
| 740 | chmod 755 "${ROOT}/${ehome}" |
|
|
| 741 | fi |
|
|
| 742 | |
|
|
| 743 | export SANDBOX_ON=${oldsandbox} |
|
|
| 744 | } |
|
|
| 745 | |
|
|
| 746 | # @FUNCTION: enewgroup |
|
|
| 747 | # @USAGE: <group> [gid] |
|
|
| 748 | # @DESCRIPTION: |
|
|
| 749 | # This function does not require you to understand how to properly add a |
|
|
| 750 | # group to the system. Just give it a group name to add and enewgroup will |
|
|
| 751 | # do the rest. You may specify the gid for the group or allow the group to |
|
|
| 752 | # allocate the next available one. |
|
|
| 753 | enewgroup() { |
|
|
| 754 | case ${EBUILD_PHASE} in |
|
|
| 755 | unpack|compile|test|install) |
|
|
| 756 | eerror "'enewgroup()' called from '${EBUILD_PHASE}()' which is not a pkg_* function." |
|
|
| 757 | eerror "Package fails at QA and at life. Please file a bug." |
|
|
| 758 | die "Bad package! enewgroup is only for use in pkg_* functions!" |
|
|
| 759 | esac |
|
|
| 760 | |
|
|
| 761 | # get the group |
|
|
| 762 | local egroup="$1"; shift |
|
|
| 763 | if [ -z "${egroup}" ] |
|
|
| 764 | then |
|
|
| 765 | eerror "No group specified !" |
|
|
| 766 | die "Cannot call enewgroup without a group" |
|
|
| 767 | fi |
|
|
| 768 | |
|
|
| 769 | # see if group already exists |
|
|
| 770 | if [[ -n $(egetent group "${egroup}") ]]; then |
|
|
| 771 | return 0 |
|
|
| 772 | fi |
|
|
| 773 | einfo "Adding group '${egroup}' to your system ..." |
|
|
| 774 | |
|
|
| 775 | # options to pass to useradd |
|
|
| 776 | local opts= |
|
|
| 777 | |
|
|
| 778 | # handle gid |
|
|
| 779 | local egid="$1"; shift |
|
|
| 780 | if [ ! -z "${egid}" ] |
|
|
| 781 | then |
|
|
| 782 | if [ "${egid}" -gt 0 ] |
|
|
| 783 | then |
|
|
| 784 | if [ -z "`egetent group ${egid}`" ] |
|
|
| 785 | then |
|
|
| 786 | if [[ "${CHOST}" == *-darwin* ]]; then |
|
|
| 787 | opts="${opts} ${egid}" |
|
|
| 788 | else |
|
|
| 789 | opts="${opts} -g ${egid}" |
|
|
| 790 | fi |
|
|
| 791 | else |
|
|
| 792 | egid="next available; requested gid taken" |
|
|
| 793 | fi |
|
|
| 794 | else |
|
|
| 795 | eerror "Groupid given but is not greater than 0 !" |
|
|
| 796 | die "${egid} is not a valid GID" |
|
|
| 797 | fi |
|
|
| 798 | else |
|
|
| 799 | egid="next available" |
|
|
| 800 | fi |
|
|
| 801 | einfo " - Groupid: ${egid}" |
|
|
| 802 | |
|
|
| 803 | # handle extra |
|
|
| 804 | local eextra="$@" |
|
|
| 805 | opts="${opts} ${eextra}" |
|
|
| 806 | |
|
|
| 807 | # add the group |
|
|
| 808 | local oldsandbox="${SANDBOX_ON}" |
|
|
| 809 | export SANDBOX_ON="0" |
|
|
| 810 | case ${CHOST} in |
|
|
| 811 | *-darwin*) |
|
|
| 812 | if [ ! -z "${eextra}" ]; |
|
|
| 813 | then |
|
|
| 814 | einfo "Extra options are not supported on Darwin/OS X yet" |
|
|
| 815 | einfo "Please report the ebuild along with the info below" |
|
|
| 816 | einfo "eextra: ${eextra}" |
|
|
| 817 | die "Required function missing" |
|
|
| 818 | fi |
|
|
| 819 | |
|
|
| 820 | # If we need the next available |
|
|
| 821 | case ${egid} in |
|
|
| 822 | *[!0-9]*) # Non numeric |
|
|
| 823 | for ((egid = 101; egid <= 999; egid++)); do |
|
|
| 824 | [[ -z $(egetent group ${egid}) ]] && break |
|
|
| 825 | done |
|
|
| 826 | esac |
|
|
| 827 | dscl . create /groups/${egroup} gid ${egid} |
|
|
| 828 | dscl . create /groups/${egroup} passwd '*' |
|
|
| 829 | ;; |
|
|
| 830 | |
|
|
| 831 | *-freebsd*|*-dragonfly*) |
|
|
| 832 | case ${egid} in |
|
|
| 833 | *[!0-9]*) # Non numeric |
|
|
| 834 | for ((egid = 101; egid <= 999; egid++)); do |
|
|
| 835 | [[ -z $(egetent group ${egid}) ]] && break |
|
|
| 836 | done |
|
|
| 837 | esac |
|
|
| 838 | pw groupadd ${egroup} -g ${egid} || die "enewgroup failed" |
|
|
| 839 | ;; |
|
|
| 840 | |
|
|
| 841 | *-netbsd*) |
|
|
| 842 | case ${egid} in |
|
|
| 843 | *[!0-9]*) # Non numeric |
|
|
| 844 | for ((egid = 101; egid <= 999; egid++)); do |
|
|
| 845 | [[ -z $(egetent group ${egid}) ]] && break |
|
|
| 846 | done |
|
|
| 847 | esac |
|
|
| 848 | groupadd -g ${egid} ${egroup} || die "enewgroup failed" |
|
|
| 849 | ;; |
|
|
| 850 | |
|
|
| 851 | *) |
|
|
| 852 | # We specify -r so that we get a GID in the system range from login.defs |
|
|
| 853 | groupadd -r ${opts} ${egroup} || die "enewgroup failed" |
|
|
| 854 | ;; |
|
|
| 855 | esac |
|
|
| 856 | export SANDBOX_ON="${oldsandbox}" |
|
|
| 857 | } |
|
|
| 858 | |
|
|
| 859 | # @FUNCTION: edos2unix |
600 | # @FUNCTION: edos2unix |
| 860 | # @USAGE: <file> [more files ...] |
601 | # @USAGE: <file> [more files ...] |
| 861 | # @DESCRIPTION: |
602 | # @DESCRIPTION: |
| 862 | # A handy replacement for dos2unix, recode, fixdos, etc... This allows you |
603 | # A handy replacement for dos2unix, recode, fixdos, etc... This allows you |
| 863 | # to remove all of these text utilities from DEPEND variables because this |
604 | # to remove all of these text utilities from DEPEND variables because this |
| 864 | # is a script based solution. Just give it a list of files to convert and |
605 | # is a script based solution. Just give it a list of files to convert and |
| 865 | # they will all be changed from the DOS CRLF format to the UNIX LF format. |
606 | # they will all be changed from the DOS CRLF format to the UNIX LF format. |
| 866 | edos2unix() { |
607 | edos2unix() { |
| 867 | echo "$@" | xargs sed -i 's/\r$//' |
608 | [[ $# -eq 0 ]] && return 0 |
|
|
609 | sed -i 's/\r$//' -- "$@" || die |
| 868 | } |
610 | } |
| 869 | |
611 | |
| 870 | # Make a desktop file ! |
612 | # @FUNCTION: make_desktop_entry |
| 871 | # Great for making those icons in kde/gnome startmenu ! |
|
|
| 872 | # Amaze your friends ! Get the women ! Join today ! |
|
|
| 873 | # |
|
|
| 874 | # make_desktop_entry(<command>, [name], [icon], [type], [fields]) |
613 | # @USAGE: make_desktop_entry(<command>, [name], [icon], [type], [fields]) |
|
|
614 | # @DESCRIPTION: |
|
|
615 | # Make a .desktop file. |
| 875 | # |
616 | # |
|
|
617 | # @CODE |
| 876 | # binary: what command does the app run with ? |
618 | # binary: what command does the app run with ? |
| 877 | # name: the name that will show up in the menu |
619 | # name: the name that will show up in the menu |
| 878 | # icon: give your little like a pretty little icon ... |
620 | # icon: give your little like a pretty little icon ... |
| 879 | # this can be relative (to /usr/share/pixmaps) or |
621 | # this can be relative (to /usr/share/pixmaps) or |
| 880 | # a full path to an icon |
622 | # a full path to an icon |
| 881 | # type: what kind of application is this ? for categories: |
623 | # type: what kind of application is this? |
|
|
624 | # for categories: |
| 882 | # http://standards.freedesktop.org/menu-spec/latest/apa.html |
625 | # http://standards.freedesktop.org/menu-spec/latest/apa.html |
|
|
626 | # if unset, function tries to guess from package's category |
| 883 | # fields: extra fields to append to the desktop file; a printf string |
627 | # fields: extra fields to append to the desktop file; a printf string |
|
|
628 | # @CODE |
| 884 | make_desktop_entry() { |
629 | make_desktop_entry() { |
| 885 | [[ -z $1 ]] && die "make_desktop_entry: You must specify the executable" |
630 | [[ -z $1 ]] && die "make_desktop_entry: You must specify the executable" |
| 886 | |
631 | |
| 887 | local exec=${1} |
632 | local exec=${1} |
| 888 | local name=${2:-${PN}} |
633 | local name=${2:-${PN}} |
| … | |
… | |
| 1195 | # wrap the env here so that the 'insinto' call |
940 | # wrap the env here so that the 'insinto' call |
| 1196 | # doesn't corrupt the env of the caller |
941 | # doesn't corrupt the env of the caller |
| 1197 | insinto /usr/share/pixmaps |
942 | insinto /usr/share/pixmaps |
| 1198 | newins "$@" |
943 | newins "$@" |
| 1199 | ) |
944 | ) |
| 1200 | } |
|
|
| 1201 | |
|
|
| 1202 | # for internal use only (unpack_pdv and unpack_makeself) |
|
|
| 1203 | find_unpackable_file() { |
|
|
| 1204 | local src=$1 |
|
|
| 1205 | if [[ -z ${src} ]] ; then |
|
|
| 1206 | src=${DISTDIR}/${A} |
|
|
| 1207 | else |
|
|
| 1208 | if [[ -e ${DISTDIR}/${src} ]] ; then |
|
|
| 1209 | src=${DISTDIR}/${src} |
|
|
| 1210 | elif [[ -e ${PWD}/${src} ]] ; then |
|
|
| 1211 | src=${PWD}/${src} |
|
|
| 1212 | elif [[ -e ${src} ]] ; then |
|
|
| 1213 | src=${src} |
|
|
| 1214 | fi |
|
|
| 1215 | fi |
|
|
| 1216 | [[ ! -e ${src} ]] && return 1 |
|
|
| 1217 | echo "${src}" |
|
|
| 1218 | } |
|
|
| 1219 | |
|
|
| 1220 | # @FUNCTION: unpack_pdv |
|
|
| 1221 | # @USAGE: <file to unpack> <size of off_t> |
|
|
| 1222 | # @DESCRIPTION: |
|
|
| 1223 | # Unpack those pesky pdv generated files ... |
|
|
| 1224 | # They're self-unpacking programs with the binary package stuffed in |
|
|
| 1225 | # the middle of the archive. Valve seems to use it a lot ... too bad |
|
|
| 1226 | # it seems to like to segfault a lot :(. So lets take it apart ourselves. |
|
|
| 1227 | # |
|
|
| 1228 | # You have to specify the off_t size ... I have no idea how to extract that |
|
|
| 1229 | # information out of the binary executable myself. Basically you pass in |
|
|
| 1230 | # the size of the off_t type (in bytes) on the machine that built the pdv |
|
|
| 1231 | # archive. |
|
|
| 1232 | # |
|
|
| 1233 | # One way to determine this is by running the following commands: |
|
|
| 1234 | # |
|
|
| 1235 | # @CODE |
|
|
| 1236 | # strings <pdv archive> | grep lseek |
|
|
| 1237 | # strace -elseek <pdv archive> |
|
|
| 1238 | # @CODE |
|
|
| 1239 | # |
|
|
| 1240 | # Basically look for the first lseek command (we do the strings/grep because |
|
|
| 1241 | # sometimes the function call is _llseek or something) and steal the 2nd |
|
|
| 1242 | # parameter. Here is an example: |
|
|
| 1243 | # |
|
|
| 1244 | # @CODE |
|
|
| 1245 | # vapier@vapier 0 pdv_unpack # strings hldsupdatetool.bin | grep lseek |
|
|
| 1246 | # lseek |
|
|
| 1247 | # vapier@vapier 0 pdv_unpack # strace -elseek ./hldsupdatetool.bin |
|
|
| 1248 | # lseek(3, -4, SEEK_END) = 2981250 |
|
|
| 1249 | # @CODE |
|
|
| 1250 | # |
|
|
| 1251 | # Thus we would pass in the value of '4' as the second parameter. |
|
|
| 1252 | unpack_pdv() { |
|
|
| 1253 | local src=$(find_unpackable_file "$1") |
|
|
| 1254 | local sizeoff_t=$2 |
|
|
| 1255 | |
|
|
| 1256 | [[ -z ${src} ]] && die "Could not locate source for '$1'" |
|
|
| 1257 | [[ -z ${sizeoff_t} ]] && die "No idea what off_t size was used for this pdv :(" |
|
|
| 1258 | |
|
|
| 1259 | local shrtsrc=$(basename "${src}") |
|
|
| 1260 | echo ">>> Unpacking ${shrtsrc} to ${PWD}" |
|
|
| 1261 | local metaskip=$(tail -c ${sizeoff_t} "${src}" | hexdump -e \"%i\") |
|
|
| 1262 | local tailskip=$(tail -c $((${sizeoff_t}*2)) "${src}" | head -c ${sizeoff_t} | hexdump -e \"%i\") |
|
|
| 1263 | |
|
|
| 1264 | # grab metadata for debug reasons |
|
|
| 1265 | local metafile=$(emktemp) |
|
|
| 1266 | tail -c +$((${metaskip}+1)) "${src}" > "${metafile}" |
|
|
| 1267 | |
|
|
| 1268 | # rip out the final file name from the metadata |
|
|
| 1269 | local datafile=$(tail -c +$((${metaskip}+1)) "${src}" | strings | head -n 1) |
|
|
| 1270 | datafile=$(basename "${datafile}") |
|
|
| 1271 | |
|
|
| 1272 | # now lets uncompress/untar the file if need be |
|
|
| 1273 | local tmpfile=$(emktemp) |
|
|
| 1274 | tail -c +$((${tailskip}+1)) ${src} 2>/dev/null | head -c 512 > ${tmpfile} |
|
|
| 1275 | |
|
|
| 1276 | local iscompressed=$(file -b "${tmpfile}") |
|
|
| 1277 | if [[ ${iscompressed:0:8} == "compress" ]] ; then |
|
|
| 1278 | iscompressed=1 |
|
|
| 1279 | mv ${tmpfile}{,.Z} |
|
|
| 1280 | gunzip ${tmpfile} |
|
|
| 1281 | else |
|
|
| 1282 | iscompressed=0 |
|
|
| 1283 | fi |
|
|
| 1284 | local istar=$(file -b "${tmpfile}") |
|
|
| 1285 | if [[ ${istar:0:9} == "POSIX tar" ]] ; then |
|
|
| 1286 | istar=1 |
|
|
| 1287 | else |
|
|
| 1288 | istar=0 |
|
|
| 1289 | fi |
|
|
| 1290 | |
|
|
| 1291 | #for some reason gzip dies with this ... dd cant provide buffer fast enough ? |
|
|
| 1292 | #dd if=${src} ibs=${metaskip} count=1 \ |
|
|
| 1293 | # | dd ibs=${tailskip} skip=1 \ |
|
|
| 1294 | # | gzip -dc \ |
|
|
| 1295 | # > ${datafile} |
|
|
| 1296 | if [ ${iscompressed} -eq 1 ] ; then |
|
|
| 1297 | if [ ${istar} -eq 1 ] ; then |
|
|
| 1298 | tail -c +$((${tailskip}+1)) ${src} 2>/dev/null \ |
|
|
| 1299 | | head -c $((${metaskip}-${tailskip})) \ |
|
|
| 1300 | | tar -xzf - |
|
|
| 1301 | else |
|
|
| 1302 | tail -c +$((${tailskip}+1)) ${src} 2>/dev/null \ |
|
|
| 1303 | | head -c $((${metaskip}-${tailskip})) \ |
|
|
| 1304 | | gzip -dc \ |
|
|
| 1305 | > ${datafile} |
|
|
| 1306 | fi |
|
|
| 1307 | else |
|
|
| 1308 | if [ ${istar} -eq 1 ] ; then |
|
|
| 1309 | tail -c +$((${tailskip}+1)) ${src} 2>/dev/null \ |
|
|
| 1310 | | head -c $((${metaskip}-${tailskip})) \ |
|
|
| 1311 | | tar --no-same-owner -xf - |
|
|
| 1312 | else |
|
|
| 1313 | tail -c +$((${tailskip}+1)) ${src} 2>/dev/null \ |
|
|
| 1314 | | head -c $((${metaskip}-${tailskip})) \ |
|
|
| 1315 | > ${datafile} |
|
|
| 1316 | fi |
|
|
| 1317 | fi |
|
|
| 1318 | true |
|
|
| 1319 | #[ -s "${datafile}" ] || die "failure unpacking pdv ('${metaskip}' '${tailskip}' '${datafile}')" |
|
|
| 1320 | #assert "failure unpacking pdv ('${metaskip}' '${tailskip}' '${datafile}')" |
|
|
| 1321 | } |
|
|
| 1322 | |
|
|
| 1323 | # @FUNCTION: unpack_makeself |
|
|
| 1324 | # @USAGE: [file to unpack] [offset] [tail|dd] |
|
|
| 1325 | # @DESCRIPTION: |
|
|
| 1326 | # Unpack those pesky makeself generated files ... |
|
|
| 1327 | # They're shell scripts with the binary package tagged onto |
|
|
| 1328 | # the end of the archive. Loki utilized the format as does |
|
|
| 1329 | # many other game companies. |
|
|
| 1330 | # |
|
|
| 1331 | # If the file is not specified, then ${A} is used. If the |
|
|
| 1332 | # offset is not specified then we will attempt to extract |
|
|
| 1333 | # the proper offset from the script itself. |
|
|
| 1334 | unpack_makeself() { |
|
|
| 1335 | local src_input=${1:-${A}} |
|
|
| 1336 | local src=$(find_unpackable_file "${src_input}") |
|
|
| 1337 | local skip=$2 |
|
|
| 1338 | local exe=$3 |
|
|
| 1339 | |
|
|
| 1340 | [[ -z ${src} ]] && die "Could not locate source for '${src_input}'" |
|
|
| 1341 | |
|
|
| 1342 | local shrtsrc=$(basename "${src}") |
|
|
| 1343 | echo ">>> Unpacking ${shrtsrc} to ${PWD}" |
|
|
| 1344 | if [[ -z ${skip} ]] ; then |
|
|
| 1345 | local ver=$(grep -m1 -a '#.*Makeself' "${src}" | awk '{print $NF}') |
|
|
| 1346 | local skip=0 |
|
|
| 1347 | exe=tail |
|
|
| 1348 | case ${ver} in |
|
|
| 1349 | 1.5.*|1.6.0-nv) # tested 1.5.{3,4,5} ... guessing 1.5.x series is same |
|
|
| 1350 | skip=$(grep -a ^skip= "${src}" | cut -d= -f2) |
|
|
| 1351 | ;; |
|
|
| 1352 | 2.0|2.0.1) |
|
|
| 1353 | skip=$(grep -a ^$'\t'tail "${src}" | awk '{print $2}' | cut -b2-) |
|
|
| 1354 | ;; |
|
|
| 1355 | 2.1.1) |
|
|
| 1356 | skip=$(grep -a ^offset= "${src}" | awk '{print $2}' | cut -b2-) |
|
|
| 1357 | (( skip++ )) |
|
|
| 1358 | ;; |
|
|
| 1359 | 2.1.2) |
|
|
| 1360 | skip=$(grep -a ^offset= "${src}" | awk '{print $3}' | head -n 1) |
|
|
| 1361 | (( skip++ )) |
|
|
| 1362 | ;; |
|
|
| 1363 | 2.1.3) |
|
|
| 1364 | skip=`grep -a ^offset= "${src}" | awk '{print $3}'` |
|
|
| 1365 | (( skip++ )) |
|
|
| 1366 | ;; |
|
|
| 1367 | 2.1.4|2.1.5) |
|
|
| 1368 | skip=$(grep -a offset=.*head.*wc "${src}" | awk '{print $3}' | head -n 1) |
|
|
| 1369 | skip=$(head -n ${skip} "${src}" | wc -c) |
|
|
| 1370 | exe="dd" |
|
|
| 1371 | ;; |
|
|
| 1372 | *) |
|
|
| 1373 | eerror "I'm sorry, but I was unable to support the Makeself file." |
|
|
| 1374 | eerror "The version I detected was '${ver}'." |
|
|
| 1375 | eerror "Please file a bug about the file ${shrtsrc} at" |
|
|
| 1376 | eerror "http://bugs.gentoo.org/ so that support can be added." |
|
|
| 1377 | die "makeself version '${ver}' not supported" |
|
|
| 1378 | ;; |
|
|
| 1379 | esac |
|
|
| 1380 | debug-print "Detected Makeself version ${ver} ... using ${skip} as offset" |
|
|
| 1381 | fi |
|
|
| 1382 | case ${exe} in |
|
|
| 1383 | tail) exe="tail -n +${skip} '${src}'";; |
|
|
| 1384 | dd) exe="dd ibs=${skip} skip=1 if='${src}'";; |
|
|
| 1385 | *) die "makeself cant handle exe '${exe}'" |
|
|
| 1386 | esac |
|
|
| 1387 | |
|
|
| 1388 | # lets grab the first few bytes of the file to figure out what kind of archive it is |
|
|
| 1389 | local tmpfile=$(emktemp) |
|
|
| 1390 | eval ${exe} 2>/dev/null | head -c 512 > "${tmpfile}" |
|
|
| 1391 | local filetype=$(file -b "${tmpfile}") |
|
|
| 1392 | case ${filetype} in |
|
|
| 1393 | *tar\ archive*) |
|
|
| 1394 | eval ${exe} | tar --no-same-owner -xf - |
|
|
| 1395 | ;; |
|
|
| 1396 | bzip2*) |
|
|
| 1397 | eval ${exe} | bzip2 -dc | tar --no-same-owner -xf - |
|
|
| 1398 | ;; |
|
|
| 1399 | gzip*) |
|
|
| 1400 | eval ${exe} | tar --no-same-owner -xzf - |
|
|
| 1401 | ;; |
|
|
| 1402 | compress*) |
|
|
| 1403 | eval ${exe} | gunzip | tar --no-same-owner -xf - |
|
|
| 1404 | ;; |
|
|
| 1405 | *) |
|
|
| 1406 | eerror "Unknown filetype \"${filetype}\" ?" |
|
|
| 1407 | false |
|
|
| 1408 | ;; |
|
|
| 1409 | esac |
|
|
| 1410 | assert "failure unpacking (${filetype}) makeself ${shrtsrc} ('${ver}' +${skip})" |
|
|
| 1411 | } |
|
|
| 1412 | |
|
|
| 1413 | # @FUNCTION: check_license |
|
|
| 1414 | # @USAGE: [license] |
|
|
| 1415 | # @DESCRIPTION: |
|
|
| 1416 | # Display a license for user to accept. If no license is |
|
|
| 1417 | # specified, then ${LICENSE} is used. |
|
|
| 1418 | check_license() { |
|
|
| 1419 | local lic=$1 |
|
|
| 1420 | if [ -z "${lic}" ] ; then |
|
|
| 1421 | lic="${PORTDIR}/licenses/${LICENSE}" |
|
|
| 1422 | else |
|
|
| 1423 | if [ -e "${PORTDIR}/licenses/${lic}" ] ; then |
|
|
| 1424 | lic="${PORTDIR}/licenses/${lic}" |
|
|
| 1425 | elif [ -e "${PWD}/${lic}" ] ; then |
|
|
| 1426 | lic="${PWD}/${lic}" |
|
|
| 1427 | elif [ -e "${lic}" ] ; then |
|
|
| 1428 | lic="${lic}" |
|
|
| 1429 | fi |
|
|
| 1430 | fi |
|
|
| 1431 | local l="`basename ${lic}`" |
|
|
| 1432 | |
|
|
| 1433 | # here is where we check for the licenses the user already |
|
|
| 1434 | # accepted ... if we don't find a match, we make the user accept |
|
|
| 1435 | local alic |
|
|
| 1436 | eshopts_push -o noglob # so that bash doesn't expand "*" |
|
|
| 1437 | for alic in ${ACCEPT_LICENSE} ; do |
|
|
| 1438 | if [[ ${alic} == ${l} ]]; then |
|
|
| 1439 | eshopts_pop |
|
|
| 1440 | return 0 |
|
|
| 1441 | fi |
|
|
| 1442 | done |
|
|
| 1443 | eshopts_pop |
|
|
| 1444 | [ ! -f "${lic}" ] && die "Could not find requested license ${lic}" |
|
|
| 1445 | |
|
|
| 1446 | local licmsg=$(emktemp) |
|
|
| 1447 | cat <<-EOF > ${licmsg} |
|
|
| 1448 | ********************************************************** |
|
|
| 1449 | The following license outlines the terms of use of this |
|
|
| 1450 | package. You MUST accept this license for installation to |
|
|
| 1451 | continue. When you are done viewing, hit 'q'. If you |
|
|
| 1452 | CTRL+C out of this, the install will not run! |
|
|
| 1453 | ********************************************************** |
|
|
| 1454 | |
|
|
| 1455 | EOF |
|
|
| 1456 | cat ${lic} >> ${licmsg} |
|
|
| 1457 | ${PAGER:-less} ${licmsg} || die "Could not execute pager (${PAGER}) to accept ${lic}" |
|
|
| 1458 | einfon "Do you accept the terms of this license (${l})? [yes/no] " |
|
|
| 1459 | read alic |
|
|
| 1460 | case ${alic} in |
|
|
| 1461 | yes|Yes|y|Y) |
|
|
| 1462 | return 0 |
|
|
| 1463 | ;; |
|
|
| 1464 | *) |
|
|
| 1465 | echo;echo;echo |
|
|
| 1466 | eerror "You MUST accept the license to continue! Exiting!" |
|
|
| 1467 | die "Failed to accept license" |
|
|
| 1468 | ;; |
|
|
| 1469 | esac |
|
|
| 1470 | } |
945 | } |
| 1471 | |
946 | |
| 1472 | # @FUNCTION: cdrom_get_cds |
947 | # @FUNCTION: cdrom_get_cds |
| 1473 | # @USAGE: <file on cd1> [file on cd2] [file on cd3] [...] |
948 | # @USAGE: <file on cd1> [file on cd2] [file on cd3] [...] |
| 1474 | # @DESCRIPTION: |
949 | # @DESCRIPTION: |
| … | |
… | |
| 1706 | else |
1181 | else |
| 1707 | newls="" |
1182 | newls="" |
| 1708 | fi |
1183 | fi |
| 1709 | for f in $(find "$d" -name '*.po' -exec basename {} .po ';') ; do |
1184 | for f in $(find "$d" -name '*.po' -exec basename {} .po ';') ; do |
| 1710 | if [[ ${op} == "-i" ]] ; then |
1185 | if [[ ${op} == "-i" ]] ; then |
| 1711 | hasq ${f} ${ls} && newls="${newls} ${f}" |
1186 | has ${f} ${ls} && newls="${newls} ${f}" |
| 1712 | else |
1187 | else |
| 1713 | hasq ${f} ${ls} || newls="${newls} ${f}" |
1188 | has ${f} ${ls} || newls="${newls} ${f}" |
| 1714 | fi |
1189 | fi |
| 1715 | done |
1190 | done |
| 1716 | ls=${newls} |
1191 | ls=${newls} |
| 1717 | done |
1192 | done |
| 1718 | else |
1193 | else |
| … | |
… | |
| 1720 | fi |
1195 | fi |
| 1721 | |
1196 | |
| 1722 | nols="" |
1197 | nols="" |
| 1723 | newls="" |
1198 | newls="" |
| 1724 | for f in ${LINGUAS} ; do |
1199 | for f in ${LINGUAS} ; do |
| 1725 | if hasq ${f} ${ls} ; then |
1200 | if has ${f} ${ls} ; then |
| 1726 | newls="${newls} ${f}" |
1201 | newls="${newls} ${f}" |
| 1727 | else |
1202 | else |
| 1728 | nols="${nols} ${f}" |
1203 | nols="${nols} ${f}" |
| 1729 | fi |
1204 | fi |
| 1730 | done |
1205 | done |
| … | |
… | |
| 1785 | ewarn "the libraries are not being removed. You need to run revdep-rebuild" |
1260 | ewarn "the libraries are not being removed. You need to run revdep-rebuild" |
| 1786 | ewarn "in order to remove these old dependencies. If you do not have this" |
1261 | ewarn "in order to remove these old dependencies. If you do not have this" |
| 1787 | ewarn "helper program, simply emerge the 'gentoolkit' package." |
1262 | ewarn "helper program, simply emerge the 'gentoolkit' package." |
| 1788 | ewarn |
1263 | ewarn |
| 1789 | fi |
1264 | fi |
|
|
1265 | # temp hack for #348634 #357225 |
|
|
1266 | [[ ${PN} == "mpfr" ]] && lib=${lib##*/} |
| 1790 | ewarn " # revdep-rebuild --library ${lib##*/}" |
1267 | ewarn " # revdep-rebuild --library '${lib}'" |
| 1791 | done |
1268 | done |
| 1792 | if [[ ${notice} -eq 1 ]] ; then |
1269 | if [[ ${notice} -eq 1 ]] ; then |
| 1793 | ewarn |
1270 | ewarn |
| 1794 | ewarn "Once you've finished running revdep-rebuild, it should be safe to" |
1271 | ewarn "Once you've finished running revdep-rebuild, it should be safe to" |
| 1795 | ewarn "delete the old libraries. Here is a copy & paste for the lazy:" |
1272 | ewarn "delete the old libraries. Here is a copy & paste for the lazy:" |
| … | |
… | |
| 1941 | else |
1418 | else |
| 1942 | newbin "${tmpwrapper}" "${wrapper}" || die |
1419 | newbin "${tmpwrapper}" "${wrapper}" || die |
| 1943 | fi |
1420 | fi |
| 1944 | } |
1421 | } |
| 1945 | |
1422 | |
| 1946 | # @FUNCTION: prepalldocs |
1423 | # @FUNCTION: path_exists |
| 1947 | # @USAGE: |
1424 | # @USAGE: [-a|-o] <paths> |
| 1948 | # @DESCRIPTION: |
1425 | # @DESCRIPTION: |
| 1949 | # Compress files in /usr/share/doc which are not already |
1426 | # Check if the specified paths exist. Works for all types of paths |
| 1950 | # compressed, excluding /usr/share/doc/${PF}/html. |
1427 | # (files/dirs/etc...). The -a and -o flags control the requirements |
| 1951 | # Uses the ecompressdir to do the compression. |
1428 | # of the paths. They correspond to "and" and "or" logic. So the -a |
| 1952 | # 2009-02-18 by betelgeuse: |
1429 | # flag means all the paths must exist while the -o flag means at least |
| 1953 | # Commented because ecompressdir is even more internal to |
1430 | # one of the paths must exist. The default behavior is "and". If no |
| 1954 | # Portage than prepalldocs (it's not even mentioned in man 5 |
1431 | # paths are specified, then the return value is "false". |
| 1955 | # ebuild). Please submit a better version for review to gentoo-dev |
1432 | path_exists() { |
| 1956 | # if you want prepalldocs here. |
1433 | local opt=$1 |
| 1957 | #prepalldocs() { |
1434 | [[ ${opt} == -[ao] ]] && shift || opt="-a" |
| 1958 | # if [[ -n $1 ]] ; then |
|
|
| 1959 | # ewarn "prepalldocs: invalid usage; takes no arguments" |
|
|
| 1960 | # fi |
|
|
| 1961 | |
1435 | |
| 1962 | # cd "${D}" |
1436 | # no paths -> return false |
| 1963 | # [[ -d usr/share/doc ]] || return 0 |
1437 | # same behavior as: [[ -e "" ]] |
|
|
1438 | [[ $# -eq 0 ]] && return 1 |
| 1964 | |
1439 | |
| 1965 | # find usr/share/doc -exec gzip {} + |
1440 | local p r=0 |
| 1966 | # ecompressdir --ignore /usr/share/doc/${PF}/html |
1441 | for p in "$@" ; do |
| 1967 | # ecompressdir --queue /usr/share/doc |
1442 | [[ -e ${p} ]] |
| 1968 | #} |
1443 | : $(( r += $? )) |
|
|
1444 | done |
|
|
1445 | |
|
|
1446 | case ${opt} in |
|
|
1447 | -a) return $(( r != 0 )) ;; |
|
|
1448 | -o) return $(( r == $# )) ;; |
|
|
1449 | esac |
|
|
1450 | } |
|
|
1451 | |
|
|
1452 | # @FUNCTION: in_iuse |
|
|
1453 | # @USAGE: <flag> |
|
|
1454 | # @DESCRIPTION: |
|
|
1455 | # Determines whether the given flag is in IUSE. Strips IUSE default prefixes |
|
|
1456 | # as necessary. |
|
|
1457 | # |
|
|
1458 | # Note that this function should not be used in the global scope. |
|
|
1459 | in_iuse() { |
|
|
1460 | debug-print-function ${FUNCNAME} "${@}" |
|
|
1461 | [[ ${#} -eq 1 ]] || die "Invalid args to ${FUNCNAME}()" |
|
|
1462 | |
|
|
1463 | local flag=${1} |
|
|
1464 | local liuse=( ${IUSE} ) |
|
|
1465 | |
|
|
1466 | has "${flag}" "${liuse[@]#[+-]}" |
|
|
1467 | } |
|
|
1468 | |
|
|
1469 | # @FUNCTION: use_if_iuse |
|
|
1470 | # @USAGE: <flag> |
|
|
1471 | # @DESCRIPTION: |
|
|
1472 | # Return true if the given flag is in USE and IUSE. |
|
|
1473 | # |
|
|
1474 | # Note that this function should not be used in the global scope. |
|
|
1475 | use_if_iuse() { |
|
|
1476 | in_iuse $1 || return 1 |
|
|
1477 | use $1 |
|
|
1478 | } |
|
|
1479 | |
|
|
1480 | # @FUNCTION: usex |
|
|
1481 | # @USAGE: <USE flag> [true output] [false output] [true suffix] [false suffix] |
|
|
1482 | # @DESCRIPTION: |
|
|
1483 | # If USE flag is set, echo [true output][true suffix] (defaults to "yes"), |
|
|
1484 | # otherwise echo [false output][false suffix] (defaults to "no"). |
|
|
1485 | usex() { use "$1" && echo "${2-yes}$4" || echo "${3-no}$5" ; } #382963 |
|
|
1486 | |
|
|
1487 | check_license() { die "you no longer need this as portage supports ACCEPT_LICENSE itself"; } |
|
|
1488 | |
|
|
1489 | fi |