| 1 | # Copyright 1999-2007 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.315 2009/02/21 23:28:21 vapier Exp $ |
3 | # $Header: /var/cvsroot/gentoo-x86/eclass/eutils.eclass,v 1.376 2011/12/17 06:13:50 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" |
|
|
24 | |
|
|
25 | if has "${EAPI:-0}" 0 1 2; then |
| 21 | |
26 | |
| 22 | # @FUNCTION: epause |
27 | # @FUNCTION: epause |
| 23 | # @USAGE: [seconds] |
28 | # @USAGE: [seconds] |
| 24 | # @DESCRIPTION: |
29 | # @DESCRIPTION: |
| 25 | # Sleep for the specified number of seconds (default of 5 seconds). Useful when |
30 | # Sleep for the specified number of seconds (default of 5 seconds). Useful when |
| 26 | # printing a message the user should probably be reading and often used in |
31 | # printing a message the user should probably be reading and often used in |
| 27 | # conjunction with the ebeep function. If the EPAUSE_IGNORE env var is set, |
32 | # conjunction with the ebeep function. If the EPAUSE_IGNORE env var is set, |
| 28 | # don't wait at all. |
33 | # don't wait at all. Defined in EAPIs 0 1 and 2. |
| 29 | epause() { |
34 | epause() { |
| 30 | [[ -z ${EPAUSE_IGNORE} ]] && sleep ${1:-5} |
35 | [[ -z ${EPAUSE_IGNORE} ]] && sleep ${1:-5} |
| 31 | } |
36 | } |
| 32 | |
37 | |
| 33 | # @FUNCTION: ebeep |
38 | # @FUNCTION: ebeep |
| 34 | # @USAGE: [number of beeps] |
39 | # @USAGE: [number of beeps] |
| 35 | # @DESCRIPTION: |
40 | # @DESCRIPTION: |
| 36 | # Issue the specified number of beeps (default of 5 beeps). Useful when |
41 | # Issue the specified number of beeps (default of 5 beeps). Useful when |
| 37 | # printing a message the user should probably be reading and often used in |
42 | # printing a message the user should probably be reading and often used in |
| 38 | # conjunction with the epause function. If the EBEEP_IGNORE env var is set, |
43 | # conjunction with the epause function. If the EBEEP_IGNORE env var is set, |
| 39 | # don't beep at all. |
44 | # don't beep at all. Defined in EAPIs 0 1 and 2. |
| 40 | ebeep() { |
45 | ebeep() { |
| 41 | local n |
46 | local n |
| 42 | if [[ -z ${EBEEP_IGNORE} ]] ; then |
47 | if [[ -z ${EBEEP_IGNORE} ]] ; then |
| 43 | for ((n=1 ; n <= ${1:-5} ; n++)) ; do |
48 | for ((n=1 ; n <= ${1:-5} ; n++)) ; do |
| 44 | echo -ne "\a" |
49 | echo -ne "\a" |
| … | |
… | |
| 47 | sleep 1 |
52 | sleep 1 |
| 48 | done |
53 | done |
| 49 | fi |
54 | fi |
| 50 | } |
55 | } |
| 51 | |
56 | |
|
|
57 | else |
|
|
58 | |
|
|
59 | ebeep() { |
|
|
60 | ewarn "QA Notice: ebeep is not defined in EAPI=${EAPI}, please file a bug at http://bugs.gentoo.org" |
|
|
61 | } |
|
|
62 | |
|
|
63 | epause() { |
|
|
64 | ewarn "QA Notice: epause is not defined in EAPI=${EAPI}, please file a bug at http://bugs.gentoo.org" |
|
|
65 | } |
|
|
66 | |
|
|
67 | fi |
|
|
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 | |
| 52 | # @FUNCTION: ecvs_clean |
82 | # @FUNCTION: ecvs_clean |
| 53 | # @USAGE: [list of dirs] |
83 | # @USAGE: [list of dirs] |
| 54 | # @DESCRIPTION: |
84 | # @DESCRIPTION: |
| 55 | # Remove CVS directories recursiveley. Useful when a source tarball contains |
85 | # Remove CVS directories recursiveley. Useful when a source tarball contains |
| 56 | # internal CVS directories. Defaults to $PWD. |
86 | # internal CVS directories. Defaults to $PWD. |
| … | |
… | |
| 68 | esvn_clean() { |
98 | esvn_clean() { |
| 69 | [[ -z $* ]] && set -- . |
99 | [[ -z $* ]] && set -- . |
| 70 | find "$@" -type d -name '.svn' -prune -print0 | xargs -0 rm -rf |
100 | find "$@" -type d -name '.svn' -prune -print0 | xargs -0 rm -rf |
| 71 | } |
101 | } |
| 72 | |
102 | |
| 73 | # Default directory where patches are located |
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 | |
|
|
151 | # @FUNCTION: eshopts_push |
|
|
152 | # @USAGE: [options to `set` or `shopt`] |
|
|
153 | # @DESCRIPTION: |
|
|
154 | # Often times code will want to enable a shell option to change code behavior. |
|
|
155 | # Since changing shell options can easily break other pieces of code (which |
|
|
156 | # assume the default state), eshopts_push is used to (1) push the current shell |
|
|
157 | # options onto a stack and (2) pass the specified arguments to set. |
|
|
158 | # |
|
|
159 | # If the first argument is '-s' or '-u', we assume you want to call `shopt` |
|
|
160 | # rather than `set` as there are some options only available via that. |
|
|
161 | # |
|
|
162 | # A common example is to disable shell globbing so that special meaning/care |
|
|
163 | # may be used with variables/arguments to custom functions. That would be: |
|
|
164 | # @CODE |
|
|
165 | # eshopts_push -s noglob |
|
|
166 | # for x in ${foo} ; do |
|
|
167 | # if ...some check... ; then |
|
|
168 | # eshopts_pop |
|
|
169 | # return 0 |
|
|
170 | # fi |
|
|
171 | # done |
|
|
172 | # eshopts_pop |
|
|
173 | # @CODE |
|
|
174 | eshopts_push() { |
|
|
175 | if [[ $1 == -[su] ]] ; then |
|
|
176 | estack_push eshopts "$(shopt -p)" |
|
|
177 | [[ $# -eq 0 ]] && return 0 |
|
|
178 | shopt "$@" || die "${FUNCNAME}: bad options to shopt: $*" |
|
|
179 | else |
|
|
180 | estack_push eshopts $- |
|
|
181 | [[ $# -eq 0 ]] && return 0 |
|
|
182 | set "$@" || die "${FUNCNAME}: bad options to set: $*" |
|
|
183 | fi |
|
|
184 | } |
|
|
185 | |
|
|
186 | # @FUNCTION: eshopts_pop |
|
|
187 | # @USAGE: |
|
|
188 | # @DESCRIPTION: |
|
|
189 | # Restore the shell options to the state saved with the corresponding |
|
|
190 | # eshopts_push call. See that function for more details. |
|
|
191 | eshopts_pop() { |
|
|
192 | local s |
|
|
193 | estack_pop eshopts s || die "${FUNCNAME}: unbalanced push" |
|
|
194 | if [[ ${s} == "shopt -"* ]] ; then |
|
|
195 | eval "${s}" || die "${FUNCNAME}: sanity: invalid shopt options: ${s}" |
|
|
196 | else |
|
|
197 | set +$- || die "${FUNCNAME}: sanity: invalid shell settings: $-" |
|
|
198 | set -${s} || die "${FUNCNAME}: sanity: unable to restore saved shell settings: ${s}" |
|
|
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}" |
|
|
220 | } |
|
|
221 | |
|
|
222 | # @VARIABLE: EPATCH_SOURCE |
|
|
223 | # @DESCRIPTION: |
|
|
224 | # Default directory to search for patches. |
| 74 | EPATCH_SOURCE="${WORKDIR}/patch" |
225 | EPATCH_SOURCE="${WORKDIR}/patch" |
| 75 | # Default extension for patches |
226 | # @VARIABLE: EPATCH_SUFFIX |
|
|
227 | # @DESCRIPTION: |
|
|
228 | # Default extension for patches (do not prefix the period yourself). |
| 76 | EPATCH_SUFFIX="patch.bz2" |
229 | EPATCH_SUFFIX="patch.bz2" |
|
|
230 | # @VARIABLE: EPATCH_OPTS |
|
|
231 | # @DESCRIPTION: |
| 77 | # Default options for patch |
232 | # Default options for patch: |
|
|
233 | # @CODE |
| 78 | # Set -g0 to keep RCS, ClearCase, Perforce and SCCS happy. Bug #24571 |
234 | # -g0 - keep RCS, ClearCase, Perforce and SCCS happy #24571 |
| 79 | # Set --no-backup-if-mismatch so we don't leave '.orig' files behind. |
235 | # --no-backup-if-mismatch - do not leave .orig files behind |
| 80 | # Set -E to automatically remove empty files. |
236 | # -E - automatically remove empty files |
|
|
237 | # @CODE |
| 81 | EPATCH_OPTS="-g0 -E --no-backup-if-mismatch" |
238 | EPATCH_OPTS="-g0 -E --no-backup-if-mismatch" |
|
|
239 | # @VARIABLE: EPATCH_EXCLUDE |
|
|
240 | # @DESCRIPTION: |
| 82 | # List of patches not to apply. Note this is only file names, |
241 | # List of patches not to apply. Note this is only file names, |
| 83 | # and not the full path .. |
242 | # and not the full path. Globs accepted. |
| 84 | EPATCH_EXCLUDE="" |
243 | EPATCH_EXCLUDE="" |
|
|
244 | # @VARIABLE: EPATCH_SINGLE_MSG |
|
|
245 | # @DESCRIPTION: |
| 85 | # Change the printed message for a single patch. |
246 | # Change the printed message for a single patch. |
| 86 | EPATCH_SINGLE_MSG="" |
247 | EPATCH_SINGLE_MSG="" |
|
|
248 | # @VARIABLE: EPATCH_MULTI_MSG |
|
|
249 | # @DESCRIPTION: |
| 87 | # Change the printed message for multiple patches. |
250 | # Change the printed message for multiple patches. |
| 88 | EPATCH_MULTI_MSG="Applying various patches (bugfixes/updates) ..." |
251 | EPATCH_MULTI_MSG="Applying various patches (bugfixes/updates) ..." |
| 89 | # Force applying bulk patches even if not following the style: |
252 | # @VARIABLE: EPATCH_FORCE |
| 90 | # |
253 | # @DESCRIPTION: |
| 91 | # ??_${ARCH}_foo.${EPATCH_SUFFIX} |
254 | # Only require patches to match EPATCH_SUFFIX rather than the extended |
| 92 | # |
255 | # arch naming style. |
| 93 | EPATCH_FORCE="no" |
256 | EPATCH_FORCE="no" |
| 94 | |
257 | |
| 95 | # This function is for bulk patching, or in theory for just one |
258 | # @FUNCTION: epatch |
| 96 | # or two patches. |
259 | # @USAGE: [patches] [dirs of patches] |
|
|
260 | # @DESCRIPTION: |
|
|
261 | # epatch is designed to greatly simplify the application of patches. It can |
|
|
262 | # process patch files directly, or directories of patches. The patches may be |
|
|
263 | # compressed (bzip/gzip/etc...) or plain text. You generally need not specify |
|
|
264 | # the -p option as epatch will automatically attempt -p0 to -p5 until things |
|
|
265 | # apply successfully. |
| 97 | # |
266 | # |
| 98 | # It should work with .bz2, .gz, .zip and plain text patches. |
267 | # If you do not specify any options, then epatch will default to the directory |
| 99 | # Currently all patches should be the same format. |
268 | # specified by EPATCH_SOURCE. |
| 100 | # |
269 | # |
| 101 | # You do not have to specify '-p' option to patch, as it will |
270 | # When processing directories, epatch will apply all patches that match: |
| 102 | # try with -p0 to -p5 until it succeed, or fail at -p5. |
271 | # @CODE |
| 103 | # |
272 | # if ${EPATCH_FORCE} != "yes" |
| 104 | # Above EPATCH_* variables can be used to control various defaults, |
|
|
| 105 | # bug they should be left as is to ensure an ebuild can rely on |
|
|
| 106 | # them for. |
|
|
| 107 | # |
|
|
| 108 | # Patches are applied in current directory. |
|
|
| 109 | # |
|
|
| 110 | # Bulk Patches should preferably have the form of: |
|
|
| 111 | # |
|
|
| 112 | # ??_${ARCH}_foo.${EPATCH_SUFFIX} |
273 | # ??_${ARCH}_foo.${EPATCH_SUFFIX} |
|
|
274 | # else |
|
|
275 | # *.${EPATCH_SUFFIX} |
|
|
276 | # @CODE |
|
|
277 | # The leading ?? are typically numbers used to force consistent patch ordering. |
|
|
278 | # The arch field is used to apply patches only for the host architecture with |
|
|
279 | # the special value of "all" means apply for everyone. Note that using values |
|
|
280 | # other than "all" is highly discouraged -- you should apply patches all the |
|
|
281 | # time and let architecture details be detected at configure/compile time. |
| 113 | # |
282 | # |
| 114 | # For example: |
283 | # If EPATCH_SUFFIX is empty, then no period before it is implied when searching |
|
|
284 | # for patches to apply. |
| 115 | # |
285 | # |
| 116 | # 01_all_misc-fix.patch.bz2 |
286 | # Refer to the other EPATCH_xxx variables for more customization of behavior. |
| 117 | # 02_sparc_another-fix.patch.bz2 |
|
|
| 118 | # |
|
|
| 119 | # This ensures that there are a set order, and you can have ARCH |
|
|
| 120 | # specific patches. |
|
|
| 121 | # |
|
|
| 122 | # If you however give an argument to epatch(), it will treat it as a |
|
|
| 123 | # single patch that need to be applied if its a file. If on the other |
|
|
| 124 | # hand its a directory, it will set EPATCH_SOURCE to this. |
|
|
| 125 | # |
|
|
| 126 | # <azarah@gentoo.org> (10 Nov 2002) |
|
|
| 127 | # |
|
|
| 128 | epatch() { |
287 | epatch() { |
| 129 | _epatch_draw_line() { |
288 | _epatch_draw_line() { |
|
|
289 | # create a line of same length as input string |
| 130 | [[ -z $1 ]] && set "$(printf "%65s" '')" |
290 | [[ -z $1 ]] && set "$(printf "%65s" '')" |
| 131 | echo "${1//?/=}" |
291 | echo "${1//?/=}" |
| 132 | } |
292 | } |
| 133 | _epatch_assert() { local _pipestatus=${PIPESTATUS[*]}; [[ ${_pipestatus// /} -eq 0 ]] ; } |
|
|
| 134 | local PIPE_CMD="" |
|
|
| 135 | local STDERR_TARGET="${T}/$$.out" |
|
|
| 136 | local PATCH_TARGET="${T}/$$.patch" |
|
|
| 137 | local PATCH_SUFFIX="" |
|
|
| 138 | local SINGLE_PATCH="no" |
|
|
| 139 | local x="" |
|
|
| 140 | |
293 | |
| 141 | unset P4CONFIG P4PORT P4USER # keep perforce at bay #56402 |
294 | unset P4CONFIG P4PORT P4USER # keep perforce at bay #56402 |
| 142 | |
295 | |
| 143 | if [ "$#" -gt 1 ] |
296 | # Let the rest of the code process one user arg at a time -- |
| 144 | then |
297 | # each arg may expand into multiple patches, and each arg may |
|
|
298 | # need to start off with the default global EPATCH_xxx values |
|
|
299 | if [[ $# -gt 1 ]] ; then |
| 145 | local m="" |
300 | local m |
| 146 | for m in "$@" ; do |
301 | for m in "$@" ; do |
| 147 | epatch "${m}" |
302 | epatch "${m}" |
| 148 | done |
303 | done |
| 149 | return 0 |
304 | return 0 |
| 150 | fi |
305 | fi |
| 151 | |
306 | |
| 152 | if [ -n "$1" -a -f "$1" ] |
307 | local SINGLE_PATCH="no" |
| 153 | then |
308 | # no args means process ${EPATCH_SOURCE} |
|
|
309 | [[ $# -eq 0 ]] && set -- "${EPATCH_SOURCE}" |
|
|
310 | |
|
|
311 | if [[ -f $1 ]] ; then |
| 154 | SINGLE_PATCH="yes" |
312 | SINGLE_PATCH="yes" |
| 155 | |
313 | set -- "$1" |
| 156 | local EPATCH_SOURCE="$1" |
314 | # Use the suffix from the single patch (localize it); the code |
|
|
315 | # below will find the suffix for us |
| 157 | local EPATCH_SUFFIX="${1##*\.}" |
316 | local EPATCH_SUFFIX=$1 |
| 158 | |
317 | |
| 159 | elif [ -n "$1" -a -d "$1" ] |
318 | elif [[ -d $1 ]] ; then |
| 160 | then |
319 | # Some people like to make dirs of patches w/out suffixes (vim) |
| 161 | # Allow no extension if EPATCH_FORCE=yes ... used by vim for example ... |
320 | set -- "$1"/*${EPATCH_SUFFIX:+."${EPATCH_SUFFIX}"} |
| 162 | if [ "${EPATCH_FORCE}" = "yes" ] && [ -z "${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 $? |
|
|
326 | |
|
|
327 | else |
|
|
328 | # sanity check ... if it isn't a dir or file, wtf man ? |
|
|
329 | [[ $# -ne 0 ]] && EPATCH_SOURCE=$1 |
|
|
330 | echo |
|
|
331 | eerror "Cannot find \$EPATCH_SOURCE! Value for \$EPATCH_SOURCE is:" |
|
|
332 | eerror |
|
|
333 | eerror " ${EPATCH_SOURCE}" |
|
|
334 | eerror " ( ${EPATCH_SOURCE##*/} )" |
|
|
335 | echo |
|
|
336 | die "Cannot find \$EPATCH_SOURCE!" |
|
|
337 | fi |
|
|
338 | |
|
|
339 | local PIPE_CMD |
|
|
340 | case ${EPATCH_SUFFIX##*\.} in |
|
|
341 | xz) PIPE_CMD="xz -dc" ;; |
|
|
342 | lzma) PIPE_CMD="lzma -dc" ;; |
|
|
343 | bz2) PIPE_CMD="bzip2 -dc" ;; |
|
|
344 | gz|Z|z) PIPE_CMD="gzip -dc" ;; |
|
|
345 | ZIP|zip) PIPE_CMD="unzip -p" ;; |
|
|
346 | *) ;; |
|
|
347 | esac |
|
|
348 | |
|
|
349 | [[ ${SINGLE_PATCH} == "no" ]] && einfo "${EPATCH_MULTI_MSG}" |
|
|
350 | |
|
|
351 | local x |
|
|
352 | for x in "$@" ; do |
|
|
353 | # If the patch dir given contains subdirs, or our EPATCH_SUFFIX |
|
|
354 | # didn't match anything, ignore continue on |
|
|
355 | [[ ! -f ${x} ]] && continue |
|
|
356 | |
|
|
357 | local patchname=${x##*/} |
|
|
358 | |
|
|
359 | # Apply single patches, or forced sets of patches, or |
|
|
360 | # patches with ARCH dependant names. |
|
|
361 | # ???_arch_foo.patch |
|
|
362 | # Else, skip this input altogether |
|
|
363 | local a=${patchname#*_} # strip the ???_ |
|
|
364 | a=${a%%_*} # strip the _foo.patch |
|
|
365 | if ! [[ ${SINGLE_PATCH} == "yes" || \ |
|
|
366 | ${EPATCH_FORCE} == "yes" || \ |
|
|
367 | ${a} == all || \ |
|
|
368 | ${a} == ${ARCH} ]] |
| 163 | then |
369 | then |
| 164 | local EPATCH_SOURCE="$1/*" |
370 | continue |
|
|
371 | fi |
|
|
372 | |
|
|
373 | # Let people filter things dynamically |
|
|
374 | if [[ -n ${EPATCH_EXCLUDE} ]] ; then |
|
|
375 | # let people use globs in the exclude |
|
|
376 | eshopts_push -o noglob |
|
|
377 | |
|
|
378 | local ex |
|
|
379 | for ex in ${EPATCH_EXCLUDE} ; do |
|
|
380 | if [[ ${patchname} == ${ex} ]] ; then |
|
|
381 | eshopts_pop |
|
|
382 | continue 2 |
|
|
383 | fi |
|
|
384 | done |
|
|
385 | |
|
|
386 | eshopts_pop |
|
|
387 | fi |
|
|
388 | |
|
|
389 | if [[ ${SINGLE_PATCH} == "yes" ]] ; then |
|
|
390 | if [[ -n ${EPATCH_SINGLE_MSG} ]] ; then |
|
|
391 | einfo "${EPATCH_SINGLE_MSG}" |
|
|
392 | else |
|
|
393 | einfo "Applying ${patchname} ..." |
|
|
394 | fi |
| 165 | else |
395 | else |
| 166 | local EPATCH_SOURCE="$1/*.${EPATCH_SUFFIX}" |
396 | einfo " ${patchname} ..." |
| 167 | fi |
397 | fi |
| 168 | else |
398 | |
| 169 | if [[ ! -d ${EPATCH_SOURCE} ]] || [[ -n $1 ]] ; then |
399 | # most of the time, there will only be one run per unique name, |
| 170 | if [ -n "$1" -a "${EPATCH_SOURCE}" = "${WORKDIR}/patch" ] |
400 | # but if there are more, make sure we get unique log filenames |
| 171 | then |
401 | local STDERR_TARGET="${T}/${patchname}.out" |
| 172 | EPATCH_SOURCE="$1" |
402 | if [[ -e ${STDERR_TARGET} ]] ; then |
|
|
403 | STDERR_TARGET="${T}/${patchname}-$$.out" |
|
|
404 | fi |
|
|
405 | |
|
|
406 | printf "***** %s *****\nPWD: %s\n\n" "${patchname}" "${PWD}" > "${STDERR_TARGET}" |
|
|
407 | |
|
|
408 | # Decompress the patch if need be |
|
|
409 | local count=0 |
|
|
410 | local PATCH_TARGET |
|
|
411 | if [[ -n ${PIPE_CMD} ]] ; then |
|
|
412 | PATCH_TARGET="${T}/$$.patch" |
|
|
413 | echo "PIPE_COMMAND: ${PIPE_CMD} ${x} > ${PATCH_TARGET}" >> "${STDERR_TARGET}" |
|
|
414 | |
|
|
415 | if ! (${PIPE_CMD} "${x}" > "${PATCH_TARGET}") >> "${STDERR_TARGET}" 2>&1 ; then |
|
|
416 | echo |
|
|
417 | eerror "Could not extract patch!" |
|
|
418 | #die "Could not extract patch!" |
|
|
419 | count=5 |
|
|
420 | break |
| 173 | fi |
421 | fi |
|
|
422 | else |
|
|
423 | PATCH_TARGET=${x} |
|
|
424 | fi |
| 174 | |
425 | |
|
|
426 | # Check for absolute paths in patches. If sandbox is disabled, |
|
|
427 | # people could (accidently) patch files in the root filesystem. |
|
|
428 | # Or trigger other unpleasantries #237667. So disallow -p0 on |
|
|
429 | # such patches. |
|
|
430 | local abs_paths=$(egrep -n '^[-+]{3} /' "${PATCH_TARGET}" | awk '$2 != "/dev/null" { print }') |
|
|
431 | if [[ -n ${abs_paths} ]] ; then |
|
|
432 | count=1 |
|
|
433 | printf "NOTE: skipping -p0 due to absolute paths in patch:\n%s\n" "${abs_paths}" >> "${STDERR_TARGET}" |
|
|
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 |
|
|
442 | |
|
|
443 | # Dynamically detect the correct -p# ... i'm lazy, so shoot me :/ |
|
|
444 | while [[ ${count} -lt 5 ]] ; do |
|
|
445 | # Generate some useful debug info ... |
|
|
446 | ( |
|
|
447 | _epatch_draw_line "***** ${patchname} *****" |
| 175 | echo |
448 | echo |
| 176 | eerror "Cannot find \$EPATCH_SOURCE! Value for \$EPATCH_SOURCE is:" |
449 | echo "PATCH COMMAND: patch -p${count} ${EPATCH_OPTS} < '${PATCH_TARGET}'" |
|
|
450 | echo |
|
|
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} |
|
|
457 | ) >> "${STDERR_TARGET}" |
|
|
458 | |
|
|
459 | if [ $? -eq 0 ] ; then |
|
|
460 | ( |
|
|
461 | _epatch_draw_line "***** ${patchname} *****" |
|
|
462 | echo |
|
|
463 | echo "ACTUALLY APPLYING ${patchname} ..." |
|
|
464 | echo |
|
|
465 | _epatch_draw_line "***** ${patchname} *****" |
|
|
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} |
|
|
471 | ) >> "${STDERR_TARGET}" |
|
|
472 | |
|
|
473 | if [ $? -ne 0 ] ; then |
|
|
474 | echo |
|
|
475 | eerror "A dry-run of patch command succeeded, but actually" |
|
|
476 | eerror "applying the patch failed!" |
|
|
477 | #die "Real world sux compared to the dreamworld!" |
|
|
478 | count=5 |
|
|
479 | fi |
|
|
480 | break |
|
|
481 | fi |
|
|
482 | |
|
|
483 | : $(( count++ )) |
|
|
484 | done |
|
|
485 | |
|
|
486 | # if we had to decompress the patch, delete the temp one |
|
|
487 | if [[ -n ${PIPE_CMD} ]] ; then |
|
|
488 | rm -f "${PATCH_TARGET}" |
|
|
489 | fi |
|
|
490 | |
|
|
491 | if [[ ${count} -ge 5 ]] ; then |
|
|
492 | echo |
|
|
493 | eerror "Failed Patch: ${patchname} !" |
|
|
494 | eerror " ( ${PATCH_TARGET} )" |
| 177 | eerror |
495 | eerror |
| 178 | eerror " ${EPATCH_SOURCE}" |
496 | eerror "Include in your bugreport the contents of:" |
| 179 | eerror " ( ${EPATCH_SOURCE##*/} )" |
497 | eerror |
|
|
498 | eerror " ${STDERR_TARGET}" |
| 180 | echo |
499 | echo |
| 181 | die "Cannot find \$EPATCH_SOURCE!" |
|
|
| 182 | fi |
|
|
| 183 | |
|
|
| 184 | local EPATCH_SOURCE="${EPATCH_SOURCE}/*.${EPATCH_SUFFIX}" |
|
|
| 185 | fi |
|
|
| 186 | |
|
|
| 187 | case ${EPATCH_SUFFIX##*\.} in |
|
|
| 188 | lzma) |
|
|
| 189 | PIPE_CMD="lzma -dc" |
|
|
| 190 | PATCH_SUFFIX="lzma" |
|
|
| 191 | ;; |
|
|
| 192 | bz2) |
|
|
| 193 | PIPE_CMD="bzip2 -dc" |
|
|
| 194 | PATCH_SUFFIX="bz2" |
|
|
| 195 | ;; |
|
|
| 196 | gz|Z|z) |
|
|
| 197 | PIPE_CMD="gzip -dc" |
|
|
| 198 | PATCH_SUFFIX="gz" |
|
|
| 199 | ;; |
|
|
| 200 | ZIP|zip) |
|
|
| 201 | PIPE_CMD="unzip -p" |
|
|
| 202 | PATCH_SUFFIX="zip" |
|
|
| 203 | ;; |
|
|
| 204 | *) |
|
|
| 205 | PIPE_CMD="cat" |
|
|
| 206 | PATCH_SUFFIX="patch" |
|
|
| 207 | ;; |
|
|
| 208 | esac |
|
|
| 209 | |
|
|
| 210 | if [ "${SINGLE_PATCH}" = "no" ] |
|
|
| 211 | then |
|
|
| 212 | einfo "${EPATCH_MULTI_MSG}" |
|
|
| 213 | fi |
|
|
| 214 | for x in ${EPATCH_SOURCE} |
|
|
| 215 | do |
|
|
| 216 | # New ARCH dependant patch naming scheme ... |
|
|
| 217 | # |
|
|
| 218 | # ???_arch_foo.patch |
|
|
| 219 | # |
|
|
| 220 | if [ -f ${x} ] && \ |
|
|
| 221 | ([ "${SINGLE_PATCH}" = "yes" -o "${x/_all_}" != "${x}" -o "${x/_${ARCH}_}" != "${x}" ] || \ |
|
|
| 222 | [ "${EPATCH_FORCE}" = "yes" ]) |
|
|
| 223 | then |
|
|
| 224 | local count=0 |
|
|
| 225 | local popts="${EPATCH_OPTS}" |
|
|
| 226 | local patchname=${x##*/} |
|
|
| 227 | |
|
|
| 228 | if [ -n "${EPATCH_EXCLUDE}" ] |
|
|
| 229 | then |
|
|
| 230 | if [ "${EPATCH_EXCLUDE/${patchname}}" != "${EPATCH_EXCLUDE}" ] |
|
|
| 231 | then |
|
|
| 232 | continue |
|
|
| 233 | fi |
|
|
| 234 | fi |
|
|
| 235 | |
|
|
| 236 | if [ "${SINGLE_PATCH}" = "yes" ] |
|
|
| 237 | then |
|
|
| 238 | if [ -n "${EPATCH_SINGLE_MSG}" ] |
|
|
| 239 | then |
|
|
| 240 | einfo "${EPATCH_SINGLE_MSG}" |
|
|
| 241 | else |
|
|
| 242 | einfo "Applying ${patchname} ..." |
|
|
| 243 | fi |
|
|
| 244 | else |
|
|
| 245 | einfo " ${patchname} ..." |
|
|
| 246 | fi |
|
|
| 247 | |
|
|
| 248 | echo "***** ${patchname} *****" > ${STDERR_TARGET%/*}/${patchname}-${STDERR_TARGET##*/} |
|
|
| 249 | echo >> ${STDERR_TARGET%/*}/${patchname}-${STDERR_TARGET##*/} |
|
|
| 250 | |
|
|
| 251 | # Decompress the patch if need be |
|
|
| 252 | if [[ ${PATCH_SUFFIX} != "patch" ]] ; then |
|
|
| 253 | echo -n "PIPE_COMMAND: " >> ${STDERR_TARGET%/*}/${patchname}-${STDERR_TARGET##*/} |
|
|
| 254 | echo "${PIPE_CMD} ${x} > ${PATCH_TARGET}" >> ${STDERR_TARGET%/*}/${patchname}-${STDERR_TARGET##*/} |
|
|
| 255 | |
|
|
| 256 | if ! (${PIPE_CMD} ${x} > ${PATCH_TARGET}) >> ${STDERR_TARGET%/*}/${patchname}-${STDERR_TARGET##*/} 2>&1 ; then |
|
|
| 257 | echo |
|
|
| 258 | eerror "Could not extract patch!" |
|
|
| 259 | #die "Could not extract patch!" |
|
|
| 260 | count=5 |
|
|
| 261 | break |
|
|
| 262 | fi |
|
|
| 263 | else |
|
|
| 264 | PATCH_TARGET="${x}" |
|
|
| 265 | fi |
|
|
| 266 | |
|
|
| 267 | # Check for absolute paths in patches. If sandbox is disabled, |
|
|
| 268 | # people could (accidently) patch files in the root filesystem. |
|
|
| 269 | # Or trigger other unpleasantries #237667. So disallow -p0 on |
|
|
| 270 | # such patches. |
|
|
| 271 | local abs_paths=$(egrep -n '^[-+]{3} /' "${PATCH_TARGET}" | awk '$2 != "/dev/null" { print }') |
|
|
| 272 | if [[ -n ${abs_paths} ]] ; then |
|
|
| 273 | count=1 |
|
|
| 274 | echo "NOTE: skipping -p0 due to absolute paths in patch:" >> ${STDERR_TARGET%/*}/${patchname}-${STDERR_TARGET##*/} |
|
|
| 275 | echo "${abs_paths}" >> ${STDERR_TARGET%/*}/${patchname}-${STDERR_TARGET##*/} |
|
|
| 276 | fi |
|
|
| 277 | |
|
|
| 278 | # Allow for prefix to differ ... im lazy, so shoot me :/ |
|
|
| 279 | while [ "${count}" -lt 5 ] |
|
|
| 280 | do |
|
|
| 281 | # Generate some useful debug info ... |
|
|
| 282 | _epatch_draw_line "***** ${patchname} *****" >> ${STDERR_TARGET%/*}/${patchname}-${STDERR_TARGET##*/} |
|
|
| 283 | echo >> ${STDERR_TARGET%/*}/${patchname}-${STDERR_TARGET##*/} |
|
|
| 284 | |
|
|
| 285 | echo -n "PATCH COMMAND: " >> ${STDERR_TARGET%/*}/${patchname}-${STDERR_TARGET##*/} |
|
|
| 286 | echo "patch -p${count} ${popts} < ${PATCH_TARGET}" >> ${STDERR_TARGET%/*}/${patchname}-${STDERR_TARGET##*/} |
|
|
| 287 | |
|
|
| 288 | echo >> ${STDERR_TARGET%/*}/${patchname}-${STDERR_TARGET##*/} |
|
|
| 289 | _epatch_draw_line "***** ${patchname} *****" >> ${STDERR_TARGET%/*}/${patchname}-${STDERR_TARGET##*/} |
|
|
| 290 | |
|
|
| 291 | if (cat ${PATCH_TARGET} | patch -p${count} ${popts} --dry-run -f ; _epatch_assert) >> ${STDERR_TARGET%/*}/${patchname}-${STDERR_TARGET##*/} 2>&1 |
|
|
| 292 | then |
|
|
| 293 | _epatch_draw_line "***** ${patchname} *****" > ${STDERR_TARGET%/*}/${patchname}-${STDERR_TARGET##*/}.real |
|
|
| 294 | echo >> ${STDERR_TARGET%/*}/${patchname}-${STDERR_TARGET##*/}.real |
|
|
| 295 | echo "ACTUALLY APPLYING ${patchname} ..." >> ${STDERR_TARGET%/*}/${patchname}-${STDERR_TARGET##*/}.real |
|
|
| 296 | echo >> ${STDERR_TARGET%/*}/${patchname}-${STDERR_TARGET##*/}.real |
|
|
| 297 | _epatch_draw_line "***** ${patchname} *****" >> ${STDERR_TARGET%/*}/${patchname}-${STDERR_TARGET##*/}.real |
|
|
| 298 | |
|
|
| 299 | cat ${PATCH_TARGET} | patch -p${count} ${popts} >> ${STDERR_TARGET%/*}/${patchname}-${STDERR_TARGET##*/}.real 2>&1 |
|
|
| 300 | _epatch_assert |
|
|
| 301 | |
|
|
| 302 | if [ "$?" -ne 0 ] |
|
|
| 303 | then |
|
|
| 304 | cat ${STDERR_TARGET%/*}/${patchname}-${STDERR_TARGET##*/}.real >> ${STDERR_TARGET%/*}/${patchname}-${STDERR_TARGET##*/} |
|
|
| 305 | echo |
|
|
| 306 | eerror "A dry-run of patch command succeeded, but actually" |
|
|
| 307 | eerror "applying the patch failed!" |
|
|
| 308 | #die "Real world sux compared to the dreamworld!" |
|
|
| 309 | count=5 |
|
|
| 310 | fi |
|
|
| 311 | |
|
|
| 312 | rm -f ${STDERR_TARGET%/*}/${patchname}-${STDERR_TARGET##*/}.real |
|
|
| 313 | |
|
|
| 314 | break |
|
|
| 315 | fi |
|
|
| 316 | |
|
|
| 317 | count=$((count + 1)) |
|
|
| 318 | done |
|
|
| 319 | |
|
|
| 320 | if [ "${PATCH_SUFFIX}" != "patch" ] |
|
|
| 321 | then |
|
|
| 322 | rm -f ${PATCH_TARGET} |
|
|
| 323 | fi |
|
|
| 324 | |
|
|
| 325 | if [ "${count}" -eq 5 ] |
|
|
| 326 | then |
|
|
| 327 | echo |
|
|
| 328 | eerror "Failed Patch: ${patchname} !" |
|
|
| 329 | eerror " ( ${PATCH_TARGET} )" |
|
|
| 330 | eerror |
|
|
| 331 | eerror "Include in your bugreport the contents of:" |
|
|
| 332 | eerror |
|
|
| 333 | eerror " ${STDERR_TARGET%/*}/${patchname}-${STDERR_TARGET##*/}" |
|
|
| 334 | echo |
|
|
| 335 | die "Failed Patch: ${patchname}!" |
500 | die "Failed Patch: ${patchname}!" |
| 336 | fi |
501 | fi |
| 337 | |
502 | |
| 338 | rm -f ${STDERR_TARGET%/*}/${patchname}-${STDERR_TARGET##*/} |
503 | # if everything worked, delete the patch log |
| 339 | |
504 | rm -f "${STDERR_TARGET}" |
| 340 | eend 0 |
505 | eend 0 |
| 341 | fi |
|
|
| 342 | done |
506 | done |
| 343 | if [ "${SINGLE_PATCH}" = "no" ] |
507 | |
| 344 | then |
508 | [[ ${SINGLE_PATCH} == "no" ]] && einfo "Done with patching" |
| 345 | einfo "Done with patching" |
509 | : # everything worked |
|
|
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. |
|
|
538 | epatch_user() { |
|
|
539 | [[ $# -ne 0 ]] && die "epatch_user takes no options" |
|
|
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 | |
|
|
545 | # don't clobber any EPATCH vars that the parent might want |
|
|
546 | local EPATCH_SOURCE check base=${PORTAGE_CONFIGROOT%/}/etc/portage/patches |
|
|
547 | for check in {${CATEGORY}/${PF},${CATEGORY}/${P},${CATEGORY}/${PN}}; do |
|
|
548 | EPATCH_SOURCE=${base}/${CTARGET}/${check} |
|
|
549 | [[ -r ${EPATCH_SOURCE} ]] || EPATCH_SOURCE=${base}/${CHOST}/${check} |
|
|
550 | [[ -r ${EPATCH_SOURCE} ]] || EPATCH_SOURCE=${base}/${check} |
|
|
551 | if [[ -d ${EPATCH_SOURCE} ]] ; then |
|
|
552 | EPATCH_SOURCE=${EPATCH_SOURCE} \ |
|
|
553 | EPATCH_SUFFIX="patch" \ |
|
|
554 | EPATCH_FORCE="yes" \ |
|
|
555 | EPATCH_MULTI_MSG="Applying user patches from ${EPATCH_SOURCE} ..." \ |
|
|
556 | epatch |
|
|
557 | echo "${EPATCH_SOURCE}" > "${applied}" |
|
|
558 | return 0 |
| 346 | fi |
559 | fi |
|
|
560 | done |
|
|
561 | echo "none" > "${applied}" |
|
|
562 | return 1 |
| 347 | } |
563 | } |
| 348 | |
564 | |
| 349 | # @FUNCTION: emktemp |
565 | # @FUNCTION: emktemp |
| 350 | # @USAGE: [temp dir] |
566 | # @USAGE: [temp dir] |
| 351 | # @DESCRIPTION: |
567 | # @DESCRIPTION: |
| … | |
… | |
| 379 | TMPDIR="${topdir}" mktemp -dt tmp.XXXXXXXXXX |
595 | TMPDIR="${topdir}" mktemp -dt tmp.XXXXXXXXXX |
| 380 | fi |
596 | fi |
| 381 | fi |
597 | fi |
| 382 | } |
598 | } |
| 383 | |
599 | |
| 384 | # @FUNCTION: egetent |
|
|
| 385 | # @USAGE: <database> <key> |
|
|
| 386 | # @MAINTAINER: |
|
|
| 387 | # base-system@gentoo.org (Linux) |
|
|
| 388 | # Joe Jezak <josejx@gmail.com> (OS X) |
|
|
| 389 | # usata@gentoo.org (OS X) |
|
|
| 390 | # Aaron Walker <ka0ttic@gentoo.org> (FreeBSD) |
|
|
| 391 | # @DESCRIPTION: |
|
|
| 392 | # Small wrapper for getent (Linux), |
|
|
| 393 | # nidump (< Mac OS X 10.5), dscl (Mac OS X 10.5), |
|
|
| 394 | # and pw (FreeBSD) used in enewuser()/enewgroup() |
|
|
| 395 | egetent() { |
|
|
| 396 | case ${CHOST} in |
|
|
| 397 | *-darwin9) |
|
|
| 398 | local mytype=$1 |
|
|
| 399 | [[ "passwd" == $mytype ]] && mytype="Users" |
|
|
| 400 | [[ "group" == $mytype ]] && mytype="Groups" |
|
|
| 401 | case "$2" in |
|
|
| 402 | *[!0-9]*) # Non numeric |
|
|
| 403 | dscl . -read /$mytype/$2 2>/dev/null |grep RecordName |
|
|
| 404 | ;; |
|
|
| 405 | *) # Numeric |
|
|
| 406 | local mykey="UniqueID" |
|
|
| 407 | [[ $mytype == "Groups" ]] && mykey="PrimaryGroupID" |
|
|
| 408 | dscl . -search /$mytype $mykey $2 2>/dev/null |
|
|
| 409 | ;; |
|
|
| 410 | esac |
|
|
| 411 | ;; |
|
|
| 412 | *-darwin*) |
|
|
| 413 | case "$2" in |
|
|
| 414 | *[!0-9]*) # Non numeric |
|
|
| 415 | nidump $1 . | awk -F":" "{ if (\$1 ~ /^$2$/) {print \$0;exit;} }" |
|
|
| 416 | ;; |
|
|
| 417 | *) # Numeric |
|
|
| 418 | nidump $1 . | awk -F":" "{ if (\$3 == $2) {print \$0;exit;} }" |
|
|
| 419 | ;; |
|
|
| 420 | esac |
|
|
| 421 | ;; |
|
|
| 422 | *-freebsd*|*-dragonfly*) |
|
|
| 423 | local opts action="user" |
|
|
| 424 | [[ $1 == "passwd" ]] || action="group" |
|
|
| 425 | |
|
|
| 426 | # lookup by uid/gid |
|
|
| 427 | if [[ $2 == [[:digit:]]* ]] ; then |
|
|
| 428 | [[ ${action} == "user" ]] && opts="-u" || opts="-g" |
|
|
| 429 | fi |
|
|
| 430 | |
|
|
| 431 | pw show ${action} ${opts} "$2" -q |
|
|
| 432 | ;; |
|
|
| 433 | *-netbsd*|*-openbsd*) |
|
|
| 434 | grep "$2:\*:" /etc/$1 |
|
|
| 435 | ;; |
|
|
| 436 | *) |
|
|
| 437 | type -p nscd >& /dev/null && nscd -i "$1" |
|
|
| 438 | getent "$1" "$2" |
|
|
| 439 | ;; |
|
|
| 440 | esac |
|
|
| 441 | } |
|
|
| 442 | |
|
|
| 443 | # @FUNCTION: enewuser |
|
|
| 444 | # @USAGE: <user> [uid] [shell] [homedir] [groups] [params] |
|
|
| 445 | # @DESCRIPTION: |
|
|
| 446 | # Same as enewgroup, you are not required to understand how to properly add |
|
|
| 447 | # a user to the system. The only required parameter is the username. |
|
|
| 448 | # Default uid is (pass -1 for this) next available, default shell is |
|
|
| 449 | # /bin/false, default homedir is /dev/null, there are no default groups, |
|
|
| 450 | # and default params sets the comment as 'added by portage for ${PN}'. |
|
|
| 451 | enewuser() { |
|
|
| 452 | case ${EBUILD_PHASE} in |
|
|
| 453 | unpack|compile|test|install) |
|
|
| 454 | eerror "'enewuser()' called from '${EBUILD_PHASE}()' which is not a pkg_* function." |
|
|
| 455 | eerror "Package fails at QA and at life. Please file a bug." |
|
|
| 456 | die "Bad package! enewuser is only for use in pkg_* functions!" |
|
|
| 457 | esac |
|
|
| 458 | |
|
|
| 459 | # get the username |
|
|
| 460 | local euser=$1; shift |
|
|
| 461 | if [[ -z ${euser} ]] ; then |
|
|
| 462 | eerror "No username specified !" |
|
|
| 463 | die "Cannot call enewuser without a username" |
|
|
| 464 | fi |
|
|
| 465 | |
|
|
| 466 | # lets see if the username already exists |
|
|
| 467 | if [[ -n $(egetent passwd "${euser}") ]] ; then |
|
|
| 468 | return 0 |
|
|
| 469 | fi |
|
|
| 470 | einfo "Adding user '${euser}' to your system ..." |
|
|
| 471 | |
|
|
| 472 | # options to pass to useradd |
|
|
| 473 | local opts= |
|
|
| 474 | |
|
|
| 475 | # handle uid |
|
|
| 476 | local euid=$1; shift |
|
|
| 477 | if [[ -n ${euid} && ${euid} != -1 ]] ; then |
|
|
| 478 | if [[ ${euid} -gt 0 ]] ; then |
|
|
| 479 | if [[ -n $(egetent passwd ${euid}) ]] ; then |
|
|
| 480 | euid="next" |
|
|
| 481 | fi |
|
|
| 482 | else |
|
|
| 483 | eerror "Userid given but is not greater than 0 !" |
|
|
| 484 | die "${euid} is not a valid UID" |
|
|
| 485 | fi |
|
|
| 486 | else |
|
|
| 487 | euid="next" |
|
|
| 488 | fi |
|
|
| 489 | if [[ ${euid} == "next" ]] ; then |
|
|
| 490 | for ((euid = 101; euid <= 999; euid++)); do |
|
|
| 491 | [[ -z $(egetent passwd ${euid}) ]] && break |
|
|
| 492 | done |
|
|
| 493 | fi |
|
|
| 494 | opts="${opts} -u ${euid}" |
|
|
| 495 | einfo " - Userid: ${euid}" |
|
|
| 496 | |
|
|
| 497 | # handle shell |
|
|
| 498 | local eshell=$1; shift |
|
|
| 499 | if [[ ! -z ${eshell} ]] && [[ ${eshell} != "-1" ]] ; then |
|
|
| 500 | if [[ ! -e ${ROOT}${eshell} ]] ; then |
|
|
| 501 | eerror "A shell was specified but it does not exist !" |
|
|
| 502 | die "${eshell} does not exist in ${ROOT}" |
|
|
| 503 | fi |
|
|
| 504 | if [[ ${eshell} == */false || ${eshell} == */nologin ]] ; then |
|
|
| 505 | eerror "Do not specify ${eshell} yourself, use -1" |
|
|
| 506 | die "Pass '-1' as the shell parameter" |
|
|
| 507 | fi |
|
|
| 508 | else |
|
|
| 509 | for shell in /sbin/nologin /usr/sbin/nologin /bin/false /usr/bin/false /dev/null ; do |
|
|
| 510 | [[ -x ${ROOT}${shell} ]] && break |
|
|
| 511 | done |
|
|
| 512 | |
|
|
| 513 | if [[ ${shell} == "/dev/null" ]] ; then |
|
|
| 514 | eerror "Unable to identify the shell to use, proceeding with userland default." |
|
|
| 515 | case ${USERLAND} in |
|
|
| 516 | GNU) shell="/bin/false" ;; |
|
|
| 517 | BSD) shell="/sbin/nologin" ;; |
|
|
| 518 | Darwin) shell="/usr/sbin/nologin" ;; |
|
|
| 519 | *) die "Unable to identify the default shell for userland ${USERLAND}" |
|
|
| 520 | esac |
|
|
| 521 | fi |
|
|
| 522 | |
|
|
| 523 | eshell=${shell} |
|
|
| 524 | fi |
|
|
| 525 | einfo " - Shell: ${eshell}" |
|
|
| 526 | opts="${opts} -s ${eshell}" |
|
|
| 527 | |
|
|
| 528 | # handle homedir |
|
|
| 529 | local ehome=$1; shift |
|
|
| 530 | if [[ -z ${ehome} ]] || [[ ${ehome} == "-1" ]] ; then |
|
|
| 531 | ehome="/dev/null" |
|
|
| 532 | fi |
|
|
| 533 | einfo " - Home: ${ehome}" |
|
|
| 534 | opts="${opts} -d ${ehome}" |
|
|
| 535 | |
|
|
| 536 | # handle groups |
|
|
| 537 | local egroups=$1; shift |
|
|
| 538 | if [[ ! -z ${egroups} ]] ; then |
|
|
| 539 | local oldifs=${IFS} |
|
|
| 540 | local defgroup="" exgroups="" |
|
|
| 541 | |
|
|
| 542 | export IFS="," |
|
|
| 543 | for g in ${egroups} ; do |
|
|
| 544 | export IFS=${oldifs} |
|
|
| 545 | if [[ -z $(egetent group "${g}") ]] ; then |
|
|
| 546 | eerror "You must add group ${g} to the system first" |
|
|
| 547 | die "${g} is not a valid GID" |
|
|
| 548 | fi |
|
|
| 549 | if [[ -z ${defgroup} ]] ; then |
|
|
| 550 | defgroup=${g} |
|
|
| 551 | else |
|
|
| 552 | exgroups="${exgroups},${g}" |
|
|
| 553 | fi |
|
|
| 554 | export IFS="," |
|
|
| 555 | done |
|
|
| 556 | export IFS=${oldifs} |
|
|
| 557 | |
|
|
| 558 | opts="${opts} -g ${defgroup}" |
|
|
| 559 | if [[ ! -z ${exgroups} ]] ; then |
|
|
| 560 | opts="${opts} -G ${exgroups:1}" |
|
|
| 561 | fi |
|
|
| 562 | else |
|
|
| 563 | egroups="(none)" |
|
|
| 564 | fi |
|
|
| 565 | einfo " - Groups: ${egroups}" |
|
|
| 566 | |
|
|
| 567 | # handle extra and add the user |
|
|
| 568 | local oldsandbox=${SANDBOX_ON} |
|
|
| 569 | export SANDBOX_ON="0" |
|
|
| 570 | case ${CHOST} in |
|
|
| 571 | *-darwin*) |
|
|
| 572 | ### Make the user |
|
|
| 573 | if [[ -z $@ ]] ; then |
|
|
| 574 | dscl . create /users/${euser} uid ${euid} |
|
|
| 575 | dscl . create /users/${euser} shell ${eshell} |
|
|
| 576 | dscl . create /users/${euser} home ${ehome} |
|
|
| 577 | dscl . create /users/${euser} realname "added by portage for ${PN}" |
|
|
| 578 | ### Add the user to the groups specified |
|
|
| 579 | local oldifs=${IFS} |
|
|
| 580 | export IFS="," |
|
|
| 581 | for g in ${egroups} ; do |
|
|
| 582 | dscl . merge /groups/${g} users ${euser} |
|
|
| 583 | done |
|
|
| 584 | export IFS=${oldifs} |
|
|
| 585 | else |
|
|
| 586 | einfo "Extra options are not supported on Darwin yet" |
|
|
| 587 | einfo "Please report the ebuild along with the info below" |
|
|
| 588 | einfo "eextra: $@" |
|
|
| 589 | die "Required function missing" |
|
|
| 590 | fi |
|
|
| 591 | ;; |
|
|
| 592 | *-freebsd*|*-dragonfly*) |
|
|
| 593 | if [[ -z $@ ]] ; then |
|
|
| 594 | pw useradd ${euser} ${opts} \ |
|
|
| 595 | -c "added by portage for ${PN}" \ |
|
|
| 596 | die "enewuser failed" |
|
|
| 597 | else |
|
|
| 598 | einfo " - Extra: $@" |
|
|
| 599 | pw useradd ${euser} ${opts} \ |
|
|
| 600 | "$@" || die "enewuser failed" |
|
|
| 601 | fi |
|
|
| 602 | ;; |
|
|
| 603 | |
|
|
| 604 | *-netbsd*) |
|
|
| 605 | if [[ -z $@ ]] ; then |
|
|
| 606 | useradd ${opts} ${euser} || die "enewuser failed" |
|
|
| 607 | else |
|
|
| 608 | einfo " - Extra: $@" |
|
|
| 609 | useradd ${opts} ${euser} "$@" || die "enewuser failed" |
|
|
| 610 | fi |
|
|
| 611 | ;; |
|
|
| 612 | |
|
|
| 613 | *-openbsd*) |
|
|
| 614 | if [[ -z $@ ]] ; then |
|
|
| 615 | useradd -u ${euid} -s ${eshell} \ |
|
|
| 616 | -d ${ehome} -c "Added by portage for ${PN}" \ |
|
|
| 617 | -g ${egroups} ${euser} || die "enewuser failed" |
|
|
| 618 | else |
|
|
| 619 | einfo " - Extra: $@" |
|
|
| 620 | useradd -u ${euid} -s ${eshell} \ |
|
|
| 621 | -d ${ehome} -c "Added by portage for ${PN}" \ |
|
|
| 622 | -g ${egroups} ${euser} "$@" || die "enewuser failed" |
|
|
| 623 | fi |
|
|
| 624 | ;; |
|
|
| 625 | |
|
|
| 626 | *) |
|
|
| 627 | if [[ -z $@ ]] ; then |
|
|
| 628 | useradd ${opts} ${euser} \ |
|
|
| 629 | -c "added by portage for ${PN}" \ |
|
|
| 630 | || die "enewuser failed" |
|
|
| 631 | else |
|
|
| 632 | einfo " - Extra: $@" |
|
|
| 633 | useradd ${opts} ${euser} "$@" \ |
|
|
| 634 | || die "enewuser failed" |
|
|
| 635 | fi |
|
|
| 636 | ;; |
|
|
| 637 | esac |
|
|
| 638 | |
|
|
| 639 | if [[ ! -e ${ROOT}/${ehome} ]] ; then |
|
|
| 640 | einfo " - Creating ${ehome} in ${ROOT}" |
|
|
| 641 | mkdir -p "${ROOT}/${ehome}" |
|
|
| 642 | chown ${euser} "${ROOT}/${ehome}" |
|
|
| 643 | chmod 755 "${ROOT}/${ehome}" |
|
|
| 644 | fi |
|
|
| 645 | |
|
|
| 646 | export SANDBOX_ON=${oldsandbox} |
|
|
| 647 | } |
|
|
| 648 | |
|
|
| 649 | # @FUNCTION: enewgroup |
|
|
| 650 | # @USAGE: <group> [gid] |
|
|
| 651 | # @DESCRIPTION: |
|
|
| 652 | # This function does not require you to understand how to properly add a |
|
|
| 653 | # group to the system. Just give it a group name to add and enewgroup will |
|
|
| 654 | # do the rest. You may specify the gid for the group or allow the group to |
|
|
| 655 | # allocate the next available one. |
|
|
| 656 | enewgroup() { |
|
|
| 657 | case ${EBUILD_PHASE} in |
|
|
| 658 | unpack|compile|test|install) |
|
|
| 659 | eerror "'enewgroup()' called from '${EBUILD_PHASE}()' which is not a pkg_* function." |
|
|
| 660 | eerror "Package fails at QA and at life. Please file a bug." |
|
|
| 661 | die "Bad package! enewgroup is only for use in pkg_* functions!" |
|
|
| 662 | esac |
|
|
| 663 | |
|
|
| 664 | # get the group |
|
|
| 665 | local egroup="$1"; shift |
|
|
| 666 | if [ -z "${egroup}" ] |
|
|
| 667 | then |
|
|
| 668 | eerror "No group specified !" |
|
|
| 669 | die "Cannot call enewgroup without a group" |
|
|
| 670 | fi |
|
|
| 671 | |
|
|
| 672 | # see if group already exists |
|
|
| 673 | if [[ -n $(egetent group "${egroup}") ]]; then |
|
|
| 674 | return 0 |
|
|
| 675 | fi |
|
|
| 676 | einfo "Adding group '${egroup}' to your system ..." |
|
|
| 677 | |
|
|
| 678 | # options to pass to useradd |
|
|
| 679 | local opts= |
|
|
| 680 | |
|
|
| 681 | # handle gid |
|
|
| 682 | local egid="$1"; shift |
|
|
| 683 | if [ ! -z "${egid}" ] |
|
|
| 684 | then |
|
|
| 685 | if [ "${egid}" -gt 0 ] |
|
|
| 686 | then |
|
|
| 687 | if [ -z "`egetent group ${egid}`" ] |
|
|
| 688 | then |
|
|
| 689 | if [[ "${CHOST}" == *-darwin* ]]; then |
|
|
| 690 | opts="${opts} ${egid}" |
|
|
| 691 | else |
|
|
| 692 | opts="${opts} -g ${egid}" |
|
|
| 693 | fi |
|
|
| 694 | else |
|
|
| 695 | egid="next available; requested gid taken" |
|
|
| 696 | fi |
|
|
| 697 | else |
|
|
| 698 | eerror "Groupid given but is not greater than 0 !" |
|
|
| 699 | die "${egid} is not a valid GID" |
|
|
| 700 | fi |
|
|
| 701 | else |
|
|
| 702 | egid="next available" |
|
|
| 703 | fi |
|
|
| 704 | einfo " - Groupid: ${egid}" |
|
|
| 705 | |
|
|
| 706 | # handle extra |
|
|
| 707 | local eextra="$@" |
|
|
| 708 | opts="${opts} ${eextra}" |
|
|
| 709 | |
|
|
| 710 | # add the group |
|
|
| 711 | local oldsandbox="${SANDBOX_ON}" |
|
|
| 712 | export SANDBOX_ON="0" |
|
|
| 713 | case ${CHOST} in |
|
|
| 714 | *-darwin*) |
|
|
| 715 | if [ ! -z "${eextra}" ]; |
|
|
| 716 | then |
|
|
| 717 | einfo "Extra options are not supported on Darwin/OS X yet" |
|
|
| 718 | einfo "Please report the ebuild along with the info below" |
|
|
| 719 | einfo "eextra: ${eextra}" |
|
|
| 720 | die "Required function missing" |
|
|
| 721 | fi |
|
|
| 722 | |
|
|
| 723 | # If we need the next available |
|
|
| 724 | case ${egid} in |
|
|
| 725 | *[!0-9]*) # Non numeric |
|
|
| 726 | for ((egid = 101; egid <= 999; egid++)); do |
|
|
| 727 | [[ -z $(egetent group ${egid}) ]] && break |
|
|
| 728 | done |
|
|
| 729 | esac |
|
|
| 730 | dscl . create /groups/${egroup} gid ${egid} |
|
|
| 731 | dscl . create /groups/${egroup} passwd '*' |
|
|
| 732 | ;; |
|
|
| 733 | |
|
|
| 734 | *-freebsd*|*-dragonfly*) |
|
|
| 735 | case ${egid} in |
|
|
| 736 | *[!0-9]*) # Non numeric |
|
|
| 737 | for ((egid = 101; egid <= 999; egid++)); do |
|
|
| 738 | [[ -z $(egetent group ${egid}) ]] && break |
|
|
| 739 | done |
|
|
| 740 | esac |
|
|
| 741 | pw groupadd ${egroup} -g ${egid} || die "enewgroup failed" |
|
|
| 742 | ;; |
|
|
| 743 | |
|
|
| 744 | *-netbsd*) |
|
|
| 745 | case ${egid} in |
|
|
| 746 | *[!0-9]*) # Non numeric |
|
|
| 747 | for ((egid = 101; egid <= 999; egid++)); do |
|
|
| 748 | [[ -z $(egetent group ${egid}) ]] && break |
|
|
| 749 | done |
|
|
| 750 | esac |
|
|
| 751 | groupadd -g ${egid} ${egroup} || die "enewgroup failed" |
|
|
| 752 | ;; |
|
|
| 753 | |
|
|
| 754 | *) |
|
|
| 755 | groupadd ${opts} ${egroup} || die "enewgroup failed" |
|
|
| 756 | ;; |
|
|
| 757 | esac |
|
|
| 758 | export SANDBOX_ON="${oldsandbox}" |
|
|
| 759 | } |
|
|
| 760 | |
|
|
| 761 | # @FUNCTION: edos2unix |
600 | # @FUNCTION: edos2unix |
| 762 | # @USAGE: <file> [more files ...] |
601 | # @USAGE: <file> [more files ...] |
| 763 | # @DESCRIPTION: |
602 | # @DESCRIPTION: |
| 764 | # A handy replacement for dos2unix, recode, fixdos, etc... This allows you |
603 | # A handy replacement for dos2unix, recode, fixdos, etc... This allows you |
| 765 | # 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 |
| 766 | # 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 |
| 767 | # 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. |
| 768 | edos2unix() { |
607 | edos2unix() { |
| 769 | echo "$@" | xargs sed -i 's/\r$//' |
608 | [[ $# -eq 0 ]] && return 0 |
|
|
609 | sed -i 's/\r$//' -- "$@" || die |
| 770 | } |
610 | } |
| 771 | |
611 | |
| 772 | # Make a desktop file ! |
612 | # Make a desktop file ! |
| 773 | # Great for making those icons in kde/gnome startmenu ! |
613 | # Great for making those icons in kde/gnome startmenu ! |
| 774 | # Amaze your friends ! Get the women ! Join today ! |
614 | # Amaze your friends ! Get the women ! Join today ! |
| 775 | # |
615 | # |
| 776 | # make_desktop_entry(<command>, [name], [icon], [type], [path]) |
616 | # make_desktop_entry(<command>, [name], [icon], [type], [fields]) |
| 777 | # |
617 | # |
| 778 | # binary: what command does the app run with ? |
618 | # binary: what command does the app run with ? |
| 779 | # name: the name that will show up in the menu |
619 | # name: the name that will show up in the menu |
| 780 | # icon: give your little like a pretty little icon ... |
620 | # icon: give your little like a pretty little icon ... |
| 781 | # this can be relative (to /usr/share/pixmaps) or |
621 | # this can be relative (to /usr/share/pixmaps) or |
| 782 | # a full path to an icon |
622 | # a full path to an icon |
| 783 | # type: what kind of application is this ? for categories: |
623 | # type: what kind of application is this ? for categories: |
| 784 | # http://standards.freedesktop.org/menu-spec/latest/apa.html |
624 | # http://standards.freedesktop.org/menu-spec/latest/apa.html |
| 785 | # path: if your app needs to startup in a specific dir |
625 | # fields: extra fields to append to the desktop file; a printf string |
| 786 | make_desktop_entry() { |
626 | make_desktop_entry() { |
| 787 | [[ -z $1 ]] && eerror "make_desktop_entry: You must specify the executable" && return 1 |
627 | [[ -z $1 ]] && die "make_desktop_entry: You must specify the executable" |
| 788 | |
628 | |
| 789 | local exec=${1} |
629 | local exec=${1} |
| 790 | local name=${2:-${PN}} |
630 | local name=${2:-${PN}} |
| 791 | local icon=${3:-${PN}} |
631 | local icon=${3:-${PN}} |
| 792 | local type=${4} |
632 | local type=${4} |
| 793 | local path=${5} |
633 | local fields=${5} |
| 794 | |
634 | |
| 795 | if [[ -z ${type} ]] ; then |
635 | if [[ -z ${type} ]] ; then |
| 796 | local catmaj=${CATEGORY%%-*} |
636 | local catmaj=${CATEGORY%%-*} |
| 797 | local catmin=${CATEGORY##*-} |
637 | local catmin=${CATEGORY##*-} |
| 798 | case ${catmaj} in |
638 | case ${catmaj} in |
| 799 | app) |
639 | app) |
| 800 | case ${catmin} in |
640 | case ${catmin} in |
| 801 | accessibility) type=Accessibility;; |
641 | accessibility) type=Accessibility;; |
| 802 | admin) type=System;; |
642 | admin) type=System;; |
| 803 | antivirus) type=System;; |
643 | antivirus) type=System;; |
| 804 | arch) type=Archiving;; |
644 | arch) type=Archiving;; |
| 805 | backup) type=Archiving;; |
645 | backup) type=Archiving;; |
| 806 | cdr) type=DiscBurning;; |
646 | cdr) type=DiscBurning;; |
| 807 | dicts) type=Dictionary;; |
647 | dicts) type=Dictionary;; |
| 808 | doc) type=Documentation;; |
648 | doc) type=Documentation;; |
| 809 | editors) type=TextEditor;; |
649 | editors) type=TextEditor;; |
| 810 | emacs) type=TextEditor;; |
650 | emacs) type=TextEditor;; |
| 811 | emulation) type=Emulator;; |
651 | emulation) type=Emulator;; |
| 812 | laptop) type=HardwareSettings;; |
652 | laptop) type=HardwareSettings;; |
| 813 | office) type=Office;; |
653 | office) type=Office;; |
| 814 | pda) type=PDA;; |
654 | pda) type=PDA;; |
| 815 | vim) type=TextEditor;; |
655 | vim) type=TextEditor;; |
| 816 | xemacs) type=TextEditor;; |
656 | xemacs) type=TextEditor;; |
| 817 | *) type=;; |
|
|
| 818 | esac |
657 | esac |
| 819 | ;; |
658 | ;; |
| 820 | |
659 | |
| 821 | dev) |
660 | dev) |
| 822 | type="Development" |
661 | type="Development" |
| 823 | ;; |
662 | ;; |
| 824 | |
663 | |
| 825 | games) |
664 | games) |
| 826 | case ${catmin} in |
665 | case ${catmin} in |
| 827 | action|fps) type=ActionGame;; |
666 | action|fps) type=ActionGame;; |
| 828 | arcade) type=ArcadeGame;; |
667 | arcade) type=ArcadeGame;; |
| 829 | board) type=BoardGame;; |
668 | board) type=BoardGame;; |
| 830 | emulation) type=Emulator;; |
669 | emulation) type=Emulator;; |
| 831 | kids) type=KidsGame;; |
670 | kids) type=KidsGame;; |
| 832 | puzzle) type=LogicGame;; |
671 | puzzle) type=LogicGame;; |
| 833 | roguelike) type=RolePlaying;; |
672 | roguelike) type=RolePlaying;; |
| 834 | rpg) type=RolePlaying;; |
673 | rpg) type=RolePlaying;; |
| 835 | simulation) type=Simulation;; |
674 | simulation) type=Simulation;; |
| 836 | sports) type=SportsGame;; |
675 | sports) type=SportsGame;; |
| 837 | strategy) type=StrategyGame;; |
676 | strategy) type=StrategyGame;; |
| 838 | *) type=;; |
|
|
| 839 | esac |
677 | esac |
| 840 | type="Game;${type}" |
678 | type="Game;${type}" |
| 841 | ;; |
679 | ;; |
| 842 | |
680 | |
| 843 | gnome) |
681 | gnome) |
| … | |
… | |
| 852 | type="Network;Email" |
690 | type="Network;Email" |
| 853 | ;; |
691 | ;; |
| 854 | |
692 | |
| 855 | media) |
693 | media) |
| 856 | case ${catmin} in |
694 | case ${catmin} in |
|
|
695 | gfx) |
| 857 | gfx) type=Graphics;; |
696 | type=Graphics |
|
|
697 | ;; |
|
|
698 | *) |
|
|
699 | case ${catmin} in |
| 858 | radio) type=Tuner;; |
700 | radio) type=Tuner;; |
| 859 | sound) type=Audio;; |
701 | sound) type=Audio;; |
| 860 | tv) type=TV;; |
702 | tv) type=TV;; |
| 861 | video) type=Video;; |
703 | video) type=Video;; |
| 862 | *) type=;; |
704 | esac |
|
|
705 | type="AudioVideo;${type}" |
|
|
706 | ;; |
| 863 | esac |
707 | esac |
| 864 | type="AudioVideo;${type}" |
|
|
| 865 | ;; |
708 | ;; |
| 866 | |
709 | |
| 867 | net) |
710 | net) |
| 868 | case ${catmin} in |
711 | case ${catmin} in |
| 869 | dialup) type=Dialup;; |
712 | dialup) type=Dialup;; |
| 870 | ftp) type=FileTransfer;; |
713 | ftp) type=FileTransfer;; |
| 871 | im) type=InstantMessaging;; |
714 | im) type=InstantMessaging;; |
| 872 | irc) type=IRCClient;; |
715 | irc) type=IRCClient;; |
| 873 | mail) type=Email;; |
716 | mail) type=Email;; |
| 874 | news) type=News;; |
717 | news) type=News;; |
| 875 | nntp) type=News;; |
718 | nntp) type=News;; |
| 876 | p2p) type=FileTransfer;; |
719 | p2p) type=FileTransfer;; |
| 877 | *) type=;; |
720 | voip) type=Telephony;; |
| 878 | esac |
721 | esac |
| 879 | type="Network;${type}" |
722 | type="Network;${type}" |
| 880 | ;; |
723 | ;; |
| 881 | |
724 | |
| 882 | sci) |
725 | sci) |
| 883 | case ${catmin} in |
726 | case ${catmin} in |
| 884 | astro*) type=Astronomy;; |
727 | astro*) type=Astronomy;; |
| 885 | bio*) type=Biology;; |
728 | bio*) type=Biology;; |
| 886 | calc*) type=Calculator;; |
729 | calc*) type=Calculator;; |
| 887 | chem*) type=Chemistry;; |
730 | chem*) type=Chemistry;; |
| 888 | elec*) type=Electronics;; |
731 | elec*) type=Electronics;; |
| 889 | geo*) type=Geology;; |
732 | geo*) type=Geology;; |
| 890 | math*) type=Math;; |
733 | math*) type=Math;; |
| 891 | physics) type=Physics;; |
734 | physics) type=Physics;; |
| 892 | visual*) type=DataVisualization;; |
735 | visual*) type=DataVisualization;; |
| 893 | *) type=;; |
|
|
| 894 | esac |
736 | esac |
| 895 | type="Science;${type}" |
737 | type="Education;Science;${type}" |
| 896 | ;; |
738 | ;; |
| 897 | |
739 | |
| 898 | sys) |
740 | sys) |
| 899 | type="System" |
741 | type="System" |
| 900 | ;; |
742 | ;; |
| 901 | |
743 | |
| 902 | www) |
744 | www) |
| 903 | case ${catmin} in |
745 | case ${catmin} in |
| 904 | client) type=WebBrowser;; |
746 | client) type=WebBrowser;; |
| 905 | *) type=;; |
|
|
| 906 | esac |
747 | esac |
| 907 | type="Network" |
748 | type="Network;${type}" |
| 908 | ;; |
749 | ;; |
| 909 | |
750 | |
| 910 | *) |
751 | *) |
| 911 | type= |
752 | type= |
| 912 | ;; |
753 | ;; |
| … | |
… | |
| 918 | local desktop_name="${PN}-${SLOT}" |
759 | local desktop_name="${PN}-${SLOT}" |
| 919 | fi |
760 | fi |
| 920 | local desktop="${T}/$(echo ${exec} | sed 's:[[:space:]/:]:_:g')-${desktop_name}.desktop" |
761 | local desktop="${T}/$(echo ${exec} | sed 's:[[:space:]/:]:_:g')-${desktop_name}.desktop" |
| 921 | #local desktop=${T}/${exec%% *:-${desktop_name}}.desktop |
762 | #local desktop=${T}/${exec%% *:-${desktop_name}}.desktop |
| 922 | |
763 | |
|
|
764 | # Don't append another ";" when a valid category value is provided. |
|
|
765 | type=${type%;}${type:+;} |
|
|
766 | |
|
|
767 | eshopts_push -s extglob |
|
|
768 | if [[ -n ${icon} && ${icon} != /* ]] && [[ ${icon} == *.xpm || ${icon} == *.png || ${icon} == *.svg ]]; then |
|
|
769 | ewarn "As described in the Icon Theme Specification, icon file extensions are not" |
|
|
770 | ewarn "allowed in .desktop files if the value is not an absolute path." |
|
|
771 | icon=${icon%.@(xpm|png|svg)} |
|
|
772 | fi |
|
|
773 | eshopts_pop |
|
|
774 | |
| 923 | cat <<-EOF > "${desktop}" |
775 | cat <<-EOF > "${desktop}" |
| 924 | [Desktop Entry] |
776 | [Desktop Entry] |
| 925 | Version=1.0 |
|
|
| 926 | Name=${name} |
777 | Name=${name} |
| 927 | Type=Application |
778 | Type=Application |
| 928 | Comment=${DESCRIPTION} |
779 | Comment=${DESCRIPTION} |
| 929 | Exec=${exec} |
780 | Exec=${exec} |
| 930 | TryExec=${exec%% *} |
781 | TryExec=${exec%% *} |
| 931 | Icon=${icon} |
782 | Icon=${icon} |
| 932 | Categories=${type}; |
783 | Categories=${type} |
| 933 | EOF |
784 | EOF |
| 934 | |
785 | |
| 935 | [[ ${path} ]] && echo "Path=${path}" >> "${desktop}" |
786 | if [[ ${fields:-=} != *=* ]] ; then |
|
|
787 | # 5th arg used to be value to Path= |
|
|
788 | ewarn "make_desktop_entry: update your 5th arg to read Path=${fields}" |
|
|
789 | fields="Path=${fields}" |
|
|
790 | fi |
|
|
791 | [[ -n ${fields} ]] && printf '%b\n' "${fields}" >> "${desktop}" |
| 936 | |
792 | |
| 937 | ( |
793 | ( |
| 938 | # wrap the env here so that the 'insinto' call |
794 | # wrap the env here so that the 'insinto' call |
| 939 | # doesn't corrupt the env of the caller |
795 | # doesn't corrupt the env of the caller |
| 940 | insinto /usr/share/applications |
796 | insinto /usr/share/applications |
| 941 | doins "${desktop}" |
797 | doins "${desktop}" |
| 942 | ) |
798 | ) || die "installing desktop file failed" |
| 943 | } |
799 | } |
| 944 | |
800 | |
| 945 | # @FUNCTION: validate_desktop_entries |
801 | # @FUNCTION: validate_desktop_entries |
| 946 | # @USAGE: [directories] |
802 | # @USAGE: [directories] |
| 947 | # @MAINTAINER: |
803 | # @MAINTAINER: |
| … | |
… | |
| 1226 | [[ -z ${src} ]] && die "Could not locate source for '${src_input}'" |
1082 | [[ -z ${src} ]] && die "Could not locate source for '${src_input}'" |
| 1227 | |
1083 | |
| 1228 | local shrtsrc=$(basename "${src}") |
1084 | local shrtsrc=$(basename "${src}") |
| 1229 | echo ">>> Unpacking ${shrtsrc} to ${PWD}" |
1085 | echo ">>> Unpacking ${shrtsrc} to ${PWD}" |
| 1230 | if [[ -z ${skip} ]] ; then |
1086 | if [[ -z ${skip} ]] ; then |
| 1231 | local ver=$(grep -a '#.*Makeself' "${src}" | awk '{print $NF}') |
1087 | local ver=$(grep -m1 -a '#.*Makeself' "${src}" | awk '{print $NF}') |
| 1232 | local skip=0 |
1088 | local skip=0 |
| 1233 | exe=tail |
1089 | exe=tail |
| 1234 | case ${ver} in |
1090 | case ${ver} in |
| 1235 | 1.5.*|1.6.0-nv) # tested 1.5.{3,4,5} ... guessing 1.5.x series is same |
1091 | 1.5.*|1.6.0-nv) # tested 1.5.{3,4,5} ... guessing 1.5.x series is same |
| 1236 | skip=$(grep -a ^skip= "${src}" | cut -d= -f2) |
1092 | skip=$(grep -a ^skip= "${src}" | cut -d= -f2) |
| … | |
… | |
| 1238 | 2.0|2.0.1) |
1094 | 2.0|2.0.1) |
| 1239 | skip=$(grep -a ^$'\t'tail "${src}" | awk '{print $2}' | cut -b2-) |
1095 | skip=$(grep -a ^$'\t'tail "${src}" | awk '{print $2}' | cut -b2-) |
| 1240 | ;; |
1096 | ;; |
| 1241 | 2.1.1) |
1097 | 2.1.1) |
| 1242 | skip=$(grep -a ^offset= "${src}" | awk '{print $2}' | cut -b2-) |
1098 | skip=$(grep -a ^offset= "${src}" | awk '{print $2}' | cut -b2-) |
| 1243 | let skip="skip + 1" |
1099 | (( skip++ )) |
| 1244 | ;; |
1100 | ;; |
| 1245 | 2.1.2) |
1101 | 2.1.2) |
| 1246 | skip=$(grep -a ^offset= "${src}" | awk '{print $3}' | head -n 1) |
1102 | skip=$(grep -a ^offset= "${src}" | awk '{print $3}' | head -n 1) |
| 1247 | let skip="skip + 1" |
1103 | (( skip++ )) |
| 1248 | ;; |
1104 | ;; |
| 1249 | 2.1.3) |
1105 | 2.1.3) |
| 1250 | skip=`grep -a ^offset= "${src}" | awk '{print $3}'` |
1106 | skip=`grep -a ^offset= "${src}" | awk '{print $3}'` |
| 1251 | let skip="skip + 1" |
1107 | (( skip++ )) |
| 1252 | ;; |
1108 | ;; |
| 1253 | 2.1.4|2.1.5) |
1109 | 2.1.4|2.1.5) |
| 1254 | skip=$(grep -a offset=.*head.*wc "${src}" | awk '{print $3}' | head -n 1) |
1110 | skip=$(grep -a offset=.*head.*wc "${src}" | awk '{print $3}' | head -n 1) |
| 1255 | skip=$(head -n ${skip} "${src}" | wc -c) |
1111 | skip=$(head -n ${skip} "${src}" | wc -c) |
| 1256 | exe="dd" |
1112 | exe="dd" |
| … | |
… | |
| 1265 | esac |
1121 | esac |
| 1266 | debug-print "Detected Makeself version ${ver} ... using ${skip} as offset" |
1122 | debug-print "Detected Makeself version ${ver} ... using ${skip} as offset" |
| 1267 | fi |
1123 | fi |
| 1268 | case ${exe} in |
1124 | case ${exe} in |
| 1269 | tail) exe="tail -n +${skip} '${src}'";; |
1125 | tail) exe="tail -n +${skip} '${src}'";; |
| 1270 | dd) exe="dd ibs=${skip} skip=1 obs=1024 conv=sync if='${src}'";; |
1126 | dd) exe="dd ibs=${skip} skip=1 if='${src}'";; |
| 1271 | *) die "makeself cant handle exe '${exe}'" |
1127 | *) die "makeself cant handle exe '${exe}'" |
| 1272 | esac |
1128 | esac |
| 1273 | |
1129 | |
| 1274 | # lets grab the first few bytes of the file to figure out what kind of archive it is |
1130 | # lets grab the first few bytes of the file to figure out what kind of archive it is |
| 1275 | local tmpfile=$(emktemp) |
1131 | local filetype tmpfile=$(emktemp) |
| 1276 | eval ${exe} 2>/dev/null | head -c 512 > "${tmpfile}" |
1132 | eval ${exe} 2>/dev/null | head -c 512 > "${tmpfile}" |
| 1277 | local filetype=$(file -b "${tmpfile}") |
1133 | filetype=$(file -b "${tmpfile}") || die |
| 1278 | case ${filetype} in |
1134 | case ${filetype} in |
| 1279 | *tar\ archive*) |
1135 | *tar\ archive*) |
| 1280 | eval ${exe} | tar --no-same-owner -xf - |
1136 | eval ${exe} | tar --no-same-owner -xf - |
| 1281 | ;; |
1137 | ;; |
| 1282 | bzip2*) |
1138 | bzip2*) |
| … | |
… | |
| 1292 | eerror "Unknown filetype \"${filetype}\" ?" |
1148 | eerror "Unknown filetype \"${filetype}\" ?" |
| 1293 | false |
1149 | false |
| 1294 | ;; |
1150 | ;; |
| 1295 | esac |
1151 | esac |
| 1296 | assert "failure unpacking (${filetype}) makeself ${shrtsrc} ('${ver}' +${skip})" |
1152 | assert "failure unpacking (${filetype}) makeself ${shrtsrc} ('${ver}' +${skip})" |
| 1297 | } |
|
|
| 1298 | |
|
|
| 1299 | # @FUNCTION: check_license |
|
|
| 1300 | # @USAGE: [license] |
|
|
| 1301 | # @DESCRIPTION: |
|
|
| 1302 | # Display a license for user to accept. If no license is |
|
|
| 1303 | # specified, then ${LICENSE} is used. |
|
|
| 1304 | check_license() { |
|
|
| 1305 | local lic=$1 |
|
|
| 1306 | if [ -z "${lic}" ] ; then |
|
|
| 1307 | lic="${PORTDIR}/licenses/${LICENSE}" |
|
|
| 1308 | else |
|
|
| 1309 | if [ -e "${PORTDIR}/licenses/${lic}" ] ; then |
|
|
| 1310 | lic="${PORTDIR}/licenses/${lic}" |
|
|
| 1311 | elif [ -e "${PWD}/${lic}" ] ; then |
|
|
| 1312 | lic="${PWD}/${lic}" |
|
|
| 1313 | elif [ -e "${lic}" ] ; then |
|
|
| 1314 | lic="${lic}" |
|
|
| 1315 | fi |
|
|
| 1316 | fi |
|
|
| 1317 | [ ! -f "${lic}" ] && die "Could not find requested license ${lic}" |
|
|
| 1318 | local l="`basename ${lic}`" |
|
|
| 1319 | |
|
|
| 1320 | # here is where we check for the licenses the user already |
|
|
| 1321 | # accepted ... if we don't find a match, we make the user accept |
|
|
| 1322 | local shopts=$- |
|
|
| 1323 | local alic |
|
|
| 1324 | set -o noglob #so that bash doesn't expand "*" |
|
|
| 1325 | for alic in ${ACCEPT_LICENSE} ; do |
|
|
| 1326 | if [[ ${alic} == ${l} ]]; then |
|
|
| 1327 | set +o noglob; set -${shopts} #reset old shell opts |
|
|
| 1328 | return 0 |
|
|
| 1329 | fi |
|
|
| 1330 | done |
|
|
| 1331 | set +o noglob; set -$shopts #reset old shell opts |
|
|
| 1332 | |
|
|
| 1333 | local licmsg=$(emktemp) |
|
|
| 1334 | cat <<-EOF > ${licmsg} |
|
|
| 1335 | ********************************************************** |
|
|
| 1336 | The following license outlines the terms of use of this |
|
|
| 1337 | package. You MUST accept this license for installation to |
|
|
| 1338 | continue. When you are done viewing, hit 'q'. If you |
|
|
| 1339 | CTRL+C out of this, the install will not run! |
|
|
| 1340 | ********************************************************** |
|
|
| 1341 | |
|
|
| 1342 | EOF |
|
|
| 1343 | cat ${lic} >> ${licmsg} |
|
|
| 1344 | ${PAGER:-less} ${licmsg} || die "Could not execute pager (${PAGER}) to accept ${lic}" |
|
|
| 1345 | einfon "Do you accept the terms of this license (${l})? [yes/no] " |
|
|
| 1346 | read alic |
|
|
| 1347 | case ${alic} in |
|
|
| 1348 | yes|Yes|y|Y) |
|
|
| 1349 | return 0 |
|
|
| 1350 | ;; |
|
|
| 1351 | *) |
|
|
| 1352 | echo;echo;echo |
|
|
| 1353 | eerror "You MUST accept the license to continue! Exiting!" |
|
|
| 1354 | die "Failed to accept license" |
|
|
| 1355 | ;; |
|
|
| 1356 | esac |
|
|
| 1357 | } |
1153 | } |
| 1358 | |
1154 | |
| 1359 | # @FUNCTION: cdrom_get_cds |
1155 | # @FUNCTION: cdrom_get_cds |
| 1360 | # @USAGE: <file on cd1> [file on cd2] [file on cd3] [...] |
1156 | # @USAGE: <file on cd1> [file on cd2] [file on cd3] [...] |
| 1361 | # @DESCRIPTION: |
1157 | # @DESCRIPTION: |
| … | |
… | |
| 1409 | export CDROM_ROOT=${CD_ROOT_1:-${CD_ROOT}} |
1205 | export CDROM_ROOT=${CD_ROOT_1:-${CD_ROOT}} |
| 1410 | einfo "Found CD #${CDROM_CURRENT_CD} root at ${CDROM_ROOT}" |
1206 | einfo "Found CD #${CDROM_CURRENT_CD} root at ${CDROM_ROOT}" |
| 1411 | export CDROM_SET=-1 |
1207 | export CDROM_SET=-1 |
| 1412 | for f in ${CDROM_CHECK_1//:/ } ; do |
1208 | for f in ${CDROM_CHECK_1//:/ } ; do |
| 1413 | ((++CDROM_SET)) |
1209 | ((++CDROM_SET)) |
| 1414 | [[ -e ${CD_ROOT}/${f} ]] && break |
1210 | [[ -e ${CDROM_ROOT}/${f} ]] && break |
| 1415 | done |
1211 | done |
| 1416 | export CDROM_MATCH=${f} |
1212 | export CDROM_MATCH=${f} |
| 1417 | return |
1213 | return |
| 1418 | fi |
1214 | fi |
| 1419 | |
1215 | |
| … | |
… | |
| 1593 | else |
1389 | else |
| 1594 | newls="" |
1390 | newls="" |
| 1595 | fi |
1391 | fi |
| 1596 | for f in $(find "$d" -name '*.po' -exec basename {} .po ';') ; do |
1392 | for f in $(find "$d" -name '*.po' -exec basename {} .po ';') ; do |
| 1597 | if [[ ${op} == "-i" ]] ; then |
1393 | if [[ ${op} == "-i" ]] ; then |
| 1598 | hasq ${f} ${ls} && newls="${newls} ${f}" |
1394 | has ${f} ${ls} && newls="${newls} ${f}" |
| 1599 | else |
1395 | else |
| 1600 | hasq ${f} ${ls} || newls="${newls} ${f}" |
1396 | has ${f} ${ls} || newls="${newls} ${f}" |
| 1601 | fi |
1397 | fi |
| 1602 | done |
1398 | done |
| 1603 | ls=${newls} |
1399 | ls=${newls} |
| 1604 | done |
1400 | done |
| 1605 | else |
1401 | else |
| … | |
… | |
| 1607 | fi |
1403 | fi |
| 1608 | |
1404 | |
| 1609 | nols="" |
1405 | nols="" |
| 1610 | newls="" |
1406 | newls="" |
| 1611 | for f in ${LINGUAS} ; do |
1407 | for f in ${LINGUAS} ; do |
| 1612 | if hasq ${f} ${ls} ; then |
1408 | if has ${f} ${ls} ; then |
| 1613 | newls="${newls} ${f}" |
1409 | newls="${newls} ${f}" |
| 1614 | else |
1410 | else |
| 1615 | nols="${nols} ${f}" |
1411 | nols="${nols} ${f}" |
| 1616 | fi |
1412 | fi |
| 1617 | done |
1413 | done |
| 1618 | [[ -n ${nols} ]] \ |
1414 | [[ -n ${nols} ]] \ |
| 1619 | && ewarn "Sorry, but ${PN} does not support the LINGUAs:" ${nols} |
1415 | && ewarn "Sorry, but ${PN} does not support the LINGUAS:" ${nols} |
| 1620 | export LINGUAS=${newls:1} |
1416 | export LINGUAS=${newls:1} |
| 1621 | } |
1417 | } |
| 1622 | |
1418 | |
| 1623 | # @FUNCTION: preserve_old_lib |
1419 | # @FUNCTION: preserve_old_lib |
| 1624 | # @USAGE: <libs to preserve> [more libs] |
1420 | # @USAGE: <libs to preserve> [more libs] |
| … | |
… | |
| 1672 | ewarn "the libraries are not being removed. You need to run revdep-rebuild" |
1468 | ewarn "the libraries are not being removed. You need to run revdep-rebuild" |
| 1673 | ewarn "in order to remove these old dependencies. If you do not have this" |
1469 | ewarn "in order to remove these old dependencies. If you do not have this" |
| 1674 | ewarn "helper program, simply emerge the 'gentoolkit' package." |
1470 | ewarn "helper program, simply emerge the 'gentoolkit' package." |
| 1675 | ewarn |
1471 | ewarn |
| 1676 | fi |
1472 | fi |
|
|
1473 | # temp hack for #348634 #357225 |
|
|
1474 | [[ ${PN} == "mpfr" ]] && lib=${lib##*/} |
| 1677 | ewarn " # revdep-rebuild --library ${lib##*/}" |
1475 | ewarn " # revdep-rebuild --library '${lib}'" |
| 1678 | done |
1476 | done |
| 1679 | if [[ ${notice} -eq 1 ]] ; then |
1477 | if [[ ${notice} -eq 1 ]] ; then |
| 1680 | ewarn |
1478 | ewarn |
| 1681 | ewarn "Once you've finished running revdep-rebuild, it should be safe to" |
1479 | ewarn "Once you've finished running revdep-rebuild, it should be safe to" |
| 1682 | ewarn "delete the old libraries. Here is a copy & paste for the lazy:" |
1480 | ewarn "delete the old libraries. Here is a copy & paste for the lazy:" |
| … | |
… | |
| 1687 | } |
1485 | } |
| 1688 | |
1486 | |
| 1689 | # @FUNCTION: built_with_use |
1487 | # @FUNCTION: built_with_use |
| 1690 | # @USAGE: [--hidden] [--missing <action>] [-a|-o] <DEPEND ATOM> <List of USE flags> |
1488 | # @USAGE: [--hidden] [--missing <action>] [-a|-o] <DEPEND ATOM> <List of USE flags> |
| 1691 | # @DESCRIPTION: |
1489 | # @DESCRIPTION: |
|
|
1490 | # |
|
|
1491 | # Deprecated: Use EAPI 2 use deps in DEPEND|RDEPEND and with has_version calls. |
|
|
1492 | # |
| 1692 | # A temporary hack until portage properly supports DEPENDing on USE |
1493 | # A temporary hack until portage properly supports DEPENDing on USE |
| 1693 | # flags being enabled in packages. This will check to see if the specified |
1494 | # flags being enabled in packages. This will check to see if the specified |
| 1694 | # DEPEND atom was built with the specified list of USE flags. The |
1495 | # DEPEND atom was built with the specified list of USE flags. The |
| 1695 | # --missing option controls the behavior if called on a package that does |
1496 | # --missing option controls the behavior if called on a package that does |
| 1696 | # not actually support the defined USE flags (aka listed in IUSE). |
1497 | # not actually support the defined USE flags (aka listed in IUSE). |
| … | |
… | |
| 1825 | else |
1626 | else |
| 1826 | newbin "${tmpwrapper}" "${wrapper}" || die |
1627 | newbin "${tmpwrapper}" "${wrapper}" || die |
| 1827 | fi |
1628 | fi |
| 1828 | } |
1629 | } |
| 1829 | |
1630 | |
| 1830 | # @FUNCTION: prepalldocs |
1631 | # @FUNCTION: path_exists |
| 1831 | # @USAGE: |
1632 | # @USAGE: [-a|-o] <paths> |
| 1832 | # @DESCRIPTION: |
1633 | # @DESCRIPTION: |
| 1833 | # Compress files in /usr/share/doc which are not already |
1634 | # Check if the specified paths exist. Works for all types of paths |
| 1834 | # compressed, excluding /usr/share/doc/${PF}/html. |
1635 | # (files/dirs/etc...). The -a and -o flags control the requirements |
| 1835 | # Uses the ecompressdir to do the compression. |
1636 | # of the paths. They correspond to "and" and "or" logic. So the -a |
| 1836 | # 2009-02-18 by betelgeuse: |
1637 | # flag means all the paths must exist while the -o flag means at least |
| 1837 | # Commented because ecompressdir is even more internal to |
1638 | # one of the paths must exist. The default behavior is "and". If no |
| 1838 | # Portage than prepalldocs (it's not even mentioned in man 5 |
1639 | # paths are specified, then the return value is "false". |
| 1839 | # ebuild). Please submit a better version for review to gentoo-dev |
1640 | path_exists() { |
| 1840 | # if you want prepalldocs here. |
1641 | local opt=$1 |
| 1841 | #prepalldocs() { |
1642 | [[ ${opt} == -[ao] ]] && shift || opt="-a" |
| 1842 | # if [[ -n $1 ]] ; then |
|
|
| 1843 | # ewarn "prepalldocs: invalid usage; takes no arguments" |
|
|
| 1844 | # fi |
|
|
| 1845 | |
1643 | |
| 1846 | # cd "${D}" |
1644 | # no paths -> return false |
| 1847 | # [[ -d usr/share/doc ]] || return 0 |
1645 | # same behavior as: [[ -e "" ]] |
|
|
1646 | [[ $# -eq 0 ]] && return 1 |
| 1848 | |
1647 | |
| 1849 | # find usr/share/doc -exec gzip {} + |
1648 | local p r=0 |
| 1850 | # ecompressdir --ignore /usr/share/doc/${PF}/html |
1649 | for p in "$@" ; do |
| 1851 | # ecompressdir --queue /usr/share/doc |
1650 | [[ -e ${p} ]] |
| 1852 | #} |
1651 | : $(( r += $? )) |
|
|
1652 | done |
|
|
1653 | |
|
|
1654 | case ${opt} in |
|
|
1655 | -a) return $(( r != 0 )) ;; |
|
|
1656 | -o) return $(( r == $# )) ;; |
|
|
1657 | esac |
|
|
1658 | } |
|
|
1659 | |
|
|
1660 | # @FUNCTION: in_iuse |
|
|
1661 | # @USAGE: <flag> |
|
|
1662 | # @DESCRIPTION: |
|
|
1663 | # Determines whether the given flag is in IUSE. Strips IUSE default prefixes |
|
|
1664 | # as necessary. |
|
|
1665 | # |
|
|
1666 | # Note that this function should not be used in the global scope. |
|
|
1667 | in_iuse() { |
|
|
1668 | debug-print-function ${FUNCNAME} "${@}" |
|
|
1669 | [[ ${#} -eq 1 ]] || die "Invalid args to ${FUNCNAME}()" |
|
|
1670 | |
|
|
1671 | local flag=${1} |
|
|
1672 | local liuse=( ${IUSE} ) |
|
|
1673 | |
|
|
1674 | has "${flag}" "${liuse[@]#[+-]}" |
|
|
1675 | } |
|
|
1676 | |
|
|
1677 | # @FUNCTION: use_if_iuse |
|
|
1678 | # @USAGE: <flag> |
|
|
1679 | # @DESCRIPTION: |
|
|
1680 | # Return true if the given flag is in USE and IUSE. |
|
|
1681 | # |
|
|
1682 | # Note that this function should not be used in the global scope. |
|
|
1683 | use_if_iuse() { |
|
|
1684 | in_iuse $1 || return 1 |
|
|
1685 | use $1 |
|
|
1686 | } |
|
|
1687 | |
|
|
1688 | # @FUNCTION: usex |
|
|
1689 | # @USAGE: <USE flag> [true output] [false output] [true suffix] [false suffix] |
|
|
1690 | # @DESCRIPTION: |
|
|
1691 | # If USE flag is set, echo [true output][true suffix] (defaults to "yes"), |
|
|
1692 | # otherwise echo [false output][false suffix] (defaults to "no"). |
|
|
1693 | usex() { use "$1" && echo "${2-yes}$4" || echo "${3-no}$5" ; } #382963 |
|
|
1694 | |
|
|
1695 | check_license() { die "you no longer need this as portage supports ACCEPT_LICENSE itself"; } |
|
|
1696 | |
|
|
1697 | fi |