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