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