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.38 2003/06/28 02:50:46 vapier Exp $ |
3 | # $Header: /var/cvsroot/gentoo-x86/eclass/eutils.eclass,v 1.407 2012/10/11 16:50:53 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 | DEPEND="$DEPEND !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 | |
20 | |
42 | cat > ${D}/usr/lib/$1 <<"END_LDSCRIPT" |
21 | inherit multilib toolchain-funcs user |
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 | |
22 | |
53 | dosed "s:libxxx:$1:" /usr/lib/$1 |
23 | if has "${EAPI:-0}" 0 1 2; then |
54 | |
24 | |
55 | return 0 |
25 | # @FUNCTION: epause |
|
|
26 | # @USAGE: [seconds] |
|
|
27 | # @DESCRIPTION: |
|
|
28 | # Sleep for the specified number of seconds (default of 5 seconds). Useful when |
|
|
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} |
56 | } |
34 | } |
57 | |
35 | |
58 | # Simple function to draw a line consisting of '=' the same length as $* |
36 | # @FUNCTION: ebeep |
59 | # |
37 | # @USAGE: [number of beeps] |
60 | # <azarah@gentoo.org> (11 Nov 2002) |
38 | # @DESCRIPTION: |
61 | # |
39 | # Issue the specified number of beeps (default of 5 beeps). Useful when |
62 | draw_line() { |
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="" |
99 | # Force applying bulk patches even if not following the style: |
255 | # @VARIABLE: EPATCH_MULTI_MSG |
100 | # |
256 | # @DESCRIPTION: |
101 | # ??_${ARCH}_foo.${EPATCH_SUFFIX} |
257 | # Change the printed message for multiple patches. |
102 | # |
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. |
103 | EPATCH_FORCE="no" |
263 | EPATCH_FORCE="no" |
104 | |
264 | |
105 | # This function is for bulk patching, or in theory for just one |
265 | # @FUNCTION: epatch |
106 | # 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. |
107 | # |
273 | # |
108 | # 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 |
109 | # Currently all patches should be the same format. |
275 | # directory specified by EPATCH_SOURCE. |
110 | # |
276 | # |
111 | # 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 |
112 | # 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. |
113 | # |
280 | # |
114 | # Above EPATCH_* variables can be used to control various defaults, |
281 | # When processing directories, epatch will apply all patches that match: |
115 | # bug they should be left as is to ensure an ebuild can rely on |
282 | # @CODE |
116 | # them for. |
283 | # if ${EPATCH_FORCE} != "yes" |
117 | # |
|
|
118 | # Patches are applied in current directory. |
|
|
119 | # |
|
|
120 | # Bulk Patches should preferibly have the form of: |
|
|
121 | # |
|
|
122 | # ??_${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. |
123 | # |
293 | # |
124 | # For example: |
294 | # If EPATCH_SUFFIX is empty, then no period before it is implied when searching |
|
|
295 | # for patches to apply. |
125 | # |
296 | # |
126 | # 01_all_misc-fix.patch.bz2 |
297 | # Refer to the other EPATCH_xxx variables for more customization of behavior. |
127 | # 02_sparc_another-fix.patch.bz2 |
|
|
128 | # |
|
|
129 | # This ensures that there are a set order, and you can have ARCH |
|
|
130 | # specific patches. |
|
|
131 | # |
|
|
132 | # If you however give an argument to epatch(), it will treat it as a |
|
|
133 | # single patch that need to be applied if its a file. If on the other |
|
|
134 | # hand its a directory, it will set EPATCH_SOURCE to this. |
|
|
135 | # |
|
|
136 | # <azarah@gentoo.org> (10 Nov 2002) |
|
|
137 | # |
|
|
138 | epatch() { |
298 | epatch() { |
139 | local PIPE_CMD="" |
299 | _epatch_draw_line() { |
140 | local STDERR_TARGET="${T}/$$.out" |
300 | # create a line of same length as input string |
141 | local PATCH_TARGET="${T}/$$.patch" |
301 | [[ -z $1 ]] && set "$(printf "%65s" '')" |
142 | 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 | |
143 | local SINGLE_PATCH="no" |
330 | local SINGLE_PATCH="no" |
144 | local x="" |
331 | # no args means process ${EPATCH_SOURCE} |
|
|
332 | [[ $# -eq 0 ]] && set -- "${EPATCH_SOURCE}" |
145 | |
333 | |
146 | if [ "$#" -gt 1 ] |
334 | if [[ -f $1 ]] ; then |
147 | then |
|
|
148 | eerror "Invalid arguments to epatch()" |
|
|
149 | die "Invalid arguments to epatch()" |
|
|
150 | fi |
|
|
151 | |
|
|
152 | if [ -n "$1" -a -f "$1" ] |
|
|
153 | 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} ..." |
|
|
424 | fi |
|
|
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 |
167 | fi |
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} *****" |
|
|
478 | echo |
|
|
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} )" |
|
|
525 | eerror |
|
|
526 | eerror "Include in your bugreport the contents of:" |
|
|
527 | eerror |
|
|
528 | eerror " ${STDERR_TARGET}" |
|
|
529 | echo |
|
|
530 | die "Failed Patch: ${patchname}!" |
|
|
531 | fi |
|
|
532 | |
|
|
533 | # if everything worked, delete the full debug patch log |
|
|
534 | rm -f "${STDERR_TARGET}" |
|
|
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} \ |
|
|
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}" |
168 | else |
628 | else |
169 | if [ ! -d ${EPATCH_SOURCE} ] |
629 | # the args here will give slightly wierd names on BSD, |
170 | then |
630 | # but should produce a usable file on all userlands |
171 | if [ -n "$1" -a "${EPATCH_SOURCE}" = "${WORKDIR}/patch" ] |
631 | if [[ ${exe} == "touch" ]] ; then |
172 | then |
632 | TMPDIR="${topdir}" mktemp -t tmp.XXXXXXXXXX |
173 | EPATCH_SOURCE="$1" |
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 |
|
|
700 | ;; |
|
|
701 | |
|
|
702 | dev) |
|
|
703 | type="Development" |
|
|
704 | ;; |
|
|
705 | |
|
|
706 | games) |
|
|
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}" |
|
|
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} |
174 | fi |
965 | fi |
175 | |
966 | case ${size} in |
176 | echo |
967 | 16|22|24|32|36|48|64|72|96|128|192|256) |
177 | eerror "Cannot find \$EPATCH_SOURCE! Value for \$EPATCH_SOURCE is:" |
968 | size=${size}x${size};; |
178 | eerror |
969 | scalable) |
179 | eerror " ${EPATCH_SOURCE}" |
|
|
180 | 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 | bz2) |
|
|
189 | PIPE_CMD="bzip2 -dc" |
|
|
190 | PATCH_SUFFIX="bz2" |
|
|
191 | ;; |
970 | ;; |
192 | gz|Z|z) |
971 | *) |
193 | PIPE_CMD="gzip -dc" |
972 | eerror "${size} is an unsupported icon size!" |
194 | PATCH_SUFFIX="gz" |
973 | exit 1;; |
195 | ;; |
974 | esac |
196 | ZIP|zip) |
975 | shift 2;; |
197 | PIPE_CMD="unzip -p" |
976 | -t|--theme) |
198 | PATCH_SUFFIX="zip" |
977 | theme=${2} |
199 | ;; |
978 | shift 2;; |
|
|
979 | -c|--context) |
|
|
980 | context=${2} |
|
|
981 | shift 2;; |
200 | *) |
982 | *) |
201 | PIPE_CMD="cat" |
983 | if [[ -z ${size} ]] ; then |
202 | PATCH_SUFFIX="patch" |
984 | insinto /usr/share/pixmaps |
203 | ;; |
985 | else |
204 | esac |
986 | insinto /usr/share/icons/${theme}/${size}/${context} |
205 | |
|
|
206 | if [ "${SINGLE_PATCH}" = "no" ] |
|
|
207 | then |
|
|
208 | einfo "Applying various patches (bugfixes/updates)..." |
|
|
209 | fi |
|
|
210 | for x in ${EPATCH_SOURCE} |
|
|
211 | do |
|
|
212 | # New ARCH dependant patch naming scheme... |
|
|
213 | # |
|
|
214 | # ???_arch_foo.patch |
|
|
215 | # |
|
|
216 | if [ -f ${x} ] && \ |
|
|
217 | ([ "${SINGLE_PATCH}" = "yes" -o "${x/_all_}" != "${x}" -o "`eval echo \$\{x/_${ARCH}_\}`" != "${x}" ] || \ |
|
|
218 | [ "${EPATCH_FORCE}" = "yes" ]) |
|
|
219 | then |
|
|
220 | local count=0 |
|
|
221 | local popts="${EPATCH_OPTS}" |
|
|
222 | |
|
|
223 | if [ -n "${EPATCH_EXCLUDE}" ] |
|
|
224 | then |
|
|
225 | if [ "`eval echo \$\{EPATCH_EXCLUDE/${x##*/}\}`" != "${EPATCH_EXCLUDE}" ] |
|
|
226 | then |
|
|
227 | continue |
|
|
228 | fi |
|
|
229 | fi |
987 | fi |
230 | |
988 | |
231 | if [ "${SINGLE_PATCH}" = "yes" ] |
989 | if [[ ${funcname} == doicon ]] ; then |
232 | then |
990 | if [[ -f $1 ]] ; then |
233 | if [ -n "${EPATCH_SINGLE_MSG}" ] |
991 | doins "${1}" |
234 | then |
992 | elif [[ -d $1 ]] ; then |
235 | einfo "${EPATCH_SINGLE_MSG}" |
993 | shopt -s nullglob |
|
|
994 | doins "${1}"/*.{png,svg} |
|
|
995 | shopt -u nullglob |
236 | else |
996 | else |
237 | einfo "Applying ${x##*/}..." |
997 | eerror "${1} is not a valid file/directory!" |
|
|
998 | exit 1 |
238 | fi |
999 | fi |
239 | else |
1000 | else |
240 | einfo " ${x##*/}..." |
1001 | break |
241 | fi |
1002 | fi |
|
|
1003 | shift 1;; |
|
|
1004 | esac |
|
|
1005 | done |
|
|
1006 | if [[ ${funcname} == newicon ]] ; then |
|
|
1007 | newins "$@" |
|
|
1008 | fi |
|
|
1009 | ) || die |
|
|
1010 | } |
242 | |
1011 | |
243 | echo "***** ${x##*/} *****" > ${STDERR_TARGET%/*}/${x##*/}-${STDERR_TARGET##*/} |
1012 | # @FUNCTION: doicon |
244 | 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 | } |
245 | |
1044 | |
246 | # Allow for prefix to differ ... im lazy, so shoot me :/ |
1045 | # @FUNCTION: newicon |
247 | while [ "${count}" -lt 5 ] |
1046 | # @USAGE: [options] <icon> <newname> |
248 | do |
1047 | # @DESCRIPTION: |
249 | # Generate some useful debug info ... |
1048 | # Like doicon, install the specified icon as newname. |
250 | draw_line "***** ${x##*/} *****" >> ${STDERR_TARGET%/*}/${x##*/}-${STDERR_TARGET##*/} |
1049 | # |
251 | 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 | } |
252 | |
1062 | |
253 | if [ "${PATCH_SUFFIX}" != "patch" ] |
1063 | # @FUNCTION: strip-linguas |
254 | then |
1064 | # @USAGE: [<allow LINGUAS>|<-i|-u> <directories of .po files>] |
255 | echo -n "PIPE_COMMAND: " >> ${STDERR_TARGET%/*}/${x##*/}-${STDERR_TARGET##*/} |
1065 | # @DESCRIPTION: |
256 | 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}" |
257 | else |
1088 | else |
258 | PATCH_TARGET="${x}" |
1089 | has ${f} ${ls} || newls="${newls} ${f}" |
259 | fi |
1090 | fi |
260 | |
|
|
261 | echo -n "PATCH COMMAND: " >> ${STDERR_TARGET%/*}/${x##*/}-${STDERR_TARGET##*/} |
|
|
262 | echo "patch ${popts} -p${count} < ${PATCH_TARGET}" >> ${STDERR_TARGET%/*}/${x##*/}-${STDERR_TARGET##*/} |
|
|
263 | |
|
|
264 | echo >> ${STDERR_TARGET%/*}/${x##*/}-${STDERR_TARGET##*/} |
|
|
265 | draw_line "***** ${x##*/} *****" >> ${STDERR_TARGET%/*}/${x##*/}-${STDERR_TARGET##*/} |
|
|
266 | |
|
|
267 | if [ "${PATCH_SUFFIX}" != "patch" ] |
|
|
268 | then |
|
|
269 | if ! (${PIPE_CMD} ${x} > ${PATCH_TARGET}) >> ${STDERR_TARGET%/*}/${x##*/}-${STDERR_TARGET##*/} 2>&1 |
|
|
270 | then |
|
|
271 | echo |
|
|
272 | eerror "Could not extract patch!" |
|
|
273 | #die "Could not extract patch!" |
|
|
274 | count=5 |
|
|
275 | break |
|
|
276 | fi |
|
|
277 | fi |
|
|
278 | |
|
|
279 | if (cat ${PATCH_TARGET} | patch ${popts} --dry-run -f -p${count}) >> ${STDERR_TARGET%/*}/${x##*/}-${STDERR_TARGET##*/} 2>&1 |
|
|
280 | then |
|
|
281 | draw_line "***** ${x##*/} *****" > ${STDERR_TARGET%/*}/${x##*/}-${STDERR_TARGET##*/}.real |
|
|
282 | echo >> ${STDERR_TARGET%/*}/${x##*/}-${STDERR_TARGET##*/}.real |
|
|
283 | echo "ACTUALLY APPLYING ${x##*/}..." >> ${STDERR_TARGET%/*}/${x##*/}-${STDERR_TARGET##*/}.real |
|
|
284 | echo >> ${STDERR_TARGET%/*}/${x##*/}-${STDERR_TARGET##*/}.real |
|
|
285 | draw_line "***** ${x##*/} *****" >> ${STDERR_TARGET%/*}/${x##*/}-${STDERR_TARGET##*/}.real |
|
|
286 | |
|
|
287 | cat ${PATCH_TARGET} | patch ${popts} -p${count} >> ${STDERR_TARGET%/*}/${x##*/}-${STDERR_TARGET##*/}.real 2>&1 |
|
|
288 | |
|
|
289 | if [ "$?" -ne 0 ] |
|
|
290 | then |
|
|
291 | cat ${STDERR_TARGET%/*}/${x##*/}-${STDERR_TARGET##*/}.real >> ${STDERR_TARGET%/*}/${x##*/}-${STDERR_TARGET##*/} |
|
|
292 | echo |
|
|
293 | eerror "A dry-run of patch command succeeded, but actually" |
|
|
294 | eerror "applying the patch failed!" |
|
|
295 | #die "Real world sux compared to the dreamworld!" |
|
|
296 | count=5 |
|
|
297 | fi |
|
|
298 | |
|
|
299 | rm -f ${STDERR_TARGET%/*}/${x##*/}-${STDERR_TARGET##*/}.real |
|
|
300 | |
|
|
301 | break |
|
|
302 | fi |
|
|
303 | |
|
|
304 | count=$((count + 1)) |
|
|
305 | done |
1091 | done |
306 | |
1092 | ls=${newls} |
307 | if [ "${PATCH_SUFFIX}" != "patch" ] |
1093 | done |
308 | then |
1094 | else |
309 | rm -f ${PATCH_TARGET} |
1095 | ls="$@" |
310 | fi |
1096 | fi |
311 | |
1097 | |
312 | if [ "${count}" -eq 5 ] |
1098 | nols="" |
313 | then |
1099 | newls="" |
314 | echo |
1100 | for f in ${LINGUAS} ; do |
315 | eerror "Failed Patch: ${x##*/}!" |
1101 | if has ${f} ${ls} ; then |
316 | eerror |
1102 | newls="${newls} ${f}" |
317 | eerror "Include in your bugreport the contents of:" |
1103 | else |
318 | eerror |
1104 | nols="${nols} ${f}" |
319 | eerror " ${STDERR_TARGET%/*}/${x##*/}-${STDERR_TARGET##*/}" |
|
|
320 | echo |
|
|
321 | die "Failed Patch: ${x##*/}!" |
|
|
322 | fi |
|
|
323 | |
|
|
324 | rm -f ${STDERR_TARGET%/*}/${x##*/}-${STDERR_TARGET##*/} |
|
|
325 | |
|
|
326 | eend 0 |
|
|
327 | fi |
1105 | fi |
328 | done |
1106 | done |
329 | if [ "${SINGLE_PATCH}" = "no" ] |
1107 | [[ -n ${nols} ]] \ |
330 | then |
1108 | && einfo "Sorry, but ${PN} does not support the LINGUAS:" ${nols} |
331 | einfo "Done with patching" |
1109 | export LINGUAS=${newls:1} |
332 | fi |
|
|
333 | } |
1110 | } |
334 | |
1111 | |
335 | # This function return true if we are using the NPTL pthreads |
1112 | # @FUNCTION: preserve_old_lib |
336 | # implementation. |
1113 | # @USAGE: <libs to preserve> [more libs] |
337 | # |
1114 | # @DESCRIPTION: |
338 | # <azarah@gentoo.org> (06 March 2003) |
1115 | # These functions are useful when a lib in your package changes ABI SONAME. |
339 | # |
1116 | # An example might be from libogg.so.0 to libogg.so.1. Removing libogg.so.0 |
340 | |
1117 | # would break packages that link against it. Most people get around this |
341 | have_NPTL() { |
1118 | # by using the portage SLOT mechanism, but that is not always a relevant |
342 | |
1119 | # solution, so instead you can call this from pkg_preinst. See also the |
343 | cat > ${T}/test-nptl.c <<-"END" |
1120 | # preserve_old_lib_notify function. |
344 | #define _XOPEN_SOURCE |
1121 | preserve_old_lib() { |
345 | #include <unistd.h> |
1122 | if [[ ${EBUILD_PHASE} != "preinst" ]] ; then |
346 | #include <stdio.h> |
1123 | eerror "preserve_old_lib() must be called from pkg_preinst() only" |
347 | |
1124 | die "Invalid preserve_old_lib() usage" |
348 | int main() |
|
|
349 | { |
|
|
350 | char buf[255]; |
|
|
351 | char *str = buf; |
|
|
352 | |
|
|
353 | confstr(_CS_GNU_LIBPTHREAD_VERSION, str, 255); |
|
|
354 | if (NULL != str) { |
|
|
355 | printf("%s\n", str); |
|
|
356 | if (NULL != strstr(str, "NPTL")) |
|
|
357 | return 0; |
|
|
358 | } |
|
|
359 | |
|
|
360 | return 1; |
|
|
361 | } |
|
|
362 | END |
|
|
363 | |
|
|
364 | einfon "Checking for _CS_GNU_LIBPTHREAD_VERSION support in glibc ... " |
|
|
365 | if gcc -o ${T}/nptl ${T}/test-nptl.c &> /dev/null |
|
|
366 | then |
|
|
367 | echo "yes" |
|
|
368 | einfon "Checking what PTHREADS implementation we have ... " |
|
|
369 | if ${T}/nptl |
|
|
370 | then |
|
|
371 | return 0 |
|
|
372 | else |
|
|
373 | return 1 |
|
|
374 | fi |
1125 | fi |
375 | else |
1126 | [[ -z $1 ]] && die "Usage: preserve_old_lib <library to preserve> [more libraries to preserve]" |
376 | echo "no" |
|
|
377 | fi |
|
|
378 | |
1127 | |
379 | return 1 |
1128 | # let portage worry about it |
380 | } |
1129 | has preserve-libs ${FEATURES} && return 0 |
381 | |
1130 | |
382 | # This function check how many cpu's are present, and then set |
1131 | local lib dir |
383 | # -j in MAKEOPTS accordingly. |
1132 | for lib in "$@" ; do |
384 | # |
1133 | [[ -e ${ROOT}/${lib} ]] || continue |
385 | # Thanks to nall <nall@gentoo.org> for this. |
1134 | dir=${lib%/*} |
386 | # |
1135 | dodir ${dir} || die "dodir ${dir} failed" |
387 | get_number_of_jobs() { |
1136 | cp "${ROOT}"/${lib} "${D}"/${lib} || die "cp ${lib} failed" |
388 | local jobs=0 |
1137 | touch "${D}"/${lib} |
|
|
1138 | done |
|
|
1139 | } |
389 | |
1140 | |
390 | if [ ! -r /proc/cpuinfo ] |
1141 | # @FUNCTION: preserve_old_lib_notify |
391 | then |
1142 | # @USAGE: <libs to notify> [more libs] |
392 | return 1 |
1143 | # @DESCRIPTION: |
393 | fi |
1144 | # Spit helpful messages about the libraries preserved by preserve_old_lib. |
394 | |
1145 | preserve_old_lib_notify() { |
395 | # This bit is from H?kan Wessberg <nacka-gentoo@refug.org>, bug #13565. |
1146 | if [[ ${EBUILD_PHASE} != "postinst" ]] ; then |
396 | if [ "`egrep "^[[:space:]]*MAKEOPTS=" /etc/make.conf | wc -l`" -gt 0 ] |
1147 | eerror "preserve_old_lib_notify() must be called from pkg_postinst() only" |
397 | then |
1148 | die "Invalid preserve_old_lib_notify() usage" |
398 | ADMINOPTS="`egrep "^[[:space:]]*MAKEOPTS=" /etc/make.conf | cut -d= -f2 | sed 's/\"//g'`" |
|
|
399 | ADMINPARAM="`echo ${ADMINOPTS} | gawk '{match($0, /-j *[0-9]*/, opt); print opt[0]}'`" |
|
|
400 | ADMINPARAM="${ADMINPARAM/-j}" |
|
|
401 | fi |
|
|
402 | |
|
|
403 | export MAKEOPTS="`echo ${MAKEOPTS} | sed -e 's:-j *[0-9]*::g'`" |
|
|
404 | |
|
|
405 | if [ "${ARCH}" = "amd64" -o "${ARCH}" = "x86" -o "${ARCH}" = "hppa" -o \ |
|
|
406 | "${ARCH}" = "arm" -o "${ARCH}" = "mips" ] |
|
|
407 | then |
|
|
408 | # these archs will always have "[Pp]rocessor" |
|
|
409 | jobs="$((`grep -c ^[Pp]rocessor /proc/cpuinfo` * 2))" |
|
|
410 | |
|
|
411 | elif [ "${ARCH}" = "sparc" -o "${ARCH}" = "sparc64" ] |
|
|
412 | then |
|
|
413 | # sparc always has "ncpus active" |
|
|
414 | jobs="$((`grep "^ncpus active" /proc/cpuinfo | sed -e "s/^.*: //"` * 2))" |
|
|
415 | |
|
|
416 | elif [ "${ARCH}" = "alpha" ] |
|
|
417 | then |
|
|
418 | # alpha has "cpus active", but only when compiled with SMP |
|
|
419 | if [ "`grep -c "^cpus active" /proc/cpuinfo`" -eq 1 ] |
|
|
420 | then |
|
|
421 | jobs="$((`grep "^cpus active" /proc/cpuinfo | sed -e "s/^.*: //"` * 2))" |
|
|
422 | else |
|
|
423 | jobs=2 |
|
|
424 | fi |
1149 | fi |
425 | |
1150 | |
426 | elif [ "${ARCH}" = "ppc" ] |
1151 | # let portage worry about it |
427 | then |
1152 | has preserve-libs ${FEATURES} && return 0 |
428 | # ppc has "processor", but only when compiled with SMP |
1153 | |
429 | if [ "`grep -c "^processor" /proc/cpuinfo`" -eq 1 ] |
1154 | local lib notice=0 |
430 | then |
1155 | for lib in "$@" ; do |
431 | jobs="$((`grep -c ^processor /proc/cpuinfo` * 2))" |
1156 | [[ -e ${ROOT}/${lib} ]] || continue |
432 | else |
1157 | if [[ ${notice} -eq 0 ]] ; then |
433 | jobs=2 |
1158 | notice=1 |
434 | fi |
1159 | ewarn "Old versions of installed libraries were detected on your system." |
435 | else |
1160 | ewarn "In order to avoid breaking packages that depend on these old libs," |
436 | jobs="$((`grep -c ^cpu /proc/cpuinfo` * 2))" |
1161 | ewarn "the libraries are not being removed. You need to run revdep-rebuild" |
437 | die "Unknown ARCH -- ${ARCH}!" |
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 |
438 | fi |
1165 | fi |
|
|
1166 | ewarn " # revdep-rebuild --library '${lib}' && rm '${lib}'" |
|
|
1167 | done |
|
|
1168 | } |
439 | |
1169 | |
440 | # Make sure the number is valid ... |
1170 | # @FUNCTION: built_with_use |
441 | if [ "${jobs}" -lt 1 ] |
1171 | # @USAGE: [--hidden] [--missing <action>] [-a|-o] <DEPEND ATOM> <List of USE flags> |
442 | then |
1172 | # @DESCRIPTION: |
443 | jobs=1 |
1173 | # |
444 | fi |
1174 | # Deprecated: Use EAPI 2 use deps in DEPEND|RDEPEND and with has_version calls. |
445 | |
1175 | # |
446 | if [ -n "${ADMINPARAM}" ] |
1176 | # A temporary hack until portage properly supports DEPENDing on USE |
447 | then |
1177 | # flags being enabled in packages. This will check to see if the specified |
448 | if [ "${jobs}" -gt "${ADMINPARAM}" ] |
1178 | # DEPEND atom was built with the specified list of USE flags. The |
449 | then |
1179 | # --missing option controls the behavior if called on a package that does |
450 | einfo "Setting make jobs to \"-j${ADMINPARAM}\" to ensure successful merge..." |
1180 | # not actually support the defined USE flags (aka listed in IUSE). |
451 | export MAKEOPTS="${MAKEOPTS} -j${ADMINPARAM}" |
1181 | # The default is to abort (call die). The -a and -o flags control |
452 | else |
1182 | # the requirements of the USE flags. They correspond to "and" and "or" |
453 | 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 |
454 | 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 |
455 | fi |
1196 | fi |
456 | fi |
|
|
457 | } |
|
|
458 | |
1197 | |
459 | # Simplify/standardize adding users to the system |
1198 | local missing_action="die" |
460 | # vapier@gentoo.org |
1199 | if [[ $1 == "--missing" ]] ; then |
461 | # |
1200 | missing_action=$2 |
462 | # enewuser(username, uid, shell, homedir, groups, extra options) |
1201 | shift ; shift |
463 | # |
1202 | case ${missing_action} in |
464 | # Default values if you do not specify any: |
1203 | true|false|die) ;; |
465 | # username: REQUIRED ! |
1204 | *) die "unknown action '${missing_action}'";; |
466 | # uid: next available (see useradd(8)) |
1205 | esac |
467 | # note: pass -1 to get default behavior |
|
|
468 | # shell: /bin/false |
|
|
469 | # homedir: /dev/null |
|
|
470 | # groups: none |
|
|
471 | # extra: comment of 'added by portage for ${PN}' |
|
|
472 | enewuser() { |
|
|
473 | # get the username |
|
|
474 | local euser="$1"; shift |
|
|
475 | if [ -z "${euser}" ] ; then |
|
|
476 | eerror "No username specified !" |
|
|
477 | die "Cannot call enewuser without a username" |
|
|
478 | fi |
|
|
479 | einfo "Adding user '${euser}' to your system ..." |
|
|
480 | |
|
|
481 | # setup a file for testing usernames/groups |
|
|
482 | local tmpfile="`mktemp -p ${T}`" |
|
|
483 | touch ${tmpfile} |
|
|
484 | chown ${euser} ${tmpfile} >& /dev/null |
|
|
485 | local realuser="`ls -l ${tmpfile} | awk '{print $3}'`" |
|
|
486 | |
|
|
487 | # see if user already exists |
|
|
488 | if [ "${euser}" == "${realuser}" ] ; then |
|
|
489 | einfo "${euser} already exists on your system :)" |
|
|
490 | return 0 |
|
|
491 | fi |
|
|
492 | |
|
|
493 | # options to pass to useradd |
|
|
494 | local opts="" |
|
|
495 | |
|
|
496 | # handle uid |
|
|
497 | local euid="$1"; shift |
|
|
498 | if [ ! -z "${euid}" ] && [ "${euid}" != "-1" ] ; then |
|
|
499 | if [ ${euid} -gt 0 ] ; then |
|
|
500 | opts="${opts} -u ${euid}" |
|
|
501 | else |
|
|
502 | eerror "Userid given but is not greater than 0 !" |
|
|
503 | die "${euid} is not a valid UID" |
|
|
504 | fi |
1206 | fi |
505 | else |
|
|
506 | euid="next available" |
|
|
507 | fi |
|
|
508 | einfo " - Userid: ${euid}" |
|
|
509 | |
1207 | |
510 | # handle shell |
1208 | local opt=$1 |
511 | local eshell="$1"; shift |
1209 | [[ ${opt:0:1} = "-" ]] && shift || opt="-a" |
512 | if [ ! -z "${eshell}" ] ; then |
1210 | |
513 | if [ ! -e ${eshell} ] ; then |
1211 | local PKG=$(best_version $1) |
514 | eerror "A shell was specified but it does not exist !" |
1212 | [[ -z ${PKG} ]] && die "Unable to resolve $1 to an installed package" |
515 | 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 |
516 | fi |
1226 | fi |
517 | else |
|
|
518 | eshell=/bin/false |
|
|
519 | fi |
|
|
520 | einfo " - Shell: ${eshell}" |
|
|
521 | opts="${opts} -s ${eshell}" |
|
|
522 | |
1227 | |
523 | # handle homedir |
1228 | if [[ ${hidden} == "no" ]] ; then |
524 | local ehome="$1"; shift |
1229 | local IUSE_BUILT=( $(<"${IUSEFILE}") ) |
525 | if [ -z "${ehome}" ] ; then |
1230 | # Don't check USE_EXPAND #147237 |
526 | ehome=/dev/null |
1231 | local expand |
527 | fi |
1232 | for expand in $(echo ${USE_EXPAND} | tr '[:upper:]' '[:lower:]') ; do |
528 | einfo " - Home: ${ehome}" |
1233 | if [[ $1 == ${expand}_* ]] ; then |
529 | opts="${opts} -d ${ehome}" |
1234 | expand="" |
530 | |
1235 | break |
531 | # handle groups |
|
|
532 | local egroups="$1"; shift |
|
|
533 | if [ ! -z "${egroups}" ] ; then |
|
|
534 | local realgroup |
|
|
535 | local oldifs="${IFS}" |
|
|
536 | export IFS="," |
|
|
537 | for g in ${egroups} ; do |
|
|
538 | chgrp ${g} ${tmpfile} >& /dev/null |
|
|
539 | realgroup="`ls -l ${tmpfile} | awk '{print $4}'`" |
|
|
540 | if [ "${g}" != "${realgroup}" ] ; then |
|
|
541 | eerror "You must add ${g} to the system first" |
|
|
542 | die "${g} is not a valid GID" |
|
|
543 | fi |
1236 | fi |
544 | done |
1237 | done |
545 | export IFS="${oldifs}" |
1238 | if [[ -n ${expand} ]] ; then |
546 | 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}" |
547 | else |
1297 | else |
548 | egroups="(none)" |
1298 | export LD_LIBRARY_PATH="${libdir}" |
|
|
1299 | fi |
549 | fi |
1300 | fi |
550 | einfo " - Groups: ${egroups}" |
1301 | exec ${bin} "\$@" |
551 | |
1302 | EOF |
552 | # handle extra and add the user |
1303 | chmod go+rx "${tmpwrapper}" |
553 | local eextra="$@" |
1304 | if [[ -n ${path} ]] ; then |
554 | local oldsandbox=${SANDBOX_ON} |
1305 | ( |
555 | export SANDBOX_ON="0" |
1306 | exeinto "${path}" |
556 | if [ -z "${eextra}" ] ; then |
1307 | newexe "${tmpwrapper}" "${wrapper}" |
557 | useradd ${opts} ${euser} \ |
1308 | ) || die |
558 | -c "added by portage for ${PN}" \ |
|
|
559 | || die "enewuser failed" |
|
|
560 | else |
1309 | else |
561 | einfo " - Extra: ${eextra}" |
1310 | newbin "${tmpwrapper}" "${wrapper}" || die |
562 | useradd ${opts} ${euser} ${eextra} \ |
1311 | fi |
563 | || die "enewuser failed" |
1312 | } |
|
|
1313 | |
|
|
1314 | # @FUNCTION: path_exists |
|
|
1315 | # @USAGE: [-a|-o] <paths> |
|
|
1316 | # @DESCRIPTION: |
|
|
1317 | # Check if the specified paths exist. Works for all types of paths |
|
|
1318 | # (files/dirs/etc...). The -a and -o flags control the requirements |
|
|
1319 | # of the paths. They correspond to "and" and "or" logic. So the -a |
|
|
1320 | # flag means all the paths must exist while the -o flag means at least |
|
|
1321 | # one of the paths must exist. The default behavior is "and". If no |
|
|
1322 | # paths are specified, then the return value is "false". |
|
|
1323 | path_exists() { |
|
|
1324 | local opt=$1 |
|
|
1325 | [[ ${opt} == -[ao] ]] && shift || opt="-a" |
|
|
1326 | |
|
|
1327 | # no paths -> return false |
|
|
1328 | # same behavior as: [[ -e "" ]] |
|
|
1329 | [[ $# -eq 0 ]] && return 1 |
|
|
1330 | |
|
|
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] |
|
|
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 '--all' argument is passed, all .la files are removed. This is |
|
|
1393 | # usually useful when the package installs plugins and does not use .la |
|
|
1394 | # files for loading them. |
|
|
1395 | # |
|
|
1396 | # The .a files are only removed whenever corresponding .la files state |
|
|
1397 | # that they should not be linked to, i.e. whenever these files |
|
|
1398 | # correspond to plugins. |
|
|
1399 | # |
|
|
1400 | # Note: if your package installs both static libraries and .pc files, |
|
|
1401 | # you need to add pkg-config to your DEPEND. |
|
|
1402 | prune_libtool_files() { |
|
|
1403 | debug-print-function ${FUNCNAME} "$@" |
|
|
1404 | |
|
|
1405 | local removing_all opt |
|
|
1406 | for opt; do |
|
|
1407 | case "${opt}" in |
|
|
1408 | --all) |
|
|
1409 | removing_all=1 |
|
|
1410 | ;; |
|
|
1411 | *) |
|
|
1412 | die "Invalid argument to ${FUNCNAME}(): ${opt}" |
|
|
1413 | esac |
|
|
1414 | done |
|
|
1415 | |
|
|
1416 | local f |
|
|
1417 | local queue=() |
|
|
1418 | while IFS= read -r -d '' f; do # for all .la files |
|
|
1419 | local archivefile=${f/%.la/.a} |
|
|
1420 | |
|
|
1421 | [[ ${f} != ${archivefile} ]] || die 'regex sanity check failed' |
|
|
1422 | |
|
|
1423 | # Remove static libs we're not supposed to link against. |
|
|
1424 | if grep -q '^shouldnotlink=yes$' "${f}"; then |
|
|
1425 | if [[ -f ${archivefile} ]]; then |
|
|
1426 | einfo "Removing unnecessary ${archivefile#${D%/}} (static plugin)" |
|
|
1427 | queue+=( "${archivefile}" ) |
|
|
1428 | fi |
|
|
1429 | |
|
|
1430 | # The .la file may be used by a module loader, so avoid removing it |
|
|
1431 | # unless explicitly requested. |
|
|
1432 | [[ ${removing_all} ]] || continue |
564 | fi |
1433 | fi |
565 | export SANDBOX_ON="${oldsandbox}" |
|
|
566 | |
1434 | |
567 | if [ ! -e ${ehome} ] && [ ! -e ${D}/${ehome} ] ; then |
1435 | # Remove .la files when: |
568 | einfo " - Creating ${ehome} in ${D}" |
1436 | # - user explicitly wants us to remove all .la files, |
569 | dodir ${ehome} |
1437 | # - respective static archive doesn't exist, |
570 | fowners ${euser} ${ehome} |
1438 | # - they are covered by a .pc file already, |
571 | fperms 755 ${ehome} |
1439 | # - they don't provide any new information (no libs & no flags). |
572 | fi |
1440 | local reason pkgconfig_scanned |
573 | } |
1441 | if [[ ${removing_all} ]]; then |
574 | |
1442 | reason='requested' |
575 | # Simplify/standardize adding groups to the system |
1443 | elif [[ ! -f ${archivefile} ]]; then |
576 | # vapier@gentoo.org |
1444 | reason='no static archive' |
577 | # |
1445 | elif [[ ! $(sed -nre \ |
578 | # enewgroup(group, gid) |
1446 | "s/^(dependency_libs|inherited_linker_flags)='(.*)'$/\2/p" \ |
579 | # |
1447 | "${f}") ]]; then |
580 | # Default values if you do not specify any: |
1448 | reason='no libs & flags' |
581 | # groupname: REQUIRED ! |
|
|
582 | # gid: next available (see groupadd(8)) |
|
|
583 | # extra: none |
|
|
584 | enewgroup() { |
|
|
585 | # get the group |
|
|
586 | local egroup="$1"; shift |
|
|
587 | if [ -z "${egroup}" ] ; then |
|
|
588 | eerror "No group specified !" |
|
|
589 | die "Cannot call enewgroup without a group" |
|
|
590 | fi |
|
|
591 | einfo "Adding group '${egroup}' to your system ..." |
|
|
592 | |
|
|
593 | # setup a file for testing groupname |
|
|
594 | local tmpfile="`mktemp -p ${T}`" |
|
|
595 | touch ${tmpfile} |
|
|
596 | chgrp ${egroup} ${tmpfile} >& /dev/null |
|
|
597 | local realgroup="`ls -l ${tmpfile} | awk '{print $4}'`" |
|
|
598 | |
|
|
599 | # see if group already exists |
|
|
600 | if [ "${egroup}" == "${realgroup}" ] ; then |
|
|
601 | einfo "${egroup} already exists on your system :)" |
|
|
602 | return 0 |
|
|
603 | fi |
|
|
604 | |
|
|
605 | # options to pass to useradd |
|
|
606 | local opts="" |
|
|
607 | |
|
|
608 | # handle gid |
|
|
609 | local egid="$1"; shift |
|
|
610 | if [ ! -z "${egid}" ] ; then |
|
|
611 | if [ ${egid} -gt 0 ] ; then |
|
|
612 | opts="${opts} -g ${egid}" |
|
|
613 | else |
1449 | else |
614 | eerror "Groupid given but is not greater than 0 !" |
1450 | if [[ ! ${pkgconfig_scanned} ]]; then |
615 | die "${egid} is not a valid GID" |
1451 | # Create a list of all .pc-covered libs. |
616 | fi |
1452 | local pc_libs=() |
617 | else |
1453 | if [[ ! ${removing_all} ]]; then |
618 | egid="next available" |
1454 | local f |
619 | fi |
1455 | local tf=${T}/prune-lt-files.pc |
620 | einfo " - Groupid: ${egid}" |
1456 | local pkgconf=$(tc-getPKG_CONFIG) |
621 | |
1457 | |
622 | # handle extra |
1458 | while IFS= read -r -d '' f; do # for all .pc files |
623 | local eextra="$@" |
1459 | local arg |
624 | opts="${opts} ${eextra}" |
|
|
625 | |
1460 | |
626 | # add the group |
1461 | sed -e '/^Requires:/d' "${f}" > "${tf}" |
627 | local oldsandbox=${SANDBOX_ON} |
1462 | for arg in $("${pkgconf}" --libs "${tf}"); do |
628 | export SANDBOX_ON="0" |
1463 | [[ ${arg} == -l* ]] && pc_libs+=( lib${arg#-l}.la ) |
629 | groupadd ${opts} ${egroup} || die "enewgroup failed" |
1464 | done |
630 | export SANDBOX_ON="${oldsandbox}" |
1465 | done < <(find "${D}" -type f -name '*.pc' -print0) |
631 | } |
|
|
632 | |
1466 | |
633 | # Simple script to replace 'dos2unix' binaries |
1467 | rm -f "${tf}" |
634 | # vapier@gentoo.org |
|
|
635 | # |
|
|
636 | # edos2unix(file, <more files>...) |
|
|
637 | edos2unix() { |
|
|
638 | for f in $@ ; do |
|
|
639 | cp ${f} ${T}/edos2unix |
|
|
640 | sed 's/\r$//' ${T}/edos2unix > ${f} |
|
|
641 | done |
|
|
642 | } |
|
|
643 | |
|
|
644 | # new convenience patch wrapper function to eventually replace epatch(), |
|
|
645 | # $PATCHES, $PATCHES1, src_unpack:patch, src_unpack:autopatch and |
|
|
646 | # /usr/bin/patch |
|
|
647 | # Features: |
|
|
648 | # - bulk patch handling similar to epatch()'s |
|
|
649 | # - automatic patch level detection like epatch()'s |
|
|
650 | # - automatic patch uncompression like epatch()'s |
|
|
651 | # - doesn't have the --dry-run overhead of epatch() - inspects patchfiles |
|
|
652 | # manually instead |
|
|
653 | # - once I decide it's production-ready, it'll be called from base_src_unpack |
|
|
654 | # to handle $PATCHES to avoid defining src_unpack just to use xpatch |
|
|
655 | |
|
|
656 | # accepts zero or more parameters specifying patchfiles and/or patchdirs |
|
|
657 | |
|
|
658 | # known issues: |
|
|
659 | # - only supports unified style patches (does anyone _really_ use anything |
|
|
660 | # else?) |
|
|
661 | # - because it doesn't use --dry-run there is a risk of it failing |
|
|
662 | # to find the files to patch, ie detect the patchlevel, properly. It doesn't use |
|
|
663 | # any of the backup heuristics that patch employs to discover a filename. |
|
|
664 | # however, this isn't dangerous because if it works for the developer who's |
|
|
665 | # writing the ebuild, it'll always work for the users, and if it doesn't, |
|
|
666 | # then we'll fix it :-) |
|
|
667 | # - no support as yet for patches applying outside $S (and not directly in $WORKDIR). |
|
|
668 | xpatch() { |
|
|
669 | |
|
|
670 | debug-print-function $FUNCNAME $* |
|
|
671 | |
|
|
672 | local list="" |
|
|
673 | local list2="" |
|
|
674 | declare -i plevel |
|
|
675 | |
|
|
676 | # parse patch sources |
|
|
677 | for x in $*; do |
|
|
678 | debug-print "$FUNCNAME: parsing parameter $x" |
|
|
679 | if [ -f "$x" ]; then |
|
|
680 | list="$list $x" |
|
|
681 | elif [ -d "$x" ]; then |
|
|
682 | # handles patchdirs like epatch() for now: no recursion. |
|
|
683 | # patches are sorted by filename, so with an xy_foo naming scheme you'll get the right order. |
|
|
684 | # only patches with _$ARCH_ or _all_ in their filenames are applied. |
|
|
685 | for file in `ls -A $x`; do |
|
|
686 | debug-print "$FUNCNAME: parsing in subdir: file $file" |
|
|
687 | if [ -f "$x/$file" ] && [ "${file}" != "${file/_all_}" -o "${file}" != "${file/_$ARCH_}" ]; then |
|
|
688 | list2="$list2 $x/$file" |
|
|
689 | fi |
1468 | fi |
690 | done |
1469 | |
691 | list="`echo $list2 | sort` $list" |
1470 | pkgconfig_scanned=1 |
692 | else |
|
|
693 | die "Couldn't find $x" |
|
|
694 | fi |
1471 | fi |
695 | done |
|
|
696 | |
1472 | |
697 | debug-print "$FUNCNAME: final list of patches: $list" |
1473 | has "${f##*/}" "${pc_libs[@]}" && reason='covered by .pc' |
|
|
1474 | fi |
698 | |
1475 | |
699 | for x in $list; do |
1476 | if [[ ${reason} ]]; then |
700 | debug-print "$FUNCNAME: processing $x" |
1477 | einfo "Removing unnecessary ${f#${D%/}} (${reason})" |
701 | # deal with compressed files. /usr/bin/file is in the system profile, or should be. |
1478 | queue+=( "${f}" ) |
702 | case "`/usr/bin/file -b $x`" in |
1479 | fi |
703 | *gzip*) patchfile="${T}/current.patch"; ungzip -c "$x" > "${patchfile}";; |
1480 | done < <(find "${D}" -xtype f -name '*.la' -print0) |
704 | *bzip2*) patchfile="${T}/current.patch"; bunzip2 -c "$x" > "${patchfile}";; |
|
|
705 | *text*) patchfile="$x";; |
|
|
706 | *) die "Could not determine filetype of patch $x";; |
|
|
707 | esac |
|
|
708 | debug-print "$FUNCNAME: patchfile=$patchfile" |
|
|
709 | |
1481 | |
710 | # determine patchlevel. supports p0 and higher with either $S or $WORKDIR as base. |
1482 | if [[ ${queue[@]} ]]; then |
711 | target="`/bin/grep -m 1 '^+++ ' $patchfile`" |
1483 | rm -f "${queue[@]}" |
712 | debug-print "$FUNCNAME: raw target=$target" |
1484 | fi |
713 | # strip target down to the path/filename, remove leading +++ |
|
|
714 | target="${target/+++ }"; target="${target%% *}" |
|
|
715 | # duplicate slashes are discarded by patch wrt the patchlevel. therefore we need |
|
|
716 | # to discard them as well to calculate the correct patchlevel. |
|
|
717 | target="${target//\/\//\/}" |
|
|
718 | debug-print "$FUNCNAME: stripped target=$target" |
|
|
719 | |
|
|
720 | # look for target |
|
|
721 | for basedir in "$S" "$WORKDIR" "${PWD}"; do |
|
|
722 | debug-print "$FUNCNAME: looking in basedir=$basedir" |
|
|
723 | cd "$basedir" |
|
|
724 | |
|
|
725 | # try stripping leading directories |
|
|
726 | target2="$target" |
|
|
727 | plevel=0 |
|
|
728 | debug-print "$FUNCNAME: trying target2=$target2, plevel=$plevel" |
|
|
729 | while [ ! -f "$target2" ]; do |
|
|
730 | target2="${target2#*/}" # removes piece of target2 upto the first occurence of / |
|
|
731 | plevel=plevel+1 |
|
|
732 | debug-print "$FUNCNAME: trying target2=$target2, plevel=$plevel" |
|
|
733 | [ "$target2" == "${target2/\/}" ] && break |
|
|
734 | done |
|
|
735 | test -f "$target2" && break |
|
|
736 | |
|
|
737 | # try stripping filename - needed to support patches creating new files |
|
|
738 | target2="${target%/*}" |
|
|
739 | plevel=0 |
|
|
740 | debug-print "$FUNCNAME: trying target2=$target2, plevel=$plevel" |
|
|
741 | while [ ! -d "$target2" ]; do |
|
|
742 | target2="${target2#*/}" # removes piece of target2 upto the first occurence of / |
|
|
743 | plevel=plevel+1 |
|
|
744 | debug-print "$FUNCNAME: trying target2=$target2, plevel=$plevel" |
|
|
745 | [ "$target2" == "${target2/\/}" ] && break |
|
|
746 | done |
|
|
747 | test -d "$target2" && break |
|
|
748 | |
|
|
749 | done |
|
|
750 | |
|
|
751 | test -f "${basedir}/${target2}" || test -d "${basedir}/${target2}" || die "Could not determine patchlevel for $x" |
|
|
752 | debug-print "$FUNCNAME: determined plevel=$plevel" |
|
|
753 | # do the patching |
|
|
754 | ebegin "Applying patch ${x##*/}..." |
|
|
755 | /usr/bin/patch -p$plevel < "$patchfile" > /dev/null || die "Failed to apply patch $x" |
|
|
756 | eend $? |
|
|
757 | |
|
|
758 | done |
|
|
759 | |
|
|
760 | } |
1485 | } |
|
|
1486 | |
|
|
1487 | check_license() { die "you no longer need this as portage supports ACCEPT_LICENSE itself"; } |
|
|
1488 | |
|
|
1489 | fi |