| 1 | # Copyright 1999-2007 Gentoo Foundation |
1 | # Copyright 1999-2009 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.284 2007/06/21 04:44:45 vapier Exp $ |
3 | # $Header: /var/cvsroot/gentoo-x86/eclass/eutils.eclass,v 1.328 2010/01/10 15:58:58 scarabeus Exp $ |
| 4 | |
4 | |
| 5 | # @ECLASS: eutils.eclass |
5 | # @ECLASS: eutils.eclass |
| 6 | # @MAINTAINER: |
6 | # @MAINTAINER: |
| 7 | # base-system@gentoo.org |
7 | # base-system@gentoo.org |
| 8 | # @BLURB: many extra (but common) functions that are used in ebuilds |
8 | # @BLURB: many extra (but common) functions that are used in ebuilds |
| 9 | # @DESCRIPTION: |
9 | # @DESCRIPTION: |
| 10 | # The eutils eclass contains a suite of functions that complement |
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 |
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 |
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. |
13 | # home rather than having multiple ebuilds implementing the same thing. |
| 14 | # |
14 | # |
| 15 | # Due to the nature of this eclass, some functions may have maintainers |
15 | # Due to the nature of this eclass, some functions may have maintainers |
| 16 | # different from the overall eclass! |
16 | # different from the overall eclass! |
| 17 | |
17 | |
| 18 | inherit multilib portability |
18 | inherit multilib portability |
| 19 | |
19 | |
| … | |
… | |
| 47 | sleep 1 |
47 | sleep 1 |
| 48 | done |
48 | done |
| 49 | fi |
49 | fi |
| 50 | } |
50 | } |
| 51 | |
51 | |
| 52 | # Default directory where patches are located |
52 | # @FUNCTION: ecvs_clean |
|
|
53 | # @USAGE: [list of dirs] |
|
|
54 | # @DESCRIPTION: |
|
|
55 | # Remove CVS directories recursiveley. Useful when a source tarball contains |
|
|
56 | # internal CVS directories. Defaults to $PWD. |
|
|
57 | ecvs_clean() { |
|
|
58 | [[ -z $* ]] && set -- . |
|
|
59 | find "$@" -type d -name 'CVS' -prune -print0 | xargs -0 rm -rf |
|
|
60 | find "$@" -type f -name '.cvs*' -print0 | xargs -0 rm -rf |
|
|
61 | } |
|
|
62 | |
|
|
63 | # @FUNCTION: esvn_clean |
|
|
64 | # @USAGE: [list of dirs] |
|
|
65 | # @DESCRIPTION: |
|
|
66 | # Remove .svn directories recursiveley. Useful when a source tarball contains |
|
|
67 | # internal Subversion directories. Defaults to $PWD. |
|
|
68 | esvn_clean() { |
|
|
69 | [[ -z $* ]] && set -- . |
|
|
70 | find "$@" -type d -name '.svn' -prune -print0 | xargs -0 rm -rf |
|
|
71 | } |
|
|
72 | |
|
|
73 | # @FUNCTION: eshopts_push |
|
|
74 | # @USAGE: [options to `set`] |
|
|
75 | # @DESCRIPTION: |
|
|
76 | # Often times code will want to enable a shell option to change code behavior. |
|
|
77 | # Since changing shell options can easily break other pieces of code (which |
|
|
78 | # assume the default state), eshopts_push is used to (1) push the current shell |
|
|
79 | # options onto a stack and (2) pass the specified arguments to set. |
|
|
80 | # |
|
|
81 | # A common example is to disable shell globbing so that special meaning/care |
|
|
82 | # may be used with variables/arguments to custom functions. That would be: |
|
|
83 | # @CODE |
|
|
84 | # eshopts_push -o noglob |
|
|
85 | # for x in ${foo} ; do |
|
|
86 | # if ...some check... ; then |
|
|
87 | # eshopts_pop |
|
|
88 | # return 0 |
|
|
89 | # fi |
|
|
90 | # done |
|
|
91 | # eshopts_pop |
|
|
92 | # @CODE |
|
|
93 | eshopts_push() { |
|
|
94 | # have to assume __ESHOPTS_SAVE__ isn't screwed with |
|
|
95 | # as a `declare -a` here will reset its value |
|
|
96 | local i=${#__ESHOPTS_SAVE__[@]} |
|
|
97 | __ESHOPTS_SAVE__[$i]=$- |
|
|
98 | [[ $# -eq 0 ]] && return 0 |
|
|
99 | set "$@" || die "eshopts_push: bad options to set: $*" |
|
|
100 | } |
|
|
101 | |
|
|
102 | # @FUNCTION: eshopts_pop |
|
|
103 | # @USAGE: |
|
|
104 | # @DESCRIPTION: |
|
|
105 | # Restore the shell options to the state saved with the corresponding |
|
|
106 | # eshopts_push call. See that function for more details. |
|
|
107 | eshopts_pop() { |
|
|
108 | [[ $# -ne 0 ]] && die "eshopts_pop takes no arguments" |
|
|
109 | local i=$(( ${#__ESHOPTS_SAVE__[@]} - 1 )) |
|
|
110 | [[ ${i} -eq -1 ]] && die "eshopts_{push,pop}: unbalanced pair" |
|
|
111 | local s=${__ESHOPTS_SAVE__[$i]} |
|
|
112 | unset __ESHOPTS_SAVE__[$i] |
|
|
113 | set +$- || die "eshopts_pop: sanity: invalid shell settings: $-" |
|
|
114 | set -${s} || die "eshopts_pop: sanity: unable to restore saved shell settings: ${s}" |
|
|
115 | } |
|
|
116 | |
|
|
117 | # @VARIABLE: EPATCH_SOURCE |
|
|
118 | # @DESCRIPTION: |
|
|
119 | # Default directory to search for patches. |
| 53 | EPATCH_SOURCE="${WORKDIR}/patch" |
120 | EPATCH_SOURCE="${WORKDIR}/patch" |
| 54 | # Default extension for patches |
121 | # @VARIABLE: EPATCH_SUFFIX |
|
|
122 | # @DESCRIPTION: |
|
|
123 | # Default extension for patches (do not prefix the period yourself). |
| 55 | EPATCH_SUFFIX="patch.bz2" |
124 | EPATCH_SUFFIX="patch.bz2" |
|
|
125 | # @VARIABLE: EPATCH_OPTS |
|
|
126 | # @DESCRIPTION: |
| 56 | # Default options for patch |
127 | # Default options for patch: |
|
|
128 | # @CODE |
| 57 | # Set -g0 to keep RCS, ClearCase, Perforce and SCCS happy. Bug #24571 |
129 | # -g0 - keep RCS, ClearCase, Perforce and SCCS happy #24571 |
| 58 | # Set --no-backup-if-mismatch so we don't leave '.orig' files behind. |
130 | # --no-backup-if-mismatch - do not leave .orig files behind |
| 59 | # Set -E to automatically remove empty files. |
131 | # -E - automatically remove empty files |
|
|
132 | # @CODE |
| 60 | EPATCH_OPTS="-g0 -E --no-backup-if-mismatch" |
133 | EPATCH_OPTS="-g0 -E --no-backup-if-mismatch" |
|
|
134 | # @VARIABLE: EPATCH_EXCLUDE |
|
|
135 | # @DESCRIPTION: |
| 61 | # List of patches not to apply. Not this is only file names, |
136 | # List of patches not to apply. Note this is only file names, |
| 62 | # and not the full path .. |
137 | # and not the full path. Globs accepted. |
| 63 | EPATCH_EXCLUDE="" |
138 | EPATCH_EXCLUDE="" |
|
|
139 | # @VARIABLE: EPATCH_SINGLE_MSG |
|
|
140 | # @DESCRIPTION: |
| 64 | # Change the printed message for a single patch. |
141 | # Change the printed message for a single patch. |
| 65 | EPATCH_SINGLE_MSG="" |
142 | EPATCH_SINGLE_MSG="" |
|
|
143 | # @VARIABLE: EPATCH_MULTI_MSG |
|
|
144 | # @DESCRIPTION: |
| 66 | # Change the printed message for multiple patches. |
145 | # Change the printed message for multiple patches. |
| 67 | EPATCH_MULTI_MSG="Applying various patches (bugfixes/updates) ..." |
146 | EPATCH_MULTI_MSG="Applying various patches (bugfixes/updates) ..." |
| 68 | # Force applying bulk patches even if not following the style: |
147 | # @VARIABLE: EPATCH_FORCE |
| 69 | # |
148 | # @DESCRIPTION: |
| 70 | # ??_${ARCH}_foo.${EPATCH_SUFFIX} |
149 | # Only require patches to match EPATCH_SUFFIX rather than the extended |
| 71 | # |
150 | # arch naming style. |
| 72 | EPATCH_FORCE="no" |
151 | EPATCH_FORCE="no" |
| 73 | |
152 | |
| 74 | # This function is for bulk patching, or in theory for just one |
153 | # @FUNCTION: epatch |
| 75 | # or two patches. |
154 | # @USAGE: [patches] [dirs of patches] |
|
|
155 | # @DESCRIPTION: |
|
|
156 | # epatch is designed to greatly simplify the application of patches. It can |
|
|
157 | # process patch files directly, or directories of patches. The patches may be |
|
|
158 | # compressed (bzip/gzip/etc...) or plain text. You generally need not specify |
|
|
159 | # the -p option as epatch will automatically attempt -p0 to -p5 until things |
|
|
160 | # apply successfully. |
| 76 | # |
161 | # |
| 77 | # It should work with .bz2, .gz, .zip and plain text patches. |
162 | # If you do not specify any options, then epatch will default to the directory |
| 78 | # Currently all patches should be the same format. |
163 | # specified by EPATCH_SOURCE. |
| 79 | # |
164 | # |
| 80 | # You do not have to specify '-p' option to patch, as it will |
165 | # When processing directories, epatch will apply all patches that match: |
| 81 | # try with -p0 to -p5 until it succeed, or fail at -p5. |
166 | # @CODE |
| 82 | # |
167 | # ${EPATCH_FORCE} == "yes" |
| 83 | # Above EPATCH_* variables can be used to control various defaults, |
|
|
| 84 | # bug they should be left as is to ensure an ebuild can rely on |
|
|
| 85 | # them for. |
|
|
| 86 | # |
|
|
| 87 | # Patches are applied in current directory. |
|
|
| 88 | # |
|
|
| 89 | # Bulk Patches should preferibly have the form of: |
|
|
| 90 | # |
|
|
| 91 | # ??_${ARCH}_foo.${EPATCH_SUFFIX} |
168 | # ??_${ARCH}_foo.${EPATCH_SUFFIX} |
|
|
169 | # else |
|
|
170 | # *.${EPATCH_SUFFIX} |
|
|
171 | # @CODE |
|
|
172 | # The leading ?? are typically numbers used to force consistent patch ordering. |
|
|
173 | # The arch field is used to apply patches only for the host architecture with |
|
|
174 | # the special value of "all" means apply for everyone. Note that using values |
|
|
175 | # other than "all" is highly discouraged -- you should apply patches all the |
|
|
176 | # time and let architecture details be detected at configure/compile time. |
| 92 | # |
177 | # |
| 93 | # For example: |
178 | # If EPATCH_SUFFIX is empty, then no period before it is implied when searching |
|
|
179 | # for patches to apply. |
| 94 | # |
180 | # |
| 95 | # 01_all_misc-fix.patch.bz2 |
181 | # Refer to the other EPATCH_xxx variables for more customization of behavior. |
| 96 | # 02_sparc_another-fix.patch.bz2 |
|
|
| 97 | # |
|
|
| 98 | # This ensures that there are a set order, and you can have ARCH |
|
|
| 99 | # specific patches. |
|
|
| 100 | # |
|
|
| 101 | # If you however give an argument to epatch(), it will treat it as a |
|
|
| 102 | # single patch that need to be applied if its a file. If on the other |
|
|
| 103 | # hand its a directory, it will set EPATCH_SOURCE to this. |
|
|
| 104 | # |
|
|
| 105 | # <azarah@gentoo.org> (10 Nov 2002) |
|
|
| 106 | # |
|
|
| 107 | epatch() { |
182 | epatch() { |
| 108 | _epatch_draw_line() { |
183 | _epatch_draw_line() { |
|
|
184 | # create a line of same length as input string |
| 109 | [[ -z $1 ]] && set "$(printf "%65s" '')" |
185 | [[ -z $1 ]] && set "$(printf "%65s" '')" |
| 110 | echo "${1//?/=}" |
186 | echo "${1//?/=}" |
| 111 | } |
187 | } |
| 112 | _epatch_assert() { local _pipestatus=${PIPESTATUS[*]}; [[ ${_pipestatus// /} -eq 0 ]] ; } |
|
|
| 113 | local PIPE_CMD="" |
|
|
| 114 | local STDERR_TARGET="${T}/$$.out" |
|
|
| 115 | local PATCH_TARGET="${T}/$$.patch" |
|
|
| 116 | local PATCH_SUFFIX="" |
|
|
| 117 | local SINGLE_PATCH="no" |
|
|
| 118 | local x="" |
|
|
| 119 | |
188 | |
| 120 | unset P4CONFIG P4PORT P4USER # keep perforce at bay #56402 |
189 | unset P4CONFIG P4PORT P4USER # keep perforce at bay #56402 |
| 121 | |
190 | |
| 122 | if [ "$#" -gt 1 ] |
191 | # Let the rest of the code process one user arg at a time -- |
| 123 | then |
192 | # each arg may expand into multiple patches, and each arg may |
|
|
193 | # need to start off with the default global EPATCH_xxx values |
|
|
194 | if [[ $# -gt 1 ]] ; then |
| 124 | local m="" |
195 | local m |
| 125 | for m in "$@" ; do |
196 | for m in "$@" ; do |
| 126 | epatch "${m}" |
197 | epatch "${m}" |
| 127 | done |
198 | done |
| 128 | return 0 |
199 | return 0 |
| 129 | fi |
200 | fi |
| 130 | |
201 | |
| 131 | if [ -n "$1" -a -f "$1" ] |
202 | local SINGLE_PATCH="no" |
| 132 | then |
203 | # no args means process ${EPATCH_SOURCE} |
|
|
204 | [[ $# -eq 0 ]] && set -- "${EPATCH_SOURCE}" |
|
|
205 | |
|
|
206 | if [[ -f $1 ]] ; then |
| 133 | SINGLE_PATCH="yes" |
207 | SINGLE_PATCH="yes" |
| 134 | |
208 | set -- "$1" |
| 135 | local EPATCH_SOURCE="$1" |
209 | # Use the suffix from the single patch (localize it); the code |
|
|
210 | # below will find the suffix for us |
| 136 | local EPATCH_SUFFIX="${1##*\.}" |
211 | local EPATCH_SUFFIX=$1 |
| 137 | |
212 | |
| 138 | elif [ -n "$1" -a -d "$1" ] |
213 | elif [[ -d $1 ]] ; then |
| 139 | then |
214 | # Some people like to make dirs of patches w/out suffixes (vim) |
| 140 | # Allow no extension if EPATCH_FORCE=yes ... used by vim for example ... |
215 | set -- "$1"/*${EPATCH_SUFFIX:+."${EPATCH_SUFFIX}"} |
| 141 | if [ "${EPATCH_FORCE}" = "yes" ] && [ -z "${EPATCH_SUFFIX}" ] |
216 | |
|
|
217 | else |
|
|
218 | # sanity check ... if it isn't a dir or file, wtf man ? |
|
|
219 | [[ $# -ne 0 ]] && EPATCH_SOURCE=$1 |
|
|
220 | echo |
|
|
221 | eerror "Cannot find \$EPATCH_SOURCE! Value for \$EPATCH_SOURCE is:" |
|
|
222 | eerror |
|
|
223 | eerror " ${EPATCH_SOURCE}" |
|
|
224 | eerror " ( ${EPATCH_SOURCE##*/} )" |
|
|
225 | echo |
|
|
226 | die "Cannot find \$EPATCH_SOURCE!" |
|
|
227 | fi |
|
|
228 | |
|
|
229 | local PIPE_CMD |
|
|
230 | case ${EPATCH_SUFFIX##*\.} in |
|
|
231 | xz) PIPE_CMD="xz -dc" ;; |
|
|
232 | lzma) PIPE_CMD="lzma -dc" ;; |
|
|
233 | bz2) PIPE_CMD="bzip2 -dc" ;; |
|
|
234 | gz|Z|z) PIPE_CMD="gzip -dc" ;; |
|
|
235 | ZIP|zip) PIPE_CMD="unzip -p" ;; |
|
|
236 | *) ;; |
|
|
237 | esac |
|
|
238 | |
|
|
239 | [[ ${SINGLE_PATCH} == "no" ]] && einfo "${EPATCH_MULTI_MSG}" |
|
|
240 | |
|
|
241 | local x |
|
|
242 | for x in "$@" ; do |
|
|
243 | # If the patch dir given contains subdirs, or our EPATCH_SUFFIX |
|
|
244 | # didn't match anything, ignore continue on |
|
|
245 | [[ ! -f ${x} ]] && continue |
|
|
246 | |
|
|
247 | local patchname=${x##*/} |
|
|
248 | |
|
|
249 | # Apply single patches, or forced sets of patches, or |
|
|
250 | # patches with ARCH dependant names. |
|
|
251 | # ???_arch_foo.patch |
|
|
252 | # Else, skip this input altogether |
|
|
253 | local a=${patchname#*_} # strip the ???_ |
|
|
254 | a=${a%%_*} # strip the _foo.patch |
|
|
255 | if ! [[ ${SINGLE_PATCH} == "yes" || \ |
|
|
256 | ${EPATCH_FORCE} == "yes" || \ |
|
|
257 | ${a} == all || \ |
|
|
258 | ${a} == ${ARCH} ]] |
| 142 | then |
259 | then |
| 143 | local EPATCH_SOURCE="$1/*" |
260 | continue |
|
|
261 | fi |
|
|
262 | |
|
|
263 | # Let people filter things dynamically |
|
|
264 | if [[ -n ${EPATCH_EXCLUDE} ]] ; then |
|
|
265 | # let people use globs in the exclude |
|
|
266 | eshopts_push -o noglob |
|
|
267 | |
|
|
268 | local ex |
|
|
269 | for ex in ${EPATCH_EXCLUDE} ; do |
|
|
270 | if [[ ${patchname} == ${ex} ]] ; then |
|
|
271 | eshopts_pop |
|
|
272 | continue 2 |
|
|
273 | fi |
|
|
274 | done |
|
|
275 | |
|
|
276 | eshopts_pop |
|
|
277 | fi |
|
|
278 | |
|
|
279 | if [[ ${SINGLE_PATCH} == "yes" ]] ; then |
|
|
280 | if [[ -n ${EPATCH_SINGLE_MSG} ]] ; then |
|
|
281 | einfo "${EPATCH_SINGLE_MSG}" |
|
|
282 | else |
|
|
283 | einfo "Applying ${patchname} ..." |
|
|
284 | fi |
| 144 | else |
285 | else |
| 145 | local EPATCH_SOURCE="$1/*.${EPATCH_SUFFIX}" |
286 | einfo " ${patchname} ..." |
| 146 | fi |
287 | fi |
| 147 | else |
288 | |
| 148 | if [ ! -d ${EPATCH_SOURCE} ] || [ -n "$1" ] |
289 | # most of the time, there will only be one run per unique name, |
| 149 | then |
290 | # but if there are more, make sure we get unique log filenames |
| 150 | if [ -n "$1" -a "${EPATCH_SOURCE}" = "${WORKDIR}/patch" ] |
291 | local STDERR_TARGET="${T}/${patchname}.out" |
| 151 | then |
292 | if [[ -e ${STDERR_TARGET} ]] ; then |
| 152 | EPATCH_SOURCE="$1" |
293 | STDERR_TARGET="${T}/${patchname}-$$.out" |
|
|
294 | fi |
|
|
295 | |
|
|
296 | printf "***** %s *****\n\n" "${patchname}" > "${STDERR_TARGET}" |
|
|
297 | |
|
|
298 | # Decompress the patch if need be |
|
|
299 | local count=0 |
|
|
300 | local PATCH_TARGET |
|
|
301 | if [[ -n ${PIPE_CMD} ]] ; then |
|
|
302 | PATCH_TARGET="${T}/$$.patch" |
|
|
303 | echo "PIPE_COMMAND: ${PIPE_CMD} ${x} > ${PATCH_TARGET}" >> "${STDERR_TARGET}" |
|
|
304 | |
|
|
305 | if ! (${PIPE_CMD} "${x}" > "${PATCH_TARGET}") >> "${STDERR_TARGET}" 2>&1 ; then |
|
|
306 | echo |
|
|
307 | eerror "Could not extract patch!" |
|
|
308 | #die "Could not extract patch!" |
|
|
309 | count=5 |
|
|
310 | break |
| 153 | fi |
311 | fi |
|
|
312 | else |
|
|
313 | PATCH_TARGET=${x} |
|
|
314 | fi |
| 154 | |
315 | |
|
|
316 | # Check for absolute paths in patches. If sandbox is disabled, |
|
|
317 | # people could (accidently) patch files in the root filesystem. |
|
|
318 | # Or trigger other unpleasantries #237667. So disallow -p0 on |
|
|
319 | # such patches. |
|
|
320 | local abs_paths=$(egrep -n '^[-+]{3} /' "${PATCH_TARGET}" | awk '$2 != "/dev/null" { print }') |
|
|
321 | if [[ -n ${abs_paths} ]] ; then |
|
|
322 | count=1 |
|
|
323 | printf "NOTE: skipping -p0 due to absolute paths in patch:\n%s\n" "${abs_paths}" >> "${STDERR_TARGET}" |
|
|
324 | fi |
|
|
325 | |
|
|
326 | # Dynamically detect the correct -p# ... i'm lazy, so shoot me :/ |
|
|
327 | while [[ ${count} -lt 5 ]] ; do |
|
|
328 | # Generate some useful debug info ... |
|
|
329 | ( |
|
|
330 | _epatch_draw_line "***** ${patchname} *****" |
| 155 | echo |
331 | echo |
| 156 | eerror "Cannot find \$EPATCH_SOURCE! Value for \$EPATCH_SOURCE is:" |
332 | echo "PATCH COMMAND: patch -p${count} ${EPATCH_OPTS} < '${PATCH_TARGET}'" |
|
|
333 | echo |
|
|
334 | _epatch_draw_line "***** ${patchname} *****" |
|
|
335 | ) >> "${STDERR_TARGET}" |
|
|
336 | |
|
|
337 | if (patch -p${count} ${EPATCH_OPTS} --dry-run -f < "${PATCH_TARGET}") >> "${STDERR_TARGET}" 2>&1 ; then |
|
|
338 | ( |
|
|
339 | _epatch_draw_line "***** ${patchname} *****" |
|
|
340 | echo |
|
|
341 | echo "ACTUALLY APPLYING ${patchname} ..." |
|
|
342 | echo |
|
|
343 | _epatch_draw_line "***** ${patchname} *****" |
|
|
344 | patch -p${count} ${EPATCH_OPTS} < "${PATCH_TARGET}" 2>&1 |
|
|
345 | ) >> "${STDERR_TARGET}" |
|
|
346 | |
|
|
347 | if [ $? -ne 0 ] ; then |
|
|
348 | echo |
|
|
349 | eerror "A dry-run of patch command succeeded, but actually" |
|
|
350 | eerror "applying the patch failed!" |
|
|
351 | #die "Real world sux compared to the dreamworld!" |
|
|
352 | count=5 |
|
|
353 | fi |
|
|
354 | break |
|
|
355 | fi |
|
|
356 | |
|
|
357 | : $(( count++ )) |
|
|
358 | done |
|
|
359 | |
|
|
360 | # if we had to decompress the patch, delete the temp one |
|
|
361 | if [[ -n ${PIPE_CMD} ]] ; then |
|
|
362 | rm -f "${PATCH_TARGET}" |
|
|
363 | fi |
|
|
364 | |
|
|
365 | if [[ ${count} -ge 5 ]] ; then |
|
|
366 | echo |
|
|
367 | eerror "Failed Patch: ${patchname} !" |
|
|
368 | eerror " ( ${PATCH_TARGET} )" |
| 157 | eerror |
369 | eerror |
| 158 | eerror " ${EPATCH_SOURCE}" |
370 | eerror "Include in your bugreport the contents of:" |
| 159 | eerror " ( ${EPATCH_SOURCE##*/} )" |
371 | eerror |
|
|
372 | eerror " ${STDERR_TARGET}" |
| 160 | echo |
373 | echo |
| 161 | die "Cannot find \$EPATCH_SOURCE!" |
|
|
| 162 | fi |
|
|
| 163 | |
|
|
| 164 | local EPATCH_SOURCE="${EPATCH_SOURCE}/*.${EPATCH_SUFFIX}" |
|
|
| 165 | fi |
|
|
| 166 | |
|
|
| 167 | case ${EPATCH_SUFFIX##*\.} in |
|
|
| 168 | bz2) |
|
|
| 169 | PIPE_CMD="bzip2 -dc" |
|
|
| 170 | PATCH_SUFFIX="bz2" |
|
|
| 171 | ;; |
|
|
| 172 | gz|Z|z) |
|
|
| 173 | PIPE_CMD="gzip -dc" |
|
|
| 174 | PATCH_SUFFIX="gz" |
|
|
| 175 | ;; |
|
|
| 176 | ZIP|zip) |
|
|
| 177 | PIPE_CMD="unzip -p" |
|
|
| 178 | PATCH_SUFFIX="zip" |
|
|
| 179 | ;; |
|
|
| 180 | *) |
|
|
| 181 | PIPE_CMD="cat" |
|
|
| 182 | PATCH_SUFFIX="patch" |
|
|
| 183 | ;; |
|
|
| 184 | esac |
|
|
| 185 | |
|
|
| 186 | if [ "${SINGLE_PATCH}" = "no" ] |
|
|
| 187 | then |
|
|
| 188 | einfo "${EPATCH_MULTI_MSG}" |
|
|
| 189 | fi |
|
|
| 190 | for x in ${EPATCH_SOURCE} |
|
|
| 191 | do |
|
|
| 192 | # New ARCH dependant patch naming scheme ... |
|
|
| 193 | # |
|
|
| 194 | # ???_arch_foo.patch |
|
|
| 195 | # |
|
|
| 196 | if [ -f ${x} ] && \ |
|
|
| 197 | ([ "${SINGLE_PATCH}" = "yes" -o "${x/_all_}" != "${x}" -o "${x/_${ARCH}_}" != "${x}" ] || \ |
|
|
| 198 | [ "${EPATCH_FORCE}" = "yes" ]) |
|
|
| 199 | then |
|
|
| 200 | local count=0 |
|
|
| 201 | local popts="${EPATCH_OPTS}" |
|
|
| 202 | local patchname=${x##*/} |
|
|
| 203 | |
|
|
| 204 | if [ -n "${EPATCH_EXCLUDE}" ] |
|
|
| 205 | then |
|
|
| 206 | if [ "${EPATCH_EXCLUDE/${patchname}}" != "${EPATCH_EXCLUDE}" ] |
|
|
| 207 | then |
|
|
| 208 | continue |
|
|
| 209 | fi |
|
|
| 210 | fi |
|
|
| 211 | |
|
|
| 212 | if [ "${SINGLE_PATCH}" = "yes" ] |
|
|
| 213 | then |
|
|
| 214 | if [ -n "${EPATCH_SINGLE_MSG}" ] |
|
|
| 215 | then |
|
|
| 216 | einfo "${EPATCH_SINGLE_MSG}" |
|
|
| 217 | else |
|
|
| 218 | einfo "Applying ${patchname} ..." |
|
|
| 219 | fi |
|
|
| 220 | else |
|
|
| 221 | einfo " ${patchname} ..." |
|
|
| 222 | fi |
|
|
| 223 | |
|
|
| 224 | echo "***** ${patchname} *****" > ${STDERR_TARGET%/*}/${patchname}-${STDERR_TARGET##*/} |
|
|
| 225 | echo >> ${STDERR_TARGET%/*}/${patchname}-${STDERR_TARGET##*/} |
|
|
| 226 | |
|
|
| 227 | # Allow for prefix to differ ... im lazy, so shoot me :/ |
|
|
| 228 | while [ "${count}" -lt 5 ] |
|
|
| 229 | do |
|
|
| 230 | # Generate some useful debug info ... |
|
|
| 231 | _epatch_draw_line "***** ${patchname} *****" >> ${STDERR_TARGET%/*}/${patchname}-${STDERR_TARGET##*/} |
|
|
| 232 | echo >> ${STDERR_TARGET%/*}/${patchname}-${STDERR_TARGET##*/} |
|
|
| 233 | |
|
|
| 234 | if [ "${PATCH_SUFFIX}" != "patch" ] |
|
|
| 235 | then |
|
|
| 236 | echo -n "PIPE_COMMAND: " >> ${STDERR_TARGET%/*}/${patchname}-${STDERR_TARGET##*/} |
|
|
| 237 | echo "${PIPE_CMD} ${x} > ${PATCH_TARGET}" >> ${STDERR_TARGET%/*}/${patchname}-${STDERR_TARGET##*/} |
|
|
| 238 | else |
|
|
| 239 | PATCH_TARGET="${x}" |
|
|
| 240 | fi |
|
|
| 241 | |
|
|
| 242 | echo -n "PATCH COMMAND: " >> ${STDERR_TARGET%/*}/${patchname}-${STDERR_TARGET##*/} |
|
|
| 243 | echo "patch -p${count} ${popts} < ${PATCH_TARGET}" >> ${STDERR_TARGET%/*}/${patchname}-${STDERR_TARGET##*/} |
|
|
| 244 | |
|
|
| 245 | echo >> ${STDERR_TARGET%/*}/${patchname}-${STDERR_TARGET##*/} |
|
|
| 246 | _epatch_draw_line "***** ${patchname} *****" >> ${STDERR_TARGET%/*}/${patchname}-${STDERR_TARGET##*/} |
|
|
| 247 | |
|
|
| 248 | if [ "${PATCH_SUFFIX}" != "patch" ] |
|
|
| 249 | then |
|
|
| 250 | if ! (${PIPE_CMD} ${x} > ${PATCH_TARGET}) >> ${STDERR_TARGET%/*}/${patchname}-${STDERR_TARGET##*/} 2>&1 |
|
|
| 251 | then |
|
|
| 252 | echo |
|
|
| 253 | eerror "Could not extract patch!" |
|
|
| 254 | #die "Could not extract patch!" |
|
|
| 255 | count=5 |
|
|
| 256 | break |
|
|
| 257 | fi |
|
|
| 258 | fi |
|
|
| 259 | |
|
|
| 260 | if (cat ${PATCH_TARGET} | patch -p${count} ${popts} --dry-run -f ; _epatch_assert) >> ${STDERR_TARGET%/*}/${patchname}-${STDERR_TARGET##*/} 2>&1 |
|
|
| 261 | then |
|
|
| 262 | _epatch_draw_line "***** ${patchname} *****" > ${STDERR_TARGET%/*}/${patchname}-${STDERR_TARGET##*/}.real |
|
|
| 263 | echo >> ${STDERR_TARGET%/*}/${patchname}-${STDERR_TARGET##*/}.real |
|
|
| 264 | echo "ACTUALLY APPLYING ${patchname} ..." >> ${STDERR_TARGET%/*}/${patchname}-${STDERR_TARGET##*/}.real |
|
|
| 265 | echo >> ${STDERR_TARGET%/*}/${patchname}-${STDERR_TARGET##*/}.real |
|
|
| 266 | _epatch_draw_line "***** ${patchname} *****" >> ${STDERR_TARGET%/*}/${patchname}-${STDERR_TARGET##*/}.real |
|
|
| 267 | |
|
|
| 268 | cat ${PATCH_TARGET} | patch -p${count} ${popts} >> ${STDERR_TARGET%/*}/${patchname}-${STDERR_TARGET##*/}.real 2>&1 |
|
|
| 269 | _epatch_assert |
|
|
| 270 | |
|
|
| 271 | if [ "$?" -ne 0 ] |
|
|
| 272 | then |
|
|
| 273 | cat ${STDERR_TARGET%/*}/${patchname}-${STDERR_TARGET##*/}.real >> ${STDERR_TARGET%/*}/${patchname}-${STDERR_TARGET##*/} |
|
|
| 274 | echo |
|
|
| 275 | eerror "A dry-run of patch command succeeded, but actually" |
|
|
| 276 | eerror "applying the patch failed!" |
|
|
| 277 | #die "Real world sux compared to the dreamworld!" |
|
|
| 278 | count=5 |
|
|
| 279 | fi |
|
|
| 280 | |
|
|
| 281 | rm -f ${STDERR_TARGET%/*}/${patchname}-${STDERR_TARGET##*/}.real |
|
|
| 282 | |
|
|
| 283 | break |
|
|
| 284 | fi |
|
|
| 285 | |
|
|
| 286 | count=$((count + 1)) |
|
|
| 287 | done |
|
|
| 288 | |
|
|
| 289 | if [ "${PATCH_SUFFIX}" != "patch" ] |
|
|
| 290 | then |
|
|
| 291 | rm -f ${PATCH_TARGET} |
|
|
| 292 | fi |
|
|
| 293 | |
|
|
| 294 | if [ "${count}" -eq 5 ] |
|
|
| 295 | then |
|
|
| 296 | echo |
|
|
| 297 | eerror "Failed Patch: ${patchname} !" |
|
|
| 298 | eerror " ( ${PATCH_TARGET} )" |
|
|
| 299 | eerror |
|
|
| 300 | eerror "Include in your bugreport the contents of:" |
|
|
| 301 | eerror |
|
|
| 302 | eerror " ${STDERR_TARGET%/*}/${patchname}-${STDERR_TARGET##*/}" |
|
|
| 303 | echo |
|
|
| 304 | die "Failed Patch: ${patchname}!" |
374 | die "Failed Patch: ${patchname}!" |
| 305 | fi |
375 | fi |
| 306 | |
376 | |
| 307 | rm -f ${STDERR_TARGET%/*}/${patchname}-${STDERR_TARGET##*/} |
377 | # if everything worked, delete the patch log |
| 308 | |
378 | rm -f "${STDERR_TARGET}" |
| 309 | eend 0 |
379 | eend 0 |
| 310 | fi |
|
|
| 311 | done |
380 | done |
| 312 | if [ "${SINGLE_PATCH}" = "no" ] |
381 | |
| 313 | then |
382 | [[ ${SINGLE_PATCH} == "no" ]] && einfo "Done with patching" |
| 314 | einfo "Done with patching" |
383 | : # everything worked |
|
|
384 | } |
|
|
385 | epatch_user() { |
|
|
386 | [[ $# -ne 0 ]] && die "epatch_user takes no options" |
|
|
387 | |
|
|
388 | # don't clobber any EPATCH vars that the parent might want |
|
|
389 | local EPATCH_SOURCE check base=${PORTAGE_CONFIGROOT%/}/etc/portage/patches |
|
|
390 | for check in {${CATEGORY}/${PF},${CATEGORY}/${P},${CATEGORY}/${PN}}; do |
|
|
391 | EPATCH_SOURCE=${base}/${CTARGET}/${check} |
|
|
392 | [[ -r ${EPATCH_SOURCE} ]] || EPATCH_SOURCE=${base}/${CHOST}/${check} |
|
|
393 | [[ -r ${EPATCH_SOURCE} ]] || EPATCH_SOURCE=${base}/${check} |
|
|
394 | if [[ -d ${EPATCH_SOURCE} ]] ; then |
|
|
395 | EPATCH_SOURCE=${EPATCH_SOURCE} \ |
|
|
396 | EPATCH_SUFFIX="patch" \ |
|
|
397 | EPATCH_FORCE="yes" \ |
|
|
398 | EPATCH_MULTI_MSG="Applying user patches from ${EPATCH_SOURCE} ..." \ |
|
|
399 | epatch |
|
|
400 | break |
| 315 | fi |
401 | fi |
|
|
402 | done |
| 316 | } |
403 | } |
| 317 | |
404 | |
| 318 | # @FUNCTION: emktemp |
405 | # @FUNCTION: emktemp |
| 319 | # @USAGE: [temp dir] |
406 | # @USAGE: [temp dir] |
| 320 | # @DESCRIPTION: |
407 | # @DESCRIPTION: |
| … | |
… | |
| 356 | # base-system@gentoo.org (Linux) |
443 | # base-system@gentoo.org (Linux) |
| 357 | # Joe Jezak <josejx@gmail.com> (OS X) |
444 | # Joe Jezak <josejx@gmail.com> (OS X) |
| 358 | # usata@gentoo.org (OS X) |
445 | # usata@gentoo.org (OS X) |
| 359 | # Aaron Walker <ka0ttic@gentoo.org> (FreeBSD) |
446 | # Aaron Walker <ka0ttic@gentoo.org> (FreeBSD) |
| 360 | # @DESCRIPTION: |
447 | # @DESCRIPTION: |
| 361 | # Small wrapper for getent (Linux), nidump (Mac OS X), |
448 | # Small wrapper for getent (Linux), |
|
|
449 | # nidump (< Mac OS X 10.5), dscl (Mac OS X 10.5), |
| 362 | # and pw (FreeBSD) used in enewuser()/enewgroup() |
450 | # and pw (FreeBSD) used in enewuser()/enewgroup() |
| 363 | egetent() { |
451 | egetent() { |
| 364 | case ${CHOST} in |
452 | case ${CHOST} in |
| 365 | *-darwin*) |
453 | *-darwin[678]) |
| 366 | case "$2" in |
454 | case "$2" in |
| 367 | *[!0-9]*) # Non numeric |
455 | *[!0-9]*) # Non numeric |
| 368 | nidump $1 . | awk -F":" "{ if (\$1 ~ /^$2$/) {print \$0;exit;} }" |
456 | nidump $1 . | awk -F":" "{ if (\$1 ~ /^$2$/) {print \$0;exit;} }" |
| 369 | ;; |
457 | ;; |
| 370 | *) # Numeric |
458 | *) # Numeric |
| 371 | nidump $1 . | awk -F":" "{ if (\$3 == $2) {print \$0;exit;} }" |
459 | nidump $1 . | awk -F":" "{ if (\$3 == $2) {print \$0;exit;} }" |
|
|
460 | ;; |
|
|
461 | esac |
|
|
462 | ;; |
|
|
463 | *-darwin*) |
|
|
464 | local mytype=$1 |
|
|
465 | [[ "passwd" == $mytype ]] && mytype="Users" |
|
|
466 | [[ "group" == $mytype ]] && mytype="Groups" |
|
|
467 | case "$2" in |
|
|
468 | *[!0-9]*) # Non numeric |
|
|
469 | dscl . -read /$mytype/$2 2>/dev/null |grep RecordName |
|
|
470 | ;; |
|
|
471 | *) # Numeric |
|
|
472 | local mykey="UniqueID" |
|
|
473 | [[ $mytype == "Groups" ]] && mykey="PrimaryGroupID" |
|
|
474 | dscl . -search /$mytype $mykey $2 2>/dev/null |
| 372 | ;; |
475 | ;; |
| 373 | esac |
476 | esac |
| 374 | ;; |
477 | ;; |
| 375 | *-freebsd*|*-dragonfly*) |
478 | *-freebsd*|*-dragonfly*) |
| 376 | local opts action="user" |
479 | local opts action="user" |
| … | |
… | |
| 576 | fi |
679 | fi |
| 577 | ;; |
680 | ;; |
| 578 | |
681 | |
| 579 | *) |
682 | *) |
| 580 | if [[ -z $@ ]] ; then |
683 | if [[ -z $@ ]] ; then |
| 581 | useradd ${opts} ${euser} \ |
684 | useradd ${opts} \ |
| 582 | -c "added by portage for ${PN}" \ |
685 | -c "added by portage for ${PN}" \ |
|
|
686 | ${euser} \ |
| 583 | || die "enewuser failed" |
687 | || die "enewuser failed" |
| 584 | else |
688 | else |
| 585 | einfo " - Extra: $@" |
689 | einfo " - Extra: $@" |
| 586 | useradd ${opts} ${euser} "$@" \ |
690 | useradd ${opts} "$@" \ |
|
|
691 | ${euser} \ |
| 587 | || die "enewuser failed" |
692 | || die "enewuser failed" |
| 588 | fi |
693 | fi |
| 589 | ;; |
694 | ;; |
| 590 | esac |
695 | esac |
| 591 | |
696 | |
| … | |
… | |
| 739 | make_desktop_entry() { |
844 | make_desktop_entry() { |
| 740 | [[ -z $1 ]] && eerror "make_desktop_entry: You must specify the executable" && return 1 |
845 | [[ -z $1 ]] && eerror "make_desktop_entry: You must specify the executable" && return 1 |
| 741 | |
846 | |
| 742 | local exec=${1} |
847 | local exec=${1} |
| 743 | local name=${2:-${PN}} |
848 | local name=${2:-${PN}} |
| 744 | local icon=${3:-${PN}.png} |
849 | local icon=${3:-${PN}} |
| 745 | local type=${4} |
850 | local type=${4} |
| 746 | local path=${5} |
851 | local path=${5} |
| 747 | |
852 | |
| 748 | if [[ -z ${type} ]] ; then |
853 | if [[ -z ${type} ]] ; then |
| 749 | local catmaj=${CATEGORY%%-*} |
854 | local catmaj=${CATEGORY%%-*} |
| … | |
… | |
| 873 | local desktop="${T}/$(echo ${exec} | sed 's:[[:space:]/:]:_:g')-${desktop_name}.desktop" |
978 | local desktop="${T}/$(echo ${exec} | sed 's:[[:space:]/:]:_:g')-${desktop_name}.desktop" |
| 874 | #local desktop=${T}/${exec%% *:-${desktop_name}}.desktop |
979 | #local desktop=${T}/${exec%% *:-${desktop_name}}.desktop |
| 875 | |
980 | |
| 876 | cat <<-EOF > "${desktop}" |
981 | cat <<-EOF > "${desktop}" |
| 877 | [Desktop Entry] |
982 | [Desktop Entry] |
| 878 | Encoding=UTF-8 |
|
|
| 879 | Version=1.0 |
|
|
| 880 | Name=${name} |
983 | Name=${name} |
| 881 | Type=Application |
984 | Type=Application |
| 882 | Comment=${DESCRIPTION} |
985 | Comment=${DESCRIPTION} |
| 883 | Exec=${exec} |
986 | Exec=${exec} |
| 884 | TryExec=${exec%% *} |
987 | TryExec=${exec%% *} |
| 885 | Path=${path} |
|
|
| 886 | Icon=${icon} |
988 | Icon=${icon} |
| 887 | Categories=${type}; |
989 | Categories=${type}; |
| 888 | EOF |
990 | EOF |
|
|
991 | |
|
|
992 | [[ ${path} ]] && echo "Path=${path}" >> "${desktop}" |
| 889 | |
993 | |
| 890 | ( |
994 | ( |
| 891 | # wrap the env here so that the 'insinto' call |
995 | # wrap the env here so that the 'insinto' call |
| 892 | # doesn't corrupt the env of the caller |
996 | # doesn't corrupt the env of the caller |
| 893 | insinto /usr/share/applications |
997 | insinto /usr/share/applications |
| … | |
… | |
| 922 | einfo "Passing desktop entry validity check. Install dev-util/desktop-file-utils, if you want to help to improve Gentoo." |
1026 | einfo "Passing desktop entry validity check. Install dev-util/desktop-file-utils, if you want to help to improve Gentoo." |
| 923 | fi |
1027 | fi |
| 924 | } |
1028 | } |
| 925 | |
1029 | |
| 926 | # @FUNCTION: make_session_desktop |
1030 | # @FUNCTION: make_session_desktop |
| 927 | # @USAGE: <title> <command> |
1031 | # @USAGE: <title> <command> [command args...] |
| 928 | # @DESCRIPTION: |
1032 | # @DESCRIPTION: |
| 929 | # Make a GDM/KDM Session file. The title is the file to execute to start the |
1033 | # Make a GDM/KDM Session file. The title is the file to execute to start the |
| 930 | # Window Manager. The command is the name of the Window Manager. |
1034 | # Window Manager. The command is the name of the Window Manager. |
|
|
1035 | # |
|
|
1036 | # You can set the name of the file via the ${wm} variable. |
| 931 | make_session_desktop() { |
1037 | make_session_desktop() { |
| 932 | [[ -z $1 ]] && eerror "make_session_desktop: You must specify the title" && return 1 |
1038 | [[ -z $1 ]] && eerror "$0: You must specify the title" && return 1 |
| 933 | [[ -z $2 ]] && eerror "make_session_desktop: You must specify the command" && return 1 |
1039 | [[ -z $2 ]] && eerror "$0: You must specify the command" && return 1 |
| 934 | |
1040 | |
| 935 | local title=$1 |
1041 | local title=$1 |
| 936 | local command=$2 |
1042 | local command=$2 |
| 937 | local desktop=${T}/${wm}.desktop |
1043 | local desktop=${T}/${wm:-${PN}}.desktop |
|
|
1044 | shift 2 |
| 938 | |
1045 | |
| 939 | cat <<-EOF > "${desktop}" |
1046 | cat <<-EOF > "${desktop}" |
| 940 | [Desktop Entry] |
1047 | [Desktop Entry] |
| 941 | Encoding=UTF-8 |
|
|
| 942 | Name=${title} |
1048 | Name=${title} |
| 943 | Comment=This session logs you into ${title} |
1049 | Comment=This session logs you into ${title} |
| 944 | Exec=${command} |
1050 | Exec=${command} $* |
| 945 | TryExec=${command} |
1051 | TryExec=${command} |
| 946 | Type=Application |
1052 | Type=XSession |
| 947 | EOF |
1053 | EOF |
| 948 | |
1054 | |
| 949 | ( |
1055 | ( |
| 950 | # wrap the env here so that the 'insinto' call |
1056 | # wrap the env here so that the 'insinto' call |
| 951 | # doesn't corrupt the env of the caller |
1057 | # doesn't corrupt the env of the caller |
| … | |
… | |
| 972 | elif [[ -d ${i} ]] ; then |
1078 | elif [[ -d ${i} ]] ; then |
| 973 | for j in "${i}"/*.desktop ; do |
1079 | for j in "${i}"/*.desktop ; do |
| 974 | doins "${j}" |
1080 | doins "${j}" |
| 975 | ((ret+=$?)) |
1081 | ((ret+=$?)) |
| 976 | done |
1082 | done |
|
|
1083 | else |
|
|
1084 | ((++ret)) |
| 977 | fi |
1085 | fi |
| 978 | done |
1086 | done |
| 979 | exit ${ret} |
1087 | exit ${ret} |
| 980 | ) |
1088 | ) |
| 981 | } |
1089 | } |
| … | |
… | |
| 1011 | elif [[ -d ${i} ]] ; then |
1119 | elif [[ -d ${i} ]] ; then |
| 1012 | for j in "${i}"/*.png ; do |
1120 | for j in "${i}"/*.png ; do |
| 1013 | doins "${j}" |
1121 | doins "${j}" |
| 1014 | ((ret+=$?)) |
1122 | ((ret+=$?)) |
| 1015 | done |
1123 | done |
|
|
1124 | else |
|
|
1125 | ((++ret)) |
| 1016 | fi |
1126 | fi |
| 1017 | done |
1127 | done |
| 1018 | exit ${ret} |
1128 | exit ${ret} |
| 1019 | ) |
1129 | ) |
| 1020 | } |
1130 | } |
| … | |
… | |
| 1055 | # @DESCRIPTION: |
1165 | # @DESCRIPTION: |
| 1056 | # Unpack those pesky pdv generated files ... |
1166 | # Unpack those pesky pdv generated files ... |
| 1057 | # They're self-unpacking programs with the binary package stuffed in |
1167 | # They're self-unpacking programs with the binary package stuffed in |
| 1058 | # the middle of the archive. Valve seems to use it a lot ... too bad |
1168 | # the middle of the archive. Valve seems to use it a lot ... too bad |
| 1059 | # it seems to like to segfault a lot :(. So lets take it apart ourselves. |
1169 | # it seems to like to segfault a lot :(. So lets take it apart ourselves. |
| 1060 | # |
1170 | # |
| 1061 | # You have to specify the off_t size ... I have no idea how to extract that |
1171 | # You have to specify the off_t size ... I have no idea how to extract that |
| 1062 | # information out of the binary executable myself. Basically you pass in |
1172 | # information out of the binary executable myself. Basically you pass in |
| 1063 | # the size of the off_t type (in bytes) on the machine that built the pdv |
1173 | # the size of the off_t type (in bytes) on the machine that built the pdv |
| 1064 | # archive. |
1174 | # archive. |
| 1065 | # |
1175 | # |
| 1066 | # One way to determine this is by running the following commands: |
1176 | # One way to determine this is by running the following commands: |
|
|
1177 | # |
|
|
1178 | # @CODE |
| 1067 | # strings <pdv archive> | grep lseek |
1179 | # strings <pdv archive> | grep lseek |
| 1068 | # strace -elseek <pdv archive> |
1180 | # strace -elseek <pdv archive> |
|
|
1181 | # @CODE |
|
|
1182 | # |
| 1069 | # Basically look for the first lseek command (we do the strings/grep because |
1183 | # Basically look for the first lseek command (we do the strings/grep because |
| 1070 | # sometimes the function call is _llseek or something) and steal the 2nd |
1184 | # sometimes the function call is _llseek or something) and steal the 2nd |
| 1071 | # parameter. Here is an example: |
1185 | # parameter. Here is an example: |
|
|
1186 | # |
|
|
1187 | # @CODE |
| 1072 | # vapier@vapier 0 pdv_unpack # strings hldsupdatetool.bin | grep lseek |
1188 | # vapier@vapier 0 pdv_unpack # strings hldsupdatetool.bin | grep lseek |
| 1073 | # lseek |
1189 | # lseek |
| 1074 | # vapier@vapier 0 pdv_unpack # strace -elseek ./hldsupdatetool.bin |
1190 | # vapier@vapier 0 pdv_unpack # strace -elseek ./hldsupdatetool.bin |
| 1075 | # lseek(3, -4, SEEK_END) = 2981250 |
1191 | # lseek(3, -4, SEEK_END) = 2981250 |
|
|
1192 | # @CODE |
|
|
1193 | # |
| 1076 | # Thus we would pass in the value of '4' as the second parameter. |
1194 | # Thus we would pass in the value of '4' as the second parameter. |
| 1077 | unpack_pdv() { |
1195 | unpack_pdv() { |
| 1078 | local src=$(find_unpackable_file "$1") |
1196 | local src=$(find_unpackable_file "$1") |
| 1079 | local sizeoff_t=$2 |
1197 | local sizeoff_t=$2 |
| 1080 | |
1198 | |
| … | |
… | |
| 1150 | # @DESCRIPTION: |
1268 | # @DESCRIPTION: |
| 1151 | # Unpack those pesky makeself generated files ... |
1269 | # Unpack those pesky makeself generated files ... |
| 1152 | # They're shell scripts with the binary package tagged onto |
1270 | # They're shell scripts with the binary package tagged onto |
| 1153 | # the end of the archive. Loki utilized the format as does |
1271 | # the end of the archive. Loki utilized the format as does |
| 1154 | # many other game companies. |
1272 | # many other game companies. |
| 1155 | # |
1273 | # |
| 1156 | # If the file is not specified, then ${A} is used. If the |
1274 | # If the file is not specified, then ${A} is used. If the |
| 1157 | # offset is not specified then we will attempt to extract |
1275 | # offset is not specified then we will attempt to extract |
| 1158 | # the proper offset from the script itself. |
1276 | # the proper offset from the script itself. |
| 1159 | unpack_makeself() { |
1277 | unpack_makeself() { |
| 1160 | local src_input=${1:-${A}} |
1278 | local src_input=${1:-${A}} |
| … | |
… | |
| 1251 | lic="${PWD}/${lic}" |
1369 | lic="${PWD}/${lic}" |
| 1252 | elif [ -e "${lic}" ] ; then |
1370 | elif [ -e "${lic}" ] ; then |
| 1253 | lic="${lic}" |
1371 | lic="${lic}" |
| 1254 | fi |
1372 | fi |
| 1255 | fi |
1373 | fi |
| 1256 | [ ! -f "${lic}" ] && die "Could not find requested license ${lic}" |
|
|
| 1257 | local l="`basename ${lic}`" |
1374 | local l="`basename ${lic}`" |
| 1258 | |
1375 | |
| 1259 | # here is where we check for the licenses the user already |
1376 | # here is where we check for the licenses the user already |
| 1260 | # accepted ... if we don't find a match, we make the user accept |
1377 | # accepted ... if we don't find a match, we make the user accept |
| 1261 | local shopts=$- |
|
|
| 1262 | local alic |
1378 | local alic |
| 1263 | set -o noglob #so that bash doesn't expand "*" |
1379 | eshopts_push -o noglob # so that bash doesn't expand "*" |
| 1264 | for alic in ${ACCEPT_LICENSE} ; do |
1380 | for alic in ${ACCEPT_LICENSE} ; do |
| 1265 | if [[ ${alic} == ${l} ]]; then |
1381 | if [[ ${alic} == ${l} ]]; then |
| 1266 | set +o noglob; set -${shopts} #reset old shell opts |
1382 | eshopts_pop |
| 1267 | return 0 |
1383 | return 0 |
| 1268 | fi |
1384 | fi |
| 1269 | done |
1385 | done |
| 1270 | set +o noglob; set -$shopts #reset old shell opts |
1386 | eshopts_pop |
|
|
1387 | [ ! -f "${lic}" ] && die "Could not find requested license ${lic}" |
| 1271 | |
1388 | |
| 1272 | local licmsg=$(emktemp) |
1389 | local licmsg=$(emktemp) |
| 1273 | cat <<-EOF > ${licmsg} |
1390 | cat <<-EOF > ${licmsg} |
| 1274 | ********************************************************** |
1391 | ********************************************************** |
| 1275 | The following license outlines the terms of use of this |
1392 | The following license outlines the terms of use of this |
| 1276 | package. You MUST accept this license for installation to |
1393 | package. You MUST accept this license for installation to |
| 1277 | continue. When you are done viewing, hit 'q'. If you |
1394 | continue. When you are done viewing, hit 'q'. If you |
| 1278 | CTRL+C out of this, the install will not run! |
1395 | CTRL+C out of this, the install will not run! |
| 1279 | ********************************************************** |
1396 | ********************************************************** |
| 1280 | |
1397 | |
| 1281 | EOF |
1398 | EOF |
| 1282 | cat ${lic} >> ${licmsg} |
1399 | cat ${lic} >> ${licmsg} |
| 1283 | ${PAGER:-less} ${licmsg} || die "Could not execute pager (${PAGER}) to accept ${lic}" |
1400 | ${PAGER:-less} ${licmsg} || die "Could not execute pager (${PAGER}) to accept ${lic}" |
| 1284 | einfon "Do you accept the terms of this license (${l})? [yes/no] " |
1401 | einfon "Do you accept the terms of this license (${l})? [yes/no] " |
| 1285 | read alic |
1402 | read alic |
| … | |
… | |
| 1298 | # @FUNCTION: cdrom_get_cds |
1415 | # @FUNCTION: cdrom_get_cds |
| 1299 | # @USAGE: <file on cd1> [file on cd2] [file on cd3] [...] |
1416 | # @USAGE: <file on cd1> [file on cd2] [file on cd3] [...] |
| 1300 | # @DESCRIPTION: |
1417 | # @DESCRIPTION: |
| 1301 | # Aquire cd(s) for those lovely cd-based emerges. Yes, this violates |
1418 | # Aquire cd(s) for those lovely cd-based emerges. Yes, this violates |
| 1302 | # the whole 'non-interactive' policy, but damnit I want CD support ! |
1419 | # the whole 'non-interactive' policy, but damnit I want CD support ! |
| 1303 | # |
1420 | # |
| 1304 | # With these cdrom functions we handle all the user interaction and |
1421 | # With these cdrom functions we handle all the user interaction and |
| 1305 | # standardize everything. All you have to do is call cdrom_get_cds() |
1422 | # standardize everything. All you have to do is call cdrom_get_cds() |
| 1306 | # and when the function returns, you can assume that the cd has been |
1423 | # and when the function returns, you can assume that the cd has been |
| 1307 | # found at CDROM_ROOT. |
1424 | # found at CDROM_ROOT. |
| 1308 | # |
1425 | # |
| 1309 | # The function will attempt to locate a cd based upon a file that is on |
1426 | # The function will attempt to locate a cd based upon a file that is on |
| 1310 | # the cd. The more files you give this function, the more cds |
1427 | # the cd. The more files you give this function, the more cds |
| 1311 | # the cdrom functions will handle. |
1428 | # the cdrom functions will handle. |
| 1312 | # |
1429 | # |
| 1313 | # Normally the cdrom functions will refer to the cds as 'cd #1', 'cd #2', |
1430 | # Normally the cdrom functions will refer to the cds as 'cd #1', 'cd #2', |
| 1314 | # etc... If you want to give the cds better names, then just export |
1431 | # etc... If you want to give the cds better names, then just export |
| 1315 | # the appropriate CDROM_NAME variable before calling cdrom_get_cds(). |
1432 | # the appropriate CDROM_NAME variable before calling cdrom_get_cds(). |
| 1316 | # Use CDROM_NAME for one cd, or CDROM_NAME_# for multiple cds. You can |
1433 | # Use CDROM_NAME for one cd, or CDROM_NAME_# for multiple cds. You can |
| 1317 | # also use the CDROM_NAME_SET bash array. |
1434 | # also use the CDROM_NAME_SET bash array. |
| 1318 | # |
1435 | # |
| 1319 | # For those multi cd ebuilds, see the cdrom_load_next_cd() function. |
1436 | # For those multi cd ebuilds, see the cdrom_load_next_cd() function. |
| 1320 | cdrom_get_cds() { |
1437 | cdrom_get_cds() { |
| 1321 | # first we figure out how many cds we're dealing with by |
1438 | # first we figure out how many cds we're dealing with by |
| 1322 | # the # of files they gave us |
1439 | # the # of files they gave us |
| 1323 | local cdcnt=0 |
1440 | local cdcnt=0 |
| … | |
… | |
| 1444 | # displayed and we'll hang out here until: |
1561 | # displayed and we'll hang out here until: |
| 1445 | # (1) the file is found on a mounted cdrom |
1562 | # (1) the file is found on a mounted cdrom |
| 1446 | # (2) the user hits CTRL+C |
1563 | # (2) the user hits CTRL+C |
| 1447 | _cdrom_locate_file_on_cd() { |
1564 | _cdrom_locate_file_on_cd() { |
| 1448 | local mline="" |
1565 | local mline="" |
| 1449 | local showedmsg=0 |
1566 | local showedmsg=0 showjolietmsg=0 |
| 1450 | |
1567 | |
| 1451 | while [[ -z ${CDROM_ROOT} ]] ; do |
1568 | while [[ -z ${CDROM_ROOT} ]] ; do |
| 1452 | local i=0 |
1569 | local i=0 |
| 1453 | local -a cdset=(${*//:/ }) |
1570 | local -a cdset=(${*//:/ }) |
| 1454 | if [[ -n ${CDROM_SET} ]] ; then |
1571 | if [[ -n ${CDROM_SET} ]] ; then |
| … | |
… | |
| 1463 | while read point node fs foo ; do |
1580 | while read point node fs foo ; do |
| 1464 | [[ " cd9660 iso9660 udf " != *" ${fs} "* ]] && \ |
1581 | [[ " cd9660 iso9660 udf " != *" ${fs} "* ]] && \ |
| 1465 | ! [[ ${fs} == "subfs" && ",${opts}," == *",fs=cdfss,"* ]] \ |
1582 | ! [[ ${fs} == "subfs" && ",${opts}," == *",fs=cdfss,"* ]] \ |
| 1466 | && continue |
1583 | && continue |
| 1467 | point=${point//\040/ } |
1584 | point=${point//\040/ } |
|
|
1585 | [[ ! -d ${point}/${dir} ]] && continue |
| 1468 | [[ -z $(find "${point}/${dir}" -maxdepth 1 -iname "${file}") ]] && continue |
1586 | [[ -z $(find "${point}/${dir}" -maxdepth 1 -iname "${file}") ]] && continue |
| 1469 | export CDROM_ROOT=${point} |
1587 | export CDROM_ROOT=${point} |
| 1470 | export CDROM_SET=${i} |
1588 | export CDROM_SET=${i} |
| 1471 | export CDROM_MATCH=${cdset[${i}]} |
1589 | export CDROM_MATCH=${cdset[${i}]} |
| 1472 | return |
1590 | return |
| … | |
… | |
| 1494 | showedmsg=1 |
1612 | showedmsg=1 |
| 1495 | fi |
1613 | fi |
| 1496 | einfo "Press return to scan for the cd again" |
1614 | einfo "Press return to scan for the cd again" |
| 1497 | einfo "or hit CTRL+C to abort the emerge." |
1615 | einfo "or hit CTRL+C to abort the emerge." |
| 1498 | echo |
1616 | echo |
|
|
1617 | if [[ ${showjolietmsg} -eq 0 ]] ; then |
|
|
1618 | showjolietmsg=1 |
|
|
1619 | else |
| 1499 | einfo "If you are having trouble with the detection" |
1620 | ewarn "If you are having trouble with the detection" |
| 1500 | einfo "of your CD, it is possible that you do not have" |
1621 | ewarn "of your CD, it is possible that you do not have" |
| 1501 | einfo "Joliet support enabled in your kernel. Please" |
1622 | ewarn "Joliet support enabled in your kernel. Please" |
| 1502 | einfo "check that CONFIG_JOLIET is enabled in your kernel." |
1623 | ewarn "check that CONFIG_JOLIET is enabled in your kernel." |
|
|
1624 | ebeep 5 |
|
|
1625 | fi |
| 1503 | read || die "something is screwed with your system" |
1626 | read || die "something is screwed with your system" |
| 1504 | done |
1627 | done |
| 1505 | } |
1628 | } |
| 1506 | |
1629 | |
|
|
1630 | # @FUNCTION: strip-linguas |
|
|
1631 | # @USAGE: [<allow LINGUAS>|<-i|-u> <directories of .po files>] |
|
|
1632 | # @DESCRIPTION: |
| 1507 | # Make sure that LINGUAS only contains languages that |
1633 | # Make sure that LINGUAS only contains languages that |
| 1508 | # a package can support |
1634 | # a package can support. The first form allows you to |
| 1509 | # |
1635 | # specify a list of LINGUAS. The -i builds a list of po |
| 1510 | # usage: strip-linguas <allow LINGUAS> |
1636 | # files found in all the directories and uses the |
| 1511 | # strip-linguas -i <directories of .po files> |
1637 | # intersection of the lists. The -u builds a list of po |
| 1512 | # strip-linguas -u <directories of .po files> |
1638 | # files found in all the directories and uses the union |
| 1513 | # |
1639 | # of the lists. |
| 1514 | # The first form allows you to specify a list of LINGUAS. |
|
|
| 1515 | # The -i builds a list of po files found in all the |
|
|
| 1516 | # directories and uses the intersection of the lists. |
|
|
| 1517 | # The -u builds a list of po files found in all the |
|
|
| 1518 | # directories and uses the union of the lists. |
|
|
| 1519 | strip-linguas() { |
1640 | strip-linguas() { |
| 1520 | local ls newls nols |
1641 | local ls newls nols |
| 1521 | if [[ $1 == "-i" ]] || [[ $1 == "-u" ]] ; then |
1642 | if [[ $1 == "-i" ]] || [[ $1 == "-u" ]] ; then |
| 1522 | local op=$1; shift |
1643 | local op=$1; shift |
| 1523 | ls=$(find "$1" -name '*.po' -exec basename {} .po \;); shift |
1644 | ls=$(find "$1" -name '*.po' -exec basename {} .po ';'); shift |
| 1524 | local d f |
1645 | local d f |
| 1525 | for d in "$@" ; do |
1646 | for d in "$@" ; do |
| 1526 | if [[ ${op} == "-u" ]] ; then |
1647 | if [[ ${op} == "-u" ]] ; then |
| 1527 | newls=${ls} |
1648 | newls=${ls} |
| 1528 | else |
1649 | else |
| 1529 | newls="" |
1650 | newls="" |
| 1530 | fi |
1651 | fi |
| 1531 | for f in $(find "$d" -name '*.po' -exec basename {} .po \;) ; do |
1652 | for f in $(find "$d" -name '*.po' -exec basename {} .po ';') ; do |
| 1532 | if [[ ${op} == "-i" ]] ; then |
1653 | if [[ ${op} == "-i" ]] ; then |
| 1533 | hasq ${f} ${ls} && newls="${newls} ${f}" |
1654 | hasq ${f} ${ls} && newls="${newls} ${f}" |
| 1534 | else |
1655 | else |
| 1535 | hasq ${f} ${ls} || newls="${newls} ${f}" |
1656 | hasq ${f} ${ls} || newls="${newls} ${f}" |
| 1536 | fi |
1657 | fi |
| … | |
… | |
| 1549 | else |
1670 | else |
| 1550 | nols="${nols} ${f}" |
1671 | nols="${nols} ${f}" |
| 1551 | fi |
1672 | fi |
| 1552 | done |
1673 | done |
| 1553 | [[ -n ${nols} ]] \ |
1674 | [[ -n ${nols} ]] \ |
| 1554 | && ewarn "Sorry, but ${PN} does not support the LINGUAs:" ${nols} |
1675 | && ewarn "Sorry, but ${PN} does not support the LINGUAS:" ${nols} |
| 1555 | export LINGUAS=${newls:1} |
1676 | export LINGUAS=${newls:1} |
| 1556 | } |
|
|
| 1557 | |
|
|
| 1558 | # @FUNCTION: set_arch_to_kernel |
|
|
| 1559 | # @DESCRIPTION: |
|
|
| 1560 | # Set the env ARCH to match what the kernel expects. |
|
|
| 1561 | set_arch_to_kernel() { |
|
|
| 1562 | i=10 |
|
|
| 1563 | while ((i--)) ; do |
|
|
| 1564 | ewarn "PLEASE UPDATE TO YOUR PACKAGE TO USE linux-info.eclass" |
|
|
| 1565 | done |
|
|
| 1566 | export EUTILS_ECLASS_PORTAGE_ARCH="${ARCH}" |
|
|
| 1567 | case ${ARCH} in |
|
|
| 1568 | x86) export ARCH="i386";; |
|
|
| 1569 | amd64) export ARCH="x86_64";; |
|
|
| 1570 | hppa) export ARCH="parisc";; |
|
|
| 1571 | mips) export ARCH="mips";; |
|
|
| 1572 | sparc) export ARCH="$(tc-arch-kernel)";; # Yeah this is ugly, but it's even WORSE if you don't do this. linux-info.eclass's set_arch_to_kernel is fixed, but won't get used over this one! |
|
|
| 1573 | *) export ARCH="${ARCH}";; |
|
|
| 1574 | esac |
|
|
| 1575 | } |
|
|
| 1576 | |
|
|
| 1577 | # @FUNCTION: set_arch_to_portage |
|
|
| 1578 | # @DESCRIPTION: |
|
|
| 1579 | # Set the env ARCH to match what portage expects. |
|
|
| 1580 | set_arch_to_portage() { |
|
|
| 1581 | i=10 |
|
|
| 1582 | while ((i--)) ; do |
|
|
| 1583 | ewarn "PLEASE UPDATE TO YOUR PACKAGE TO USE linux-info.eclass" |
|
|
| 1584 | done |
|
|
| 1585 | export ARCH="${EUTILS_ECLASS_PORTAGE_ARCH}" |
|
|
| 1586 | } |
1677 | } |
| 1587 | |
1678 | |
| 1588 | # @FUNCTION: preserve_old_lib |
1679 | # @FUNCTION: preserve_old_lib |
| 1589 | # @USAGE: <libs to preserve> [more libs] |
1680 | # @USAGE: <libs to preserve> [more libs] |
| 1590 | # @DESCRIPTION: |
1681 | # @DESCRIPTION: |
| … | |
… | |
| 1599 | eerror "preserve_old_lib() must be called from pkg_preinst() only" |
1690 | eerror "preserve_old_lib() must be called from pkg_preinst() only" |
| 1600 | die "Invalid preserve_old_lib() usage" |
1691 | die "Invalid preserve_old_lib() usage" |
| 1601 | fi |
1692 | fi |
| 1602 | [[ -z $1 ]] && die "Usage: preserve_old_lib <library to preserve> [more libraries to preserve]" |
1693 | [[ -z $1 ]] && die "Usage: preserve_old_lib <library to preserve> [more libraries to preserve]" |
| 1603 | |
1694 | |
|
|
1695 | # let portage worry about it |
|
|
1696 | has preserve-libs ${FEATURES} && return 0 |
|
|
1697 | |
| 1604 | local lib dir |
1698 | local lib dir |
| 1605 | for lib in "$@" ; do |
1699 | for lib in "$@" ; do |
| 1606 | [[ -e ${ROOT}/${lib} ]] || continue |
1700 | [[ -e ${ROOT}/${lib} ]] || continue |
| 1607 | dir=${lib%/*} |
1701 | dir=${lib%/*} |
| 1608 | dodir ${dir} || die "dodir ${dir} failed" |
1702 | dodir ${dir} || die "dodir ${dir} failed" |
| … | |
… | |
| 1618 | preserve_old_lib_notify() { |
1712 | preserve_old_lib_notify() { |
| 1619 | if [[ ${EBUILD_PHASE} != "postinst" ]] ; then |
1713 | if [[ ${EBUILD_PHASE} != "postinst" ]] ; then |
| 1620 | eerror "preserve_old_lib_notify() must be called from pkg_postinst() only" |
1714 | eerror "preserve_old_lib_notify() must be called from pkg_postinst() only" |
| 1621 | die "Invalid preserve_old_lib_notify() usage" |
1715 | die "Invalid preserve_old_lib_notify() usage" |
| 1622 | fi |
1716 | fi |
|
|
1717 | |
|
|
1718 | # let portage worry about it |
|
|
1719 | has preserve-libs ${FEATURES} && return 0 |
| 1623 | |
1720 | |
| 1624 | local lib notice=0 |
1721 | local lib notice=0 |
| 1625 | for lib in "$@" ; do |
1722 | for lib in "$@" ; do |
| 1626 | [[ -e ${ROOT}/${lib} ]] || continue |
1723 | [[ -e ${ROOT}/${lib} ]] || continue |
| 1627 | if [[ ${notice} -eq 0 ]] ; then |
1724 | if [[ ${notice} -eq 0 ]] ; then |
| … | |
… | |
| 1633 | ewarn "helper program, simply emerge the 'gentoolkit' package." |
1730 | ewarn "helper program, simply emerge the 'gentoolkit' package." |
| 1634 | ewarn |
1731 | ewarn |
| 1635 | fi |
1732 | fi |
| 1636 | ewarn " # revdep-rebuild --library ${lib##*/}" |
1733 | ewarn " # revdep-rebuild --library ${lib##*/}" |
| 1637 | done |
1734 | done |
|
|
1735 | if [[ ${notice} -eq 1 ]] ; then |
|
|
1736 | ewarn |
|
|
1737 | ewarn "Once you've finished running revdep-rebuild, it should be safe to" |
|
|
1738 | ewarn "delete the old libraries. Here is a copy & paste for the lazy:" |
|
|
1739 | for lib in "$@" ; do |
|
|
1740 | ewarn " # rm '${lib}'" |
|
|
1741 | done |
|
|
1742 | fi |
| 1638 | } |
1743 | } |
| 1639 | |
1744 | |
| 1640 | # @FUNCTION: built_with_use |
1745 | # @FUNCTION: built_with_use |
| 1641 | # @USAGE: [--hidden] [--missing <action>] [-a|-o] <DEPEND ATOM> <List of USE flags> |
1746 | # @USAGE: [--hidden] [--missing <action>] [-a|-o] <DEPEND ATOM> <List of USE flags> |
| 1642 | # @DESCRIPTION: |
1747 | # @DESCRIPTION: |
| … | |
… | |
| 1646 | # --missing option controls the behavior if called on a package that does |
1751 | # --missing option controls the behavior if called on a package that does |
| 1647 | # not actually support the defined USE flags (aka listed in IUSE). |
1752 | # not actually support the defined USE flags (aka listed in IUSE). |
| 1648 | # The default is to abort (call die). The -a and -o flags control |
1753 | # The default is to abort (call die). The -a and -o flags control |
| 1649 | # the requirements of the USE flags. They correspond to "and" and "or" |
1754 | # the requirements of the USE flags. They correspond to "and" and "or" |
| 1650 | # logic. So the -a flag means all listed USE flags must be enabled |
1755 | # logic. So the -a flag means all listed USE flags must be enabled |
| 1651 | # while the -o flag means at least one of the listed fIUSE flags must be |
1756 | # while the -o flag means at least one of the listed IUSE flags must be |
| 1652 | # enabled. The --hidden option is really for internal use only as it |
1757 | # enabled. The --hidden option is really for internal use only as it |
| 1653 | # means the USE flag we're checking is hidden expanded, so it won't be found |
1758 | # means the USE flag we're checking is hidden expanded, so it won't be found |
| 1654 | # in IUSE like normal USE flags. |
1759 | # in IUSE like normal USE flags. |
| 1655 | # |
1760 | # |
| 1656 | # Remember that this function isn't terribly intelligent so order of optional |
1761 | # Remember that this function isn't terribly intelligent so order of optional |
| 1657 | # flags matter. |
1762 | # flags matter. |
| 1658 | built_with_use() { |
1763 | built_with_use() { |
| 1659 | local hidden="no" |
1764 | local hidden="no" |
| 1660 | if [[ $1 == "--hidden" ]] ; then |
1765 | if [[ $1 == "--hidden" ]] ; then |
| … | |
… | |
| 1691 | die) die "Unable to determine what USE flags $PKG was built with";; |
1796 | die) die "Unable to determine what USE flags $PKG was built with";; |
| 1692 | esac |
1797 | esac |
| 1693 | fi |
1798 | fi |
| 1694 | |
1799 | |
| 1695 | if [[ ${hidden} == "no" ]] ; then |
1800 | if [[ ${hidden} == "no" ]] ; then |
| 1696 | local IUSE_BUILT=$(<${IUSEFILE}) |
1801 | local IUSE_BUILT=( $(<"${IUSEFILE}") ) |
| 1697 | # Don't check USE_EXPAND #147237 |
1802 | # Don't check USE_EXPAND #147237 |
| 1698 | local expand |
1803 | local expand |
| 1699 | for expand in $(echo ${USE_EXPAND} | tr '[:upper:]' '[:lower:]') ; do |
1804 | for expand in $(echo ${USE_EXPAND} | tr '[:upper:]' '[:lower:]') ; do |
| 1700 | if [[ $1 == ${expand}_* ]] ; then |
1805 | if [[ $1 == ${expand}_* ]] ; then |
| 1701 | expand="" |
1806 | expand="" |
| 1702 | break |
1807 | break |
| 1703 | fi |
1808 | fi |
| 1704 | done |
1809 | done |
| 1705 | if [[ -n ${expand} ]] ; then |
1810 | if [[ -n ${expand} ]] ; then |
| 1706 | if ! has $1 ${IUSE_BUILT} ; then |
1811 | if ! has $1 ${IUSE_BUILT[@]#[-+]} ; then |
| 1707 | case ${missing_action} in |
1812 | case ${missing_action} in |
| 1708 | true) return 0;; |
1813 | true) return 0;; |
| 1709 | false) return 1;; |
1814 | false) return 1;; |
| 1710 | die) die "$PKG does not actually support the $1 USE flag!";; |
1815 | die) die "$PKG does not actually support the $1 USE flag!";; |
| 1711 | esac |
1816 | esac |
| … | |
… | |
| 1723 | shift |
1828 | shift |
| 1724 | done |
1829 | done |
| 1725 | [[ ${opt} = "-a" ]] |
1830 | [[ ${opt} = "-a" ]] |
| 1726 | } |
1831 | } |
| 1727 | |
1832 | |
| 1728 | # @DESCRIPTION: epunt_cxx |
1833 | # @FUNCTION: epunt_cxx |
| 1729 | # @USAGE: [dir to scan] |
1834 | # @USAGE: [dir to scan] |
| 1730 | # @DESCRIPTION: |
1835 | # @DESCRIPTION: |
| 1731 | # Many configure scripts wrongly bail when a C++ compiler could not be |
1836 | # Many configure scripts wrongly bail when a C++ compiler could not be |
| 1732 | # detected. If dir is not specified, then it defaults to ${S}. |
1837 | # detected. If dir is not specified, then it defaults to ${S}. |
| 1733 | # |
1838 | # |
| … | |
… | |
| 1735 | epunt_cxx() { |
1840 | epunt_cxx() { |
| 1736 | local dir=$1 |
1841 | local dir=$1 |
| 1737 | [[ -z ${dir} ]] && dir=${S} |
1842 | [[ -z ${dir} ]] && dir=${S} |
| 1738 | ebegin "Removing useless C++ checks" |
1843 | ebegin "Removing useless C++ checks" |
| 1739 | local f |
1844 | local f |
| 1740 | for f in $(find ${dir} -name configure) ; do |
1845 | find "${dir}" -name configure | while read f ; do |
| 1741 | patch -p0 "${f}" "${PORTDIR}/eclass/ELT-patches/nocxx/nocxx.patch" > /dev/null |
1846 | patch --no-backup-if-mismatch -p0 "${f}" "${PORTDIR}/eclass/ELT-patches/nocxx/nocxx.patch" > /dev/null |
| 1742 | done |
1847 | done |
| 1743 | eend 0 |
1848 | eend 0 |
| 1744 | } |
1849 | } |
| 1745 | |
1850 | |
| 1746 | # @FUNCTION: make_wrapper |
1851 | # @FUNCTION: make_wrapper |
| 1747 | # @USAGE: <wrapper> <target> <chdir> [libpaths] [installpath] |
1852 | # @USAGE: <wrapper> <target> [chdir] [libpaths] [installpath] |
| 1748 | # @DESCRIPTION: |
1853 | # @DESCRIPTION: |
| 1749 | # Create a shell wrapper script named wrapper in installpath |
1854 | # Create a shell wrapper script named wrapper in installpath |
| 1750 | # (defaults to the bindir) to execute target (default of wrapper) by |
1855 | # (defaults to the bindir) to execute target (default of wrapper) by |
| 1751 | # first optionally setting LD_LIBRARY_PATH to the colon-delimited |
1856 | # first optionally setting LD_LIBRARY_PATH to the colon-delimited |
| 1752 | # libpaths followed by optionally changing directory to chdir. |
1857 | # libpaths followed by optionally changing directory to chdir. |
| … | |
… | |
| 1775 | ) || die |
1880 | ) || die |
| 1776 | else |
1881 | else |
| 1777 | newbin "${tmpwrapper}" "${wrapper}" || die |
1882 | newbin "${tmpwrapper}" "${wrapper}" || die |
| 1778 | fi |
1883 | fi |
| 1779 | } |
1884 | } |
|
|
1885 | |
|
|
1886 | # @FUNCTION: prepalldocs |
|
|
1887 | # @USAGE: |
|
|
1888 | # @DESCRIPTION: |
|
|
1889 | # Compress files in /usr/share/doc which are not already |
|
|
1890 | # compressed, excluding /usr/share/doc/${PF}/html. |
|
|
1891 | # Uses the ecompressdir to do the compression. |
|
|
1892 | # 2009-02-18 by betelgeuse: |
|
|
1893 | # Commented because ecompressdir is even more internal to |
|
|
1894 | # Portage than prepalldocs (it's not even mentioned in man 5 |
|
|
1895 | # ebuild). Please submit a better version for review to gentoo-dev |
|
|
1896 | # if you want prepalldocs here. |
|
|
1897 | #prepalldocs() { |
|
|
1898 | # if [[ -n $1 ]] ; then |
|
|
1899 | # ewarn "prepalldocs: invalid usage; takes no arguments" |
|
|
1900 | # fi |
|
|
1901 | |
|
|
1902 | # cd "${D}" |
|
|
1903 | # [[ -d usr/share/doc ]] || return 0 |
|
|
1904 | |
|
|
1905 | # find usr/share/doc -exec gzip {} + |
|
|
1906 | # ecompressdir --ignore /usr/share/doc/${PF}/html |
|
|
1907 | # ecompressdir --queue /usr/share/doc |
|
|
1908 | #} |