| 1 | # Copyright 1999-2003 Gentoo Technologies, Inc. |
1 | # Copyright 1999-2012 Gentoo Foundation |
| 2 | # Distributed under the terms of the GNU General Public License v2 |
2 | # Distributed under the terms of the GNU General Public License v2 |
| 3 | # $Header: /var/cvsroot/gentoo-x86/eclass/eutils.eclass,v 1.24 2003/03/03 21:27:15 vapier Exp $ |
3 | # $Header: /var/cvsroot/gentoo-x86/eclass/eutils.eclass,v 1.408 2012/10/11 16:52:05 mgorny Exp $ |
| 4 | # |
|
|
| 5 | # Author: Martin Schlemmer <azarah@gentoo.org> |
|
|
| 6 | # |
|
|
| 7 | # This eclass is for general purpose functions that most ebuilds |
|
|
| 8 | # have to implement themselves. |
|
|
| 9 | # |
|
|
| 10 | # NB: If you add anything, please comment it! |
|
|
| 11 | |
4 | |
| 12 | ECLASS=eutils |
5 | # @ECLASS: eutils.eclass |
| 13 | INHERITED="$INHERITED $ECLASS" |
6 | # @MAINTAINER: |
| 14 | |
7 | # base-system@gentoo.org |
| 15 | newdepend "!bootstrap? ( sys-devel/patch )" |
8 | # @BLURB: many extra (but common) functions that are used in ebuilds |
| 16 | |
9 | # @DESCRIPTION: |
| 17 | DESCRIPTION="Based on the ${ECLASS} eclass" |
10 | # The eutils eclass contains a suite of functions that complement |
| 18 | |
11 | # the ones that ebuild.sh already contain. The idea is that the functions |
| 19 | # This function generate linker scripts in /usr/lib for dynamic |
12 | # are not required in all ebuilds but enough utilize them to have a common |
| 20 | # libs in /lib. This is to fix linking problems when you have |
13 | # home rather than having multiple ebuilds implementing the same thing. |
| 21 | # the .so in /lib, and the .a in /usr/lib. What happens is that |
|
|
| 22 | # in some cases when linking dynamic, the .a in /usr/lib is used |
|
|
| 23 | # instead of the .so in /lib due to gcc/libtool tweaking ld's |
|
|
| 24 | # library search path. This cause many builds to fail. |
|
|
| 25 | # See bug #4411 for more info. |
|
|
| 26 | # |
14 | # |
| 27 | # To use, simply call: |
15 | # Due to the nature of this eclass, some functions may have maintainers |
| 28 | # |
16 | # different from the overall eclass! |
| 29 | # gen_usr_ldscript libfoo.so |
|
|
| 30 | # |
|
|
| 31 | # Note that you should in general use the unversioned name of |
|
|
| 32 | # the library, as ldconfig should usually update it correctly |
|
|
| 33 | # to point to the latest version of the library present. |
|
|
| 34 | # |
|
|
| 35 | # <azarah@gentoo.org> (26 Oct 2002) |
|
|
| 36 | # |
|
|
| 37 | gen_usr_ldscript() { |
|
|
| 38 | |
17 | |
| 39 | # Just make sure it exists |
18 | if [[ ${___ECLASS_ONCE_EUTILS} != "recur -_+^+_- spank" ]] ; then |
| 40 | dodir /usr/lib |
19 | ___ECLASS_ONCE_EUTILS="recur -_+^+_- spank" |
| 41 | |
|
|
| 42 | cat > ${D}/usr/lib/$1 <<"END_LDSCRIPT" |
|
|
| 43 | /* GNU ld script |
|
|
| 44 | Because Gentoo have critical dynamic libraries |
|
|
| 45 | in /lib, and the static versions in /usr/lib, we |
|
|
| 46 | need to have a "fake" dynamic lib in /usr/lib, |
|
|
| 47 | otherwise we run into linking problems. |
|
|
| 48 | See bug #4411 on http://bugs.gentoo.org/ for |
|
|
| 49 | more info. */ |
|
|
| 50 | GROUP ( /lib/libxxx ) |
|
|
| 51 | END_LDSCRIPT |
|
|
| 52 | |
20 | |
| 53 | dosed "s:libxxx:$1:" /usr/lib/$1 |
21 | inherit multilib toolchain-funcs user |
| 54 | |
22 | |
| 55 | return 0 |
23 | if has "${EAPI:-0}" 0 1 2; then |
| 56 | } |
|
|
| 57 | |
24 | |
| 58 | # Simple function to draw a line consisting of '=' the same length as $* |
25 | # @FUNCTION: epause |
| 59 | # |
26 | # @USAGE: [seconds] |
| 60 | # <azarah@gentoo.org> (11 Nov 2002) |
27 | # @DESCRIPTION: |
| 61 | # |
28 | # Sleep for the specified number of seconds (default of 5 seconds). Useful when |
| 62 | draw_line() { |
29 | # printing a message the user should probably be reading and often used in |
|
|
30 | # conjunction with the ebeep function. If the EPAUSE_IGNORE env var is set, |
|
|
31 | # don't wait at all. Defined in EAPIs 0 1 and 2. |
|
|
32 | epause() { |
|
|
33 | [[ -z ${EPAUSE_IGNORE} ]] && sleep ${1:-5} |
|
|
34 | } |
|
|
35 | |
|
|
36 | # @FUNCTION: ebeep |
|
|
37 | # @USAGE: [number of beeps] |
|
|
38 | # @DESCRIPTION: |
|
|
39 | # Issue the specified number of beeps (default of 5 beeps). Useful when |
|
|
40 | # printing a message the user should probably be reading and often used in |
|
|
41 | # conjunction with the epause function. If the EBEEP_IGNORE env var is set, |
|
|
42 | # don't beep at all. Defined in EAPIs 0 1 and 2. |
|
|
43 | ebeep() { |
| 63 | local i=0 |
44 | local n |
| 64 | local str_length="" |
45 | if [[ -z ${EBEEP_IGNORE} ]] ; then |
| 65 | |
46 | for ((n=1 ; n <= ${1:-5} ; n++)) ; do |
| 66 | # Handle calls that do not have args, or wc not being installed ... |
|
|
| 67 | if [ -z "$1" -o ! -x "$(which wc 2>/dev/null)" ] |
|
|
| 68 | then |
|
|
| 69 | echo "===============================================================" |
|
|
| 70 | return 0 |
|
|
| 71 | fi |
|
|
| 72 | |
|
|
| 73 | # Get the length of $* |
|
|
| 74 | str_length="$(echo -n "$*" | wc -m)" |
|
|
| 75 | |
|
|
| 76 | while [ "$i" -lt "${str_length}" ] |
|
|
| 77 | do |
|
|
| 78 | echo -n "=" |
47 | echo -ne "\a" |
| 79 | |
48 | sleep 0.1 &>/dev/null ; sleep 0,1 &>/dev/null |
| 80 | i=$((i + 1)) |
49 | echo -ne "\a" |
|
|
50 | sleep 1 |
| 81 | done |
51 | done |
|
|
52 | fi |
|
|
53 | } |
| 82 | |
54 | |
| 83 | echo |
55 | else |
| 84 | |
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 | |
|
|
80 | # @FUNCTION: ecvs_clean |
|
|
81 | # @USAGE: [list of dirs] |
|
|
82 | # @DESCRIPTION: |
|
|
83 | # Remove CVS directories recursiveley. Useful when a source tarball contains |
|
|
84 | # internal CVS directories. Defaults to $PWD. |
|
|
85 | ecvs_clean() { |
|
|
86 | [[ -z $* ]] && set -- . |
|
|
87 | find "$@" -type d -name 'CVS' -prune -print0 | xargs -0 rm -rf |
|
|
88 | find "$@" -type f -name '.cvs*' -print0 | xargs -0 rm -rf |
|
|
89 | } |
|
|
90 | |
|
|
91 | # @FUNCTION: esvn_clean |
|
|
92 | # @USAGE: [list of dirs] |
|
|
93 | # @DESCRIPTION: |
|
|
94 | # Remove .svn directories recursiveley. Useful when a source tarball contains |
|
|
95 | # internal Subversion directories. Defaults to $PWD. |
|
|
96 | esvn_clean() { |
|
|
97 | [[ -z $* ]] && set -- . |
|
|
98 | find "$@" -type d -name '.svn' -prune -print0 | xargs -0 rm -rf |
|
|
99 | } |
|
|
100 | |
|
|
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 |
| 85 | return 0 |
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 |
| 86 | } |
182 | } |
| 87 | |
183 | |
| 88 | # Default directory where patches are located |
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. |
| 89 | EPATCH_SOURCE="${WORKDIR}/patch" |
224 | EPATCH_SOURCE="${WORKDIR}/patch" |
| 90 | # Default extension for patches |
225 | # @VARIABLE: EPATCH_SUFFIX |
|
|
226 | # @DESCRIPTION: |
|
|
227 | # Default extension for patches (do not prefix the period yourself). |
| 91 | EPATCH_SUFFIX="patch.bz2" |
228 | EPATCH_SUFFIX="patch.bz2" |
| 92 | # 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. |
| 93 | EPATCH_OPTS="" |
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 |
|
|
241 | # -g0 - keep RCS, ClearCase, Perforce and SCCS happy #24571 |
|
|
242 | # --no-backup-if-mismatch - do not leave .orig files behind |
|
|
243 | # -E - automatically remove empty files |
|
|
244 | # @CODE |
|
|
245 | EPATCH_COMMON_OPTS="-g0 -E --no-backup-if-mismatch" |
|
|
246 | # @VARIABLE: EPATCH_EXCLUDE |
|
|
247 | # @DESCRIPTION: |
| 94 | # List of patches not to apply. Not this is only file names, |
248 | # List of patches not to apply. Note this is only file names, |
| 95 | # and not the full path .. |
249 | # and not the full path. Globs accepted. |
| 96 | EPATCH_EXCLUDE="" |
250 | EPATCH_EXCLUDE="" |
|
|
251 | # @VARIABLE: EPATCH_SINGLE_MSG |
|
|
252 | # @DESCRIPTION: |
| 97 | # Change the printed message for a single patch. |
253 | # Change the printed message for a single patch. |
| 98 | EPATCH_SINGLE_MSG="" |
254 | EPATCH_SINGLE_MSG="" |
|
|
255 | # @VARIABLE: EPATCH_MULTI_MSG |
|
|
256 | # @DESCRIPTION: |
|
|
257 | # Change the printed message for multiple patches. |
|
|
258 | EPATCH_MULTI_MSG="Applying various patches (bugfixes/updates) ..." |
|
|
259 | # @VARIABLE: EPATCH_FORCE |
|
|
260 | # @DESCRIPTION: |
|
|
261 | # Only require patches to match EPATCH_SUFFIX rather than the extended |
|
|
262 | # arch naming style. |
|
|
263 | EPATCH_FORCE="no" |
| 99 | |
264 | |
| 100 | # This function is for bulk patching, or in theory for just one |
265 | # @FUNCTION: epatch |
| 101 | # 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. |
| 102 | # |
273 | # |
| 103 | # 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 |
| 104 | # Currently all patches should be the same format. |
275 | # directory specified by EPATCH_SOURCE. |
| 105 | # |
276 | # |
| 106 | # 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 |
| 107 | # 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. |
| 108 | # |
280 | # |
| 109 | # Above EPATCH_* variables can be used to control various defaults, |
281 | # When processing directories, epatch will apply all patches that match: |
| 110 | # bug they should be left as is to ensure an ebuild can rely on |
282 | # @CODE |
| 111 | # them for. |
283 | # if ${EPATCH_FORCE} != "yes" |
| 112 | # |
|
|
| 113 | # Patches are applied in current directory. |
|
|
| 114 | # |
|
|
| 115 | # Bulk Patches should preferibly have the form of: |
|
|
| 116 | # |
|
|
| 117 | # ??_${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. |
| 118 | # |
293 | # |
| 119 | # For example: |
294 | # If EPATCH_SUFFIX is empty, then no period before it is implied when searching |
|
|
295 | # for patches to apply. |
| 120 | # |
296 | # |
| 121 | # 01_all_misc-fix.patch.bz2 |
297 | # Refer to the other EPATCH_xxx variables for more customization of behavior. |
| 122 | # 02_sparc_another-fix.patch.bz2 |
|
|
| 123 | # |
|
|
| 124 | # This ensures that there are a set order, and you can have ARCH |
|
|
| 125 | # specific patches. |
|
|
| 126 | # |
|
|
| 127 | # If you however give an argument to epatch(), it will treat it as a |
|
|
| 128 | # single patch that need to be applied if its a file. If on the other |
|
|
| 129 | # hand its a directory, it will set EPATCH_SOURCE to this. |
|
|
| 130 | # |
|
|
| 131 | # <azarah@gentoo.org> (10 Nov 2002) |
|
|
| 132 | # |
|
|
| 133 | epatch() { |
298 | epatch() { |
| 134 | local PIPE_CMD="" |
299 | _epatch_draw_line() { |
| 135 | local STDERR_TARGET="${T}/$$.out" |
300 | # create a line of same length as input string |
| 136 | local PATCH_TARGET="${T}/$$.patch" |
301 | [[ -z $1 ]] && set "$(printf "%65s" '')" |
| 137 | local PATCH_SUFFIX="" |
302 | echo "${1//?/=}" |
|
|
303 | } |
|
|
304 | |
|
|
305 | unset P4CONFIG P4PORT P4USER # keep perforce at bay #56402 |
|
|
306 | |
|
|
307 | # First process options. We localize the EPATCH_OPTS setting |
|
|
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 |
|
|
323 | local m |
|
|
324 | for m in "$@" ; do |
|
|
325 | epatch "${m}" |
|
|
326 | done |
|
|
327 | return 0 |
|
|
328 | fi |
|
|
329 | |
| 138 | local SINGLE_PATCH="no" |
330 | local SINGLE_PATCH="no" |
| 139 | local x="" |
331 | # no args means process ${EPATCH_SOURCE} |
|
|
332 | [[ $# -eq 0 ]] && set -- "${EPATCH_SOURCE}" |
| 140 | |
333 | |
| 141 | if [ "$#" -gt 1 ] |
334 | if [[ -f $1 ]] ; then |
| 142 | then |
|
|
| 143 | eerror "Invalid arguments to epatch()" |
|
|
| 144 | die "Invalid arguments to epatch()" |
|
|
| 145 | fi |
|
|
| 146 | |
|
|
| 147 | if [ -n "$1" -a -f "$1" ] |
|
|
| 148 | then |
|
|
| 149 | SINGLE_PATCH="yes" |
335 | SINGLE_PATCH="yes" |
| 150 | |
336 | set -- "$1" |
| 151 | local EPATCH_SOURCE="$1" |
337 | # Use the suffix from the single patch (localize it); the code |
|
|
338 | # below will find the suffix for us |
| 152 | local EPATCH_SUFFIX="${1##*\.}" |
339 | local EPATCH_SUFFIX=$1 |
| 153 | |
340 | |
| 154 | elif [ -n "$1" -a -d "$1" ] |
341 | elif [[ -d $1 ]] ; then |
| 155 | then |
342 | # Some people like to make dirs of patches w/out suffixes (vim) |
| 156 | local EPATCH_SOURCE="$1/*.${EPATCH_SUFFIX}" |
343 | set -- "$1"/*${EPATCH_SUFFIX:+."${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 | |
| 157 | else |
350 | else |
| 158 | if [ ! -d ${EPATCH_SOURCE} ] |
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} ]] |
| 159 | then |
396 | then |
| 160 | if [ -n "$1" -a "${EPATCH_SOURCE}" = "${WORKDIR}/patch" ] |
397 | continue |
| 161 | then |
398 | fi |
| 162 | EPATCH_SOURCE="$1" |
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} ..." |
| 163 | fi |
421 | fi |
|
|
422 | else |
|
|
423 | einfo " ${patchname} ..." |
|
|
424 | fi |
| 164 | |
425 | |
|
|
426 | # most of the time, there will only be one run per unique name, |
|
|
427 | # but if there are more, make sure we get unique log filenames |
|
|
428 | local STDERR_TARGET="${T}/${patchname}.out" |
|
|
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 |
|
|
448 | fi |
|
|
449 | else |
|
|
450 | PATCH_TARGET=${x} |
|
|
451 | fi |
|
|
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} *****" |
| 165 | echo |
478 | echo |
| 166 | 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} )" |
| 167 | eerror |
525 | eerror |
| 168 | eerror " ${EPATCH_SOURCE}" |
526 | eerror "Include in your bugreport the contents of:" |
|
|
527 | eerror |
|
|
528 | eerror " ${STDERR_TARGET}" |
| 169 | echo |
529 | echo |
| 170 | die "Cannot find \$EPATCH_SOURCE!" |
530 | die "Failed Patch: ${patchname}!" |
| 171 | fi |
|
|
| 172 | |
|
|
| 173 | local EPATCH_SOURCE="${EPATCH_SOURCE}/*.${EPATCH_SUFFIX}" |
|
|
| 174 | fi |
531 | fi |
| 175 | |
532 | |
| 176 | case ${EPATCH_SUFFIX##*\.} in |
533 | # if everything worked, delete the full debug patch log |
| 177 | bz2) |
534 | rm -f "${STDERR_TARGET}" |
| 178 | PIPE_CMD="bzip2 -dc" |
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 |
|
|
543 | eend 0 |
|
|
544 | done |
|
|
545 | |
|
|
546 | [[ ${SINGLE_PATCH} == "no" ]] && 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} \ |
| 179 | PATCH_SUFFIX="bz2" |
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 |
|
|
598 | fi |
|
|
599 | done |
|
|
600 | echo "none" > "${applied}" |
|
|
601 | return 1 |
|
|
602 | } |
|
|
603 | |
|
|
604 | # @FUNCTION: emktemp |
|
|
605 | # @USAGE: [temp dir] |
|
|
606 | # @DESCRIPTION: |
|
|
607 | # Cheap replacement for when debianutils (and thus mktemp) |
|
|
608 | # does not exist on the users system. |
|
|
609 | emktemp() { |
|
|
610 | local exe="touch" |
|
|
611 | [[ $1 == -d ]] && exe="mkdir" && shift |
|
|
612 | local topdir=$1 |
|
|
613 | |
|
|
614 | if [[ -z ${topdir} ]] ; then |
|
|
615 | [[ -z ${T} ]] \ |
|
|
616 | && topdir="/tmp" \ |
|
|
617 | || topdir=${T} |
|
|
618 | fi |
|
|
619 | |
|
|
620 | if ! type -P mktemp > /dev/null ; then |
|
|
621 | # system lacks `mktemp` so we have to fake it |
|
|
622 | local tmp=/ |
|
|
623 | while [[ -e ${tmp} ]] ; do |
|
|
624 | tmp=${topdir}/tmp.${RANDOM}.${RANDOM}.${RANDOM} |
|
|
625 | done |
|
|
626 | ${exe} "${tmp}" || ${exe} -p "${tmp}" |
|
|
627 | echo "${tmp}" |
|
|
628 | else |
|
|
629 | # the args here will give slightly wierd names on BSD, |
|
|
630 | # but should produce a usable file on all userlands |
|
|
631 | if [[ ${exe} == "touch" ]] ; then |
|
|
632 | TMPDIR="${topdir}" mktemp -t tmp.XXXXXXXXXX |
|
|
633 | else |
|
|
634 | TMPDIR="${topdir}" mktemp -dt tmp.XXXXXXXXXX |
|
|
635 | fi |
|
|
636 | fi |
|
|
637 | } |
|
|
638 | |
|
|
639 | # @FUNCTION: edos2unix |
|
|
640 | # @USAGE: <file> [more files ...] |
|
|
641 | # @DESCRIPTION: |
|
|
642 | # A handy replacement for dos2unix, recode, fixdos, etc... This allows you |
|
|
643 | # to remove all of these text utilities from DEPEND variables because this |
|
|
644 | # is a script based solution. Just give it a list of files to convert and |
|
|
645 | # they will all be changed from the DOS CRLF format to the UNIX LF format. |
|
|
646 | edos2unix() { |
|
|
647 | [[ $# -eq 0 ]] && return 0 |
|
|
648 | sed -i 's/\r$//' -- "$@" || die |
|
|
649 | } |
|
|
650 | |
|
|
651 | # @FUNCTION: make_desktop_entry |
|
|
652 | # @USAGE: make_desktop_entry(<command>, [name], [icon], [type], [fields]) |
|
|
653 | # @DESCRIPTION: |
|
|
654 | # Make a .desktop file. |
|
|
655 | # |
|
|
656 | # @CODE |
|
|
657 | # binary: what command does the app run with ? |
|
|
658 | # name: the name that will show up in the menu |
|
|
659 | # icon: the icon to use in the menu entry |
|
|
660 | # this can be relative (to /usr/share/pixmaps) or |
|
|
661 | # a full path to an icon |
|
|
662 | # type: what kind of application is this? |
|
|
663 | # for categories: |
|
|
664 | # http://standards.freedesktop.org/menu-spec/latest/apa.html |
|
|
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 |
|
|
668 | make_desktop_entry() { |
|
|
669 | [[ -z $1 ]] && die "make_desktop_entry: You must specify the executable" |
|
|
670 | |
|
|
671 | local exec=${1} |
|
|
672 | local name=${2:-${PN}} |
|
|
673 | local icon=${3:-${PN}} |
|
|
674 | local type=${4} |
|
|
675 | local fields=${5} |
|
|
676 | |
|
|
677 | if [[ -z ${type} ]] ; then |
|
|
678 | local catmaj=${CATEGORY%%-*} |
|
|
679 | local catmin=${CATEGORY##*-} |
|
|
680 | case ${catmaj} in |
|
|
681 | app) |
|
|
682 | case ${catmin} in |
|
|
683 | accessibility) type="Utility;Accessibility";; |
|
|
684 | admin) type=System;; |
|
|
685 | antivirus) type=System;; |
|
|
686 | arch) type="Utility;Archiving";; |
|
|
687 | backup) type="Utility;Archiving";; |
|
|
688 | cdr) type="AudioVideo;DiscBurning";; |
|
|
689 | dicts) type="Office;Dictionary";; |
|
|
690 | doc) type=Documentation;; |
|
|
691 | editors) type="Utility;TextEditor";; |
|
|
692 | emacs) type="Development;TextEditor";; |
|
|
693 | emulation) type="System;Emulator";; |
|
|
694 | laptop) type="Settings;HardwareSettings";; |
|
|
695 | office) type=Office;; |
|
|
696 | pda) type="Office;PDA";; |
|
|
697 | vim) type="Development;TextEditor";; |
|
|
698 | xemacs) type="Development;TextEditor";; |
|
|
699 | esac |
| 180 | ;; |
700 | ;; |
| 181 | gz|Z|z) |
701 | |
| 182 | PIPE_CMD="gzip -dc" |
702 | dev) |
| 183 | PATCH_SUFFIX="gz" |
703 | type="Development" |
| 184 | ;; |
704 | ;; |
| 185 | ZIP|zip) |
705 | |
| 186 | PIPE_CMD="unzip -p" |
706 | games) |
| 187 | PATCH_SUFFIX="zip" |
707 | case ${catmin} in |
|
|
708 | action|fps) type=ActionGame;; |
|
|
709 | arcade) type=ArcadeGame;; |
|
|
710 | board) type=BoardGame;; |
|
|
711 | emulation) type=Emulator;; |
|
|
712 | kids) type=KidsGame;; |
|
|
713 | puzzle) type=LogicGame;; |
|
|
714 | roguelike) type=RolePlaying;; |
|
|
715 | rpg) type=RolePlaying;; |
|
|
716 | simulation) type=Simulation;; |
|
|
717 | sports) type=SportsGame;; |
|
|
718 | strategy) type=StrategyGame;; |
|
|
719 | esac |
|
|
720 | type="Game;${type}" |
| 188 | ;; |
721 | ;; |
|
|
722 | |
|
|
723 | gnome) |
|
|
724 | type="Gnome;GTK" |
|
|
725 | ;; |
|
|
726 | |
|
|
727 | kde) |
|
|
728 | type="KDE;Qt" |
|
|
729 | ;; |
|
|
730 | |
|
|
731 | mail) |
|
|
732 | type="Network;Email" |
|
|
733 | ;; |
|
|
734 | |
|
|
735 | media) |
|
|
736 | case ${catmin} in |
|
|
737 | gfx) |
|
|
738 | type=Graphics |
|
|
739 | ;; |
|
|
740 | *) |
|
|
741 | case ${catmin} in |
|
|
742 | radio) type=Tuner;; |
|
|
743 | sound) type=Audio;; |
|
|
744 | tv) type=TV;; |
|
|
745 | video) type=Video;; |
|
|
746 | esac |
|
|
747 | type="AudioVideo;${type}" |
|
|
748 | ;; |
|
|
749 | esac |
|
|
750 | ;; |
|
|
751 | |
|
|
752 | net) |
|
|
753 | case ${catmin} in |
|
|
754 | dialup) type=Dialup;; |
|
|
755 | ftp) type=FileTransfer;; |
|
|
756 | im) type=InstantMessaging;; |
|
|
757 | irc) type=IRCClient;; |
|
|
758 | mail) type=Email;; |
|
|
759 | news) type=News;; |
|
|
760 | nntp) type=News;; |
|
|
761 | p2p) type=FileTransfer;; |
|
|
762 | voip) type=Telephony;; |
|
|
763 | esac |
|
|
764 | type="Network;${type}" |
|
|
765 | ;; |
|
|
766 | |
|
|
767 | sci) |
|
|
768 | case ${catmin} in |
|
|
769 | astro*) type=Astronomy;; |
|
|
770 | bio*) type=Biology;; |
|
|
771 | calc*) type=Calculator;; |
|
|
772 | chem*) type=Chemistry;; |
|
|
773 | elec*) type=Electronics;; |
|
|
774 | geo*) type=Geology;; |
|
|
775 | math*) type=Math;; |
|
|
776 | physics) type=Physics;; |
|
|
777 | visual*) type=DataVisualization;; |
|
|
778 | esac |
|
|
779 | type="Education;Science;${type}" |
|
|
780 | ;; |
|
|
781 | |
|
|
782 | sys) |
|
|
783 | type="System" |
|
|
784 | ;; |
|
|
785 | |
|
|
786 | www) |
|
|
787 | case ${catmin} in |
|
|
788 | client) type=WebBrowser;; |
|
|
789 | esac |
|
|
790 | type="Network;${type}" |
|
|
791 | ;; |
|
|
792 | |
|
|
793 | *) |
|
|
794 | type= |
|
|
795 | ;; |
|
|
796 | esac |
|
|
797 | fi |
|
|
798 | if [ "${SLOT}" == "0" ] ; then |
|
|
799 | local desktop_name="${PN}" |
|
|
800 | else |
|
|
801 | local desktop_name="${PN}-${SLOT}" |
|
|
802 | fi |
|
|
803 | local desktop="${T}/$(echo ${exec} | sed 's:[[:space:]/:]:_:g')-${desktop_name}.desktop" |
|
|
804 | #local desktop=${T}/${exec%% *:-${desktop_name}}.desktop |
|
|
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 | |
|
|
817 | cat <<-EOF > "${desktop}" |
|
|
818 | [Desktop Entry] |
|
|
819 | Name=${name} |
|
|
820 | Type=Application |
|
|
821 | Comment=${DESCRIPTION} |
|
|
822 | Exec=${exec} |
|
|
823 | TryExec=${exec%% *} |
|
|
824 | Icon=${icon} |
|
|
825 | Categories=${type} |
|
|
826 | EOF |
|
|
827 | |
|
|
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}" |
|
|
834 | |
|
|
835 | ( |
|
|
836 | # wrap the env here so that the 'insinto' call |
|
|
837 | # doesn't corrupt the env of the caller |
|
|
838 | insinto /usr/share/applications |
|
|
839 | doins "${desktop}" |
|
|
840 | ) || die "installing desktop file failed" |
|
|
841 | } |
|
|
842 | |
|
|
843 | # @FUNCTION: validate_desktop_entries |
|
|
844 | # @USAGE: [directories] |
|
|
845 | # @MAINTAINER: |
|
|
846 | # Carsten Lohrke <carlo@gentoo.org> |
|
|
847 | # @DESCRIPTION: |
|
|
848 | # Validate desktop entries using desktop-file-utils |
|
|
849 | validate_desktop_entries() { |
|
|
850 | if [[ -x /usr/bin/desktop-file-validate ]] ; then |
|
|
851 | einfo "Checking desktop entry validity" |
|
|
852 | local directories="" |
|
|
853 | for d in /usr/share/applications $@ ; do |
|
|
854 | [[ -d ${D}${d} ]] && directories="${directories} ${D}${d}" |
|
|
855 | done |
|
|
856 | if [[ -n ${directories} ]] ; then |
|
|
857 | for FILE in $(find ${directories} -name "*\.desktop" \ |
|
|
858 | -not -path '*.hidden*' | sort -u 2>/dev/null) |
|
|
859 | do |
|
|
860 | local temp=$(desktop-file-validate ${FILE} | grep -v "warning:" | \ |
|
|
861 | sed -e "s|error: ||" -e "s|${FILE}:|--|g" ) |
|
|
862 | [[ -n $temp ]] && elog ${temp/--/${FILE/${D}/}:} |
|
|
863 | done |
|
|
864 | fi |
|
|
865 | echo "" |
|
|
866 | else |
|
|
867 | einfo "Passing desktop entry validity check. Install dev-util/desktop-file-utils, if you want to help to improve Gentoo." |
|
|
868 | fi |
|
|
869 | } |
|
|
870 | |
|
|
871 | # @FUNCTION: make_session_desktop |
|
|
872 | # @USAGE: <title> <command> [command args...] |
|
|
873 | # @DESCRIPTION: |
|
|
874 | # Make a GDM/KDM Session file. The title is the file to execute to start the |
|
|
875 | # Window Manager. The command is the name of the Window Manager. |
|
|
876 | # |
|
|
877 | # You can set the name of the file via the ${wm} variable. |
|
|
878 | make_session_desktop() { |
|
|
879 | [[ -z $1 ]] && eerror "$0: You must specify the title" && return 1 |
|
|
880 | [[ -z $2 ]] && eerror "$0: You must specify the command" && return 1 |
|
|
881 | |
|
|
882 | local title=$1 |
|
|
883 | local command=$2 |
|
|
884 | local desktop=${T}/${wm:-${PN}}.desktop |
|
|
885 | shift 2 |
|
|
886 | |
|
|
887 | cat <<-EOF > "${desktop}" |
|
|
888 | [Desktop Entry] |
|
|
889 | Name=${title} |
|
|
890 | Comment=This session logs you into ${title} |
|
|
891 | Exec=${command} $* |
|
|
892 | TryExec=${command} |
|
|
893 | Type=XSession |
|
|
894 | EOF |
|
|
895 | |
|
|
896 | ( |
|
|
897 | # wrap the env here so that the 'insinto' call |
|
|
898 | # doesn't corrupt the env of the caller |
|
|
899 | insinto /usr/share/xsessions |
|
|
900 | doins "${desktop}" |
|
|
901 | ) |
|
|
902 | } |
|
|
903 | |
|
|
904 | # @FUNCTION: domenu |
|
|
905 | # @USAGE: <menus> |
|
|
906 | # @DESCRIPTION: |
|
|
907 | # Install the list of .desktop menu files into the appropriate directory |
|
|
908 | # (/usr/share/applications). |
|
|
909 | domenu() { |
|
|
910 | ( |
|
|
911 | # wrap the env here so that the 'insinto' call |
|
|
912 | # doesn't corrupt the env of the caller |
|
|
913 | local i j ret=0 |
|
|
914 | insinto /usr/share/applications |
|
|
915 | for i in "$@" ; do |
|
|
916 | if [[ -f ${i} ]] ; then |
|
|
917 | doins "${i}" |
|
|
918 | ((ret+=$?)) |
|
|
919 | elif [[ -d ${i} ]] ; then |
|
|
920 | for j in "${i}"/*.desktop ; do |
|
|
921 | doins "${j}" |
|
|
922 | ((ret+=$?)) |
|
|
923 | done |
|
|
924 | else |
|
|
925 | ((++ret)) |
|
|
926 | fi |
|
|
927 | done |
|
|
928 | exit ${ret} |
|
|
929 | ) |
|
|
930 | } |
|
|
931 | |
|
|
932 | # @FUNCTION: newmenu |
|
|
933 | # @USAGE: <menu> <newname> |
|
|
934 | # @DESCRIPTION: |
|
|
935 | # Like all other new* functions, install the specified menu as newname. |
|
|
936 | newmenu() { |
|
|
937 | ( |
|
|
938 | # wrap the env here so that the 'insinto' call |
|
|
939 | # doesn't corrupt the env of the caller |
|
|
940 | insinto /usr/share/applications |
|
|
941 | newins "$@" |
|
|
942 | ) |
|
|
943 | } |
|
|
944 | |
|
|
945 | # @FUNCTION: _iconins |
|
|
946 | # @INTERNAL |
|
|
947 | # @DESCRIPTION: |
|
|
948 | # function for use in doicon and newicon |
|
|
949 | _iconins() { |
|
|
950 | ( |
|
|
951 | # wrap the env here so that the 'insinto' call |
|
|
952 | # doesn't corrupt the env of the caller |
|
|
953 | local funcname=$1; shift |
|
|
954 | local size dir |
|
|
955 | local context=apps |
|
|
956 | local theme=hicolor |
|
|
957 | |
|
|
958 | while [[ $# -gt 0 ]] ; do |
|
|
959 | case $1 in |
|
|
960 | -s|--size) |
|
|
961 | if [[ ${2%%x*}x${2%%x*} == "$2" ]] ; then |
|
|
962 | size=${2%%x*} |
|
|
963 | else |
|
|
964 | size=${2} |
|
|
965 | fi |
|
|
966 | case ${size} in |
|
|
967 | 16|22|24|32|36|48|64|72|96|128|192|256) |
|
|
968 | size=${size}x${size};; |
|
|
969 | scalable) |
|
|
970 | ;; |
|
|
971 | *) |
|
|
972 | eerror "${size} is an unsupported icon size!" |
|
|
973 | exit 1;; |
|
|
974 | esac |
|
|
975 | shift 2;; |
|
|
976 | -t|--theme) |
|
|
977 | theme=${2} |
|
|
978 | shift 2;; |
|
|
979 | -c|--context) |
|
|
980 | context=${2} |
|
|
981 | shift 2;; |
| 189 | *) |
982 | *) |
| 190 | PIPE_CMD="cat" |
983 | if [[ -z ${size} ]] ; then |
| 191 | PATCH_SUFFIX="patch" |
984 | insinto /usr/share/pixmaps |
| 192 | ;; |
985 | else |
| 193 | esac |
986 | insinto /usr/share/icons/${theme}/${size}/${context} |
| 194 | |
|
|
| 195 | if [ "${SINGLE_PATCH}" = "no" ] |
|
|
| 196 | then |
|
|
| 197 | einfo "Applying various patches (bugfixes/updates)..." |
|
|
| 198 | fi |
|
|
| 199 | for x in ${EPATCH_SOURCE} |
|
|
| 200 | do |
|
|
| 201 | # New ARCH dependant patch naming scheme... |
|
|
| 202 | # |
|
|
| 203 | # ???_arch_foo.patch |
|
|
| 204 | # |
|
|
| 205 | if [ -f ${x} ] && \ |
|
|
| 206 | [ "${SINGLE_PATCH}" = "yes" -o "${x/_all_}" != "${x}" -o "`eval echo \$\{x/_${ARCH}_\}`" != "${x}" ] |
|
|
| 207 | then |
|
|
| 208 | local count=0 |
|
|
| 209 | local popts="${EPATCH_OPTS}" |
|
|
| 210 | |
|
|
| 211 | if [ -n "${EPATCH_EXCLUDE}" ] |
|
|
| 212 | then |
|
|
| 213 | if [ "`eval echo \$\{EPATCH_EXCLUDE/${x##*/}\}`" != "${EPATCH_EXCLUDE}" ] |
|
|
| 214 | then |
|
|
| 215 | continue |
|
|
| 216 | fi |
|
|
| 217 | fi |
987 | fi |
| 218 | |
988 | |
| 219 | if [ "${SINGLE_PATCH}" = "yes" ] |
989 | if [[ ${funcname} == doicon ]] ; then |
| 220 | then |
990 | if [[ -f $1 ]] ; then |
| 221 | if [ -n "${EPATCH_SINGLE_MSG}" ] |
991 | doins "${1}" |
| 222 | then |
992 | elif [[ -d $1 ]] ; then |
| 223 | einfo "${EPATCH_SINGLE_MSG}" |
993 | shopt -s nullglob |
|
|
994 | doins "${1}"/*.{png,svg} |
|
|
995 | shopt -u nullglob |
| 224 | else |
996 | else |
| 225 | einfo "Applying ${x##*/}..." |
997 | eerror "${1} is not a valid file/directory!" |
|
|
998 | exit 1 |
| 226 | fi |
999 | fi |
| 227 | else |
1000 | else |
| 228 | einfo " ${x##*/}..." |
1001 | break |
| 229 | fi |
1002 | fi |
|
|
1003 | shift 1;; |
|
|
1004 | esac |
|
|
1005 | done |
|
|
1006 | if [[ ${funcname} == newicon ]] ; then |
|
|
1007 | newins "$@" |
|
|
1008 | fi |
|
|
1009 | ) || die |
|
|
1010 | } |
| 230 | |
1011 | |
| 231 | echo "***** ${x##*/} *****" > ${STDERR_TARGET%/*}/${x##*/}-${STDERR_TARGET##*/} |
1012 | # @FUNCTION: doicon |
| 232 | echo >> ${STDERR_TARGET%/*}/${x##*/}-${STDERR_TARGET##*/} |
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 | } |
| 233 | |
1044 | |
| 234 | # Allow for prefix to differ ... im lazy, so shoot me :/ |
1045 | # @FUNCTION: newicon |
| 235 | while [ "${count}" -lt 5 ] |
1046 | # @USAGE: [options] <icon> <newname> |
| 236 | do |
1047 | # @DESCRIPTION: |
| 237 | # Generate some useful debug info ... |
1048 | # Like doicon, install the specified icon as newname. |
| 238 | draw_line "***** ${x##*/} *****" >> ${STDERR_TARGET%/*}/${x##*/}-${STDERR_TARGET##*/} |
1049 | # |
| 239 | echo >> ${STDERR_TARGET%/*}/${x##*/}-${STDERR_TARGET##*/} |
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} "$@" |
|
|
1061 | } |
| 240 | |
1062 | |
| 241 | if [ "${PATCH_SUFFIX}" != "patch" ] |
1063 | # @FUNCTION: strip-linguas |
| 242 | then |
1064 | # @USAGE: [<allow LINGUAS>|<-i|-u> <directories of .po files>] |
| 243 | echo -n "PIPE_COMMAND: " >> ${STDERR_TARGET%/*}/${x##*/}-${STDERR_TARGET##*/} |
1065 | # @DESCRIPTION: |
| 244 | echo "${PIPE_CMD} ${x} > ${PATCH_TARGET}" >> ${STDERR_TARGET%/*}/${x##*/}-${STDERR_TARGET##*/} |
1066 | # Make sure that LINGUAS only contains languages that |
|
|
1067 | # a package can support. The first form allows you to |
|
|
1068 | # specify a list of LINGUAS. The -i builds a list of po |
|
|
1069 | # files found in all the directories and uses the |
|
|
1070 | # intersection of the lists. The -u builds a list of po |
|
|
1071 | # files found in all the directories and uses the union |
|
|
1072 | # of the lists. |
|
|
1073 | strip-linguas() { |
|
|
1074 | local ls newls nols |
|
|
1075 | if [[ $1 == "-i" ]] || [[ $1 == "-u" ]] ; then |
|
|
1076 | local op=$1; shift |
|
|
1077 | ls=$(find "$1" -name '*.po' -exec basename {} .po ';'); shift |
|
|
1078 | local d f |
|
|
1079 | for d in "$@" ; do |
|
|
1080 | if [[ ${op} == "-u" ]] ; then |
|
|
1081 | newls=${ls} |
|
|
1082 | else |
|
|
1083 | newls="" |
|
|
1084 | fi |
|
|
1085 | for f in $(find "$d" -name '*.po' -exec basename {} .po ';') ; do |
|
|
1086 | if [[ ${op} == "-i" ]] ; then |
|
|
1087 | has ${f} ${ls} && newls="${newls} ${f}" |
| 245 | else |
1088 | else |
| 246 | PATCH_TARGET="${x}" |
1089 | has ${f} ${ls} || newls="${newls} ${f}" |
| 247 | fi |
1090 | fi |
| 248 | |
|
|
| 249 | echo -n "PATCH COMMAND: " >> ${STDERR_TARGET%/*}/${x##*/}-${STDERR_TARGET##*/} |
|
|
| 250 | echo "patch ${popts} -p${count} < ${PATCH_TARGET}" >> ${STDERR_TARGET%/*}/${x##*/}-${STDERR_TARGET##*/} |
|
|
| 251 | |
|
|
| 252 | echo >> ${STDERR_TARGET%/*}/${x##*/}-${STDERR_TARGET##*/} |
|
|
| 253 | draw_line "***** ${x##*/} *****" >> ${STDERR_TARGET%/*}/${x##*/}-${STDERR_TARGET##*/} |
|
|
| 254 | |
|
|
| 255 | if [ "${PATCH_SUFFIX}" != "patch" ] |
|
|
| 256 | then |
|
|
| 257 | if ! (${PIPE_CMD} ${x} > ${PATCH_TARGET}) >> ${STDERR_TARGET%/*}/${x##*/}-${STDERR_TARGET##*/} 2>&1 |
|
|
| 258 | then |
|
|
| 259 | echo |
|
|
| 260 | eerror "Could not extract patch!" |
|
|
| 261 | #die "Could not extract patch!" |
|
|
| 262 | count=5 |
|
|
| 263 | break |
|
|
| 264 | fi |
|
|
| 265 | fi |
|
|
| 266 | |
|
|
| 267 | if (cat ${PATCH_TARGET} | patch ${popts} --dry-run -f -p${count}) >> ${STDERR_TARGET%/*}/${x##*/}-${STDERR_TARGET##*/} 2>&1 |
|
|
| 268 | then |
|
|
| 269 | draw_line "***** ${x##*/} *****" > ${STDERR_TARGET%/*}/${x##*/}-${STDERR_TARGET##*/}.real |
|
|
| 270 | echo >> ${STDERR_TARGET%/*}/${x##*/}-${STDERR_TARGET##*/}.real |
|
|
| 271 | echo "ACTUALLY APPLYING ${x##*/}..." >> ${STDERR_TARGET%/*}/${x##*/}-${STDERR_TARGET##*/}.real |
|
|
| 272 | echo >> ${STDERR_TARGET%/*}/${x##*/}-${STDERR_TARGET##*/}.real |
|
|
| 273 | draw_line "***** ${x##*/} *****" >> ${STDERR_TARGET%/*}/${x##*/}-${STDERR_TARGET##*/}.real |
|
|
| 274 | |
|
|
| 275 | cat ${PATCH_TARGET} | patch ${popts} -p${count} >> ${STDERR_TARGET%/*}/${x##*/}-${STDERR_TARGET##*/}.real 2>&1 |
|
|
| 276 | |
|
|
| 277 | if [ "$?" -ne 0 ] |
|
|
| 278 | then |
|
|
| 279 | cat ${STDERR_TARGET%/*}/${x##*/}-${STDERR_TARGET##*/}.real >> ${STDERR_TARGET%/*}/${x##*/}-${STDERR_TARGET##*/} |
|
|
| 280 | echo |
|
|
| 281 | eerror "A dry-run of patch command succeeded, but actually" |
|
|
| 282 | eerror "applying the patch failed!" |
|
|
| 283 | #die "Real world sux compared to the dreamworld!" |
|
|
| 284 | count=5 |
|
|
| 285 | fi |
|
|
| 286 | |
|
|
| 287 | rm -f ${STDERR_TARGET%/*}/${x##*/}-${STDERR_TARGET##*/}.real |
|
|
| 288 | |
|
|
| 289 | break |
|
|
| 290 | fi |
|
|
| 291 | |
|
|
| 292 | count=$((count + 1)) |
|
|
| 293 | done |
1091 | done |
| 294 | |
1092 | ls=${newls} |
| 295 | if [ "${PATCH_SUFFIX}" != "patch" ] |
1093 | done |
| 296 | then |
1094 | else |
| 297 | rm -f ${PATCH_TARGET} |
1095 | ls="$@" |
| 298 | fi |
1096 | fi |
| 299 | |
1097 | |
| 300 | if [ "${count}" -eq 5 ] |
1098 | nols="" |
| 301 | then |
1099 | newls="" |
| 302 | echo |
1100 | for f in ${LINGUAS} ; do |
| 303 | eerror "Failed Patch: ${x##*/}!" |
1101 | if has ${f} ${ls} ; then |
| 304 | eerror |
1102 | newls="${newls} ${f}" |
| 305 | eerror "Include in your bugreport the contents of:" |
1103 | else |
| 306 | eerror |
1104 | nols="${nols} ${f}" |
| 307 | eerror " ${STDERR_TARGET%/*}/${x##*/}-${STDERR_TARGET##*/}" |
|
|
| 308 | echo |
|
|
| 309 | die "Failed Patch: ${x##*/}!" |
|
|
| 310 | fi |
|
|
| 311 | |
|
|
| 312 | rm -f ${STDERR_TARGET%/*}/${x##*/}-${STDERR_TARGET##*/} |
|
|
| 313 | |
|
|
| 314 | eend 0 |
|
|
| 315 | fi |
1105 | fi |
| 316 | done |
1106 | done |
| 317 | if [ "${SINGLE_PATCH}" = "no" ] |
1107 | [[ -n ${nols} ]] \ |
| 318 | then |
1108 | && einfo "Sorry, but ${PN} does not support the LINGUAS:" ${nols} |
| 319 | einfo "Done with patching" |
1109 | export LINGUAS=${newls:1} |
| 320 | fi |
|
|
| 321 | } |
1110 | } |
| 322 | |
1111 | |
| 323 | # This function check how many cpu's are present, and then set |
1112 | # @FUNCTION: preserve_old_lib |
| 324 | # -j in MAKEOPTS accordingly. |
1113 | # @USAGE: <libs to preserve> [more libs] |
| 325 | # |
1114 | # @DESCRIPTION: |
| 326 | # Thanks to nall <nall@gentoo.org> for this. |
1115 | # These functions are useful when a lib in your package changes ABI SONAME. |
| 327 | # |
1116 | # An example might be from libogg.so.0 to libogg.so.1. Removing libogg.so.0 |
| 328 | get_number_of_jobs() { |
1117 | # would break packages that link against it. Most people get around this |
| 329 | local jobs=0 |
1118 | # by using the portage SLOT mechanism, but that is not always a relevant |
| 330 | |
1119 | # solution, so instead you can call this from pkg_preinst. See also the |
| 331 | if [ ! -r /proc/cpuinfo ] |
1120 | # preserve_old_lib_notify function. |
| 332 | then |
1121 | preserve_old_lib() { |
| 333 | return 1 |
1122 | if [[ ${EBUILD_PHASE} != "preinst" ]] ; then |
| 334 | fi |
1123 | eerror "preserve_old_lib() must be called from pkg_preinst() only" |
| 335 | |
1124 | die "Invalid preserve_old_lib() usage" |
| 336 | # This bit is from H?kan Wessberg <nacka-gentoo@refug.org>, bug #13565. |
|
|
| 337 | if [ "`egrep "^[[:space:]]*MAKEOPTS=" /etc/make.conf | wc -l`" -gt 0 ] |
|
|
| 338 | then |
|
|
| 339 | ADMINOPTS="`egrep "^[[:space:]]*MAKEOPTS=" /etc/make.conf | cut -d= -f2 | sed 's/\"//g'`" |
|
|
| 340 | ADMINPARAM="`echo ${ADMINOPTS} | gawk '{match($0, /-j *[0-9]*/, opt); print opt[0]}'`" |
|
|
| 341 | ADMINPARAM="${ADMINPARAM/-j}" |
|
|
| 342 | fi |
|
|
| 343 | |
|
|
| 344 | export MAKEOPTS="`echo ${MAKEOPTS} | sed -e 's:-j *[0-9]*::g'`" |
|
|
| 345 | |
|
|
| 346 | if [ "${ARCH}" = "x86" -o "${ARCH}" = "hppa" -o \ |
|
|
| 347 | "${ARCH}" = "arm" -o "${ARCH}" = "mips" ] |
|
|
| 348 | then |
|
|
| 349 | # these archs will always have "[Pp]rocessor" |
|
|
| 350 | jobs="$((`grep -c ^[Pp]rocessor /proc/cpuinfo` * 2))" |
|
|
| 351 | |
|
|
| 352 | elif [ "${ARCH}" = "sparc" -o "${ARCH}" = "sparc64" ] |
|
|
| 353 | then |
|
|
| 354 | # sparc always has "ncpus active" |
|
|
| 355 | jobs="$((`grep "^ncpus active" /proc/cpuinfo | sed -e "s/^.*: //"` * 2))" |
|
|
| 356 | |
|
|
| 357 | elif [ "${ARCH}" = "alpha" ] |
|
|
| 358 | then |
|
|
| 359 | # alpha has "cpus active", but only when compiled with SMP |
|
|
| 360 | if [ "`grep -c "^cpus active" /proc/cpuinfo`" -eq 1 ] |
|
|
| 361 | then |
|
|
| 362 | jobs="$((`grep "^cpus active" /proc/cpuinfo | sed -e "s/^.*: //"` * 2))" |
|
|
| 363 | else |
|
|
| 364 | jobs=2 |
|
|
| 365 | fi |
1125 | fi |
| 366 | |
1126 | [[ -z $1 ]] && die "Usage: preserve_old_lib <library to preserve> [more libraries to preserve]" |
| 367 | elif [ "${ARCH}" = "ppc" ] |
1127 | |
| 368 | then |
1128 | # let portage worry about it |
| 369 | # ppc has "processor", but only when compiled with SMP |
1129 | has preserve-libs ${FEATURES} && return 0 |
| 370 | if [ "`grep -c "^processor" /proc/cpuinfo`" -eq 1 ] |
1130 | |
| 371 | then |
1131 | local lib dir |
| 372 | jobs="$((`grep -c ^processor /proc/cpuinfo` * 2))" |
1132 | for lib in "$@" ; do |
| 373 | else |
1133 | [[ -e ${ROOT}/${lib} ]] || continue |
| 374 | jobs=2 |
1134 | dir=${lib%/*} |
|
|
1135 | dodir ${dir} || die "dodir ${dir} failed" |
|
|
1136 | cp "${ROOT}"/${lib} "${D}"/${lib} || die "cp ${lib} failed" |
|
|
1137 | touch "${D}"/${lib} |
|
|
1138 | done |
|
|
1139 | } |
|
|
1140 | |
|
|
1141 | # @FUNCTION: preserve_old_lib_notify |
|
|
1142 | # @USAGE: <libs to notify> [more libs] |
|
|
1143 | # @DESCRIPTION: |
|
|
1144 | # Spit helpful messages about the libraries preserved by preserve_old_lib. |
|
|
1145 | preserve_old_lib_notify() { |
|
|
1146 | if [[ ${EBUILD_PHASE} != "postinst" ]] ; then |
|
|
1147 | eerror "preserve_old_lib_notify() must be called from pkg_postinst() only" |
|
|
1148 | die "Invalid preserve_old_lib_notify() usage" |
| 375 | fi |
1149 | fi |
| 376 | else |
1150 | |
| 377 | jobs="$((`grep -c ^cpu /proc/cpuinfo` * 2))" |
1151 | # let portage worry about it |
| 378 | die "Unknown ARCH -- ${ARCH}!" |
1152 | has preserve-libs ${FEATURES} && return 0 |
|
|
1153 | |
|
|
1154 | local lib notice=0 |
|
|
1155 | for lib in "$@" ; do |
|
|
1156 | [[ -e ${ROOT}/${lib} ]] || continue |
|
|
1157 | if [[ ${notice} -eq 0 ]] ; then |
|
|
1158 | notice=1 |
|
|
1159 | ewarn "Old versions of installed libraries were detected on your system." |
|
|
1160 | ewarn "In order to avoid breaking packages that depend on these old libs," |
|
|
1161 | ewarn "the libraries are not being removed. You need to run revdep-rebuild" |
|
|
1162 | ewarn "in order to remove these old dependencies. If you do not have this" |
|
|
1163 | ewarn "helper program, simply emerge the 'gentoolkit' package." |
|
|
1164 | ewarn |
| 379 | fi |
1165 | fi |
|
|
1166 | ewarn " # revdep-rebuild --library '${lib}' && rm '${lib}'" |
|
|
1167 | done |
|
|
1168 | } |
| 380 | |
1169 | |
| 381 | # Make sure the number is valid ... |
1170 | # @FUNCTION: built_with_use |
| 382 | if [ "${jobs}" -lt 1 ] |
1171 | # @USAGE: [--hidden] [--missing <action>] [-a|-o] <DEPEND ATOM> <List of USE flags> |
| 383 | then |
1172 | # @DESCRIPTION: |
| 384 | jobs=1 |
1173 | # |
| 385 | fi |
1174 | # Deprecated: Use EAPI 2 use deps in DEPEND|RDEPEND and with has_version calls. |
| 386 | |
1175 | # |
| 387 | if [ -n "${ADMINPARAM}" ] |
1176 | # A temporary hack until portage properly supports DEPENDing on USE |
| 388 | then |
1177 | # flags being enabled in packages. This will check to see if the specified |
| 389 | if [ "${jobs}" -gt "${ADMINPARAM}" ] |
1178 | # DEPEND atom was built with the specified list of USE flags. The |
| 390 | then |
1179 | # --missing option controls the behavior if called on a package that does |
| 391 | einfo "Setting make jobs to \"-j${ADMINPARAM}\" to ensure successful merge..." |
1180 | # not actually support the defined USE flags (aka listed in IUSE). |
| 392 | export MAKEOPTS="${MAKEOPTS} -j${ADMINPARAM}" |
1181 | # The default is to abort (call die). The -a and -o flags control |
| 393 | else |
1182 | # the requirements of the USE flags. They correspond to "and" and "or" |
| 394 | einfo "Setting make jobs to \"-j${jobs}\" to ensure successful merge..." |
1183 | # logic. So the -a flag means all listed USE flags must be enabled |
| 395 | export MAKEOPTS="${MAKEOPTS} -j${jobs}" |
1184 | # while the -o flag means at least one of the listed IUSE flags must be |
|
|
1185 | # enabled. The --hidden option is really for internal use only as it |
|
|
1186 | # means the USE flag we're checking is hidden expanded, so it won't be found |
|
|
1187 | # in IUSE like normal USE flags. |
|
|
1188 | # |
|
|
1189 | # Remember that this function isn't terribly intelligent so order of optional |
|
|
1190 | # flags matter. |
|
|
1191 | built_with_use() { |
|
|
1192 | local hidden="no" |
|
|
1193 | if [[ $1 == "--hidden" ]] ; then |
|
|
1194 | hidden="yes" |
|
|
1195 | shift |
| 396 | fi |
1196 | fi |
| 397 | fi |
|
|
| 398 | } |
|
|
| 399 | |
1197 | |
| 400 | # Simplify/standardize adding users to the system |
1198 | local missing_action="die" |
| 401 | # vapier@gentoo.org |
1199 | if [[ $1 == "--missing" ]] ; then |
| 402 | # |
1200 | missing_action=$2 |
| 403 | # enewuser(username, uid, shell, homedir, groups, extra options) |
1201 | shift ; shift |
| 404 | # |
1202 | case ${missing_action} in |
| 405 | # Default values if you do not specify any: |
1203 | true|false|die) ;; |
| 406 | # username: REQUIRED ! |
1204 | *) die "unknown action '${missing_action}'";; |
| 407 | # uid: next available (see useradd(8)) |
1205 | esac |
| 408 | # shell: /bin/false |
|
|
| 409 | # homedir: /dev/null |
|
|
| 410 | # groups: none |
|
|
| 411 | # extra: comment of 'added by portage for ${PN}' |
|
|
| 412 | enewuser() { |
|
|
| 413 | # get the username |
|
|
| 414 | local euser="$1"; shift |
|
|
| 415 | if [ -z "${euser}" ] ; then |
|
|
| 416 | eerror "No username specified !" |
|
|
| 417 | die "Cannot call enewuser without a username" |
|
|
| 418 | fi |
|
|
| 419 | einfo "Adding user '${euser}' to your system ..." |
|
|
| 420 | |
|
|
| 421 | # setup a file for testing usernames/groups |
|
|
| 422 | local tmpfile="`mktemp -p ${T}`" |
|
|
| 423 | touch ${tmpfile} |
|
|
| 424 | chown ${euser} ${tmpfile} >& /dev/null |
|
|
| 425 | local realuser="`ls -l ${tmpfile} | awk '{print $3}'`" |
|
|
| 426 | |
|
|
| 427 | # see if user already exists |
|
|
| 428 | if [ "${euser}" == "${realuser}" ] ; then |
|
|
| 429 | einfo "${euser} already exists on your system :)" |
|
|
| 430 | return 0 |
|
|
| 431 | fi |
|
|
| 432 | |
|
|
| 433 | # options to pass to useradd |
|
|
| 434 | local opts="" |
|
|
| 435 | |
|
|
| 436 | # handle uid |
|
|
| 437 | local euid="$1"; shift |
|
|
| 438 | if [ ! -z "${euid}" ] ; then |
|
|
| 439 | if [ ${euid} -gt 0 ] ; then |
|
|
| 440 | opts="${opts} -u ${euid}" |
|
|
| 441 | else |
|
|
| 442 | eerror "Userid given but is not greater than 0 !" |
|
|
| 443 | die "${euid} is not a valid UID" |
|
|
| 444 | fi |
1206 | fi |
| 445 | else |
|
|
| 446 | euid="next available" |
|
|
| 447 | fi |
|
|
| 448 | einfo " - Userid: ${euid}" |
|
|
| 449 | |
1207 | |
| 450 | # handle shell |
1208 | local opt=$1 |
| 451 | local eshell="$1"; shift |
1209 | [[ ${opt:0:1} = "-" ]] && shift || opt="-a" |
| 452 | if [ ! -z "${eshell}" ] ; then |
1210 | |
| 453 | if [ ! -e ${eshell} ] ; then |
1211 | local PKG=$(best_version $1) |
| 454 | eerror "A shell was specified but it does not exist !" |
1212 | [[ -z ${PKG} ]] && die "Unable to resolve $1 to an installed package" |
| 455 | die "${eshell} does not exist" |
1213 | shift |
|
|
1214 | |
|
|
1215 | local USEFILE=${ROOT}/var/db/pkg/${PKG}/USE |
|
|
1216 | local IUSEFILE=${ROOT}/var/db/pkg/${PKG}/IUSE |
|
|
1217 | |
|
|
1218 | # if the IUSE file doesn't exist, the read will error out, we need to handle |
|
|
1219 | # this gracefully |
|
|
1220 | if [[ ! -e ${USEFILE} ]] || [[ ! -e ${IUSEFILE} && ${hidden} == "no" ]] ; then |
|
|
1221 | case ${missing_action} in |
|
|
1222 | true) return 0;; |
|
|
1223 | false) return 1;; |
|
|
1224 | die) die "Unable to determine what USE flags $PKG was built with";; |
|
|
1225 | esac |
| 456 | fi |
1226 | fi |
| 457 | else |
|
|
| 458 | eshell=/bin/false |
|
|
| 459 | fi |
|
|
| 460 | einfo " - Shell: ${eshell}" |
|
|
| 461 | opts="${opts} -s ${eshell}" |
|
|
| 462 | |
1227 | |
| 463 | # handle homedir |
1228 | if [[ ${hidden} == "no" ]] ; then |
| 464 | local ehome="$1"; shift |
1229 | local IUSE_BUILT=( $(<"${IUSEFILE}") ) |
| 465 | if [ -z "${ehome}" ] ; then |
1230 | # Don't check USE_EXPAND #147237 |
| 466 | ehome=/dev/null |
1231 | local expand |
| 467 | fi |
1232 | for expand in $(echo ${USE_EXPAND} | tr '[:upper:]' '[:lower:]') ; do |
| 468 | einfo " - Home: ${ehome}" |
1233 | if [[ $1 == ${expand}_* ]] ; then |
| 469 | opts="${opts} -d ${ehome}" |
1234 | expand="" |
| 470 | |
1235 | break |
| 471 | # handle groups |
|
|
| 472 | local egroups="$1"; shift |
|
|
| 473 | if [ ! -z "${egroups}" ] ; then |
|
|
| 474 | local realgroup |
|
|
| 475 | local oldifs="${IFS}" |
|
|
| 476 | export IFS="," |
|
|
| 477 | for g in ${egroups} ; do |
|
|
| 478 | chgrp ${g} ${tmpfile} >& /dev/null |
|
|
| 479 | realgroup="`ls -l ${tmpfile} | awk '{print $4}'`" |
|
|
| 480 | if [ "${g}" != "${realgroup}" ] ; then |
|
|
| 481 | eerror "You must add ${g} to the system first" |
|
|
| 482 | die "${g} is not a valid GID" |
|
|
| 483 | fi |
1236 | fi |
| 484 | done |
1237 | done |
| 485 | export IFS="${oldifs}" |
1238 | if [[ -n ${expand} ]] ; then |
| 486 | opts="${opts} -g ${egroups}" |
1239 | if ! has $1 ${IUSE_BUILT[@]#[-+]} ; then |
|
|
1240 | case ${missing_action} in |
|
|
1241 | true) return 0;; |
|
|
1242 | false) return 1;; |
|
|
1243 | die) die "$PKG does not actually support the $1 USE flag!";; |
|
|
1244 | esac |
|
|
1245 | fi |
|
|
1246 | fi |
|
|
1247 | fi |
|
|
1248 | |
|
|
1249 | local USE_BUILT=$(<${USEFILE}) |
|
|
1250 | while [[ $# -gt 0 ]] ; do |
|
|
1251 | if [[ ${opt} = "-o" ]] ; then |
|
|
1252 | has $1 ${USE_BUILT} && return 0 |
|
|
1253 | else |
|
|
1254 | has $1 ${USE_BUILT} || return 1 |
|
|
1255 | fi |
|
|
1256 | shift |
|
|
1257 | done |
|
|
1258 | [[ ${opt} = "-a" ]] |
|
|
1259 | } |
|
|
1260 | |
|
|
1261 | # @FUNCTION: epunt_cxx |
|
|
1262 | # @USAGE: [dir to scan] |
|
|
1263 | # @DESCRIPTION: |
|
|
1264 | # Many configure scripts wrongly bail when a C++ compiler could not be |
|
|
1265 | # detected. If dir is not specified, then it defaults to ${S}. |
|
|
1266 | # |
|
|
1267 | # http://bugs.gentoo.org/73450 |
|
|
1268 | epunt_cxx() { |
|
|
1269 | local dir=$1 |
|
|
1270 | [[ -z ${dir} ]] && dir=${S} |
|
|
1271 | ebegin "Removing useless C++ checks" |
|
|
1272 | local f |
|
|
1273 | find "${dir}" -name configure | while read f ; do |
|
|
1274 | patch --no-backup-if-mismatch -p0 "${f}" "${PORTDIR}/eclass/ELT-patches/nocxx/nocxx.patch" > /dev/null |
|
|
1275 | done |
|
|
1276 | eend 0 |
|
|
1277 | } |
|
|
1278 | |
|
|
1279 | # @FUNCTION: make_wrapper |
|
|
1280 | # @USAGE: <wrapper> <target> [chdir] [libpaths] [installpath] |
|
|
1281 | # @DESCRIPTION: |
|
|
1282 | # Create a shell wrapper script named wrapper in installpath |
|
|
1283 | # (defaults to the bindir) to execute target (default of wrapper) by |
|
|
1284 | # first optionally setting LD_LIBRARY_PATH to the colon-delimited |
|
|
1285 | # libpaths followed by optionally changing directory to chdir. |
|
|
1286 | make_wrapper() { |
|
|
1287 | local wrapper=$1 bin=$2 chdir=$3 libdir=$4 path=$5 |
|
|
1288 | local tmpwrapper=$(emktemp) |
|
|
1289 | # We don't want to quote ${bin} so that people can pass complex |
|
|
1290 | # things as $bin ... "./someprog --args" |
|
|
1291 | cat << EOF > "${tmpwrapper}" |
|
|
1292 | #!/bin/sh |
|
|
1293 | cd "${chdir:-.}" |
|
|
1294 | if [ -n "${libdir}" ] ; then |
|
|
1295 | if [ "\${LD_LIBRARY_PATH+set}" = "set" ] ; then |
|
|
1296 | export LD_LIBRARY_PATH="\${LD_LIBRARY_PATH}:${libdir}" |
| 487 | else |
1297 | else |
| 488 | egroups="(none)" |
1298 | export LD_LIBRARY_PATH="${libdir}" |
|
|
1299 | fi |
| 489 | fi |
1300 | fi |
| 490 | einfo " - Groups: ${egroups}" |
1301 | exec ${bin} "\$@" |
| 491 | |
1302 | EOF |
| 492 | # handle extra and add the user |
1303 | chmod go+rx "${tmpwrapper}" |
| 493 | local eextra="$@" |
1304 | if [[ -n ${path} ]] ; then |
| 494 | local oldsandbox="${oldsandbox}" |
1305 | ( |
| 495 | export SANDBOX_ON="0" |
1306 | exeinto "${path}" |
| 496 | if [ -z "${eextra}" ] ; then |
1307 | newexe "${tmpwrapper}" "${wrapper}" |
| 497 | useradd ${opts} ${euser} \ |
1308 | ) || die |
| 498 | -c "added by portage for ${PN}" \ |
|
|
| 499 | || die "enewuser failed" |
|
|
| 500 | else |
1309 | else |
| 501 | einfo " - Extra: ${eextra}" |
1310 | newbin "${tmpwrapper}" "${wrapper}" || die |
| 502 | useradd ${opts} ${euser} ${eextra} \ |
|
|
| 503 | || die "enewuser failed" |
|
|
| 504 | fi |
1311 | fi |
| 505 | export SANDBOX_ON="${oldsandbox}" |
|
|
| 506 | |
|
|
| 507 | if [ ! -e ${ehome} ] && [ ! -e ${D}/${ehome} ] ; then |
|
|
| 508 | einfo " - Creating ${ehome} in ${D}" |
|
|
| 509 | dodir ${ehome} |
|
|
| 510 | fperms ${euser} ${ehome} |
|
|
| 511 | fi |
|
|
| 512 | } |
1312 | } |
| 513 | |
1313 | |
| 514 | # Simplify/standardize adding groups to the system |
1314 | # @FUNCTION: path_exists |
| 515 | # vapier@gentoo.org |
1315 | # @USAGE: [-a|-o] <paths> |
| 516 | # |
1316 | # @DESCRIPTION: |
| 517 | # enewgroup(group, gid) |
1317 | # Check if the specified paths exist. Works for all types of paths |
| 518 | # |
1318 | # (files/dirs/etc...). The -a and -o flags control the requirements |
| 519 | # Default values if you do not specify any: |
1319 | # of the paths. They correspond to "and" and "or" logic. So the -a |
| 520 | # groupname: REQUIRED ! |
1320 | # flag means all the paths must exist while the -o flag means at least |
| 521 | # gid: next available (see groupadd(8)) |
1321 | # one of the paths must exist. The default behavior is "and". If no |
| 522 | # extra: none |
1322 | # paths are specified, then the return value is "false". |
| 523 | enewgroup() { |
1323 | path_exists() { |
| 524 | # get the group |
|
|
| 525 | local egroup="$1"; shift |
|
|
| 526 | if [ -z "${egroup}" ] ; then |
|
|
| 527 | eerror "No group specified !" |
|
|
| 528 | die "Cannot call enewgroup without a group" |
|
|
| 529 | fi |
|
|
| 530 | einfo "Adding group '${egroup}' to your system ..." |
|
|
| 531 | |
|
|
| 532 | # setup a file for testing groupname |
|
|
| 533 | local tmpfile="`mktemp -p ${T}`" |
|
|
| 534 | touch ${tmpfile} |
|
|
| 535 | chgrp ${egroup} ${tmpfile} >& /dev/null |
|
|
| 536 | local realgroup="`ls -l ${tmpfile} | awk '{print $4}'`" |
|
|
| 537 | |
|
|
| 538 | # see if group already exists |
|
|
| 539 | if [ "${egroup}" == "${realgroup}" ] ; then |
|
|
| 540 | einfo "${egroup} already exists on your system :)" |
|
|
| 541 | return 0 |
|
|
| 542 | fi |
|
|
| 543 | |
|
|
| 544 | # options to pass to useradd |
|
|
| 545 | local opts="" |
1324 | local opt=$1 |
|
|
1325 | [[ ${opt} == -[ao] ]] && shift || opt="-a" |
| 546 | |
1326 | |
| 547 | # handle gid |
1327 | # no paths -> return false |
| 548 | local egid="$1"; shift |
1328 | # same behavior as: [[ -e "" ]] |
| 549 | if [ ! -z "${egid}" ] ; then |
1329 | [[ $# -eq 0 ]] && return 1 |
| 550 | if [ ${egid} -gt 0 ] ; then |
1330 | |
| 551 | opts="${opts} -g ${egid}" |
1331 | local p r=0 |
|
|
1332 | for p in "$@" ; do |
|
|
1333 | [[ -e ${p} ]] |
|
|
1334 | : $(( r += $? )) |
|
|
1335 | done |
|
|
1336 | |
|
|
1337 | case ${opt} in |
|
|
1338 | -a) return $(( r != 0 )) ;; |
|
|
1339 | -o) return $(( r == $# )) ;; |
|
|
1340 | esac |
|
|
1341 | } |
|
|
1342 | |
|
|
1343 | # @FUNCTION: in_iuse |
|
|
1344 | # @USAGE: <flag> |
|
|
1345 | # @DESCRIPTION: |
|
|
1346 | # Determines whether the given flag is in IUSE. Strips IUSE default prefixes |
|
|
1347 | # as necessary. |
|
|
1348 | # |
|
|
1349 | # Note that this function should not be used in the global scope. |
|
|
1350 | in_iuse() { |
|
|
1351 | debug-print-function ${FUNCNAME} "${@}" |
|
|
1352 | [[ ${#} -eq 1 ]] || die "Invalid args to ${FUNCNAME}()" |
|
|
1353 | |
|
|
1354 | local flag=${1} |
|
|
1355 | local liuse=( ${IUSE} ) |
|
|
1356 | |
|
|
1357 | has "${flag}" "${liuse[@]#[+-]}" |
|
|
1358 | } |
|
|
1359 | |
|
|
1360 | # @FUNCTION: use_if_iuse |
|
|
1361 | # @USAGE: <flag> |
|
|
1362 | # @DESCRIPTION: |
|
|
1363 | # Return true if the given flag is in USE and IUSE. |
|
|
1364 | # |
|
|
1365 | # Note that this function should not be used in the global scope. |
|
|
1366 | use_if_iuse() { |
|
|
1367 | in_iuse $1 || return 1 |
|
|
1368 | use $1 |
|
|
1369 | } |
|
|
1370 | |
|
|
1371 | # @FUNCTION: usex |
|
|
1372 | # @USAGE: <USE flag> [true output] [false output] [true suffix] [false suffix] |
|
|
1373 | # @DESCRIPTION: |
|
|
1374 | # Proxy to declare usex for package managers or EAPIs that do not provide it |
|
|
1375 | # and use the package manager implementation when available (i.e. EAPI >= 5). |
|
|
1376 | # If USE flag is set, echo [true output][true suffix] (defaults to "yes"), |
|
|
1377 | # otherwise echo [false output][false suffix] (defaults to "no"). |
|
|
1378 | if has "${EAPI:-0}" 0 1 2 3 4; then |
|
|
1379 | usex() { use "$1" && echo "${2-yes}$4" || echo "${3-no}$5" ; } #382963 |
|
|
1380 | fi |
|
|
1381 | |
|
|
1382 | # @FUNCTION: prune_libtool_files |
|
|
1383 | # @USAGE: [--all|--modules] |
|
|
1384 | # @DESCRIPTION: |
|
|
1385 | # Locate unnecessary libtool files (.la) and libtool static archives |
|
|
1386 | # (.a) and remove them from installation image. |
|
|
1387 | # |
|
|
1388 | # By default, .la files are removed whenever the static linkage can |
|
|
1389 | # either be performed using pkg-config or doesn't introduce additional |
|
|
1390 | # flags. |
|
|
1391 | # |
|
|
1392 | # If '--modules' argument is passed, .la files for modules (plugins) are |
|
|
1393 | # removed as well. This is usually useful when the package installs |
|
|
1394 | # plugins and the plugin loader does not use .la files. |
|
|
1395 | # |
|
|
1396 | # If '--all' argument is passed, all .la files are removed without |
|
|
1397 | # performing any heuristic on them. You shouldn't ever use that, |
|
|
1398 | # and instead report a bug in the algorithm instead. |
|
|
1399 | # |
|
|
1400 | # The .a files are only removed whenever corresponding .la files state |
|
|
1401 | # that they should not be linked to, i.e. whenever these files |
|
|
1402 | # correspond to plugins. |
|
|
1403 | # |
|
|
1404 | # Note: if your package installs both static libraries and .pc files, |
|
|
1405 | # you need to add pkg-config to your DEPEND. |
|
|
1406 | prune_libtool_files() { |
|
|
1407 | debug-print-function ${FUNCNAME} "$@" |
|
|
1408 | |
|
|
1409 | local removing_all removing_modules opt |
|
|
1410 | for opt; do |
|
|
1411 | case "${opt}" in |
|
|
1412 | --all) |
|
|
1413 | removing_all=1 |
|
|
1414 | removing_modules=1 |
|
|
1415 | ;; |
|
|
1416 | --modules) |
|
|
1417 | removing_modules=1 |
|
|
1418 | ;; |
|
|
1419 | *) |
|
|
1420 | die "Invalid argument to ${FUNCNAME}(): ${opt}" |
|
|
1421 | esac |
|
|
1422 | done |
|
|
1423 | |
|
|
1424 | local f |
|
|
1425 | local queue=() |
|
|
1426 | while IFS= read -r -d '' f; do # for all .la files |
|
|
1427 | local archivefile=${f/%.la/.a} |
|
|
1428 | |
|
|
1429 | [[ ${f} != ${archivefile} ]] || die 'regex sanity check failed' |
|
|
1430 | |
|
|
1431 | local reason pkgconfig_scanned |
|
|
1432 | |
|
|
1433 | # Remove static libs we're not supposed to link against. |
|
|
1434 | if grep -q '^shouldnotlink=yes$' "${f}"; then |
|
|
1435 | if [[ -f ${archivefile} ]]; then |
|
|
1436 | einfo "Removing unnecessary ${archivefile#${D%/}} (static plugin)" |
|
|
1437 | queue+=( "${archivefile}" ) |
|
|
1438 | fi |
|
|
1439 | |
|
|
1440 | # The .la file may be used by a module loader, so avoid removing it |
|
|
1441 | # unless explicitly requested. |
|
|
1442 | if [[ ${removing_modules} ]]; then |
|
|
1443 | reason='module' |
|
|
1444 | fi |
|
|
1445 | |
|
|
1446 | # Remove .la files when: |
|
|
1447 | # - user explicitly wants us to remove all .la files, |
|
|
1448 | # - respective static archive doesn't exist, |
|
|
1449 | # - they are covered by a .pc file already, |
|
|
1450 | # - they don't provide any new information (no libs & no flags). |
|
|
1451 | |
|
|
1452 | elif [[ ${removing_all} ]]; then |
|
|
1453 | reason='requested' |
|
|
1454 | elif [[ ! -f ${archivefile} ]]; then |
|
|
1455 | reason='no static archive' |
|
|
1456 | elif [[ ! $(sed -nre \ |
|
|
1457 | "s/^(dependency_libs|inherited_linker_flags)='(.*)'$/\2/p" \ |
|
|
1458 | "${f}") ]]; then |
|
|
1459 | reason='no libs & flags' |
| 552 | else |
1460 | else |
| 553 | eerror "Groupid given but is not greater than 0 !" |
1461 | if [[ ! ${pkgconfig_scanned} ]]; then |
| 554 | die "${egid} is not a valid GID" |
1462 | # Create a list of all .pc-covered libs. |
|
|
1463 | local pc_libs=() |
|
|
1464 | if [[ ! ${removing_all} ]]; then |
|
|
1465 | local f |
|
|
1466 | local tf=${T}/prune-lt-files.pc |
|
|
1467 | local pkgconf=$(tc-getPKG_CONFIG) |
|
|
1468 | |
|
|
1469 | while IFS= read -r -d '' f; do # for all .pc files |
|
|
1470 | local arg |
|
|
1471 | |
|
|
1472 | sed -e '/^Requires:/d' "${f}" > "${tf}" |
|
|
1473 | for arg in $("${pkgconf}" --libs "${tf}"); do |
|
|
1474 | [[ ${arg} == -l* ]] && pc_libs+=( lib${arg#-l}.la ) |
|
|
1475 | done |
|
|
1476 | done < <(find "${D}" -type f -name '*.pc' -print0) |
|
|
1477 | |
|
|
1478 | rm -f "${tf}" |
|
|
1479 | fi |
|
|
1480 | |
|
|
1481 | pkgconfig_scanned=1 |
| 555 | fi |
1482 | fi |
| 556 | else |
1483 | |
| 557 | egid="next available" |
1484 | has "${f##*/}" "${pc_libs[@]}" && reason='covered by .pc' |
| 558 | fi |
1485 | fi |
| 559 | einfo " - Groupid: ${egid}" |
|
|
| 560 | |
1486 | |
| 561 | # handle extra |
1487 | if [[ ${reason} ]]; then |
| 562 | local eextra="$@" |
1488 | einfo "Removing unnecessary ${f#${D%/}} (${reason})" |
| 563 | opts="${opts} ${eextra}" |
1489 | queue+=( "${f}" ) |
|
|
1490 | fi |
|
|
1491 | done < <(find "${D}" -xtype f -name '*.la' -print0) |
| 564 | |
1492 | |
| 565 | # add the group |
1493 | if [[ ${queue[@]} ]]; then |
| 566 | local oldsandbox="${oldsandbox}" |
1494 | rm -f "${queue[@]}" |
| 567 | export SANDBOX_ON="0" |
1495 | fi |
| 568 | groupadd ${opts} ${egroup} || die "enewgroup failed" |
|
|
| 569 | export SANDBOX_ON="${oldsandbox}" |
|
|
| 570 | } |
1496 | } |
| 571 | |
1497 | |
| 572 | # Simple script to replace 'dos2unix' binaries |
1498 | check_license() { die "you no longer need this as portage supports ACCEPT_LICENSE itself"; } |
| 573 | # vapier@gentoo.org |
1499 | |
| 574 | # |
1500 | fi |
| 575 | # edos2unix(file, <more files>...) |
|
|
| 576 | edos2unix() { |
|
|
| 577 | for f in $@ ; do |
|
|
| 578 | cp ${f} ${T}/ |
|
|
| 579 | sed 's/\r$//' ${T}/${f}.old > ${f} |
|
|
| 580 | done |
|
|
| 581 | } |
|
|