1 | # Copyright 1999-2007 Gentoo Foundation |
1 | # Copyright 1999-2013 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.415 2013/03/12 14:16:15 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 | inherit multilib portability |
18 | if [[ ${___ECLASS_ONCE_EUTILS} != "recur -_+^+_- spank" ]] ; then |
|
|
19 | ___ECLASS_ONCE_EUTILS="recur -_+^+_- spank" |
19 | |
20 | |
20 | DESCRIPTION="Based on the ${ECLASS} eclass" |
21 | inherit multilib toolchain-funcs user |
|
|
22 | |
|
|
23 | if has "${EAPI:-0}" 0 1 2; then |
21 | |
24 | |
22 | # @FUNCTION: epause |
25 | # @FUNCTION: epause |
23 | # @USAGE: [seconds] |
26 | # @USAGE: [seconds] |
24 | # @DESCRIPTION: |
27 | # @DESCRIPTION: |
25 | # Sleep for the specified number of seconds (default of 5 seconds). Useful when |
28 | # 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 |
29 | # 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, |
30 | # conjunction with the ebeep function. If the EPAUSE_IGNORE env var is set, |
28 | # don't wait at all. |
31 | # don't wait at all. Defined in EAPIs 0 1 and 2. |
29 | epause() { |
32 | epause() { |
30 | [[ -z ${EPAUSE_IGNORE} ]] && sleep ${1:-5} |
33 | [[ -z ${EPAUSE_IGNORE} ]] && sleep ${1:-5} |
31 | } |
34 | } |
32 | |
35 | |
33 | # @FUNCTION: ebeep |
36 | # @FUNCTION: ebeep |
34 | # @USAGE: [number of beeps] |
37 | # @USAGE: [number of beeps] |
35 | # @DESCRIPTION: |
38 | # @DESCRIPTION: |
36 | # Issue the specified number of beeps (default of 5 beeps). Useful when |
39 | # 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 |
40 | # 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, |
41 | # conjunction with the epause function. If the EBEEP_IGNORE env var is set, |
39 | # don't beep at all. |
42 | # don't beep at all. Defined in EAPIs 0 1 and 2. |
40 | ebeep() { |
43 | ebeep() { |
41 | local n |
44 | local n |
42 | if [[ -z ${EBEEP_IGNORE} ]] ; then |
45 | if [[ -z ${EBEEP_IGNORE} ]] ; then |
43 | for ((n=1 ; n <= ${1:-5} ; n++)) ; do |
46 | for ((n=1 ; n <= ${1:-5} ; n++)) ; do |
44 | echo -ne "\a" |
47 | echo -ne "\a" |
… | |
… | |
47 | sleep 1 |
50 | sleep 1 |
48 | done |
51 | done |
49 | fi |
52 | fi |
50 | } |
53 | } |
51 | |
54 | |
|
|
55 | else |
|
|
56 | |
|
|
57 | ebeep() { |
|
|
58 | ewarn "QA Notice: ebeep is not defined in EAPI=${EAPI}, please file a bug at http://bugs.gentoo.org" |
|
|
59 | } |
|
|
60 | |
|
|
61 | epause() { |
|
|
62 | ewarn "QA Notice: epause is not defined in EAPI=${EAPI}, please file a bug at http://bugs.gentoo.org" |
|
|
63 | } |
|
|
64 | |
|
|
65 | fi |
|
|
66 | |
|
|
67 | # @FUNCTION: eqawarn |
|
|
68 | # @USAGE: [message] |
|
|
69 | # @DESCRIPTION: |
|
|
70 | # Proxy to ewarn for package managers that don't provide eqawarn and use the PM |
|
|
71 | # implementation if available. Reuses PORTAGE_ELOG_CLASSES as set by the dev |
|
|
72 | # profile. |
|
|
73 | if ! declare -F eqawarn >/dev/null ; then |
|
|
74 | eqawarn() { |
|
|
75 | has qa ${PORTAGE_ELOG_CLASSES} && ewarn "$@" |
|
|
76 | : |
|
|
77 | } |
|
|
78 | fi |
|
|
79 | |
52 | # @FUNCTION: ecvs_clean |
80 | # @FUNCTION: ecvs_clean |
53 | # @USAGE: [list of dirs] |
81 | # @USAGE: [list of dirs] |
54 | # @DESCRIPTION: |
82 | # @DESCRIPTION: |
55 | # Remove CVS directories recursiveley. Useful when a source tarball contains |
83 | # Remove CVS directories recursiveley. Useful when a source tarball contains |
56 | # internal CVS directories. Defaults to $PWD. |
84 | # internal CVS directories. Defaults to $PWD. |
… | |
… | |
68 | esvn_clean() { |
96 | esvn_clean() { |
69 | [[ -z $* ]] && set -- . |
97 | [[ -z $* ]] && set -- . |
70 | find "$@" -type d -name '.svn' -prune -print0 | xargs -0 rm -rf |
98 | find "$@" -type d -name '.svn' -prune -print0 | xargs -0 rm -rf |
71 | } |
99 | } |
72 | |
100 | |
73 | # Default directory where patches are located |
101 | # @FUNCTION: estack_push |
|
|
102 | # @USAGE: <stack> [items to push] |
|
|
103 | # @DESCRIPTION: |
|
|
104 | # Push any number of items onto the specified stack. Pick a name that |
|
|
105 | # is a valid variable (i.e. stick to alphanumerics), and push as many |
|
|
106 | # items as you like onto the stack at once. |
|
|
107 | # |
|
|
108 | # The following code snippet will echo 5, then 4, then 3, then ... |
|
|
109 | # @CODE |
|
|
110 | # estack_push mystack 1 2 3 4 5 |
|
|
111 | # while estack_pop mystack i ; do |
|
|
112 | # echo "${i}" |
|
|
113 | # done |
|
|
114 | # @CODE |
|
|
115 | estack_push() { |
|
|
116 | [[ $# -eq 0 ]] && die "estack_push: incorrect # of arguments" |
|
|
117 | local stack_name="__ESTACK_$1__" ; shift |
|
|
118 | eval ${stack_name}+=\( \"\$@\" \) |
|
|
119 | } |
|
|
120 | |
|
|
121 | # @FUNCTION: estack_pop |
|
|
122 | # @USAGE: <stack> [variable] |
|
|
123 | # @DESCRIPTION: |
|
|
124 | # Pop a single item off the specified stack. If a variable is specified, |
|
|
125 | # the popped item is stored there. If no more items are available, return |
|
|
126 | # 1, else return 0. See estack_push for more info. |
|
|
127 | estack_pop() { |
|
|
128 | [[ $# -eq 0 || $# -gt 2 ]] && die "estack_pop: incorrect # of arguments" |
|
|
129 | |
|
|
130 | # We use the fugly __estack_xxx var names to avoid collision with |
|
|
131 | # passing back the return value. If we used "local i" and the |
|
|
132 | # caller ran `estack_pop ... i`, we'd end up setting the local |
|
|
133 | # copy of "i" rather than the caller's copy. The __estack_xxx |
|
|
134 | # garbage is preferable to using $1/$2 everywhere as that is a |
|
|
135 | # bit harder to read. |
|
|
136 | local __estack_name="__ESTACK_$1__" ; shift |
|
|
137 | local __estack_retvar=$1 ; shift |
|
|
138 | eval local __estack_i=\${#${__estack_name}\[@\]} |
|
|
139 | # Don't warn -- let the caller interpret this as a failure |
|
|
140 | # or as normal behavior (akin to `shift`) |
|
|
141 | [[ $(( --__estack_i )) -eq -1 ]] && return 1 |
|
|
142 | |
|
|
143 | if [[ -n ${__estack_retvar} ]] ; then |
|
|
144 | eval ${__estack_retvar}=\"\${${__estack_name}\[${__estack_i}\]}\" |
|
|
145 | fi |
|
|
146 | eval unset ${__estack_name}\[${__estack_i}\] |
|
|
147 | } |
|
|
148 | |
|
|
149 | # @FUNCTION: eshopts_push |
|
|
150 | # @USAGE: [options to `set` or `shopt`] |
|
|
151 | # @DESCRIPTION: |
|
|
152 | # Often times code will want to enable a shell option to change code behavior. |
|
|
153 | # Since changing shell options can easily break other pieces of code (which |
|
|
154 | # assume the default state), eshopts_push is used to (1) push the current shell |
|
|
155 | # options onto a stack and (2) pass the specified arguments to set. |
|
|
156 | # |
|
|
157 | # If the first argument is '-s' or '-u', we assume you want to call `shopt` |
|
|
158 | # rather than `set` as there are some options only available via that. |
|
|
159 | # |
|
|
160 | # A common example is to disable shell globbing so that special meaning/care |
|
|
161 | # may be used with variables/arguments to custom functions. That would be: |
|
|
162 | # @CODE |
|
|
163 | # eshopts_push -s noglob |
|
|
164 | # for x in ${foo} ; do |
|
|
165 | # if ...some check... ; then |
|
|
166 | # eshopts_pop |
|
|
167 | # return 0 |
|
|
168 | # fi |
|
|
169 | # done |
|
|
170 | # eshopts_pop |
|
|
171 | # @CODE |
|
|
172 | eshopts_push() { |
|
|
173 | if [[ $1 == -[su] ]] ; then |
|
|
174 | estack_push eshopts "$(shopt -p)" |
|
|
175 | [[ $# -eq 0 ]] && return 0 |
|
|
176 | shopt "$@" || die "${FUNCNAME}: bad options to shopt: $*" |
|
|
177 | else |
|
|
178 | estack_push eshopts $- |
|
|
179 | [[ $# -eq 0 ]] && return 0 |
|
|
180 | set "$@" || die "${FUNCNAME}: bad options to set: $*" |
|
|
181 | fi |
|
|
182 | } |
|
|
183 | |
|
|
184 | # @FUNCTION: eshopts_pop |
|
|
185 | # @USAGE: |
|
|
186 | # @DESCRIPTION: |
|
|
187 | # Restore the shell options to the state saved with the corresponding |
|
|
188 | # eshopts_push call. See that function for more details. |
|
|
189 | eshopts_pop() { |
|
|
190 | local s |
|
|
191 | estack_pop eshopts s || die "${FUNCNAME}: unbalanced push" |
|
|
192 | if [[ ${s} == "shopt -"* ]] ; then |
|
|
193 | eval "${s}" || die "${FUNCNAME}: sanity: invalid shopt options: ${s}" |
|
|
194 | else |
|
|
195 | set +$- || die "${FUNCNAME}: sanity: invalid shell settings: $-" |
|
|
196 | set -${s} || die "${FUNCNAME}: sanity: unable to restore saved shell settings: ${s}" |
|
|
197 | fi |
|
|
198 | } |
|
|
199 | |
|
|
200 | # @FUNCTION: eumask_push |
|
|
201 | # @USAGE: <new umask> |
|
|
202 | # @DESCRIPTION: |
|
|
203 | # Set the umask to the new value specified while saving the previous |
|
|
204 | # value onto a stack. Useful for temporarily changing the umask. |
|
|
205 | eumask_push() { |
|
|
206 | estack_push eumask "$(umask)" |
|
|
207 | umask "$@" || die "${FUNCNAME}: bad options to umask: $*" |
|
|
208 | } |
|
|
209 | |
|
|
210 | # @FUNCTION: eumask_pop |
|
|
211 | # @USAGE: |
|
|
212 | # @DESCRIPTION: |
|
|
213 | # Restore the previous umask state. |
|
|
214 | eumask_pop() { |
|
|
215 | [[ $# -eq 0 ]] || die "${FUNCNAME}: we take no options" |
|
|
216 | local s |
|
|
217 | estack_pop eumask s || die "${FUNCNAME}: unbalanced push" |
|
|
218 | umask ${s} || die "${FUNCNAME}: sanity: could not restore umask: ${s}" |
|
|
219 | } |
|
|
220 | |
|
|
221 | # @VARIABLE: EPATCH_SOURCE |
|
|
222 | # @DESCRIPTION: |
|
|
223 | # Default directory to search for patches. |
74 | EPATCH_SOURCE="${WORKDIR}/patch" |
224 | EPATCH_SOURCE="${WORKDIR}/patch" |
75 | # Default extension for patches |
225 | # @VARIABLE: EPATCH_SUFFIX |
|
|
226 | # @DESCRIPTION: |
|
|
227 | # Default extension for patches (do not prefix the period yourself). |
76 | EPATCH_SUFFIX="patch.bz2" |
228 | EPATCH_SUFFIX="patch.bz2" |
77 | # Default options for patch |
229 | # @VARIABLE: EPATCH_OPTS |
|
|
230 | # @DESCRIPTION: |
|
|
231 | # Options to pass to patch. Meant for ebuild/package-specific tweaking |
|
|
232 | # such as forcing the patch level (-p#) or fuzz (-F#) factor. Note that |
|
|
233 | # for single patch tweaking, you can also pass flags directly to epatch. |
|
|
234 | EPATCH_OPTS="" |
|
|
235 | # @VARIABLE: EPATCH_COMMON_OPTS |
|
|
236 | # @DESCRIPTION: |
|
|
237 | # Common options to pass to `patch`. You probably should never need to |
|
|
238 | # change these. If you do, please discuss it with base-system first to |
|
|
239 | # be sure. |
|
|
240 | # @CODE |
78 | # Set -g0 to keep RCS, ClearCase, Perforce and SCCS happy. Bug #24571 |
241 | # -g0 - keep RCS, ClearCase, Perforce and SCCS happy #24571 |
79 | # Set --no-backup-if-mismatch so we don't leave '.orig' files behind. |
242 | # --no-backup-if-mismatch - do not leave .orig files behind |
80 | # Set -E to automatically remove empty files. |
243 | # -E - automatically remove empty files |
|
|
244 | # @CODE |
81 | EPATCH_OPTS="-g0 -E --no-backup-if-mismatch" |
245 | EPATCH_COMMON_OPTS="-g0 -E --no-backup-if-mismatch" |
|
|
246 | # @VARIABLE: EPATCH_EXCLUDE |
|
|
247 | # @DESCRIPTION: |
82 | # List of patches not to apply. Note this is only file names, |
248 | # List of patches not to apply. Note this is only file names, |
83 | # and not the full path .. |
249 | # and not the full path. Globs accepted. |
84 | EPATCH_EXCLUDE="" |
250 | EPATCH_EXCLUDE="" |
|
|
251 | # @VARIABLE: EPATCH_SINGLE_MSG |
|
|
252 | # @DESCRIPTION: |
85 | # Change the printed message for a single patch. |
253 | # Change the printed message for a single patch. |
86 | EPATCH_SINGLE_MSG="" |
254 | EPATCH_SINGLE_MSG="" |
|
|
255 | # @VARIABLE: EPATCH_MULTI_MSG |
|
|
256 | # @DESCRIPTION: |
87 | # Change the printed message for multiple patches. |
257 | # Change the printed message for multiple patches. |
88 | EPATCH_MULTI_MSG="Applying various patches (bugfixes/updates) ..." |
258 | EPATCH_MULTI_MSG="Applying various patches (bugfixes/updates) ..." |
89 | # Force applying bulk patches even if not following the style: |
259 | # @VARIABLE: EPATCH_FORCE |
90 | # |
260 | # @DESCRIPTION: |
91 | # ??_${ARCH}_foo.${EPATCH_SUFFIX} |
261 | # Only require patches to match EPATCH_SUFFIX rather than the extended |
92 | # |
262 | # arch naming style. |
93 | EPATCH_FORCE="no" |
263 | EPATCH_FORCE="no" |
94 | |
264 | |
95 | # This function is for bulk patching, or in theory for just one |
265 | # @FUNCTION: epatch |
96 | # or two patches. |
266 | # @USAGE: [options] [patches] [dirs of patches] |
|
|
267 | # @DESCRIPTION: |
|
|
268 | # epatch is designed to greatly simplify the application of patches. It can |
|
|
269 | # process patch files directly, or directories of patches. The patches may be |
|
|
270 | # compressed (bzip/gzip/etc...) or plain text. You generally need not specify |
|
|
271 | # the -p option as epatch will automatically attempt -p0 to -p5 until things |
|
|
272 | # apply successfully. |
97 | # |
273 | # |
98 | # It should work with .bz2, .gz, .zip and plain text patches. |
274 | # If you do not specify any patches/dirs, then epatch will default to the |
99 | # Currently all patches should be the same format. |
275 | # directory specified by EPATCH_SOURCE. |
100 | # |
276 | # |
101 | # You do not have to specify '-p' option to patch, as it will |
277 | # Any options specified that start with a dash will be passed down to patch |
102 | # try with -p0 to -p5 until it succeed, or fail at -p5. |
278 | # for this specific invocation. As soon as an arg w/out a dash is found, then |
|
|
279 | # arg processing stops. |
103 | # |
280 | # |
104 | # Above EPATCH_* variables can be used to control various defaults, |
281 | # When processing directories, epatch will apply all patches that match: |
105 | # bug they should be left as is to ensure an ebuild can rely on |
282 | # @CODE |
106 | # them for. |
283 | # if ${EPATCH_FORCE} != "yes" |
107 | # |
|
|
108 | # Patches are applied in current directory. |
|
|
109 | # |
|
|
110 | # Bulk Patches should preferably have the form of: |
|
|
111 | # |
|
|
112 | # ??_${ARCH}_foo.${EPATCH_SUFFIX} |
284 | # ??_${ARCH}_foo.${EPATCH_SUFFIX} |
|
|
285 | # else |
|
|
286 | # *.${EPATCH_SUFFIX} |
|
|
287 | # @CODE |
|
|
288 | # The leading ?? are typically numbers used to force consistent patch ordering. |
|
|
289 | # The arch field is used to apply patches only for the host architecture with |
|
|
290 | # the special value of "all" means apply for everyone. Note that using values |
|
|
291 | # other than "all" is highly discouraged -- you should apply patches all the |
|
|
292 | # time and let architecture details be detected at configure/compile time. |
113 | # |
293 | # |
114 | # For example: |
294 | # If EPATCH_SUFFIX is empty, then no period before it is implied when searching |
|
|
295 | # for patches to apply. |
115 | # |
296 | # |
116 | # 01_all_misc-fix.patch.bz2 |
297 | # 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() { |
298 | epatch() { |
129 | _epatch_draw_line() { |
299 | _epatch_draw_line() { |
|
|
300 | # create a line of same length as input string |
130 | [[ -z $1 ]] && set "$(printf "%65s" '')" |
301 | [[ -z $1 ]] && set "$(printf "%65s" '')" |
131 | echo "${1//?/=}" |
302 | echo "${1//?/=}" |
132 | } |
303 | } |
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 | |
304 | |
141 | unset P4CONFIG P4PORT P4USER # keep perforce at bay #56402 |
305 | unset P4CONFIG P4PORT P4USER # keep perforce at bay #56402 |
142 | |
306 | |
143 | if [ "$#" -gt 1 ] |
307 | # First process options. We localize the EPATCH_OPTS setting |
144 | then |
308 | # from above so that we can pass it on in the loop below with |
|
|
309 | # any additional values the user has specified. |
|
|
310 | local EPATCH_OPTS=( ${EPATCH_OPTS[*]} ) |
|
|
311 | while [[ $# -gt 0 ]] ; do |
|
|
312 | case $1 in |
|
|
313 | -*) EPATCH_OPTS+=( "$1" ) ;; |
|
|
314 | *) break ;; |
|
|
315 | esac |
|
|
316 | shift |
|
|
317 | done |
|
|
318 | |
|
|
319 | # Let the rest of the code process one user arg at a time -- |
|
|
320 | # each arg may expand into multiple patches, and each arg may |
|
|
321 | # need to start off with the default global EPATCH_xxx values |
|
|
322 | if [[ $# -gt 1 ]] ; then |
145 | local m="" |
323 | local m |
146 | for m in "$@" ; do |
324 | for m in "$@" ; do |
147 | epatch "${m}" |
325 | epatch "${m}" |
148 | done |
326 | done |
149 | return 0 |
327 | return 0 |
150 | fi |
328 | fi |
151 | |
329 | |
152 | if [ -n "$1" -a -f "$1" ] |
330 | local SINGLE_PATCH="no" |
153 | then |
331 | # no args means process ${EPATCH_SOURCE} |
|
|
332 | [[ $# -eq 0 ]] && set -- "${EPATCH_SOURCE}" |
|
|
333 | |
|
|
334 | if [[ -f $1 ]] ; then |
154 | SINGLE_PATCH="yes" |
335 | SINGLE_PATCH="yes" |
155 | |
336 | set -- "$1" |
156 | local EPATCH_SOURCE="$1" |
337 | # Use the suffix from the single patch (localize it); the code |
|
|
338 | # below will find the suffix for us |
157 | local EPATCH_SUFFIX="${1##*\.}" |
339 | local EPATCH_SUFFIX=$1 |
158 | |
340 | |
159 | elif [ -n "$1" -a -d "$1" ] |
341 | elif [[ -d $1 ]] ; then |
160 | then |
342 | # 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 ... |
343 | set -- "$1"/*${EPATCH_SUFFIX:+."${EPATCH_SUFFIX}"} |
162 | if [ "${EPATCH_FORCE}" = "yes" ] && [ -z "${EPATCH_SUFFIX}" ] |
344 | |
|
|
345 | elif [[ -f ${EPATCH_SOURCE}/$1 ]] ; then |
|
|
346 | # Re-use EPATCH_SOURCE as a search dir |
|
|
347 | epatch "${EPATCH_SOURCE}/$1" |
|
|
348 | return $? |
|
|
349 | |
|
|
350 | else |
|
|
351 | # sanity check ... if it isn't a dir or file, wtf man ? |
|
|
352 | [[ $# -ne 0 ]] && EPATCH_SOURCE=$1 |
|
|
353 | echo |
|
|
354 | eerror "Cannot find \$EPATCH_SOURCE! Value for \$EPATCH_SOURCE is:" |
|
|
355 | eerror |
|
|
356 | eerror " ${EPATCH_SOURCE}" |
|
|
357 | eerror " ( ${EPATCH_SOURCE##*/} )" |
|
|
358 | echo |
|
|
359 | die "Cannot find \$EPATCH_SOURCE!" |
|
|
360 | fi |
|
|
361 | |
|
|
362 | # Now that we know we're actually going to apply something, merge |
|
|
363 | # all of the patch options back in to a single variable for below. |
|
|
364 | EPATCH_OPTS="${EPATCH_COMMON_OPTS} ${EPATCH_OPTS[*]}" |
|
|
365 | |
|
|
366 | local PIPE_CMD |
|
|
367 | case ${EPATCH_SUFFIX##*\.} in |
|
|
368 | xz) PIPE_CMD="xz -dc" ;; |
|
|
369 | lzma) PIPE_CMD="lzma -dc" ;; |
|
|
370 | bz2) PIPE_CMD="bzip2 -dc" ;; |
|
|
371 | gz|Z|z) PIPE_CMD="gzip -dc" ;; |
|
|
372 | ZIP|zip) PIPE_CMD="unzip -p" ;; |
|
|
373 | *) ;; |
|
|
374 | esac |
|
|
375 | |
|
|
376 | [[ ${SINGLE_PATCH} == "no" ]] && einfo "${EPATCH_MULTI_MSG}" |
|
|
377 | |
|
|
378 | local x |
|
|
379 | for x in "$@" ; do |
|
|
380 | # If the patch dir given contains subdirs, or our EPATCH_SUFFIX |
|
|
381 | # didn't match anything, ignore continue on |
|
|
382 | [[ ! -f ${x} ]] && continue |
|
|
383 | |
|
|
384 | local patchname=${x##*/} |
|
|
385 | |
|
|
386 | # Apply single patches, or forced sets of patches, or |
|
|
387 | # patches with ARCH dependant names. |
|
|
388 | # ???_arch_foo.patch |
|
|
389 | # Else, skip this input altogether |
|
|
390 | local a=${patchname#*_} # strip the ???_ |
|
|
391 | a=${a%%_*} # strip the _foo.patch |
|
|
392 | if ! [[ ${SINGLE_PATCH} == "yes" || \ |
|
|
393 | ${EPATCH_FORCE} == "yes" || \ |
|
|
394 | ${a} == all || \ |
|
|
395 | ${a} == ${ARCH} ]] |
163 | then |
396 | then |
164 | local EPATCH_SOURCE="$1/*" |
397 | continue |
|
|
398 | fi |
|
|
399 | |
|
|
400 | # Let people filter things dynamically |
|
|
401 | if [[ -n ${EPATCH_EXCLUDE} ]] ; then |
|
|
402 | # let people use globs in the exclude |
|
|
403 | eshopts_push -o noglob |
|
|
404 | |
|
|
405 | local ex |
|
|
406 | for ex in ${EPATCH_EXCLUDE} ; do |
|
|
407 | if [[ ${patchname} == ${ex} ]] ; then |
|
|
408 | eshopts_pop |
|
|
409 | continue 2 |
|
|
410 | fi |
|
|
411 | done |
|
|
412 | |
|
|
413 | eshopts_pop |
|
|
414 | fi |
|
|
415 | |
|
|
416 | if [[ ${SINGLE_PATCH} == "yes" ]] ; then |
|
|
417 | if [[ -n ${EPATCH_SINGLE_MSG} ]] ; then |
|
|
418 | einfo "${EPATCH_SINGLE_MSG}" |
|
|
419 | else |
|
|
420 | einfo "Applying ${patchname} ..." |
|
|
421 | fi |
165 | else |
422 | else |
166 | local EPATCH_SOURCE="$1/*.${EPATCH_SUFFIX}" |
423 | einfo " ${patchname} ..." |
167 | fi |
424 | fi |
168 | else |
425 | |
169 | if [[ ! -d ${EPATCH_SOURCE} ]] || [[ -n $1 ]] ; then |
426 | # most of the time, there will only be one run per unique name, |
170 | if [ -n "$1" -a "${EPATCH_SOURCE}" = "${WORKDIR}/patch" ] |
427 | # but if there are more, make sure we get unique log filenames |
171 | then |
428 | local STDERR_TARGET="${T}/${patchname}.out" |
172 | EPATCH_SOURCE="$1" |
429 | if [[ -e ${STDERR_TARGET} ]] ; then |
|
|
430 | STDERR_TARGET="${T}/${patchname}-$$.out" |
|
|
431 | fi |
|
|
432 | |
|
|
433 | printf "***** %s *****\nPWD: %s\n\n" "${patchname}" "${PWD}" > "${STDERR_TARGET}" |
|
|
434 | |
|
|
435 | # Decompress the patch if need be |
|
|
436 | local count=0 |
|
|
437 | local PATCH_TARGET |
|
|
438 | if [[ -n ${PIPE_CMD} ]] ; then |
|
|
439 | PATCH_TARGET="${T}/$$.patch" |
|
|
440 | echo "PIPE_COMMAND: ${PIPE_CMD} ${x} > ${PATCH_TARGET}" >> "${STDERR_TARGET}" |
|
|
441 | |
|
|
442 | if ! (${PIPE_CMD} "${x}" > "${PATCH_TARGET}") >> "${STDERR_TARGET}" 2>&1 ; then |
|
|
443 | echo |
|
|
444 | eerror "Could not extract patch!" |
|
|
445 | #die "Could not extract patch!" |
|
|
446 | count=5 |
|
|
447 | break |
173 | fi |
448 | fi |
|
|
449 | else |
|
|
450 | PATCH_TARGET=${x} |
|
|
451 | fi |
174 | |
452 | |
|
|
453 | # Check for absolute paths in patches. If sandbox is disabled, |
|
|
454 | # people could (accidently) patch files in the root filesystem. |
|
|
455 | # Or trigger other unpleasantries #237667. So disallow -p0 on |
|
|
456 | # such patches. |
|
|
457 | local abs_paths=$(egrep -n '^[-+]{3} /' "${PATCH_TARGET}" | awk '$2 != "/dev/null" { print }') |
|
|
458 | if [[ -n ${abs_paths} ]] ; then |
|
|
459 | count=1 |
|
|
460 | printf "NOTE: skipping -p0 due to absolute paths in patch:\n%s\n" "${abs_paths}" >> "${STDERR_TARGET}" |
|
|
461 | fi |
|
|
462 | # Similar reason, but with relative paths. |
|
|
463 | local rel_paths=$(egrep -n '^[-+]{3} [^ ]*[.][.]/' "${PATCH_TARGET}") |
|
|
464 | if [[ -n ${rel_paths} ]] ; then |
|
|
465 | eqawarn "QA Notice: Your patch uses relative paths '../'." |
|
|
466 | eqawarn " In the future this will cause a failure." |
|
|
467 | eqawarn "${rel_paths}" |
|
|
468 | fi |
|
|
469 | |
|
|
470 | # Dynamically detect the correct -p# ... i'm lazy, so shoot me :/ |
|
|
471 | local patch_cmd |
|
|
472 | while [[ ${count} -lt 5 ]] ; do |
|
|
473 | patch_cmd="${BASH_ALIASES[patch]:-patch} -p${count} ${EPATCH_OPTS}" |
|
|
474 | |
|
|
475 | # Generate some useful debug info ... |
|
|
476 | ( |
|
|
477 | _epatch_draw_line "***** ${patchname} *****" |
175 | echo |
478 | echo |
176 | eerror "Cannot find \$EPATCH_SOURCE! Value for \$EPATCH_SOURCE is:" |
479 | echo "PATCH COMMAND: ${patch_cmd} < '${PATCH_TARGET}'" |
|
|
480 | echo |
|
|
481 | _epatch_draw_line "***** ${patchname} *****" |
|
|
482 | ${patch_cmd} --dry-run -f < "${PATCH_TARGET}" 2>&1 |
|
|
483 | ret=$? |
|
|
484 | echo |
|
|
485 | echo "patch program exited with status ${ret}" |
|
|
486 | exit ${ret} |
|
|
487 | ) >> "${STDERR_TARGET}" |
|
|
488 | |
|
|
489 | if [ $? -eq 0 ] ; then |
|
|
490 | ( |
|
|
491 | _epatch_draw_line "***** ${patchname} *****" |
|
|
492 | echo |
|
|
493 | echo "ACTUALLY APPLYING ${patchname} ..." |
|
|
494 | echo |
|
|
495 | _epatch_draw_line "***** ${patchname} *****" |
|
|
496 | ${patch_cmd} < "${PATCH_TARGET}" 2>&1 |
|
|
497 | ret=$? |
|
|
498 | echo |
|
|
499 | echo "patch program exited with status ${ret}" |
|
|
500 | exit ${ret} |
|
|
501 | ) >> "${STDERR_TARGET}" |
|
|
502 | |
|
|
503 | if [ $? -ne 0 ] ; then |
|
|
504 | echo |
|
|
505 | eerror "A dry-run of patch command succeeded, but actually" |
|
|
506 | eerror "applying the patch failed!" |
|
|
507 | #die "Real world sux compared to the dreamworld!" |
|
|
508 | count=5 |
|
|
509 | fi |
|
|
510 | break |
|
|
511 | fi |
|
|
512 | |
|
|
513 | : $(( count++ )) |
|
|
514 | done |
|
|
515 | |
|
|
516 | # if we had to decompress the patch, delete the temp one |
|
|
517 | if [[ -n ${PIPE_CMD} ]] ; then |
|
|
518 | rm -f "${PATCH_TARGET}" |
|
|
519 | fi |
|
|
520 | |
|
|
521 | if [[ ${count} -ge 5 ]] ; then |
|
|
522 | echo |
|
|
523 | eerror "Failed Patch: ${patchname} !" |
|
|
524 | eerror " ( ${PATCH_TARGET} )" |
177 | eerror |
525 | eerror |
178 | eerror " ${EPATCH_SOURCE}" |
526 | eerror "Include in your bugreport the contents of:" |
179 | eerror " ( ${EPATCH_SOURCE##*/} )" |
527 | eerror |
|
|
528 | eerror " ${STDERR_TARGET}" |
180 | echo |
529 | 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}!" |
530 | die "Failed Patch: ${patchname}!" |
336 | fi |
531 | fi |
337 | |
532 | |
338 | rm -f ${STDERR_TARGET%/*}/${patchname}-${STDERR_TARGET##*/} |
533 | # if everything worked, delete the full debug patch log |
|
|
534 | rm -f "${STDERR_TARGET}" |
339 | |
535 | |
|
|
536 | # then log away the exact stuff for people to review later |
|
|
537 | cat <<-EOF >> "${T}/epatch.log" |
|
|
538 | PATCH: ${x} |
|
|
539 | CMD: ${patch_cmd} |
|
|
540 | PWD: ${PWD} |
|
|
541 | |
|
|
542 | EOF |
340 | eend 0 |
543 | eend 0 |
341 | fi |
|
|
342 | done |
544 | done |
343 | if [ "${SINGLE_PATCH}" = "no" ] |
545 | |
344 | then |
546 | [[ ${SINGLE_PATCH} == "no" ]] && einfo "Done with patching" |
345 | einfo "Done with patching" |
547 | : # everything worked |
|
|
548 | } |
|
|
549 | |
|
|
550 | # @FUNCTION: epatch_user |
|
|
551 | # @USAGE: |
|
|
552 | # @DESCRIPTION: |
|
|
553 | # Applies user-provided patches to the source tree. The patches are |
|
|
554 | # taken from /etc/portage/patches/<CATEGORY>/<PF|P|PN>[:SLOT]/, where the first |
|
|
555 | # of these three directories to exist will be the one to use, ignoring |
|
|
556 | # any more general directories which might exist as well. They must end |
|
|
557 | # in ".patch" to be applied. |
|
|
558 | # |
|
|
559 | # User patches are intended for quick testing of patches without ebuild |
|
|
560 | # modifications, as well as for permanent customizations a user might |
|
|
561 | # desire. Obviously, there can be no official support for arbitrarily |
|
|
562 | # patched ebuilds. So whenever a build log in a bug report mentions that |
|
|
563 | # user patches were applied, the user should be asked to reproduce the |
|
|
564 | # problem without these. |
|
|
565 | # |
|
|
566 | # Not all ebuilds do call this function, so placing patches in the |
|
|
567 | # stated directory might or might not work, depending on the package and |
|
|
568 | # the eclasses it inherits and uses. It is safe to call the function |
|
|
569 | # repeatedly, so it is always possible to add a call at the ebuild |
|
|
570 | # level. The first call is the time when the patches will be |
|
|
571 | # applied. |
|
|
572 | # |
|
|
573 | # Ideally, this function should be called after gentoo-specific patches |
|
|
574 | # have been applied, so that their code can be modified as well, but |
|
|
575 | # before calls to e.g. eautoreconf, as the user patches might affect |
|
|
576 | # autotool input files as well. |
|
|
577 | epatch_user() { |
|
|
578 | [[ $# -ne 0 ]] && die "epatch_user takes no options" |
|
|
579 | |
|
|
580 | # Allow multiple calls to this function; ignore all but the first |
|
|
581 | local applied="${T}/epatch_user.log" |
|
|
582 | [[ -e ${applied} ]] && return 2 |
|
|
583 | |
|
|
584 | # don't clobber any EPATCH vars that the parent might want |
|
|
585 | local EPATCH_SOURCE check base=${PORTAGE_CONFIGROOT%/}/etc/portage/patches |
|
|
586 | for check in ${CATEGORY}/{${P}-${PR},${P},${PN}}{,:${SLOT}}; do |
|
|
587 | EPATCH_SOURCE=${base}/${CTARGET}/${check} |
|
|
588 | [[ -r ${EPATCH_SOURCE} ]] || EPATCH_SOURCE=${base}/${CHOST}/${check} |
|
|
589 | [[ -r ${EPATCH_SOURCE} ]] || EPATCH_SOURCE=${base}/${check} |
|
|
590 | if [[ -d ${EPATCH_SOURCE} ]] ; then |
|
|
591 | EPATCH_SOURCE=${EPATCH_SOURCE} \ |
|
|
592 | EPATCH_SUFFIX="patch" \ |
|
|
593 | EPATCH_FORCE="yes" \ |
|
|
594 | EPATCH_MULTI_MSG="Applying user patches from ${EPATCH_SOURCE} ..." \ |
|
|
595 | epatch |
|
|
596 | echo "${EPATCH_SOURCE}" > "${applied}" |
|
|
597 | return 0 |
346 | fi |
598 | fi |
|
|
599 | done |
|
|
600 | echo "none" > "${applied}" |
|
|
601 | return 1 |
347 | } |
602 | } |
348 | |
603 | |
349 | # @FUNCTION: emktemp |
604 | # @FUNCTION: emktemp |
350 | # @USAGE: [temp dir] |
605 | # @USAGE: [temp dir] |
351 | # @DESCRIPTION: |
606 | # @DESCRIPTION: |
… | |
… | |
379 | TMPDIR="${topdir}" mktemp -dt tmp.XXXXXXXXXX |
634 | TMPDIR="${topdir}" mktemp -dt tmp.XXXXXXXXXX |
380 | fi |
635 | fi |
381 | fi |
636 | fi |
382 | } |
637 | } |
383 | |
638 | |
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 |
639 | # @FUNCTION: edos2unix |
762 | # @USAGE: <file> [more files ...] |
640 | # @USAGE: <file> [more files ...] |
763 | # @DESCRIPTION: |
641 | # @DESCRIPTION: |
764 | # A handy replacement for dos2unix, recode, fixdos, etc... This allows you |
642 | # A handy replacement for dos2unix, recode, fixdos, etc... This allows you |
765 | # to remove all of these text utilities from DEPEND variables because this |
643 | # 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 |
644 | # 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. |
645 | # they will all be changed from the DOS CRLF format to the UNIX LF format. |
768 | edos2unix() { |
646 | edos2unix() { |
769 | echo "$@" | xargs sed -i 's/\r$//' |
647 | [[ $# -eq 0 ]] && return 0 |
|
|
648 | sed -i 's/\r$//' -- "$@" || die |
770 | } |
649 | } |
771 | |
650 | |
|
|
651 | # @FUNCTION: make_desktop_entry |
|
|
652 | # @USAGE: make_desktop_entry(<command>, [name], [icon], [type], [fields]) |
|
|
653 | # @DESCRIPTION: |
772 | # Make a desktop file ! |
654 | # Make a .desktop file. |
773 | # Great for making those icons in kde/gnome startmenu ! |
|
|
774 | # Amaze your friends ! Get the women ! Join today ! |
|
|
775 | # |
655 | # |
776 | # make_desktop_entry(<command>, [name], [icon], [type], [path]) |
656 | # @CODE |
777 | # |
|
|
778 | # binary: what command does the app run with ? |
657 | # binary: what command does the app run with ? |
779 | # name: the name that will show up in the menu |
658 | # name: the name that will show up in the menu |
780 | # icon: give your little like a pretty little icon ... |
659 | # icon: the icon to use in the menu entry |
781 | # this can be relative (to /usr/share/pixmaps) or |
660 | # this can be relative (to /usr/share/pixmaps) or |
782 | # a full path to an icon |
661 | # a full path to an icon |
783 | # type: what kind of application is this ? for categories: |
662 | # type: what kind of application is this? |
|
|
663 | # for categories: |
784 | # http://standards.freedesktop.org/menu-spec/latest/apa.html |
664 | # http://standards.freedesktop.org/menu-spec/latest/apa.html |
785 | # path: if your app needs to startup in a specific dir |
665 | # if unset, function tries to guess from package's category |
|
|
666 | # fields: extra fields to append to the desktop file; a printf string |
|
|
667 | # @CODE |
786 | make_desktop_entry() { |
668 | make_desktop_entry() { |
787 | [[ -z $1 ]] && eerror "make_desktop_entry: You must specify the executable" && return 1 |
669 | [[ -z $1 ]] && die "make_desktop_entry: You must specify the executable" |
788 | |
670 | |
789 | local exec=${1} |
671 | local exec=${1} |
790 | local name=${2:-${PN}} |
672 | local name=${2:-${PN}} |
791 | local icon=${3:-${PN}} |
673 | local icon=${3:-${PN}} |
792 | local type=${4} |
674 | local type=${4} |
793 | local path=${5} |
675 | local fields=${5} |
794 | |
676 | |
795 | if [[ -z ${type} ]] ; then |
677 | if [[ -z ${type} ]] ; then |
796 | local catmaj=${CATEGORY%%-*} |
678 | local catmaj=${CATEGORY%%-*} |
797 | local catmin=${CATEGORY##*-} |
679 | local catmin=${CATEGORY##*-} |
798 | case ${catmaj} in |
680 | case ${catmaj} in |
799 | app) |
681 | app) |
800 | case ${catmin} in |
682 | case ${catmin} in |
801 | accessibility) type=Accessibility;; |
683 | accessibility) type="Utility;Accessibility";; |
802 | admin) type=System;; |
684 | admin) type=System;; |
803 | antivirus) type=System;; |
685 | antivirus) type=System;; |
804 | arch) type=Archiving;; |
686 | arch) type="Utility;Archiving";; |
805 | backup) type=Archiving;; |
687 | backup) type="Utility;Archiving";; |
806 | cdr) type=DiscBurning;; |
688 | cdr) type="AudioVideo;DiscBurning";; |
807 | dicts) type=Dictionary;; |
689 | dicts) type="Office;Dictionary";; |
808 | doc) type=Documentation;; |
690 | doc) type=Documentation;; |
809 | editors) type=TextEditor;; |
691 | editors) type="Utility;TextEditor";; |
810 | emacs) type=TextEditor;; |
692 | emacs) type="Development;TextEditor";; |
811 | emulation) type=Emulator;; |
693 | emulation) type="System;Emulator";; |
812 | laptop) type=HardwareSettings;; |
694 | laptop) type="Settings;HardwareSettings";; |
813 | office) type=Office;; |
695 | office) type=Office;; |
814 | pda) type=PDA;; |
696 | pda) type="Office;PDA";; |
815 | vim) type=TextEditor;; |
697 | vim) type="Development;TextEditor";; |
816 | xemacs) type=TextEditor;; |
698 | xemacs) type="Development;TextEditor";; |
817 | *) type=;; |
|
|
818 | esac |
699 | esac |
819 | ;; |
700 | ;; |
820 | |
701 | |
821 | dev) |
702 | dev) |
822 | type="Development" |
703 | type="Development" |
823 | ;; |
704 | ;; |
824 | |
705 | |
825 | games) |
706 | games) |
826 | case ${catmin} in |
707 | case ${catmin} in |
827 | action|fps) type=ActionGame;; |
708 | action|fps) type=ActionGame;; |
828 | arcade) type=ArcadeGame;; |
709 | arcade) type=ArcadeGame;; |
829 | board) type=BoardGame;; |
710 | board) type=BoardGame;; |
830 | emulation) type=Emulator;; |
711 | emulation) type=Emulator;; |
831 | kids) type=KidsGame;; |
712 | kids) type=KidsGame;; |
832 | puzzle) type=LogicGame;; |
713 | puzzle) type=LogicGame;; |
833 | roguelike) type=RolePlaying;; |
714 | roguelike) type=RolePlaying;; |
834 | rpg) type=RolePlaying;; |
715 | rpg) type=RolePlaying;; |
835 | simulation) type=Simulation;; |
716 | simulation) type=Simulation;; |
836 | sports) type=SportsGame;; |
717 | sports) type=SportsGame;; |
837 | strategy) type=StrategyGame;; |
718 | strategy) type=StrategyGame;; |
838 | *) type=;; |
|
|
839 | esac |
719 | esac |
840 | type="Game;${type}" |
720 | type="Game;${type}" |
841 | ;; |
721 | ;; |
842 | |
722 | |
843 | gnome) |
723 | gnome) |
… | |
… | |
852 | type="Network;Email" |
732 | type="Network;Email" |
853 | ;; |
733 | ;; |
854 | |
734 | |
855 | media) |
735 | media) |
856 | case ${catmin} in |
736 | case ${catmin} in |
|
|
737 | gfx) |
857 | gfx) type=Graphics;; |
738 | type=Graphics |
|
|
739 | ;; |
|
|
740 | *) |
|
|
741 | case ${catmin} in |
858 | radio) type=Tuner;; |
742 | radio) type=Tuner;; |
859 | sound) type=Audio;; |
743 | sound) type=Audio;; |
860 | tv) type=TV;; |
744 | tv) type=TV;; |
861 | video) type=Video;; |
745 | video) type=Video;; |
862 | *) type=;; |
746 | esac |
|
|
747 | type="AudioVideo;${type}" |
|
|
748 | ;; |
863 | esac |
749 | esac |
864 | type="AudioVideo;${type}" |
|
|
865 | ;; |
750 | ;; |
866 | |
751 | |
867 | net) |
752 | net) |
868 | case ${catmin} in |
753 | case ${catmin} in |
869 | dialup) type=Dialup;; |
754 | dialup) type=Dialup;; |
870 | ftp) type=FileTransfer;; |
755 | ftp) type=FileTransfer;; |
871 | im) type=InstantMessaging;; |
756 | im) type=InstantMessaging;; |
872 | irc) type=IRCClient;; |
757 | irc) type=IRCClient;; |
873 | mail) type=Email;; |
758 | mail) type=Email;; |
874 | news) type=News;; |
759 | news) type=News;; |
875 | nntp) type=News;; |
760 | nntp) type=News;; |
876 | p2p) type=FileTransfer;; |
761 | p2p) type=FileTransfer;; |
877 | *) type=;; |
762 | voip) type=Telephony;; |
878 | esac |
763 | esac |
879 | type="Network;${type}" |
764 | type="Network;${type}" |
880 | ;; |
765 | ;; |
881 | |
766 | |
882 | sci) |
767 | sci) |
883 | case ${catmin} in |
768 | case ${catmin} in |
884 | astro*) type=Astronomy;; |
769 | astro*) type=Astronomy;; |
885 | bio*) type=Biology;; |
770 | bio*) type=Biology;; |
886 | calc*) type=Calculator;; |
771 | calc*) type=Calculator;; |
887 | chem*) type=Chemistry;; |
772 | chem*) type=Chemistry;; |
888 | elec*) type=Electronics;; |
773 | elec*) type=Electronics;; |
889 | geo*) type=Geology;; |
774 | geo*) type=Geology;; |
890 | math*) type=Math;; |
775 | math*) type=Math;; |
891 | physics) type=Physics;; |
776 | physics) type=Physics;; |
892 | visual*) type=DataVisualization;; |
777 | visual*) type=DataVisualization;; |
893 | *) type=;; |
|
|
894 | esac |
778 | esac |
895 | type="Science;${type}" |
779 | type="Education;Science;${type}" |
896 | ;; |
780 | ;; |
897 | |
781 | |
898 | sys) |
782 | sys) |
899 | type="System" |
783 | type="System" |
900 | ;; |
784 | ;; |
901 | |
785 | |
902 | www) |
786 | www) |
903 | case ${catmin} in |
787 | case ${catmin} in |
904 | client) type=WebBrowser;; |
788 | client) type=WebBrowser;; |
905 | *) type=;; |
|
|
906 | esac |
789 | esac |
907 | type="Network" |
790 | type="Network;${type}" |
908 | ;; |
791 | ;; |
909 | |
792 | |
910 | *) |
793 | *) |
911 | type= |
794 | type= |
912 | ;; |
795 | ;; |
… | |
… | |
918 | local desktop_name="${PN}-${SLOT}" |
801 | local desktop_name="${PN}-${SLOT}" |
919 | fi |
802 | fi |
920 | local desktop="${T}/$(echo ${exec} | sed 's:[[:space:]/:]:_:g')-${desktop_name}.desktop" |
803 | local desktop="${T}/$(echo ${exec} | sed 's:[[:space:]/:]:_:g')-${desktop_name}.desktop" |
921 | #local desktop=${T}/${exec%% *:-${desktop_name}}.desktop |
804 | #local desktop=${T}/${exec%% *:-${desktop_name}}.desktop |
922 | |
805 | |
|
|
806 | # Don't append another ";" when a valid category value is provided. |
|
|
807 | type=${type%;}${type:+;} |
|
|
808 | |
|
|
809 | eshopts_push -s extglob |
|
|
810 | if [[ -n ${icon} && ${icon} != /* ]] && [[ ${icon} == *.xpm || ${icon} == *.png || ${icon} == *.svg ]]; then |
|
|
811 | ewarn "As described in the Icon Theme Specification, icon file extensions are not" |
|
|
812 | ewarn "allowed in .desktop files if the value is not an absolute path." |
|
|
813 | icon=${icon%.@(xpm|png|svg)} |
|
|
814 | fi |
|
|
815 | eshopts_pop |
|
|
816 | |
923 | cat <<-EOF > "${desktop}" |
817 | cat <<-EOF > "${desktop}" |
924 | [Desktop Entry] |
818 | [Desktop Entry] |
925 | Version=1.0 |
|
|
926 | Name=${name} |
819 | Name=${name} |
927 | Type=Application |
820 | Type=Application |
928 | Comment=${DESCRIPTION} |
821 | Comment=${DESCRIPTION} |
929 | Exec=${exec} |
822 | Exec=${exec} |
930 | TryExec=${exec%% *} |
823 | TryExec=${exec%% *} |
931 | Icon=${icon} |
824 | Icon=${icon} |
932 | Categories=${type}; |
825 | Categories=${type} |
933 | EOF |
826 | EOF |
934 | |
827 | |
935 | [[ ${path} ]] && echo "Path=${path}" >> "${desktop}" |
828 | if [[ ${fields:-=} != *=* ]] ; then |
|
|
829 | # 5th arg used to be value to Path= |
|
|
830 | ewarn "make_desktop_entry: update your 5th arg to read Path=${fields}" |
|
|
831 | fields="Path=${fields}" |
|
|
832 | fi |
|
|
833 | [[ -n ${fields} ]] && printf '%b\n' "${fields}" >> "${desktop}" |
936 | |
834 | |
937 | ( |
835 | ( |
938 | # wrap the env here so that the 'insinto' call |
836 | # wrap the env here so that the 'insinto' call |
939 | # doesn't corrupt the env of the caller |
837 | # doesn't corrupt the env of the caller |
940 | insinto /usr/share/applications |
838 | insinto /usr/share/applications |
941 | doins "${desktop}" |
839 | doins "${desktop}" |
942 | ) |
840 | ) || die "installing desktop file failed" |
943 | } |
841 | } |
944 | |
842 | |
945 | # @FUNCTION: validate_desktop_entries |
843 | # @FUNCTION: validate_desktop_entries |
946 | # @USAGE: [directories] |
844 | # @USAGE: [directories] |
947 | # @MAINTAINER: |
845 | # @MAINTAINER: |
… | |
… | |
1042 | insinto /usr/share/applications |
940 | insinto /usr/share/applications |
1043 | newins "$@" |
941 | newins "$@" |
1044 | ) |
942 | ) |
1045 | } |
943 | } |
1046 | |
944 | |
1047 | # @FUNCTION: doicon |
945 | # @FUNCTION: _iconins |
1048 | # @USAGE: <list of icons> |
946 | # @INTERNAL |
1049 | # @DESCRIPTION: |
947 | # @DESCRIPTION: |
1050 | # Install the list of icons into the icon directory (/usr/share/pixmaps). |
948 | # function for use in doicon and newicon |
1051 | # This is useful in conjunction with creating desktop/menu files. |
949 | _iconins() { |
1052 | doicon() { |
|
|
1053 | ( |
950 | ( |
1054 | # wrap the env here so that the 'insinto' call |
951 | # wrap the env here so that the 'insinto' call |
1055 | # doesn't corrupt the env of the caller |
952 | # doesn't corrupt the env of the caller |
1056 | local i j ret |
953 | local funcname=$1; shift |
1057 | insinto /usr/share/pixmaps |
954 | local size dir |
1058 | for i in "$@" ; do |
955 | local context=apps |
1059 | if [[ -f ${i} ]] ; then |
956 | local theme=hicolor |
1060 | doins "${i}" |
957 | |
1061 | ((ret+=$?)) |
958 | while [[ $# -gt 0 ]] ; do |
1062 | elif [[ -d ${i} ]] ; then |
959 | case $1 in |
1063 | for j in "${i}"/*.png ; do |
960 | -s|--size) |
1064 | doins "${j}" |
961 | if [[ ${2%%x*}x${2%%x*} == "$2" ]] ; then |
1065 | ((ret+=$?)) |
962 | size=${2%%x*} |
1066 | done |
|
|
1067 | else |
963 | else |
1068 | ((++ret)) |
964 | size=${2} |
1069 | fi |
965 | fi |
1070 | done |
|
|
1071 | exit ${ret} |
|
|
1072 | ) |
|
|
1073 | } |
|
|
1074 | |
|
|
1075 | # @FUNCTION: newicon |
|
|
1076 | # @USAGE: <icon> <newname> |
|
|
1077 | # @DESCRIPTION: |
|
|
1078 | # Like all other new* functions, install the specified icon as newname. |
|
|
1079 | newicon() { |
|
|
1080 | ( |
|
|
1081 | # wrap the env here so that the 'insinto' call |
|
|
1082 | # doesn't corrupt the env of the caller |
|
|
1083 | insinto /usr/share/pixmaps |
|
|
1084 | newins "$@" |
|
|
1085 | ) |
|
|
1086 | } |
|
|
1087 | |
|
|
1088 | # for internal use only (unpack_pdv and unpack_makeself) |
|
|
1089 | find_unpackable_file() { |
|
|
1090 | local src=$1 |
|
|
1091 | if [[ -z ${src} ]] ; then |
|
|
1092 | src=${DISTDIR}/${A} |
|
|
1093 | else |
|
|
1094 | if [[ -e ${DISTDIR}/${src} ]] ; then |
|
|
1095 | src=${DISTDIR}/${src} |
|
|
1096 | elif [[ -e ${PWD}/${src} ]] ; then |
|
|
1097 | src=${PWD}/${src} |
|
|
1098 | elif [[ -e ${src} ]] ; then |
|
|
1099 | src=${src} |
|
|
1100 | fi |
|
|
1101 | fi |
|
|
1102 | [[ ! -e ${src} ]] && return 1 |
|
|
1103 | echo "${src}" |
|
|
1104 | } |
|
|
1105 | |
|
|
1106 | # @FUNCTION: unpack_pdv |
|
|
1107 | # @USAGE: <file to unpack> <size of off_t> |
|
|
1108 | # @DESCRIPTION: |
|
|
1109 | # Unpack those pesky pdv generated files ... |
|
|
1110 | # They're self-unpacking programs with the binary package stuffed in |
|
|
1111 | # the middle of the archive. Valve seems to use it a lot ... too bad |
|
|
1112 | # it seems to like to segfault a lot :(. So lets take it apart ourselves. |
|
|
1113 | # |
|
|
1114 | # You have to specify the off_t size ... I have no idea how to extract that |
|
|
1115 | # information out of the binary executable myself. Basically you pass in |
|
|
1116 | # the size of the off_t type (in bytes) on the machine that built the pdv |
|
|
1117 | # archive. |
|
|
1118 | # |
|
|
1119 | # One way to determine this is by running the following commands: |
|
|
1120 | # |
|
|
1121 | # @CODE |
|
|
1122 | # strings <pdv archive> | grep lseek |
|
|
1123 | # strace -elseek <pdv archive> |
|
|
1124 | # @CODE |
|
|
1125 | # |
|
|
1126 | # Basically look for the first lseek command (we do the strings/grep because |
|
|
1127 | # sometimes the function call is _llseek or something) and steal the 2nd |
|
|
1128 | # parameter. Here is an example: |
|
|
1129 | # |
|
|
1130 | # @CODE |
|
|
1131 | # vapier@vapier 0 pdv_unpack # strings hldsupdatetool.bin | grep lseek |
|
|
1132 | # lseek |
|
|
1133 | # vapier@vapier 0 pdv_unpack # strace -elseek ./hldsupdatetool.bin |
|
|
1134 | # lseek(3, -4, SEEK_END) = 2981250 |
|
|
1135 | # @CODE |
|
|
1136 | # |
|
|
1137 | # Thus we would pass in the value of '4' as the second parameter. |
|
|
1138 | unpack_pdv() { |
|
|
1139 | local src=$(find_unpackable_file "$1") |
|
|
1140 | local sizeoff_t=$2 |
|
|
1141 | |
|
|
1142 | [[ -z ${src} ]] && die "Could not locate source for '$1'" |
|
|
1143 | [[ -z ${sizeoff_t} ]] && die "No idea what off_t size was used for this pdv :(" |
|
|
1144 | |
|
|
1145 | local shrtsrc=$(basename "${src}") |
|
|
1146 | echo ">>> Unpacking ${shrtsrc} to ${PWD}" |
|
|
1147 | local metaskip=$(tail -c ${sizeoff_t} "${src}" | hexdump -e \"%i\") |
|
|
1148 | local tailskip=$(tail -c $((${sizeoff_t}*2)) "${src}" | head -c ${sizeoff_t} | hexdump -e \"%i\") |
|
|
1149 | |
|
|
1150 | # grab metadata for debug reasons |
|
|
1151 | local metafile=$(emktemp) |
|
|
1152 | tail -c +$((${metaskip}+1)) "${src}" > "${metafile}" |
|
|
1153 | |
|
|
1154 | # rip out the final file name from the metadata |
|
|
1155 | local datafile=$(tail -c +$((${metaskip}+1)) "${src}" | strings | head -n 1) |
|
|
1156 | datafile=$(basename "${datafile}") |
|
|
1157 | |
|
|
1158 | # now lets uncompress/untar the file if need be |
|
|
1159 | local tmpfile=$(emktemp) |
|
|
1160 | tail -c +$((${tailskip}+1)) ${src} 2>/dev/null | head -c 512 > ${tmpfile} |
|
|
1161 | |
|
|
1162 | local iscompressed=$(file -b "${tmpfile}") |
|
|
1163 | if [[ ${iscompressed:0:8} == "compress" ]] ; then |
|
|
1164 | iscompressed=1 |
|
|
1165 | mv ${tmpfile}{,.Z} |
|
|
1166 | gunzip ${tmpfile} |
|
|
1167 | else |
|
|
1168 | iscompressed=0 |
|
|
1169 | fi |
|
|
1170 | local istar=$(file -b "${tmpfile}") |
|
|
1171 | if [[ ${istar:0:9} == "POSIX tar" ]] ; then |
|
|
1172 | istar=1 |
|
|
1173 | else |
|
|
1174 | istar=0 |
|
|
1175 | fi |
|
|
1176 | |
|
|
1177 | #for some reason gzip dies with this ... dd cant provide buffer fast enough ? |
|
|
1178 | #dd if=${src} ibs=${metaskip} count=1 \ |
|
|
1179 | # | dd ibs=${tailskip} skip=1 \ |
|
|
1180 | # | gzip -dc \ |
|
|
1181 | # > ${datafile} |
|
|
1182 | if [ ${iscompressed} -eq 1 ] ; then |
|
|
1183 | if [ ${istar} -eq 1 ] ; then |
|
|
1184 | tail -c +$((${tailskip}+1)) ${src} 2>/dev/null \ |
|
|
1185 | | head -c $((${metaskip}-${tailskip})) \ |
|
|
1186 | | tar -xzf - |
|
|
1187 | else |
|
|
1188 | tail -c +$((${tailskip}+1)) ${src} 2>/dev/null \ |
|
|
1189 | | head -c $((${metaskip}-${tailskip})) \ |
|
|
1190 | | gzip -dc \ |
|
|
1191 | > ${datafile} |
|
|
1192 | fi |
|
|
1193 | else |
|
|
1194 | if [ ${istar} -eq 1 ] ; then |
|
|
1195 | tail -c +$((${tailskip}+1)) ${src} 2>/dev/null \ |
|
|
1196 | | head -c $((${metaskip}-${tailskip})) \ |
|
|
1197 | | tar --no-same-owner -xf - |
|
|
1198 | else |
|
|
1199 | tail -c +$((${tailskip}+1)) ${src} 2>/dev/null \ |
|
|
1200 | | head -c $((${metaskip}-${tailskip})) \ |
|
|
1201 | > ${datafile} |
|
|
1202 | fi |
|
|
1203 | fi |
|
|
1204 | true |
|
|
1205 | #[ -s "${datafile}" ] || die "failure unpacking pdv ('${metaskip}' '${tailskip}' '${datafile}')" |
|
|
1206 | #assert "failure unpacking pdv ('${metaskip}' '${tailskip}' '${datafile}')" |
|
|
1207 | } |
|
|
1208 | |
|
|
1209 | # @FUNCTION: unpack_makeself |
|
|
1210 | # @USAGE: [file to unpack] [offset] [tail|dd] |
|
|
1211 | # @DESCRIPTION: |
|
|
1212 | # Unpack those pesky makeself generated files ... |
|
|
1213 | # They're shell scripts with the binary package tagged onto |
|
|
1214 | # the end of the archive. Loki utilized the format as does |
|
|
1215 | # many other game companies. |
|
|
1216 | # |
|
|
1217 | # If the file is not specified, then ${A} is used. If the |
|
|
1218 | # offset is not specified then we will attempt to extract |
|
|
1219 | # the proper offset from the script itself. |
|
|
1220 | unpack_makeself() { |
|
|
1221 | local src_input=${1:-${A}} |
|
|
1222 | local src=$(find_unpackable_file "${src_input}") |
|
|
1223 | local skip=$2 |
|
|
1224 | local exe=$3 |
|
|
1225 | |
|
|
1226 | [[ -z ${src} ]] && die "Could not locate source for '${src_input}'" |
|
|
1227 | |
|
|
1228 | local shrtsrc=$(basename "${src}") |
|
|
1229 | echo ">>> Unpacking ${shrtsrc} to ${PWD}" |
|
|
1230 | if [[ -z ${skip} ]] ; then |
|
|
1231 | local ver=$(grep -a '#.*Makeself' "${src}" | awk '{print $NF}') |
|
|
1232 | local skip=0 |
|
|
1233 | exe=tail |
|
|
1234 | case ${ver} in |
966 | case ${size} in |
1235 | 1.5.*|1.6.0-nv) # tested 1.5.{3,4,5} ... guessing 1.5.x series is same |
967 | 16|22|24|32|36|48|64|72|96|128|192|256) |
1236 | skip=$(grep -a ^skip= "${src}" | cut -d= -f2) |
968 | size=${size}x${size};; |
1237 | ;; |
969 | scalable) |
1238 | 2.0|2.0.1) |
|
|
1239 | skip=$(grep -a ^$'\t'tail "${src}" | awk '{print $2}' | cut -b2-) |
|
|
1240 | ;; |
|
|
1241 | 2.1.1) |
|
|
1242 | skip=$(grep -a ^offset= "${src}" | awk '{print $2}' | cut -b2-) |
|
|
1243 | let skip="skip + 1" |
|
|
1244 | ;; |
|
|
1245 | 2.1.2) |
|
|
1246 | skip=$(grep -a ^offset= "${src}" | awk '{print $3}' | head -n 1) |
|
|
1247 | let skip="skip + 1" |
|
|
1248 | ;; |
|
|
1249 | 2.1.3) |
|
|
1250 | skip=`grep -a ^offset= "${src}" | awk '{print $3}'` |
|
|
1251 | let skip="skip + 1" |
|
|
1252 | ;; |
|
|
1253 | 2.1.4|2.1.5) |
|
|
1254 | skip=$(grep -a offset=.*head.*wc "${src}" | awk '{print $3}' | head -n 1) |
|
|
1255 | skip=$(head -n ${skip} "${src}" | wc -c) |
|
|
1256 | exe="dd" |
|
|
1257 | ;; |
970 | ;; |
1258 | *) |
971 | *) |
1259 | eerror "I'm sorry, but I was unable to support the Makeself file." |
972 | eerror "${size} is an unsupported icon size!" |
1260 | eerror "The version I detected was '${ver}'." |
973 | exit 1;; |
1261 | eerror "Please file a bug about the file ${shrtsrc} at" |
|
|
1262 | eerror "http://bugs.gentoo.org/ so that support can be added." |
|
|
1263 | die "makeself version '${ver}' not supported" |
|
|
1264 | ;; |
|
|
1265 | esac |
974 | esac |
1266 | debug-print "Detected Makeself version ${ver} ... using ${skip} as offset" |
975 | shift 2;; |
1267 | fi |
976 | -t|--theme) |
1268 | case ${exe} in |
977 | theme=${2} |
1269 | tail) exe="tail -n +${skip} '${src}'";; |
978 | shift 2;; |
1270 | dd) exe="dd ibs=${skip} skip=1 obs=1024 conv=sync if='${src}'";; |
979 | -c|--context) |
1271 | *) die "makeself cant handle exe '${exe}'" |
980 | context=${2} |
1272 | esac |
981 | shift 2;; |
1273 | |
|
|
1274 | # lets grab the first few bytes of the file to figure out what kind of archive it is |
|
|
1275 | local tmpfile=$(emktemp) |
|
|
1276 | eval ${exe} 2>/dev/null | head -c 512 > "${tmpfile}" |
|
|
1277 | local filetype=$(file -b "${tmpfile}") |
|
|
1278 | case ${filetype} in |
|
|
1279 | *tar\ archive*) |
|
|
1280 | eval ${exe} | tar --no-same-owner -xf - |
|
|
1281 | ;; |
|
|
1282 | bzip2*) |
|
|
1283 | eval ${exe} | bzip2 -dc | tar --no-same-owner -xf - |
|
|
1284 | ;; |
|
|
1285 | gzip*) |
|
|
1286 | eval ${exe} | tar --no-same-owner -xzf - |
|
|
1287 | ;; |
|
|
1288 | compress*) |
|
|
1289 | eval ${exe} | gunzip | tar --no-same-owner -xf - |
|
|
1290 | ;; |
|
|
1291 | *) |
982 | *) |
1292 | eerror "Unknown filetype \"${filetype}\" ?" |
|
|
1293 | false |
|
|
1294 | ;; |
|
|
1295 | esac |
|
|
1296 | 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 | } |
|
|
1358 | |
|
|
1359 | # @FUNCTION: cdrom_get_cds |
|
|
1360 | # @USAGE: <file on cd1> [file on cd2] [file on cd3] [...] |
|
|
1361 | # @DESCRIPTION: |
|
|
1362 | # Aquire cd(s) for those lovely cd-based emerges. Yes, this violates |
|
|
1363 | # the whole 'non-interactive' policy, but damnit I want CD support ! |
|
|
1364 | # |
|
|
1365 | # With these cdrom functions we handle all the user interaction and |
|
|
1366 | # standardize everything. All you have to do is call cdrom_get_cds() |
|
|
1367 | # and when the function returns, you can assume that the cd has been |
|
|
1368 | # found at CDROM_ROOT. |
|
|
1369 | # |
|
|
1370 | # The function will attempt to locate a cd based upon a file that is on |
|
|
1371 | # the cd. The more files you give this function, the more cds |
|
|
1372 | # the cdrom functions will handle. |
|
|
1373 | # |
|
|
1374 | # Normally the cdrom functions will refer to the cds as 'cd #1', 'cd #2', |
|
|
1375 | # etc... If you want to give the cds better names, then just export |
|
|
1376 | # the appropriate CDROM_NAME variable before calling cdrom_get_cds(). |
|
|
1377 | # Use CDROM_NAME for one cd, or CDROM_NAME_# for multiple cds. You can |
|
|
1378 | # also use the CDROM_NAME_SET bash array. |
|
|
1379 | # |
|
|
1380 | # For those multi cd ebuilds, see the cdrom_load_next_cd() function. |
|
|
1381 | cdrom_get_cds() { |
|
|
1382 | # first we figure out how many cds we're dealing with by |
|
|
1383 | # the # of files they gave us |
|
|
1384 | local cdcnt=0 |
|
|
1385 | local f= |
|
|
1386 | for f in "$@" ; do |
|
|
1387 | ((++cdcnt)) |
|
|
1388 | export CDROM_CHECK_${cdcnt}="$f" |
|
|
1389 | done |
|
|
1390 | export CDROM_TOTAL_CDS=${cdcnt} |
|
|
1391 | export CDROM_CURRENT_CD=1 |
|
|
1392 | |
|
|
1393 | # now we see if the user gave use CD_ROOT ... |
|
|
1394 | # if they did, let's just believe them that it's correct |
|
|
1395 | if [[ -n ${CD_ROOT}${CD_ROOT_1} ]] ; then |
|
|
1396 | local var= |
|
|
1397 | cdcnt=0 |
|
|
1398 | while [[ ${cdcnt} -lt ${CDROM_TOTAL_CDS} ]] ; do |
|
|
1399 | ((++cdcnt)) |
|
|
1400 | var="CD_ROOT_${cdcnt}" |
|
|
1401 | [[ -z ${!var} ]] && var="CD_ROOT" |
|
|
1402 | if [[ -z ${!var} ]] ; then |
983 | if [[ -z ${size} ]] ; then |
1403 | eerror "You must either use just the CD_ROOT" |
984 | insinto /usr/share/pixmaps |
1404 | eerror "or specify ALL the CD_ROOT_X variables." |
985 | else |
1405 | eerror "In this case, you will need ${CDROM_TOTAL_CDS} CD_ROOT_X variables." |
986 | insinto /usr/share/icons/${theme}/${size}/${context} |
1406 | die "could not locate CD_ROOT_${cdcnt}" |
|
|
1407 | fi |
987 | fi |
1408 | done |
|
|
1409 | export CDROM_ROOT=${CD_ROOT_1:-${CD_ROOT}} |
|
|
1410 | einfo "Found CD #${CDROM_CURRENT_CD} root at ${CDROM_ROOT}" |
|
|
1411 | export CDROM_SET=-1 |
|
|
1412 | for f in ${CDROM_CHECK_1//:/ } ; do |
|
|
1413 | ((++CDROM_SET)) |
|
|
1414 | [[ -e ${CD_ROOT}/${f} ]] && break |
|
|
1415 | done |
|
|
1416 | export CDROM_MATCH=${f} |
|
|
1417 | return |
|
|
1418 | fi |
|
|
1419 | |
988 | |
1420 | # User didn't help us out so lets make sure they know they can |
989 | if [[ ${funcname} == doicon ]] ; then |
1421 | # simplify the whole process ... |
|
|
1422 | if [[ ${CDROM_TOTAL_CDS} -eq 1 ]] ; then |
|
|
1423 | einfo "This ebuild will need the ${CDROM_NAME:-cdrom for ${PN}}" |
|
|
1424 | echo |
|
|
1425 | einfo "If you do not have the CD, but have the data files" |
|
|
1426 | einfo "mounted somewhere on your filesystem, just export" |
|
|
1427 | einfo "the variable CD_ROOT so that it points to the" |
|
|
1428 | einfo "directory containing the files." |
|
|
1429 | echo |
|
|
1430 | einfo "For example:" |
|
|
1431 | einfo "export CD_ROOT=/mnt/cdrom" |
|
|
1432 | echo |
|
|
1433 | else |
|
|
1434 | if [[ -n ${CDROM_NAME_SET} ]] ; then |
|
|
1435 | # Translate the CDROM_NAME_SET array into CDROM_NAME_# |
|
|
1436 | cdcnt=0 |
|
|
1437 | while [[ ${cdcnt} -lt ${CDROM_TOTAL_CDS} ]] ; do |
|
|
1438 | ((++cdcnt)) |
|
|
1439 | export CDROM_NAME_${cdcnt}="${CDROM_NAME_SET[$((${cdcnt}-1))]}" |
|
|
1440 | done |
|
|
1441 | fi |
|
|
1442 | |
|
|
1443 | einfo "This package will need access to ${CDROM_TOTAL_CDS} cds." |
|
|
1444 | cdcnt=0 |
|
|
1445 | while [[ ${cdcnt} -lt ${CDROM_TOTAL_CDS} ]] ; do |
|
|
1446 | ((++cdcnt)) |
|
|
1447 | var="CDROM_NAME_${cdcnt}" |
|
|
1448 | [[ ! -z ${!var} ]] && einfo " CD ${cdcnt}: ${!var}" |
|
|
1449 | done |
|
|
1450 | echo |
|
|
1451 | einfo "If you do not have the CDs, but have the data files" |
|
|
1452 | einfo "mounted somewhere on your filesystem, just export" |
|
|
1453 | einfo "the following variables so they point to the right place:" |
|
|
1454 | einfon "" |
|
|
1455 | cdcnt=0 |
|
|
1456 | while [[ ${cdcnt} -lt ${CDROM_TOTAL_CDS} ]] ; do |
|
|
1457 | ((++cdcnt)) |
|
|
1458 | echo -n " CD_ROOT_${cdcnt}" |
|
|
1459 | done |
|
|
1460 | echo |
|
|
1461 | einfo "Or, if you have all the files in the same place, or" |
|
|
1462 | einfo "you only have one cdrom, you can export CD_ROOT" |
|
|
1463 | einfo "and that place will be used as the same data source" |
|
|
1464 | einfo "for all the CDs." |
|
|
1465 | echo |
|
|
1466 | einfo "For example:" |
|
|
1467 | einfo "export CD_ROOT_1=/mnt/cdrom" |
|
|
1468 | echo |
|
|
1469 | fi |
|
|
1470 | |
|
|
1471 | export CDROM_SET="" |
|
|
1472 | export CDROM_CURRENT_CD=0 |
|
|
1473 | cdrom_load_next_cd |
|
|
1474 | } |
|
|
1475 | |
|
|
1476 | # @FUNCTION: cdrom_load_next_cd |
|
|
1477 | # @DESCRIPTION: |
|
|
1478 | # Some packages are so big they come on multiple CDs. When you're done reading |
|
|
1479 | # files off a CD and want access to the next one, just call this function. |
|
|
1480 | # Again, all the messy details of user interaction are taken care of for you. |
|
|
1481 | # Once this returns, just read the variable CDROM_ROOT for the location of the |
|
|
1482 | # mounted CD. Note that you can only go forward in the CD list, so make sure |
|
|
1483 | # you only call this function when you're done using the current CD. |
|
|
1484 | cdrom_load_next_cd() { |
|
|
1485 | local var |
|
|
1486 | ((++CDROM_CURRENT_CD)) |
|
|
1487 | |
|
|
1488 | unset CDROM_ROOT |
|
|
1489 | var=CD_ROOT_${CDROM_CURRENT_CD} |
|
|
1490 | [[ -z ${!var} ]] && var="CD_ROOT" |
|
|
1491 | if [[ -z ${!var} ]] ; then |
990 | if [[ -f $1 ]] ; then |
1492 | var="CDROM_CHECK_${CDROM_CURRENT_CD}" |
991 | doins "${1}" |
1493 | _cdrom_locate_file_on_cd ${!var} |
992 | elif [[ -d $1 ]] ; then |
1494 | else |
993 | shopt -s nullglob |
1495 | export CDROM_ROOT=${!var} |
994 | doins "${1}"/*.{png,svg} |
1496 | fi |
995 | shopt -u nullglob |
1497 | |
|
|
1498 | einfo "Found CD #${CDROM_CURRENT_CD} root at ${CDROM_ROOT}" |
|
|
1499 | } |
|
|
1500 | |
|
|
1501 | # this is used internally by the cdrom_get_cds() and cdrom_load_next_cd() |
|
|
1502 | # functions. this should *never* be called from an ebuild. |
|
|
1503 | # all it does is try to locate a give file on a cd ... if the cd isn't |
|
|
1504 | # found, then a message asking for the user to insert the cdrom will be |
|
|
1505 | # displayed and we'll hang out here until: |
|
|
1506 | # (1) the file is found on a mounted cdrom |
|
|
1507 | # (2) the user hits CTRL+C |
|
|
1508 | _cdrom_locate_file_on_cd() { |
|
|
1509 | local mline="" |
|
|
1510 | local showedmsg=0 showjolietmsg=0 |
|
|
1511 | |
|
|
1512 | while [[ -z ${CDROM_ROOT} ]] ; do |
|
|
1513 | local i=0 |
|
|
1514 | local -a cdset=(${*//:/ }) |
|
|
1515 | if [[ -n ${CDROM_SET} ]] ; then |
|
|
1516 | cdset=(${cdset[${CDROM_SET}]}) |
|
|
1517 | fi |
|
|
1518 | |
|
|
1519 | while [[ -n ${cdset[${i}]} ]] ; do |
|
|
1520 | local dir=$(dirname ${cdset[${i}]}) |
|
|
1521 | local file=$(basename ${cdset[${i}]}) |
|
|
1522 | |
|
|
1523 | local point= node= fs= foo= |
|
|
1524 | while read point node fs foo ; do |
|
|
1525 | [[ " cd9660 iso9660 udf " != *" ${fs} "* ]] && \ |
|
|
1526 | ! [[ ${fs} == "subfs" && ",${opts}," == *",fs=cdfss,"* ]] \ |
|
|
1527 | && continue |
|
|
1528 | point=${point//\040/ } |
|
|
1529 | [[ ! -d ${point}/${dir} ]] && continue |
|
|
1530 | [[ -z $(find "${point}/${dir}" -maxdepth 1 -iname "${file}") ]] && continue |
|
|
1531 | export CDROM_ROOT=${point} |
|
|
1532 | export CDROM_SET=${i} |
|
|
1533 | export CDROM_MATCH=${cdset[${i}]} |
|
|
1534 | return |
|
|
1535 | done <<< "$(get_mounts)" |
|
|
1536 | |
|
|
1537 | ((++i)) |
|
|
1538 | done |
|
|
1539 | |
|
|
1540 | echo |
|
|
1541 | if [[ ${showedmsg} -eq 0 ]] ; then |
|
|
1542 | if [[ ${CDROM_TOTAL_CDS} -eq 1 ]] ; then |
|
|
1543 | if [[ -z ${CDROM_NAME} ]] ; then |
|
|
1544 | einfo "Please insert+mount the cdrom for ${PN} now !" |
|
|
1545 | else |
996 | else |
1546 | einfo "Please insert+mount the ${CDROM_NAME} cdrom now !" |
997 | eerror "${1} is not a valid file/directory!" |
|
|
998 | exit 1 |
1547 | fi |
999 | fi |
1548 | else |
1000 | else |
1549 | if [[ -z ${CDROM_NAME_1} ]] ; then |
1001 | break |
1550 | einfo "Please insert+mount cd #${CDROM_CURRENT_CD} for ${PN} now !" |
|
|
1551 | else |
|
|
1552 | local var="CDROM_NAME_${CDROM_CURRENT_CD}" |
|
|
1553 | einfo "Please insert+mount the ${!var} cdrom now !" |
|
|
1554 | fi |
|
|
1555 | fi |
1002 | fi |
1556 | showedmsg=1 |
1003 | shift 1;; |
1557 | fi |
1004 | esac |
1558 | einfo "Press return to scan for the cd again" |
|
|
1559 | einfo "or hit CTRL+C to abort the emerge." |
|
|
1560 | echo |
|
|
1561 | if [[ ${showjolietmsg} -eq 0 ]] ; then |
|
|
1562 | showjolietmsg=1 |
|
|
1563 | else |
|
|
1564 | ewarn "If you are having trouble with the detection" |
|
|
1565 | ewarn "of your CD, it is possible that you do not have" |
|
|
1566 | ewarn "Joliet support enabled in your kernel. Please" |
|
|
1567 | ewarn "check that CONFIG_JOLIET is enabled in your kernel." |
|
|
1568 | ebeep 5 |
|
|
1569 | fi |
|
|
1570 | read || die "something is screwed with your system" |
|
|
1571 | done |
1005 | done |
|
|
1006 | if [[ ${funcname} == newicon ]] ; then |
|
|
1007 | newins "$@" |
|
|
1008 | fi |
|
|
1009 | ) || die |
|
|
1010 | } |
|
|
1011 | |
|
|
1012 | # @FUNCTION: doicon |
|
|
1013 | # @USAGE: [options] <icons> |
|
|
1014 | # @DESCRIPTION: |
|
|
1015 | # Install icon into the icon directory /usr/share/icons or into |
|
|
1016 | # /usr/share/pixmaps if "--size" is not set. |
|
|
1017 | # This is useful in conjunction with creating desktop/menu files. |
|
|
1018 | # |
|
|
1019 | # @CODE |
|
|
1020 | # options: |
|
|
1021 | # -s, --size |
|
|
1022 | # !!! must specify to install into /usr/share/icons/... !!! |
|
|
1023 | # size of the icon, like 48 or 48x48 |
|
|
1024 | # supported icon sizes are: |
|
|
1025 | # 16 22 24 32 36 48 64 72 96 128 192 256 scalable |
|
|
1026 | # -c, --context |
|
|
1027 | # defaults to "apps" |
|
|
1028 | # -t, --theme |
|
|
1029 | # defaults to "hicolor" |
|
|
1030 | # |
|
|
1031 | # icons: list of icons |
|
|
1032 | # |
|
|
1033 | # example 1: doicon foobar.png fuqbar.svg suckbar.png |
|
|
1034 | # results in: insinto /usr/share/pixmaps |
|
|
1035 | # doins foobar.png fuqbar.svg suckbar.png |
|
|
1036 | # |
|
|
1037 | # example 2: doicon -s 48 foobar.png fuqbar.png blobbar.png |
|
|
1038 | # results in: insinto /usr/share/icons/hicolor/48x48/apps |
|
|
1039 | # doins foobar.png fuqbar.png blobbar.png |
|
|
1040 | # @CODE |
|
|
1041 | doicon() { |
|
|
1042 | _iconins ${FUNCNAME} "$@" |
|
|
1043 | } |
|
|
1044 | |
|
|
1045 | # @FUNCTION: newicon |
|
|
1046 | # @USAGE: [options] <icon> <newname> |
|
|
1047 | # @DESCRIPTION: |
|
|
1048 | # Like doicon, install the specified icon as newname. |
|
|
1049 | # |
|
|
1050 | # @CODE |
|
|
1051 | # example 1: newicon foobar.png NEWNAME.png |
|
|
1052 | # results in: insinto /usr/share/pixmaps |
|
|
1053 | # newins foobar.png NEWNAME.png |
|
|
1054 | # |
|
|
1055 | # example 2: newicon -s 48 foobar.png NEWNAME.png |
|
|
1056 | # results in: insinto /usr/share/icons/hicolor/48x48/apps |
|
|
1057 | # newins foobar.png NEWNAME.png |
|
|
1058 | # @CODE |
|
|
1059 | newicon() { |
|
|
1060 | _iconins ${FUNCNAME} "$@" |
1572 | } |
1061 | } |
1573 | |
1062 | |
1574 | # @FUNCTION: strip-linguas |
1063 | # @FUNCTION: strip-linguas |
1575 | # @USAGE: [<allow LINGUAS>|<-i|-u> <directories of .po files>] |
1064 | # @USAGE: [<allow LINGUAS>|<-i|-u> <directories of .po files>] |
1576 | # @DESCRIPTION: |
1065 | # @DESCRIPTION: |
… | |
… | |
1593 | else |
1082 | else |
1594 | newls="" |
1083 | newls="" |
1595 | fi |
1084 | fi |
1596 | for f in $(find "$d" -name '*.po' -exec basename {} .po ';') ; do |
1085 | for f in $(find "$d" -name '*.po' -exec basename {} .po ';') ; do |
1597 | if [[ ${op} == "-i" ]] ; then |
1086 | if [[ ${op} == "-i" ]] ; then |
1598 | hasq ${f} ${ls} && newls="${newls} ${f}" |
1087 | has ${f} ${ls} && newls="${newls} ${f}" |
1599 | else |
1088 | else |
1600 | hasq ${f} ${ls} || newls="${newls} ${f}" |
1089 | has ${f} ${ls} || newls="${newls} ${f}" |
1601 | fi |
1090 | fi |
1602 | done |
1091 | done |
1603 | ls=${newls} |
1092 | ls=${newls} |
1604 | done |
1093 | done |
1605 | else |
1094 | else |
… | |
… | |
1607 | fi |
1096 | fi |
1608 | |
1097 | |
1609 | nols="" |
1098 | nols="" |
1610 | newls="" |
1099 | newls="" |
1611 | for f in ${LINGUAS} ; do |
1100 | for f in ${LINGUAS} ; do |
1612 | if hasq ${f} ${ls} ; then |
1101 | if has ${f} ${ls} ; then |
1613 | newls="${newls} ${f}" |
1102 | newls="${newls} ${f}" |
1614 | else |
1103 | else |
1615 | nols="${nols} ${f}" |
1104 | nols="${nols} ${f}" |
1616 | fi |
1105 | fi |
1617 | done |
1106 | done |
1618 | [[ -n ${nols} ]] \ |
1107 | [[ -n ${nols} ]] \ |
1619 | && ewarn "Sorry, but ${PN} does not support the LINGUAs:" ${nols} |
1108 | && einfo "Sorry, but ${PN} does not support the LINGUAS:" ${nols} |
1620 | export LINGUAS=${newls:1} |
1109 | export LINGUAS=${newls:1} |
1621 | } |
1110 | } |
1622 | |
1111 | |
1623 | # @FUNCTION: preserve_old_lib |
1112 | # @FUNCTION: preserve_old_lib |
1624 | # @USAGE: <libs to preserve> [more libs] |
1113 | # @USAGE: <libs to preserve> [more libs] |
… | |
… | |
1672 | ewarn "the libraries are not being removed. You need to run revdep-rebuild" |
1161 | 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" |
1162 | ewarn "in order to remove these old dependencies. If you do not have this" |
1674 | ewarn "helper program, simply emerge the 'gentoolkit' package." |
1163 | ewarn "helper program, simply emerge the 'gentoolkit' package." |
1675 | ewarn |
1164 | ewarn |
1676 | fi |
1165 | fi |
1677 | ewarn " # revdep-rebuild --library ${lib##*/}" |
1166 | ewarn " # revdep-rebuild --library '${lib}' && rm '${lib}'" |
1678 | done |
1167 | done |
1679 | if [[ ${notice} -eq 1 ]] ; then |
|
|
1680 | ewarn |
|
|
1681 | 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:" |
|
|
1683 | for lib in "$@" ; do |
|
|
1684 | ewarn " # rm '${lib}'" |
|
|
1685 | done |
|
|
1686 | fi |
|
|
1687 | } |
1168 | } |
1688 | |
1169 | |
1689 | # @FUNCTION: built_with_use |
1170 | # @FUNCTION: built_with_use |
1690 | # @USAGE: [--hidden] [--missing <action>] [-a|-o] <DEPEND ATOM> <List of USE flags> |
1171 | # @USAGE: [--hidden] [--missing <action>] [-a|-o] <DEPEND ATOM> <List of USE flags> |
1691 | # @DESCRIPTION: |
1172 | # @DESCRIPTION: |
|
|
1173 | # |
|
|
1174 | # Deprecated: Use EAPI 2 use deps in DEPEND|RDEPEND and with has_version calls. |
|
|
1175 | # |
1692 | # A temporary hack until portage properly supports DEPENDing on USE |
1176 | # A temporary hack until portage properly supports DEPENDing on USE |
1693 | # flags being enabled in packages. This will check to see if the specified |
1177 | # 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 |
1178 | # 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 |
1179 | # --missing option controls the behavior if called on a package that does |
1696 | # not actually support the defined USE flags (aka listed in IUSE). |
1180 | # not actually support the defined USE flags (aka listed in IUSE). |
… | |
… | |
1783 | # http://bugs.gentoo.org/73450 |
1267 | # http://bugs.gentoo.org/73450 |
1784 | epunt_cxx() { |
1268 | epunt_cxx() { |
1785 | local dir=$1 |
1269 | local dir=$1 |
1786 | [[ -z ${dir} ]] && dir=${S} |
1270 | [[ -z ${dir} ]] && dir=${S} |
1787 | ebegin "Removing useless C++ checks" |
1271 | ebegin "Removing useless C++ checks" |
1788 | local f |
1272 | local f p any_found |
1789 | find "${dir}" -name configure | while read f ; do |
1273 | while IFS= read -r -d '' f; do |
1790 | patch --no-backup-if-mismatch -p0 "${f}" "${PORTDIR}/eclass/ELT-patches/nocxx/nocxx.patch" > /dev/null |
1274 | for p in "${PORTDIR}"/eclass/ELT-patches/nocxx/*.patch ; do |
|
|
1275 | if patch --no-backup-if-mismatch -p1 "${f}" "${p}" >/dev/null ; then |
|
|
1276 | any_found=1 |
|
|
1277 | break |
|
|
1278 | fi |
1791 | done |
1279 | done |
|
|
1280 | done < <(find "${dir}" -name configure -print0) |
|
|
1281 | |
|
|
1282 | if [[ -z ${any_found} ]]; then |
|
|
1283 | eqawarn "epunt_cxx called unnecessarily (no C++ checks to punt)." |
|
|
1284 | fi |
1792 | eend 0 |
1285 | eend 0 |
1793 | } |
1286 | } |
1794 | |
1287 | |
1795 | # @FUNCTION: make_wrapper |
1288 | # @FUNCTION: make_wrapper |
1796 | # @USAGE: <wrapper> <target> [chdir] [libpaths] [installpath] |
1289 | # @USAGE: <wrapper> <target> [chdir] [libpaths] [installpath] |
… | |
… | |
1800 | # first optionally setting LD_LIBRARY_PATH to the colon-delimited |
1293 | # first optionally setting LD_LIBRARY_PATH to the colon-delimited |
1801 | # libpaths followed by optionally changing directory to chdir. |
1294 | # libpaths followed by optionally changing directory to chdir. |
1802 | make_wrapper() { |
1295 | make_wrapper() { |
1803 | local wrapper=$1 bin=$2 chdir=$3 libdir=$4 path=$5 |
1296 | local wrapper=$1 bin=$2 chdir=$3 libdir=$4 path=$5 |
1804 | local tmpwrapper=$(emktemp) |
1297 | local tmpwrapper=$(emktemp) |
|
|
1298 | |
|
|
1299 | ( |
|
|
1300 | echo '#!/bin/sh' |
|
|
1301 | [[ -n ${chdir} ]] && printf 'cd "%s"\n' "${chdir}" |
|
|
1302 | if [[ -n ${libdir} ]] ; then |
|
|
1303 | cat <<-EOF |
|
|
1304 | if [ "\${LD_LIBRARY_PATH+set}" = "set" ] ; then |
|
|
1305 | export LD_LIBRARY_PATH="\${LD_LIBRARY_PATH}:${libdir}" |
|
|
1306 | else |
|
|
1307 | export LD_LIBRARY_PATH="${libdir}" |
|
|
1308 | fi |
|
|
1309 | EOF |
|
|
1310 | fi |
1805 | # We don't want to quote ${bin} so that people can pass complex |
1311 | # We don't want to quote ${bin} so that people can pass complex |
1806 | # things as $bin ... "./someprog --args" |
1312 | # things as ${bin} ... "./someprog --args" |
|
|
1313 | printf 'exec %s "$@"\n' "${bin}" |
1807 | cat << EOF > "${tmpwrapper}" |
1314 | ) > "${tmpwrapper}" |
1808 | #!/bin/sh |
|
|
1809 | cd "${chdir:-.}" |
|
|
1810 | if [ -n "${libdir}" ] ; then |
|
|
1811 | if [ "\${LD_LIBRARY_PATH+set}" = "set" ] ; then |
|
|
1812 | export LD_LIBRARY_PATH="\${LD_LIBRARY_PATH}:${libdir}" |
|
|
1813 | else |
|
|
1814 | export LD_LIBRARY_PATH="${libdir}" |
|
|
1815 | fi |
|
|
1816 | fi |
|
|
1817 | exec ${bin} "\$@" |
|
|
1818 | EOF |
|
|
1819 | chmod go+rx "${tmpwrapper}" |
1315 | chmod go+rx "${tmpwrapper}" |
|
|
1316 | |
1820 | if [[ -n ${path} ]] ; then |
1317 | if [[ -n ${path} ]] ; then |
1821 | ( |
1318 | ( |
1822 | exeinto "${path}" |
1319 | exeinto "${path}" |
1823 | newexe "${tmpwrapper}" "${wrapper}" |
1320 | newexe "${tmpwrapper}" "${wrapper}" |
1824 | ) || die |
1321 | ) || die |
1825 | else |
1322 | else |
1826 | newbin "${tmpwrapper}" "${wrapper}" || die |
1323 | newbin "${tmpwrapper}" "${wrapper}" || die |
1827 | fi |
1324 | fi |
1828 | } |
1325 | } |
1829 | |
1326 | |
1830 | # @FUNCTION: prepalldocs |
1327 | # @FUNCTION: path_exists |
1831 | # @USAGE: |
1328 | # @USAGE: [-a|-o] <paths> |
1832 | # @DESCRIPTION: |
1329 | # @DESCRIPTION: |
1833 | # Compress files in /usr/share/doc which are not already |
1330 | # Check if the specified paths exist. Works for all types of paths |
1834 | # compressed, excluding /usr/share/doc/${PF}/html. |
1331 | # (files/dirs/etc...). The -a and -o flags control the requirements |
1835 | # Uses the ecompressdir to do the compression. |
1332 | # of the paths. They correspond to "and" and "or" logic. So the -a |
1836 | # 2009-02-18 by betelgeuse: |
1333 | # flag means all the paths must exist while the -o flag means at least |
1837 | # Commented because ecompressdir is even more internal to |
1334 | # 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 |
1335 | # paths are specified, then the return value is "false". |
1839 | # ebuild). Please submit a better version for review to gentoo-dev |
1336 | path_exists() { |
1840 | # if you want prepalldocs here. |
1337 | local opt=$1 |
1841 | #prepalldocs() { |
1338 | [[ ${opt} == -[ao] ]] && shift || opt="-a" |
1842 | # if [[ -n $1 ]] ; then |
1339 | |
1843 | # ewarn "prepalldocs: invalid usage; takes no arguments" |
1340 | # no paths -> return false |
|
|
1341 | # same behavior as: [[ -e "" ]] |
|
|
1342 | [[ $# -eq 0 ]] && return 1 |
|
|
1343 | |
|
|
1344 | local p r=0 |
|
|
1345 | for p in "$@" ; do |
|
|
1346 | [[ -e ${p} ]] |
|
|
1347 | : $(( r += $? )) |
|
|
1348 | done |
|
|
1349 | |
|
|
1350 | case ${opt} in |
|
|
1351 | -a) return $(( r != 0 )) ;; |
|
|
1352 | -o) return $(( r == $# )) ;; |
|
|
1353 | esac |
|
|
1354 | } |
|
|
1355 | |
|
|
1356 | # @FUNCTION: in_iuse |
|
|
1357 | # @USAGE: <flag> |
|
|
1358 | # @DESCRIPTION: |
|
|
1359 | # Determines whether the given flag is in IUSE. Strips IUSE default prefixes |
|
|
1360 | # as necessary. |
|
|
1361 | # |
|
|
1362 | # Note that this function should not be used in the global scope. |
|
|
1363 | in_iuse() { |
|
|
1364 | debug-print-function ${FUNCNAME} "${@}" |
|
|
1365 | [[ ${#} -eq 1 ]] || die "Invalid args to ${FUNCNAME}()" |
|
|
1366 | |
|
|
1367 | local flag=${1} |
|
|
1368 | local liuse=( ${IUSE} ) |
|
|
1369 | |
|
|
1370 | has "${flag}" "${liuse[@]#[+-]}" |
|
|
1371 | } |
|
|
1372 | |
|
|
1373 | # @FUNCTION: use_if_iuse |
|
|
1374 | # @USAGE: <flag> |
|
|
1375 | # @DESCRIPTION: |
|
|
1376 | # Return true if the given flag is in USE and IUSE. |
|
|
1377 | # |
|
|
1378 | # Note that this function should not be used in the global scope. |
|
|
1379 | use_if_iuse() { |
|
|
1380 | in_iuse $1 || return 1 |
|
|
1381 | use $1 |
|
|
1382 | } |
|
|
1383 | |
|
|
1384 | # @FUNCTION: usex |
|
|
1385 | # @USAGE: <USE flag> [true output] [false output] [true suffix] [false suffix] |
|
|
1386 | # @DESCRIPTION: |
|
|
1387 | # Proxy to declare usex for package managers or EAPIs that do not provide it |
|
|
1388 | # and use the package manager implementation when available (i.e. EAPI >= 5). |
|
|
1389 | # If USE flag is set, echo [true output][true suffix] (defaults to "yes"), |
|
|
1390 | # otherwise echo [false output][false suffix] (defaults to "no"). |
|
|
1391 | if has "${EAPI:-0}" 0 1 2 3 4; then |
|
|
1392 | usex() { use "$1" && echo "${2-yes}$4" || echo "${3-no}$5" ; } #382963 |
|
|
1393 | fi |
|
|
1394 | |
|
|
1395 | # @FUNCTION: prune_libtool_files |
|
|
1396 | # @USAGE: [--all|--modules] |
|
|
1397 | # @DESCRIPTION: |
|
|
1398 | # Locate unnecessary libtool files (.la) and libtool static archives |
|
|
1399 | # (.a) and remove them from installation image. |
|
|
1400 | # |
|
|
1401 | # By default, .la files are removed whenever the static linkage can |
|
|
1402 | # either be performed using pkg-config or doesn't introduce additional |
|
|
1403 | # flags. |
|
|
1404 | # |
|
|
1405 | # If '--modules' argument is passed, .la files for modules (plugins) are |
|
|
1406 | # removed as well. This is usually useful when the package installs |
|
|
1407 | # plugins and the plugin loader does not use .la files. |
|
|
1408 | # |
|
|
1409 | # If '--all' argument is passed, all .la files are removed without |
|
|
1410 | # performing any heuristic on them. You shouldn't ever use that, |
|
|
1411 | # and instead report a bug in the algorithm instead. |
|
|
1412 | # |
|
|
1413 | # The .a files are only removed whenever corresponding .la files state |
|
|
1414 | # that they should not be linked to, i.e. whenever these files |
|
|
1415 | # correspond to plugins. |
|
|
1416 | # |
|
|
1417 | # Note: if your package installs both static libraries and .pc files |
|
|
1418 | # which use variable substitution for -l flags, you need to add |
|
|
1419 | # pkg-config to your DEPEND. |
|
|
1420 | prune_libtool_files() { |
|
|
1421 | debug-print-function ${FUNCNAME} "$@" |
|
|
1422 | |
|
|
1423 | local removing_all removing_modules opt |
|
|
1424 | for opt; do |
|
|
1425 | case "${opt}" in |
|
|
1426 | --all) |
|
|
1427 | removing_all=1 |
|
|
1428 | removing_modules=1 |
|
|
1429 | ;; |
|
|
1430 | --modules) |
|
|
1431 | removing_modules=1 |
|
|
1432 | ;; |
|
|
1433 | *) |
|
|
1434 | die "Invalid argument to ${FUNCNAME}(): ${opt}" |
|
|
1435 | esac |
|
|
1436 | done |
|
|
1437 | |
|
|
1438 | local f |
|
|
1439 | local queue=() |
|
|
1440 | while IFS= read -r -d '' f; do # for all .la files |
|
|
1441 | local archivefile=${f/%.la/.a} |
|
|
1442 | |
|
|
1443 | [[ ${f} != ${archivefile} ]] || die 'regex sanity check failed' |
|
|
1444 | |
|
|
1445 | local reason pkgconfig_scanned |
|
|
1446 | |
|
|
1447 | # Remove static libs we're not supposed to link against. |
|
|
1448 | if grep -q '^shouldnotlink=yes$' "${f}"; then |
|
|
1449 | if [[ -f ${archivefile} ]]; then |
|
|
1450 | einfo "Removing unnecessary ${archivefile#${D%/}} (static plugin)" |
|
|
1451 | queue+=( "${archivefile}" ) |
|
|
1452 | fi |
|
|
1453 | |
|
|
1454 | # The .la file may be used by a module loader, so avoid removing it |
|
|
1455 | # unless explicitly requested. |
|
|
1456 | if [[ ${removing_modules} ]]; then |
|
|
1457 | reason='module' |
|
|
1458 | fi |
|
|
1459 | |
|
|
1460 | # Remove .la files when: |
|
|
1461 | # - user explicitly wants us to remove all .la files, |
|
|
1462 | # - respective static archive doesn't exist, |
|
|
1463 | # - they are covered by a .pc file already, |
|
|
1464 | # - they don't provide any new information (no libs & no flags). |
|
|
1465 | |
|
|
1466 | elif [[ ${removing_all} ]]; then |
|
|
1467 | reason='requested' |
|
|
1468 | elif [[ ! -f ${archivefile} ]]; then |
|
|
1469 | reason='no static archive' |
|
|
1470 | elif [[ ! $(sed -nre \ |
|
|
1471 | "s/^(dependency_libs|inherited_linker_flags)='(.*)'$/\2/p" \ |
|
|
1472 | "${f}") ]]; then |
|
|
1473 | reason='no libs & flags' |
|
|
1474 | else |
|
|
1475 | if [[ ! ${pkgconfig_scanned} ]]; then |
|
|
1476 | # Create a list of all .pc-covered libs. |
|
|
1477 | local pc_libs=() |
|
|
1478 | if [[ ! ${removing_all} ]]; then |
|
|
1479 | local pc |
|
|
1480 | local tf=${T}/prune-lt-files.pc |
|
|
1481 | local pkgconf=$(tc-getPKG_CONFIG) |
|
|
1482 | |
|
|
1483 | while IFS= read -r -d '' pc; do # for all .pc files |
|
|
1484 | local arg libs |
|
|
1485 | |
|
|
1486 | # Use pkg-config if available (and works), |
|
|
1487 | # fallback to sed. |
|
|
1488 | if ${pkgconf} --exists "${pc}" &>/dev/null; then |
|
|
1489 | sed -e '/^Requires:/d' "${pc}" > "${tf}" |
|
|
1490 | libs=$(${pkgconf} --libs "${tf}") |
|
|
1491 | else |
|
|
1492 | libs=$(sed -ne 's/^Libs://p' "${pc}") |
|
|
1493 | fi |
|
|
1494 | |
|
|
1495 | for arg in ${libs}; do |
|
|
1496 | if [[ ${arg} == -l* ]]; then |
|
|
1497 | if [[ ${arg} == '*$*' ]]; then |
|
|
1498 | eqawarn "${FUNCNAME}: variable substitution likely failed in ${pc}" |
|
|
1499 | eqawarn "(arg: ${arg})" |
|
|
1500 | eqawarn "Most likely, you need to add virtual/pkgconfig to DEPEND." |
|
|
1501 | fi |
|
|
1502 | |
|
|
1503 | pc_libs+=( lib${arg#-l}.la ) |
|
|
1504 | fi |
|
|
1505 | done |
|
|
1506 | done < <(find "${D}" -type f -name '*.pc' -print0) |
|
|
1507 | |
|
|
1508 | rm -f "${tf}" |
|
|
1509 | fi |
|
|
1510 | |
|
|
1511 | pkgconfig_scanned=1 |
|
|
1512 | fi |
|
|
1513 | |
|
|
1514 | has "${f##*/}" "${pc_libs[@]}" && reason='covered by .pc' |
|
|
1515 | fi |
|
|
1516 | |
|
|
1517 | if [[ ${reason} ]]; then |
|
|
1518 | einfo "Removing unnecessary ${f#${D%/}} (${reason})" |
|
|
1519 | queue+=( "${f}" ) |
|
|
1520 | fi |
|
|
1521 | done < <(find "${D}" -xtype f -name '*.la' -print0) |
|
|
1522 | |
|
|
1523 | if [[ ${queue[@]} ]]; then |
|
|
1524 | rm -f "${queue[@]}" |
1844 | # fi |
1525 | fi |
|
|
1526 | } |
1845 | |
1527 | |
1846 | # cd "${D}" |
1528 | check_license() { die "you no longer need this as portage supports ACCEPT_LICENSE itself"; } |
1847 | # [[ -d usr/share/doc ]] || return 0 |
|
|
1848 | |
1529 | |
1849 | # find usr/share/doc -exec gzip {} + |
1530 | fi |
1850 | # ecompressdir --ignore /usr/share/doc/${PF}/html |
|
|
1851 | # ecompressdir --queue /usr/share/doc |
|
|
1852 | #} |
|
|