1 | # Copyright 1999-2003 Gentoo Technologies, Inc. |
1 | # Copyright 1999-2007 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.51 2003/09/08 02:10:46 azarah Exp $ |
3 | # $Header: /var/cvsroot/gentoo-x86/eclass/eutils.eclass,v 1.296 2008/02/13 20:50:06 wolf31o2 Exp $ |
4 | # |
|
|
5 | # Author: Martin Schlemmer <azarah@gentoo.org> |
|
|
6 | # |
|
|
7 | # This eclass is for general purpose functions that most ebuilds |
|
|
8 | # have to implement themselves. |
|
|
9 | # |
|
|
10 | # NB: If you add anything, please comment it! |
|
|
11 | |
4 | |
12 | ECLASS=eutils |
5 | # @ECLASS: eutils.eclass |
13 | INHERITED="$INHERITED $ECLASS" |
6 | # @MAINTAINER: |
|
|
7 | # base-system@gentoo.org |
|
|
8 | # @BLURB: many extra (but common) functions that are used in ebuilds |
|
|
9 | # @DESCRIPTION: |
|
|
10 | # The eutils eclass contains a suite of functions that complement |
|
|
11 | # the ones that ebuild.sh already contain. The idea is that the functions |
|
|
12 | # are not required in all ebuilds but enough utilize them to have a common |
|
|
13 | # home rather than having multiple ebuilds implementing the same thing. |
|
|
14 | # |
|
|
15 | # Due to the nature of this eclass, some functions may have maintainers |
|
|
16 | # different from the overall eclass! |
14 | |
17 | |
15 | newdepend "!bootstrap? ( sys-devel/patch )" |
18 | inherit multilib portability |
16 | |
19 | |
17 | DESCRIPTION="Based on the ${ECLASS} eclass" |
20 | DESCRIPTION="Based on the ${ECLASS} eclass" |
18 | |
21 | |
19 | # This function generate linker scripts in /usr/lib for dynamic |
22 | # @FUNCTION: epause |
20 | # libs in /lib. This is to fix linking problems when you have |
23 | # @USAGE: [seconds] |
21 | # the .so in /lib, and the .a in /usr/lib. What happens is that |
24 | # @DESCRIPTION: |
22 | # in some cases when linking dynamic, the .a in /usr/lib is used |
25 | # Sleep for the specified number of seconds (default of 5 seconds). Useful when |
23 | # instead of the .so in /lib due to gcc/libtool tweaking ld's |
26 | # printing a message the user should probably be reading and often used in |
24 | # library search path. This cause many builds to fail. |
27 | # conjunction with the ebeep function. If the EPAUSE_IGNORE env var is set, |
25 | # See bug #4411 for more info. |
28 | # don't wait at all. |
26 | # |
29 | epause() { |
27 | # To use, simply call: |
30 | [[ -z ${EPAUSE_IGNORE} ]] && sleep ${1:-5} |
28 | # |
|
|
29 | # gen_usr_ldscript libfoo.so |
|
|
30 | # |
|
|
31 | # Note that you should in general use the unversioned name of |
|
|
32 | # the library, as ldconfig should usually update it correctly |
|
|
33 | # to point to the latest version of the library present. |
|
|
34 | # |
|
|
35 | # <azarah@gentoo.org> (26 Oct 2002) |
|
|
36 | # |
|
|
37 | gen_usr_ldscript() { |
|
|
38 | |
|
|
39 | # Just make sure it exists |
|
|
40 | dodir /usr/lib |
|
|
41 | |
|
|
42 | cat > ${D}/usr/lib/$1 <<"END_LDSCRIPT" |
|
|
43 | /* GNU ld script |
|
|
44 | Because Gentoo have critical dynamic libraries |
|
|
45 | in /lib, and the static versions in /usr/lib, we |
|
|
46 | need to have a "fake" dynamic lib in /usr/lib, |
|
|
47 | otherwise we run into linking problems. |
|
|
48 | See bug #4411 on http://bugs.gentoo.org/ for |
|
|
49 | more info. */ |
|
|
50 | GROUP ( /lib/libxxx ) |
|
|
51 | END_LDSCRIPT |
|
|
52 | |
|
|
53 | dosed "s:libxxx:$1:" /usr/lib/$1 |
|
|
54 | |
|
|
55 | return 0 |
|
|
56 | } |
31 | } |
57 | |
32 | |
58 | # Simple function to draw a line consisting of '=' the same length as $* |
33 | # @FUNCTION: ebeep |
59 | # |
34 | # @USAGE: [number of beeps] |
60 | # <azarah@gentoo.org> (11 Nov 2002) |
35 | # @DESCRIPTION: |
61 | # |
36 | # Issue the specified number of beeps (default of 5 beeps). Useful when |
62 | draw_line() { |
37 | # printing a message the user should probably be reading and often used in |
|
|
38 | # conjunction with the epause function. If the EBEEP_IGNORE env var is set, |
|
|
39 | # don't beep at all. |
|
|
40 | ebeep() { |
63 | local i=0 |
41 | local n |
64 | local str_length="" |
42 | if [[ -z ${EBEEP_IGNORE} ]] ; then |
65 | |
43 | for ((n=1 ; n <= ${1:-5} ; n++)) ; do |
66 | # Handle calls that do not have args, or wc not being installed ... |
|
|
67 | if [ -z "$1" -o ! -x "$(which wc 2>/dev/null)" ] |
|
|
68 | then |
|
|
69 | echo "===============================================================" |
|
|
70 | return 0 |
|
|
71 | fi |
|
|
72 | |
|
|
73 | # Get the length of $* |
|
|
74 | str_length="$(echo -n "$*" | wc -m)" |
|
|
75 | |
|
|
76 | while [ "$i" -lt "${str_length}" ] |
|
|
77 | do |
|
|
78 | echo -n "=" |
44 | echo -ne "\a" |
79 | |
45 | sleep 0.1 &>/dev/null ; sleep 0,1 &>/dev/null |
80 | i=$((i + 1)) |
46 | echo -ne "\a" |
|
|
47 | sleep 1 |
81 | done |
48 | done |
82 | |
49 | fi |
83 | echo |
|
|
84 | |
|
|
85 | return 0 |
|
|
86 | } |
50 | } |
87 | |
51 | |
88 | # Default directory where patches are located |
52 | # Default directory where patches are located |
89 | EPATCH_SOURCE="${WORKDIR}/patch" |
53 | EPATCH_SOURCE="${WORKDIR}/patch" |
90 | # Default extension for patches |
54 | # Default extension for patches |
91 | EPATCH_SUFFIX="patch.bz2" |
55 | EPATCH_SUFFIX="patch.bz2" |
92 | # Default options for patch |
56 | # Default options for patch |
93 | EPATCH_OPTS="" |
57 | # Set -g0 to keep RCS, ClearCase, Perforce and SCCS happy. Bug #24571 |
|
|
58 | # Set --no-backup-if-mismatch so we don't leave '.orig' files behind. |
|
|
59 | # Set -E to automatically remove empty files. |
|
|
60 | EPATCH_OPTS="-g0 -E --no-backup-if-mismatch" |
94 | # List of patches not to apply. Not this is only file names, |
61 | # List of patches not to apply. Not this is only file names, |
95 | # and not the full path .. |
62 | # and not the full path .. |
96 | EPATCH_EXCLUDE="" |
63 | EPATCH_EXCLUDE="" |
97 | # Change the printed message for a single patch. |
64 | # Change the printed message for a single patch. |
98 | EPATCH_SINGLE_MSG="" |
65 | EPATCH_SINGLE_MSG="" |
|
|
66 | # Change the printed message for multiple patches. |
|
|
67 | EPATCH_MULTI_MSG="Applying various patches (bugfixes/updates) ..." |
99 | # Force applying bulk patches even if not following the style: |
68 | # Force applying bulk patches even if not following the style: |
100 | # |
69 | # |
101 | # ??_${ARCH}_foo.${EPATCH_SUFFIX} |
70 | # ??_${ARCH}_foo.${EPATCH_SUFFIX} |
102 | # |
71 | # |
103 | EPATCH_FORCE="no" |
72 | EPATCH_FORCE="no" |
104 | |
73 | |
105 | # This function is for bulk patching, or in theory for just one |
74 | # This function is for bulk patching, or in theory for just one |
106 | # or two patches. |
75 | # or two patches. |
… | |
… | |
117 | # |
86 | # |
118 | # Patches are applied in current directory. |
87 | # Patches are applied in current directory. |
119 | # |
88 | # |
120 | # Bulk Patches should preferibly have the form of: |
89 | # Bulk Patches should preferibly have the form of: |
121 | # |
90 | # |
122 | # ??_${ARCH}_foo.${EPATCH_SUFFIX} |
91 | # ??_${ARCH}_foo.${EPATCH_SUFFIX} |
123 | # |
92 | # |
124 | # For example: |
93 | # For example: |
125 | # |
94 | # |
126 | # 01_all_misc-fix.patch.bz2 |
95 | # 01_all_misc-fix.patch.bz2 |
127 | # 02_sparc_another-fix.patch.bz2 |
96 | # 02_sparc_another-fix.patch.bz2 |
128 | # |
97 | # |
129 | # This ensures that there are a set order, and you can have ARCH |
98 | # This ensures that there are a set order, and you can have ARCH |
130 | # specific patches. |
99 | # specific patches. |
131 | # |
100 | # |
132 | # If you however give an argument to epatch(), it will treat it as a |
101 | # If you however give an argument to epatch(), it will treat it as a |
… | |
… | |
134 | # hand its a directory, it will set EPATCH_SOURCE to this. |
103 | # hand its a directory, it will set EPATCH_SOURCE to this. |
135 | # |
104 | # |
136 | # <azarah@gentoo.org> (10 Nov 2002) |
105 | # <azarah@gentoo.org> (10 Nov 2002) |
137 | # |
106 | # |
138 | epatch() { |
107 | epatch() { |
|
|
108 | _epatch_draw_line() { |
|
|
109 | [[ -z $1 ]] && set "$(printf "%65s" '')" |
|
|
110 | echo "${1//?/=}" |
|
|
111 | } |
|
|
112 | _epatch_assert() { local _pipestatus=${PIPESTATUS[*]}; [[ ${_pipestatus// /} -eq 0 ]] ; } |
139 | local PIPE_CMD="" |
113 | local PIPE_CMD="" |
140 | local STDERR_TARGET="${T}/$$.out" |
114 | local STDERR_TARGET="${T}/$$.out" |
141 | local PATCH_TARGET="${T}/$$.patch" |
115 | local PATCH_TARGET="${T}/$$.patch" |
142 | local PATCH_SUFFIX="" |
116 | local PATCH_SUFFIX="" |
143 | local SINGLE_PATCH="no" |
117 | local SINGLE_PATCH="no" |
144 | local x="" |
118 | local x="" |
145 | |
119 | |
|
|
120 | unset P4CONFIG P4PORT P4USER # keep perforce at bay #56402 |
|
|
121 | |
146 | if [ "$#" -gt 1 ] |
122 | if [ "$#" -gt 1 ] |
147 | then |
123 | then |
148 | eerror "Invalid arguments to epatch()" |
124 | local m="" |
149 | die "Invalid arguments to epatch()" |
125 | for m in "$@" ; do |
|
|
126 | epatch "${m}" |
|
|
127 | done |
|
|
128 | return 0 |
150 | fi |
129 | fi |
151 | |
130 | |
152 | if [ -n "$1" -a -f "$1" ] |
131 | if [ -n "$1" -a -f "$1" ] |
153 | then |
132 | then |
154 | SINGLE_PATCH="yes" |
133 | SINGLE_PATCH="yes" |
… | |
… | |
164 | local EPATCH_SOURCE="$1/*" |
143 | local EPATCH_SOURCE="$1/*" |
165 | else |
144 | else |
166 | local EPATCH_SOURCE="$1/*.${EPATCH_SUFFIX}" |
145 | local EPATCH_SOURCE="$1/*.${EPATCH_SUFFIX}" |
167 | fi |
146 | fi |
168 | else |
147 | else |
169 | if [ ! -d ${EPATCH_SOURCE} ] |
148 | if [[ ! -d ${EPATCH_SOURCE} ]] || [[ -n $1 ]] ; then |
170 | then |
|
|
171 | if [ -n "$1" -a "${EPATCH_SOURCE}" = "${WORKDIR}/patch" ] |
149 | if [ -n "$1" -a "${EPATCH_SOURCE}" = "${WORKDIR}/patch" ] |
172 | then |
150 | then |
173 | EPATCH_SOURCE="$1" |
151 | EPATCH_SOURCE="$1" |
174 | fi |
152 | fi |
175 | |
153 | |
176 | echo |
154 | echo |
177 | eerror "Cannot find \$EPATCH_SOURCE! Value for \$EPATCH_SOURCE is:" |
155 | eerror "Cannot find \$EPATCH_SOURCE! Value for \$EPATCH_SOURCE is:" |
178 | eerror |
156 | eerror |
179 | eerror " ${EPATCH_SOURCE}" |
157 | eerror " ${EPATCH_SOURCE}" |
|
|
158 | eerror " ( ${EPATCH_SOURCE##*/} )" |
180 | echo |
159 | echo |
181 | die "Cannot find \$EPATCH_SOURCE!" |
160 | die "Cannot find \$EPATCH_SOURCE!" |
182 | fi |
161 | fi |
183 | |
162 | |
184 | local EPATCH_SOURCE="${EPATCH_SOURCE}/*.${EPATCH_SUFFIX}" |
163 | local EPATCH_SOURCE="${EPATCH_SOURCE}/*.${EPATCH_SUFFIX}" |
… | |
… | |
203 | ;; |
182 | ;; |
204 | esac |
183 | esac |
205 | |
184 | |
206 | if [ "${SINGLE_PATCH}" = "no" ] |
185 | if [ "${SINGLE_PATCH}" = "no" ] |
207 | then |
186 | then |
208 | einfo "Applying various patches (bugfixes/updates)..." |
187 | einfo "${EPATCH_MULTI_MSG}" |
209 | fi |
188 | fi |
210 | for x in ${EPATCH_SOURCE} |
189 | for x in ${EPATCH_SOURCE} |
211 | do |
190 | do |
212 | # New ARCH dependant patch naming scheme... |
191 | # New ARCH dependant patch naming scheme ... |
213 | # |
192 | # |
214 | # ???_arch_foo.patch |
193 | # ???_arch_foo.patch |
215 | # |
194 | # |
216 | if [ -f ${x} ] && \ |
195 | if [ -f ${x} ] && \ |
217 | ([ "${SINGLE_PATCH}" = "yes" -o "${x/_all_}" != "${x}" -o "`eval echo \$\{x/_${ARCH}_\}`" != "${x}" ] || \ |
196 | ([ "${SINGLE_PATCH}" = "yes" -o "${x/_all_}" != "${x}" -o "${x/_${ARCH}_}" != "${x}" ] || \ |
218 | [ "${EPATCH_FORCE}" = "yes" ]) |
197 | [ "${EPATCH_FORCE}" = "yes" ]) |
219 | then |
198 | then |
220 | local count=0 |
199 | local count=0 |
221 | local popts="${EPATCH_OPTS}" |
200 | local popts="${EPATCH_OPTS}" |
|
|
201 | local patchname=${x##*/} |
222 | |
202 | |
223 | if [ -n "${EPATCH_EXCLUDE}" ] |
203 | if [ -n "${EPATCH_EXCLUDE}" ] |
224 | then |
204 | then |
225 | if [ "`eval echo \$\{EPATCH_EXCLUDE/${x##*/}\}`" != "${EPATCH_EXCLUDE}" ] |
205 | if [ "${EPATCH_EXCLUDE/${patchname}}" != "${EPATCH_EXCLUDE}" ] |
226 | then |
206 | then |
227 | continue |
207 | continue |
228 | fi |
208 | fi |
229 | fi |
209 | fi |
230 | |
210 | |
… | |
… | |
232 | then |
212 | then |
233 | if [ -n "${EPATCH_SINGLE_MSG}" ] |
213 | if [ -n "${EPATCH_SINGLE_MSG}" ] |
234 | then |
214 | then |
235 | einfo "${EPATCH_SINGLE_MSG}" |
215 | einfo "${EPATCH_SINGLE_MSG}" |
236 | else |
216 | else |
237 | einfo "Applying ${x##*/}..." |
217 | einfo "Applying ${patchname} ..." |
238 | fi |
218 | fi |
239 | else |
219 | else |
240 | einfo " ${x##*/}..." |
220 | einfo " ${patchname} ..." |
241 | fi |
221 | fi |
242 | |
222 | |
243 | echo "***** ${x##*/} *****" > ${STDERR_TARGET%/*}/${x##*/}-${STDERR_TARGET##*/} |
223 | echo "***** ${patchname} *****" > ${STDERR_TARGET%/*}/${patchname}-${STDERR_TARGET##*/} |
244 | echo >> ${STDERR_TARGET%/*}/${x##*/}-${STDERR_TARGET##*/} |
224 | echo >> ${STDERR_TARGET%/*}/${patchname}-${STDERR_TARGET##*/} |
245 | |
225 | |
246 | # Allow for prefix to differ ... im lazy, so shoot me :/ |
226 | # Allow for prefix to differ ... im lazy, so shoot me :/ |
247 | while [ "${count}" -lt 5 ] |
227 | while [ "${count}" -lt 5 ] |
248 | do |
228 | do |
249 | # Generate some useful debug info ... |
229 | # Generate some useful debug info ... |
250 | draw_line "***** ${x##*/} *****" >> ${STDERR_TARGET%/*}/${x##*/}-${STDERR_TARGET##*/} |
230 | _epatch_draw_line "***** ${patchname} *****" >> ${STDERR_TARGET%/*}/${patchname}-${STDERR_TARGET##*/} |
251 | echo >> ${STDERR_TARGET%/*}/${x##*/}-${STDERR_TARGET##*/} |
231 | echo >> ${STDERR_TARGET%/*}/${patchname}-${STDERR_TARGET##*/} |
252 | |
232 | |
253 | if [ "${PATCH_SUFFIX}" != "patch" ] |
233 | if [ "${PATCH_SUFFIX}" != "patch" ] |
254 | then |
234 | then |
255 | echo -n "PIPE_COMMAND: " >> ${STDERR_TARGET%/*}/${x##*/}-${STDERR_TARGET##*/} |
235 | echo -n "PIPE_COMMAND: " >> ${STDERR_TARGET%/*}/${patchname}-${STDERR_TARGET##*/} |
256 | echo "${PIPE_CMD} ${x} > ${PATCH_TARGET}" >> ${STDERR_TARGET%/*}/${x##*/}-${STDERR_TARGET##*/} |
236 | echo "${PIPE_CMD} ${x} > ${PATCH_TARGET}" >> ${STDERR_TARGET%/*}/${patchname}-${STDERR_TARGET##*/} |
257 | else |
237 | else |
258 | PATCH_TARGET="${x}" |
238 | PATCH_TARGET="${x}" |
259 | fi |
239 | fi |
260 | |
240 | |
261 | echo -n "PATCH COMMAND: " >> ${STDERR_TARGET%/*}/${x##*/}-${STDERR_TARGET##*/} |
241 | echo -n "PATCH COMMAND: " >> ${STDERR_TARGET%/*}/${patchname}-${STDERR_TARGET##*/} |
262 | echo "patch ${popts} -p${count} < ${PATCH_TARGET}" >> ${STDERR_TARGET%/*}/${x##*/}-${STDERR_TARGET##*/} |
242 | echo "patch -p${count} ${popts} < ${PATCH_TARGET}" >> ${STDERR_TARGET%/*}/${patchname}-${STDERR_TARGET##*/} |
263 | |
243 | |
264 | echo >> ${STDERR_TARGET%/*}/${x##*/}-${STDERR_TARGET##*/} |
244 | echo >> ${STDERR_TARGET%/*}/${patchname}-${STDERR_TARGET##*/} |
265 | draw_line "***** ${x##*/} *****" >> ${STDERR_TARGET%/*}/${x##*/}-${STDERR_TARGET##*/} |
245 | _epatch_draw_line "***** ${patchname} *****" >> ${STDERR_TARGET%/*}/${patchname}-${STDERR_TARGET##*/} |
266 | |
246 | |
267 | if [ "${PATCH_SUFFIX}" != "patch" ] |
247 | if [ "${PATCH_SUFFIX}" != "patch" ] |
268 | then |
248 | then |
269 | if ! (${PIPE_CMD} ${x} > ${PATCH_TARGET}) >> ${STDERR_TARGET%/*}/${x##*/}-${STDERR_TARGET##*/} 2>&1 |
249 | if ! (${PIPE_CMD} ${x} > ${PATCH_TARGET}) >> ${STDERR_TARGET%/*}/${patchname}-${STDERR_TARGET##*/} 2>&1 |
270 | then |
250 | then |
271 | echo |
251 | echo |
272 | eerror "Could not extract patch!" |
252 | eerror "Could not extract patch!" |
273 | #die "Could not extract patch!" |
253 | #die "Could not extract patch!" |
274 | count=5 |
254 | count=5 |
275 | break |
255 | break |
276 | fi |
256 | fi |
277 | fi |
257 | fi |
278 | |
258 | |
279 | if (cat ${PATCH_TARGET} | patch ${popts} --dry-run -f -p${count}) >> ${STDERR_TARGET%/*}/${x##*/}-${STDERR_TARGET##*/} 2>&1 |
259 | if (cat ${PATCH_TARGET} | patch -p${count} ${popts} --dry-run -f ; _epatch_assert) >> ${STDERR_TARGET%/*}/${patchname}-${STDERR_TARGET##*/} 2>&1 |
280 | then |
260 | then |
281 | draw_line "***** ${x##*/} *****" > ${STDERR_TARGET%/*}/${x##*/}-${STDERR_TARGET##*/}.real |
261 | _epatch_draw_line "***** ${patchname} *****" > ${STDERR_TARGET%/*}/${patchname}-${STDERR_TARGET##*/}.real |
282 | echo >> ${STDERR_TARGET%/*}/${x##*/}-${STDERR_TARGET##*/}.real |
262 | echo >> ${STDERR_TARGET%/*}/${patchname}-${STDERR_TARGET##*/}.real |
283 | echo "ACTUALLY APPLYING ${x##*/}..." >> ${STDERR_TARGET%/*}/${x##*/}-${STDERR_TARGET##*/}.real |
263 | echo "ACTUALLY APPLYING ${patchname} ..." >> ${STDERR_TARGET%/*}/${patchname}-${STDERR_TARGET##*/}.real |
284 | echo >> ${STDERR_TARGET%/*}/${x##*/}-${STDERR_TARGET##*/}.real |
264 | echo >> ${STDERR_TARGET%/*}/${patchname}-${STDERR_TARGET##*/}.real |
285 | draw_line "***** ${x##*/} *****" >> ${STDERR_TARGET%/*}/${x##*/}-${STDERR_TARGET##*/}.real |
265 | _epatch_draw_line "***** ${patchname} *****" >> ${STDERR_TARGET%/*}/${patchname}-${STDERR_TARGET##*/}.real |
286 | |
266 | |
287 | cat ${PATCH_TARGET} | patch ${popts} -p${count} >> ${STDERR_TARGET%/*}/${x##*/}-${STDERR_TARGET##*/}.real 2>&1 |
267 | cat ${PATCH_TARGET} | patch -p${count} ${popts} >> ${STDERR_TARGET%/*}/${patchname}-${STDERR_TARGET##*/}.real 2>&1 |
|
|
268 | _epatch_assert |
288 | |
269 | |
289 | if [ "$?" -ne 0 ] |
270 | if [ "$?" -ne 0 ] |
290 | then |
271 | then |
291 | cat ${STDERR_TARGET%/*}/${x##*/}-${STDERR_TARGET##*/}.real >> ${STDERR_TARGET%/*}/${x##*/}-${STDERR_TARGET##*/} |
272 | cat ${STDERR_TARGET%/*}/${patchname}-${STDERR_TARGET##*/}.real >> ${STDERR_TARGET%/*}/${patchname}-${STDERR_TARGET##*/} |
292 | echo |
273 | echo |
293 | eerror "A dry-run of patch command succeeded, but actually" |
274 | eerror "A dry-run of patch command succeeded, but actually" |
294 | eerror "applying the patch failed!" |
275 | eerror "applying the patch failed!" |
295 | #die "Real world sux compared to the dreamworld!" |
276 | #die "Real world sux compared to the dreamworld!" |
296 | count=5 |
277 | count=5 |
297 | fi |
278 | fi |
298 | |
279 | |
299 | rm -f ${STDERR_TARGET%/*}/${x##*/}-${STDERR_TARGET##*/}.real |
280 | rm -f ${STDERR_TARGET%/*}/${patchname}-${STDERR_TARGET##*/}.real |
300 | |
281 | |
301 | break |
282 | break |
302 | fi |
283 | fi |
303 | |
284 | |
304 | count=$((count + 1)) |
285 | count=$((count + 1)) |
… | |
… | |
310 | fi |
291 | fi |
311 | |
292 | |
312 | if [ "${count}" -eq 5 ] |
293 | if [ "${count}" -eq 5 ] |
313 | then |
294 | then |
314 | echo |
295 | echo |
315 | eerror "Failed Patch: ${x##*/}!" |
296 | eerror "Failed Patch: ${patchname} !" |
|
|
297 | eerror " ( ${PATCH_TARGET} )" |
316 | eerror |
298 | eerror |
317 | eerror "Include in your bugreport the contents of:" |
299 | eerror "Include in your bugreport the contents of:" |
318 | eerror |
300 | eerror |
319 | eerror " ${STDERR_TARGET%/*}/${x##*/}-${STDERR_TARGET##*/}" |
301 | eerror " ${STDERR_TARGET%/*}/${patchname}-${STDERR_TARGET##*/}" |
320 | echo |
302 | echo |
321 | die "Failed Patch: ${x##*/}!" |
303 | die "Failed Patch: ${patchname}!" |
322 | fi |
304 | fi |
323 | |
305 | |
324 | rm -f ${STDERR_TARGET%/*}/${x##*/}-${STDERR_TARGET##*/} |
306 | rm -f ${STDERR_TARGET%/*}/${patchname}-${STDERR_TARGET##*/} |
325 | |
307 | |
326 | eend 0 |
308 | eend 0 |
327 | fi |
309 | fi |
328 | done |
310 | done |
329 | if [ "${SINGLE_PATCH}" = "no" ] |
311 | if [ "${SINGLE_PATCH}" = "no" ] |
330 | then |
312 | then |
331 | einfo "Done with patching" |
313 | einfo "Done with patching" |
332 | fi |
314 | fi |
333 | } |
315 | } |
334 | |
316 | |
335 | # This function return true if we are using the NPTL pthreads |
317 | # @FUNCTION: emktemp |
336 | # implementation. |
318 | # @USAGE: [temp dir] |
337 | # |
319 | # @DESCRIPTION: |
338 | # <azarah@gentoo.org> (06 March 2003) |
320 | # Cheap replacement for when debianutils (and thus mktemp) |
339 | # |
321 | # does not exist on the users system. |
|
|
322 | emktemp() { |
|
|
323 | local exe="touch" |
|
|
324 | [[ $1 == -d ]] && exe="mkdir" && shift |
|
|
325 | local topdir=$1 |
340 | |
326 | |
341 | have_NPTL() { |
327 | if [[ -z ${topdir} ]] ; then |
|
|
328 | [[ -z ${T} ]] \ |
|
|
329 | && topdir="/tmp" \ |
|
|
330 | || topdir=${T} |
|
|
331 | fi |
342 | |
332 | |
343 | cat > ${T}/test-nptl.c <<-"END" |
333 | if ! type -P mktemp > /dev/null ; then |
344 | #define _XOPEN_SOURCE |
334 | # system lacks `mktemp` so we have to fake it |
345 | #include <unistd.h> |
335 | local tmp=/ |
346 | #include <stdio.h> |
336 | while [[ -e ${tmp} ]] ; do |
347 | |
337 | tmp=${topdir}/tmp.${RANDOM}.${RANDOM}.${RANDOM} |
348 | int main() |
338 | done |
349 | { |
339 | ${exe} "${tmp}" || ${exe} -p "${tmp}" |
350 | char buf[255]; |
340 | echo "${tmp}" |
351 | char *str = buf; |
341 | else |
352 | |
342 | # the args here will give slightly wierd names on BSD, |
353 | confstr(_CS_GNU_LIBPTHREAD_VERSION, str, 255); |
343 | # but should produce a usable file on all userlands |
354 | if (NULL != str) { |
344 | if [[ ${exe} == "touch" ]] ; then |
355 | printf("%s\n", str); |
345 | TMPDIR="${topdir}" mktemp -t tmp.XXXXXXXXXX |
356 | if (NULL != strstr(str, "NPTL")) |
|
|
357 | return 0; |
|
|
358 | } |
|
|
359 | |
|
|
360 | return 1; |
|
|
361 | } |
|
|
362 | END |
|
|
363 | |
|
|
364 | einfon "Checking for _CS_GNU_LIBPTHREAD_VERSION support in glibc ... " |
|
|
365 | if gcc -o ${T}/nptl ${T}/test-nptl.c &> /dev/null |
|
|
366 | then |
|
|
367 | echo "yes" |
|
|
368 | einfon "Checking what PTHREADS implementation we have ... " |
|
|
369 | if ${T}/nptl |
|
|
370 | then |
|
|
371 | return 0 |
|
|
372 | else |
346 | else |
373 | return 1 |
347 | TMPDIR="${topdir}" mktemp -dt tmp.XXXXXXXXXX |
374 | fi |
|
|
375 | else |
|
|
376 | echo "no" |
|
|
377 | fi |
348 | fi |
378 | |
|
|
379 | return 1 |
|
|
380 | } |
|
|
381 | |
|
|
382 | # This function check how many cpu's are present, and then set |
|
|
383 | # -j in MAKEOPTS accordingly. |
|
|
384 | # |
|
|
385 | # Thanks to nall <nall@gentoo.org> for this. |
|
|
386 | # |
|
|
387 | get_number_of_jobs() { |
|
|
388 | local jobs=0 |
|
|
389 | |
|
|
390 | if [ ! -r /proc/cpuinfo ] |
|
|
391 | then |
|
|
392 | return 1 |
|
|
393 | fi |
|
|
394 | |
|
|
395 | # This bit is from H?kan Wessberg <nacka-gentoo@refug.org>, bug #13565. |
|
|
396 | if [ "`egrep "^[[:space:]]*MAKEOPTS=" /etc/make.conf | wc -l`" -gt 0 ] |
|
|
397 | then |
|
|
398 | ADMINOPTS="`egrep "^[[:space:]]*MAKEOPTS=" /etc/make.conf | cut -d= -f2 | sed 's/\"//g'`" |
|
|
399 | ADMINPARAM="`echo ${ADMINOPTS} | gawk '{match($0, /-j *[0-9]*/, opt); print opt[0]}'`" |
|
|
400 | ADMINPARAM="${ADMINPARAM/-j}" |
|
|
401 | fi |
|
|
402 | |
|
|
403 | export MAKEOPTS="`echo ${MAKEOPTS} | sed -e 's:-j *[0-9]*::g'`" |
|
|
404 | |
|
|
405 | if [ "${ARCH}" = "amd64" -o "${ARCH}" = "x86" -o "${ARCH}" = "hppa" -o \ |
|
|
406 | "${ARCH}" = "arm" -o "${ARCH}" = "mips" ] |
|
|
407 | then |
|
|
408 | # these archs will always have "[Pp]rocessor" |
|
|
409 | jobs="$((`grep -c ^[Pp]rocessor /proc/cpuinfo` * 2))" |
|
|
410 | |
|
|
411 | elif [ "${ARCH}" = "sparc" -o "${ARCH}" = "sparc64" ] |
|
|
412 | then |
|
|
413 | # sparc always has "ncpus active" |
|
|
414 | jobs="$((`grep "^ncpus active" /proc/cpuinfo | sed -e "s/^.*: //"` * 2))" |
|
|
415 | |
|
|
416 | elif [ "${ARCH}" = "alpha" ] |
|
|
417 | then |
|
|
418 | # alpha has "cpus active", but only when compiled with SMP |
|
|
419 | if [ "`grep -c "^cpus active" /proc/cpuinfo`" -eq 1 ] |
|
|
420 | then |
|
|
421 | jobs="$((`grep "^cpus active" /proc/cpuinfo | sed -e "s/^.*: //"` * 2))" |
|
|
422 | else |
|
|
423 | jobs=2 |
|
|
424 | fi |
349 | fi |
|
|
350 | } |
425 | |
351 | |
426 | elif [ "${ARCH}" = "ppc" ] |
352 | # @FUNCTION: egetent |
427 | then |
353 | # @USAGE: <database> <key> |
428 | # ppc has "processor", but only when compiled with SMP |
354 | # @MAINTAINER: |
429 | if [ "`grep -c "^processor" /proc/cpuinfo`" -eq 1 ] |
355 | # base-system@gentoo.org (Linux) |
430 | then |
356 | # Joe Jezak <josejx@gmail.com> (OS X) |
431 | jobs="$((`grep -c ^processor /proc/cpuinfo` * 2))" |
357 | # usata@gentoo.org (OS X) |
432 | else |
358 | # Aaron Walker <ka0ttic@gentoo.org> (FreeBSD) |
433 | jobs=2 |
359 | # @DESCRIPTION: |
434 | fi |
360 | # Small wrapper for getent (Linux), nidump (Mac OS X), |
435 | else |
361 | # and pw (FreeBSD) used in enewuser()/enewgroup() |
436 | jobs="$((`grep -c ^cpu /proc/cpuinfo` * 2))" |
362 | egetent() { |
437 | die "Unknown ARCH -- ${ARCH}!" |
363 | case ${CHOST} in |
|
|
364 | *-darwin*) |
|
|
365 | case "$2" in |
|
|
366 | *[!0-9]*) # Non numeric |
|
|
367 | nidump $1 . | awk -F":" "{ if (\$1 ~ /^$2$/) {print \$0;exit;} }" |
|
|
368 | ;; |
|
|
369 | *) # Numeric |
|
|
370 | nidump $1 . | awk -F":" "{ if (\$3 == $2) {print \$0;exit;} }" |
|
|
371 | ;; |
|
|
372 | esac |
|
|
373 | ;; |
|
|
374 | *-freebsd*|*-dragonfly*) |
|
|
375 | local opts action="user" |
|
|
376 | [[ $1 == "passwd" ]] || action="group" |
|
|
377 | |
|
|
378 | # lookup by uid/gid |
|
|
379 | if [[ $2 == [[:digit:]]* ]] ; then |
|
|
380 | [[ ${action} == "user" ]] && opts="-u" || opts="-g" |
438 | fi |
381 | fi |
439 | |
382 | |
440 | # Make sure the number is valid ... |
383 | pw show ${action} ${opts} "$2" -q |
441 | if [ "${jobs}" -lt 1 ] |
384 | ;; |
442 | then |
385 | *-netbsd*|*-openbsd*) |
443 | jobs=1 |
386 | grep "$2:\*:" /etc/$1 |
444 | fi |
387 | ;; |
445 | |
388 | *) |
446 | if [ -n "${ADMINPARAM}" ] |
389 | type -p nscd >& /dev/null && nscd -i "$1" |
447 | then |
390 | getent "$1" "$2" |
448 | if [ "${jobs}" -gt "${ADMINPARAM}" ] |
391 | ;; |
449 | then |
392 | esac |
450 | einfo "Setting make jobs to \"-j${ADMINPARAM}\" to ensure successful merge..." |
|
|
451 | export MAKEOPTS="${MAKEOPTS} -j${ADMINPARAM}" |
|
|
452 | else |
|
|
453 | einfo "Setting make jobs to \"-j${jobs}\" to ensure successful merge..." |
|
|
454 | export MAKEOPTS="${MAKEOPTS} -j${jobs}" |
|
|
455 | fi |
|
|
456 | fi |
|
|
457 | } |
393 | } |
458 | |
394 | |
459 | # Simplify/standardize adding users to the system |
395 | # @FUNCTION: enewuser |
460 | # vapier@gentoo.org |
396 | # @USAGE: <user> [uid] [shell] [homedir] [groups] [params] |
461 | # |
397 | # @DESCRIPTION: |
462 | # enewuser(username, uid, shell, homedir, groups, extra options) |
398 | # Same as enewgroup, you are not required to understand how to properly add |
463 | # |
399 | # a user to the system. The only required parameter is the username. |
464 | # Default values if you do not specify any: |
400 | # Default uid is (pass -1 for this) next available, default shell is |
465 | # username: REQUIRED ! |
401 | # /bin/false, default homedir is /dev/null, there are no default groups, |
466 | # uid: next available (see useradd(8)) |
402 | # and default params sets the comment as 'added by portage for ${PN}'. |
467 | # note: pass -1 to get default behavior |
|
|
468 | # shell: /bin/false |
|
|
469 | # homedir: /dev/null |
|
|
470 | # groups: none |
|
|
471 | # extra: comment of 'added by portage for ${PN}' |
|
|
472 | enewuser() { |
403 | enewuser() { |
|
|
404 | case ${EBUILD_PHASE} in |
|
|
405 | unpack|compile|test|install) |
|
|
406 | eerror "'enewuser()' called from '${EBUILD_PHASE}()' which is not a pkg_* function." |
|
|
407 | eerror "Package fails at QA and at life. Please file a bug." |
|
|
408 | die "Bad package! enewuser is only for use in pkg_* functions!" |
|
|
409 | esac |
|
|
410 | |
473 | # get the username |
411 | # get the username |
474 | local euser="$1"; shift |
412 | local euser=$1; shift |
475 | if [ -z "${euser}" ] ; then |
413 | if [[ -z ${euser} ]] ; then |
476 | eerror "No username specified !" |
414 | eerror "No username specified !" |
477 | die "Cannot call enewuser without a username" |
415 | die "Cannot call enewuser without a username" |
478 | fi |
416 | fi |
479 | |
417 | |
480 | # setup a file for testing usernames/groups |
|
|
481 | local tmpfile="`mktemp -p ${T}`" |
|
|
482 | touch ${tmpfile} |
|
|
483 | chown ${euser} ${tmpfile} >& /dev/null |
|
|
484 | local realuser="`ls -l ${tmpfile} | awk '{print $3}'`" |
|
|
485 | |
|
|
486 | # see if user already exists |
418 | # lets see if the username already exists |
487 | if [ "${euser}" == "${realuser}" ] ; then |
419 | if [[ -n $(egetent passwd "${euser}") ]] ; then |
488 | return 0 |
420 | return 0 |
489 | fi |
421 | fi |
490 | einfo "Adding user '${euser}' to your system ..." |
422 | einfo "Adding user '${euser}' to your system ..." |
491 | |
423 | |
492 | # options to pass to useradd |
424 | # options to pass to useradd |
493 | local opts="" |
425 | local opts= |
494 | |
426 | |
495 | # handle uid |
427 | # handle uid |
496 | local euid="$1"; shift |
428 | local euid=$1; shift |
497 | if [ ! -z "${euid}" ] && [ "${euid}" != "-1" ] ; then |
429 | if [[ -n ${euid} && ${euid} != -1 ]] ; then |
498 | if [ ${euid} -gt 0 ] ; then |
430 | if [[ ${euid} -gt 0 ]] ; then |
499 | opts="${opts} -u ${euid}" |
431 | if [[ -n $(egetent passwd ${euid}) ]] ; then |
|
|
432 | euid="next" |
|
|
433 | fi |
500 | else |
434 | else |
501 | eerror "Userid given but is not greater than 0 !" |
435 | eerror "Userid given but is not greater than 0 !" |
502 | die "${euid} is not a valid UID" |
436 | die "${euid} is not a valid UID" |
503 | fi |
437 | fi |
504 | else |
438 | else |
505 | euid="next available" |
439 | euid="next" |
506 | fi |
440 | fi |
|
|
441 | if [[ ${euid} == "next" ]] ; then |
|
|
442 | for ((euid = 101; euid <= 999; euid++)); do |
|
|
443 | [[ -z $(egetent passwd ${euid}) ]] && break |
|
|
444 | done |
|
|
445 | fi |
|
|
446 | opts="${opts} -u ${euid}" |
507 | einfo " - Userid: ${euid}" |
447 | einfo " - Userid: ${euid}" |
508 | |
448 | |
509 | # handle shell |
449 | # handle shell |
510 | local eshell="$1"; shift |
450 | local eshell=$1; shift |
511 | if [ ! -z "${eshell}" ] ; then |
451 | if [[ ! -z ${eshell} ]] && [[ ${eshell} != "-1" ]] ; then |
512 | if [ ! -e ${eshell} ] ; then |
452 | if [[ ! -e ${ROOT}${eshell} ]] ; then |
513 | eerror "A shell was specified but it does not exist !" |
453 | eerror "A shell was specified but it does not exist !" |
514 | die "${eshell} does not exist" |
454 | die "${eshell} does not exist in ${ROOT}" |
|
|
455 | fi |
|
|
456 | if [[ ${eshell} == */false || ${eshell} == */nologin ]] ; then |
|
|
457 | eerror "Do not specify ${eshell} yourself, use -1" |
|
|
458 | die "Pass '-1' as the shell parameter" |
515 | fi |
459 | fi |
516 | else |
460 | else |
517 | eshell=/bin/false |
461 | for shell in /sbin/nologin /usr/sbin/nologin /bin/false /usr/bin/false /dev/null ; do |
|
|
462 | [[ -x ${ROOT}${shell} ]] && break |
|
|
463 | done |
|
|
464 | |
|
|
465 | if [[ ${shell} == "/dev/null" ]] ; then |
|
|
466 | eerror "Unable to identify the shell to use, proceeding with userland default." |
|
|
467 | case ${USERLAND} in |
|
|
468 | GNU) shell="/bin/false" ;; |
|
|
469 | BSD) shell="/sbin/nologin" ;; |
|
|
470 | Darwin) shell="/usr/sbin/nologin" ;; |
|
|
471 | *) die "Unable to identify the default shell for userland ${USERLAND}" |
|
|
472 | esac |
|
|
473 | fi |
|
|
474 | |
|
|
475 | eshell=${shell} |
518 | fi |
476 | fi |
519 | einfo " - Shell: ${eshell}" |
477 | einfo " - Shell: ${eshell}" |
520 | opts="${opts} -s ${eshell}" |
478 | opts="${opts} -s ${eshell}" |
521 | |
479 | |
522 | # handle homedir |
480 | # handle homedir |
523 | local ehome="$1"; shift |
481 | local ehome=$1; shift |
524 | if [ -z "${ehome}" ] ; then |
482 | if [[ -z ${ehome} ]] || [[ ${ehome} == "-1" ]] ; then |
525 | ehome=/dev/null |
483 | ehome="/dev/null" |
526 | fi |
484 | fi |
527 | einfo " - Home: ${ehome}" |
485 | einfo " - Home: ${ehome}" |
528 | opts="${opts} -d ${ehome}" |
486 | opts="${opts} -d ${ehome}" |
529 | |
487 | |
530 | # handle groups |
488 | # handle groups |
531 | local egroups="$1"; shift |
489 | local egroups=$1; shift |
532 | if [ ! -z "${egroups}" ] ; then |
490 | if [[ ! -z ${egroups} ]] ; then |
533 | local realgroup |
|
|
534 | local oldifs="${IFS}" |
491 | local oldifs=${IFS} |
|
|
492 | local defgroup="" exgroups="" |
|
|
493 | |
535 | export IFS="," |
494 | export IFS="," |
536 | for g in ${egroups} ; do |
495 | for g in ${egroups} ; do |
537 | chgrp ${g} ${tmpfile} >& /dev/null |
496 | export IFS=${oldifs} |
538 | realgroup="`ls -l ${tmpfile} | awk '{print $4}'`" |
497 | if [[ -z $(egetent group "${g}") ]] ; then |
539 | if [ "${g}" != "${realgroup}" ] ; then |
|
|
540 | eerror "You must add ${g} to the system first" |
498 | eerror "You must add group ${g} to the system first" |
541 | die "${g} is not a valid GID" |
499 | die "${g} is not a valid GID" |
542 | fi |
500 | fi |
|
|
501 | if [[ -z ${defgroup} ]] ; then |
|
|
502 | defgroup=${g} |
|
|
503 | else |
|
|
504 | exgroups="${exgroups},${g}" |
|
|
505 | fi |
|
|
506 | export IFS="," |
543 | done |
507 | done |
544 | export IFS="${oldifs}" |
508 | export IFS=${oldifs} |
|
|
509 | |
545 | opts="${opts} -g ${egroups}" |
510 | opts="${opts} -g ${defgroup}" |
|
|
511 | if [[ ! -z ${exgroups} ]] ; then |
|
|
512 | opts="${opts} -G ${exgroups:1}" |
|
|
513 | fi |
546 | else |
514 | else |
547 | egroups="(none)" |
515 | egroups="(none)" |
548 | fi |
516 | fi |
549 | einfo " - Groups: ${egroups}" |
517 | einfo " - Groups: ${egroups}" |
550 | |
518 | |
551 | # handle extra and add the user |
519 | # handle extra and add the user |
552 | local eextra="$@" |
|
|
553 | local oldsandbox=${SANDBOX_ON} |
520 | local oldsandbox=${SANDBOX_ON} |
554 | export SANDBOX_ON="0" |
521 | export SANDBOX_ON="0" |
555 | if [ -z "${eextra}" ] ; then |
522 | case ${CHOST} in |
556 | useradd ${opts} ${euser} \ |
523 | *-darwin*) |
|
|
524 | ### Make the user |
|
|
525 | if [[ -z $@ ]] ; then |
|
|
526 | dscl . create /users/${euser} uid ${euid} |
|
|
527 | dscl . create /users/${euser} shell ${eshell} |
|
|
528 | dscl . create /users/${euser} home ${ehome} |
|
|
529 | dscl . create /users/${euser} realname "added by portage for ${PN}" |
|
|
530 | ### Add the user to the groups specified |
|
|
531 | local oldifs=${IFS} |
|
|
532 | export IFS="," |
|
|
533 | for g in ${egroups} ; do |
|
|
534 | dscl . merge /groups/${g} users ${euser} |
|
|
535 | done |
|
|
536 | export IFS=${oldifs} |
|
|
537 | else |
|
|
538 | einfo "Extra options are not supported on Darwin yet" |
|
|
539 | einfo "Please report the ebuild along with the info below" |
|
|
540 | einfo "eextra: $@" |
|
|
541 | die "Required function missing" |
|
|
542 | fi |
|
|
543 | ;; |
|
|
544 | *-freebsd*|*-dragonfly*) |
|
|
545 | if [[ -z $@ ]] ; then |
|
|
546 | pw useradd ${euser} ${opts} \ |
557 | -c "added by portage for ${PN}" \ |
547 | -c "added by portage for ${PN}" \ |
|
|
548 | die "enewuser failed" |
|
|
549 | else |
|
|
550 | einfo " - Extra: $@" |
|
|
551 | pw useradd ${euser} ${opts} \ |
|
|
552 | "$@" || die "enewuser failed" |
|
|
553 | fi |
|
|
554 | ;; |
|
|
555 | |
|
|
556 | *-netbsd*) |
|
|
557 | if [[ -z $@ ]] ; then |
|
|
558 | useradd ${opts} ${euser} || die "enewuser failed" |
|
|
559 | else |
|
|
560 | einfo " - Extra: $@" |
|
|
561 | useradd ${opts} ${euser} "$@" || die "enewuser failed" |
|
|
562 | fi |
|
|
563 | ;; |
|
|
564 | |
|
|
565 | *-openbsd*) |
|
|
566 | if [[ -z $@ ]] ; then |
|
|
567 | useradd -u ${euid} -s ${eshell} \ |
|
|
568 | -d ${ehome} -c "Added by portage for ${PN}" \ |
|
|
569 | -g ${egroups} ${euser} || die "enewuser failed" |
|
|
570 | else |
|
|
571 | einfo " - Extra: $@" |
|
|
572 | useradd -u ${euid} -s ${eshell} \ |
|
|
573 | -d ${ehome} -c "Added by portage for ${PN}" \ |
|
|
574 | -g ${egroups} ${euser} "$@" || die "enewuser failed" |
|
|
575 | fi |
|
|
576 | ;; |
|
|
577 | |
|
|
578 | *) |
|
|
579 | if [[ -z $@ ]] ; then |
|
|
580 | useradd ${opts} ${euser} \ |
|
|
581 | -c "added by portage for ${PN}" \ |
558 | || die "enewuser failed" |
582 | || die "enewuser failed" |
559 | else |
583 | else |
560 | einfo " - Extra: ${eextra}" |
584 | einfo " - Extra: $@" |
561 | useradd ${opts} ${euser} ${eextra} \ |
585 | useradd ${opts} ${euser} "$@" \ |
562 | || die "enewuser failed" |
586 | || die "enewuser failed" |
563 | fi |
587 | fi |
|
|
588 | ;; |
|
|
589 | esac |
|
|
590 | |
|
|
591 | if [[ ! -e ${ROOT}/${ehome} ]] ; then |
|
|
592 | einfo " - Creating ${ehome} in ${ROOT}" |
|
|
593 | mkdir -p "${ROOT}/${ehome}" |
|
|
594 | chown ${euser} "${ROOT}/${ehome}" |
|
|
595 | chmod 755 "${ROOT}/${ehome}" |
|
|
596 | fi |
|
|
597 | |
564 | export SANDBOX_ON="${oldsandbox}" |
598 | export SANDBOX_ON=${oldsandbox} |
565 | |
|
|
566 | if [ ! -e ${ehome} ] && [ ! -e ${D}/${ehome} ] ; then |
|
|
567 | einfo " - Creating ${ehome} in ${D}" |
|
|
568 | dodir ${ehome} |
|
|
569 | fowners ${euser} ${ehome} |
|
|
570 | fperms 755 ${ehome} |
|
|
571 | fi |
|
|
572 | } |
599 | } |
573 | |
600 | |
574 | # Simplify/standardize adding groups to the system |
601 | # @FUNCTION: enewgroup |
575 | # vapier@gentoo.org |
602 | # @USAGE: <group> [gid] |
576 | # |
603 | # @DESCRIPTION: |
577 | # enewgroup(group, gid) |
604 | # This function does not require you to understand how to properly add a |
578 | # |
605 | # group to the system. Just give it a group name to add and enewgroup will |
579 | # Default values if you do not specify any: |
606 | # do the rest. You may specify the gid for the group or allow the group to |
580 | # groupname: REQUIRED ! |
607 | # allocate the next available one. |
581 | # gid: next available (see groupadd(8)) |
|
|
582 | # extra: none |
|
|
583 | enewgroup() { |
608 | enewgroup() { |
|
|
609 | case ${EBUILD_PHASE} in |
|
|
610 | unpack|compile|test|install) |
|
|
611 | eerror "'enewgroup()' called from '${EBUILD_PHASE}()' which is not a pkg_* function." |
|
|
612 | eerror "Package fails at QA and at life. Please file a bug." |
|
|
613 | die "Bad package! enewgroup is only for use in pkg_* functions!" |
|
|
614 | esac |
|
|
615 | |
584 | # get the group |
616 | # get the group |
585 | local egroup="$1"; shift |
617 | local egroup="$1"; shift |
586 | if [ -z "${egroup}" ] ; then |
618 | if [ -z "${egroup}" ] |
|
|
619 | then |
587 | eerror "No group specified !" |
620 | eerror "No group specified !" |
588 | die "Cannot call enewgroup without a group" |
621 | die "Cannot call enewgroup without a group" |
589 | fi |
622 | fi |
590 | |
623 | |
591 | # setup a file for testing groupname |
|
|
592 | local tmpfile="`mktemp -p ${T}`" |
|
|
593 | touch ${tmpfile} |
|
|
594 | chgrp ${egroup} ${tmpfile} >& /dev/null |
|
|
595 | local realgroup="`ls -l ${tmpfile} | awk '{print $4}'`" |
|
|
596 | |
|
|
597 | # see if group already exists |
624 | # see if group already exists |
598 | if [ "${egroup}" == "${realgroup}" ] ; then |
625 | if [[ -n $(egetent group "${egroup}") ]]; then |
599 | return 0 |
626 | return 0 |
600 | fi |
627 | fi |
601 | einfo "Adding group '${egroup}' to your system ..." |
628 | einfo "Adding group '${egroup}' to your system ..." |
602 | |
629 | |
603 | # options to pass to useradd |
630 | # options to pass to useradd |
604 | local opts="" |
631 | local opts= |
605 | |
632 | |
606 | # handle gid |
633 | # handle gid |
607 | local egid="$1"; shift |
634 | local egid="$1"; shift |
608 | if [ ! -z "${egid}" ] ; then |
635 | if [ ! -z "${egid}" ] |
|
|
636 | then |
609 | if [ ${egid} -gt 0 ] ; then |
637 | if [ "${egid}" -gt 0 ] |
|
|
638 | then |
|
|
639 | if [ -z "`egetent group ${egid}`" ] |
|
|
640 | then |
|
|
641 | if [[ "${CHOST}" == *-darwin* ]]; then |
|
|
642 | opts="${opts} ${egid}" |
|
|
643 | else |
610 | opts="${opts} -g ${egid}" |
644 | opts="${opts} -g ${egid}" |
|
|
645 | fi |
|
|
646 | else |
|
|
647 | egid="next available; requested gid taken" |
|
|
648 | fi |
611 | else |
649 | else |
612 | eerror "Groupid given but is not greater than 0 !" |
650 | eerror "Groupid given but is not greater than 0 !" |
613 | die "${egid} is not a valid GID" |
651 | die "${egid} is not a valid GID" |
614 | fi |
652 | fi |
615 | else |
653 | else |
… | |
… | |
620 | # handle extra |
658 | # handle extra |
621 | local eextra="$@" |
659 | local eextra="$@" |
622 | opts="${opts} ${eextra}" |
660 | opts="${opts} ${eextra}" |
623 | |
661 | |
624 | # add the group |
662 | # add the group |
625 | local oldsandbox=${SANDBOX_ON} |
663 | local oldsandbox="${SANDBOX_ON}" |
626 | export SANDBOX_ON="0" |
664 | export SANDBOX_ON="0" |
|
|
665 | case ${CHOST} in |
|
|
666 | *-darwin*) |
|
|
667 | if [ ! -z "${eextra}" ]; |
|
|
668 | then |
|
|
669 | einfo "Extra options are not supported on Darwin/OS X yet" |
|
|
670 | einfo "Please report the ebuild along with the info below" |
|
|
671 | einfo "eextra: ${eextra}" |
|
|
672 | die "Required function missing" |
|
|
673 | fi |
|
|
674 | |
|
|
675 | # If we need the next available |
|
|
676 | case ${egid} in |
|
|
677 | *[!0-9]*) # Non numeric |
|
|
678 | for ((egid = 101; egid <= 999; egid++)); do |
|
|
679 | [[ -z $(egetent group ${egid}) ]] && break |
|
|
680 | done |
|
|
681 | esac |
|
|
682 | dscl . create /groups/${egroup} gid ${egid} |
|
|
683 | dscl . create /groups/${egroup} passwd '*' |
|
|
684 | ;; |
|
|
685 | |
|
|
686 | *-freebsd*|*-dragonfly*) |
|
|
687 | case ${egid} in |
|
|
688 | *[!0-9]*) # Non numeric |
|
|
689 | for ((egid = 101; egid <= 999; egid++)); do |
|
|
690 | [[ -z $(egetent group ${egid}) ]] && break |
|
|
691 | done |
|
|
692 | esac |
|
|
693 | pw groupadd ${egroup} -g ${egid} || die "enewgroup failed" |
|
|
694 | ;; |
|
|
695 | |
|
|
696 | *-netbsd*) |
|
|
697 | case ${egid} in |
|
|
698 | *[!0-9]*) # Non numeric |
|
|
699 | for ((egid = 101; egid <= 999; egid++)); do |
|
|
700 | [[ -z $(egetent group ${egid}) ]] && break |
|
|
701 | done |
|
|
702 | esac |
|
|
703 | groupadd -g ${egid} ${egroup} || die "enewgroup failed" |
|
|
704 | ;; |
|
|
705 | |
|
|
706 | *) |
627 | groupadd ${opts} ${egroup} || die "enewgroup failed" |
707 | groupadd ${opts} ${egroup} || die "enewgroup failed" |
|
|
708 | ;; |
|
|
709 | esac |
628 | export SANDBOX_ON="${oldsandbox}" |
710 | export SANDBOX_ON="${oldsandbox}" |
629 | } |
711 | } |
630 | |
712 | |
631 | # Simple script to replace 'dos2unix' binaries |
713 | # @FUNCTION: edos2unix |
632 | # vapier@gentoo.org |
714 | # @USAGE: <file> [more files ...] |
633 | # |
715 | # @DESCRIPTION: |
634 | # edos2unix(file, <more files>...) |
716 | # A handy replacement for dos2unix, recode, fixdos, etc... This allows you |
|
|
717 | # to remove all of these text utilities from DEPEND variables because this |
|
|
718 | # is a script based solution. Just give it a list of files to convert and |
|
|
719 | # they will all be changed from the DOS CRLF format to the UNIX LF format. |
635 | edos2unix() { |
720 | edos2unix() { |
636 | for f in $@ ; do |
721 | echo "$@" | xargs sed -i 's/\r$//' |
637 | cp ${f} ${T}/edos2unix |
|
|
638 | sed 's/\r$//' ${T}/edos2unix > ${f} |
|
|
639 | done |
|
|
640 | } |
722 | } |
641 | |
723 | |
642 | # Make a desktop file ! |
724 | # Make a desktop file ! |
643 | # Great for making those icons in kde/gnome startmenu ! |
725 | # Great for making those icons in kde/gnome startmenu ! |
644 | # Amaze your friends ! Get the women ! Join today ! |
726 | # Amaze your friends ! Get the women ! Join today ! |
645 | # gnome2 /usr/share/applications |
|
|
646 | # gnome1 /usr/share/gnome/apps/ |
|
|
647 | # KDE ${KDEDIR}/share/applnk /usr/share/applnk |
|
|
648 | # |
727 | # |
649 | # make_desktop_entry(<binary>, [name], [icon], [type], [path]) |
728 | # make_desktop_entry(<command>, [name], [icon], [type], [path]) |
650 | # |
729 | # |
651 | # binary: what binary does the app run with ? |
730 | # binary: what command does the app run with ? |
652 | # name: the name that will show up in the menu |
731 | # name: the name that will show up in the menu |
653 | # icon: give your little like a pretty little icon ... |
732 | # icon: give your little like a pretty little icon ... |
654 | # this can be relative (to /usr/share/pixmaps) or |
733 | # this can be relative (to /usr/share/pixmaps) or |
655 | # a full path to an icon |
734 | # a full path to an icon |
656 | # type: what kind of application is this ? for categories: |
735 | # type: what kind of application is this ? for categories: |
657 | # http://www.freedesktop.org/standards/menu/draft/menu-spec/menu-spec.html |
736 | # http://standards.freedesktop.org/menu-spec/latest/apa.html |
658 | # path: if your app needs to startup in a specific dir |
737 | # path: if your app needs to startup in a specific dir |
659 | make_desktop_entry() { |
738 | make_desktop_entry() { |
660 | [ -z "$1" ] && eerror "You must specify the executable" && return 1 |
739 | [[ -z $1 ]] && eerror "make_desktop_entry: You must specify the executable" && return 1 |
661 | |
740 | |
662 | local exec=${1} |
741 | local exec=${1} |
663 | local name=${2:-${PN}} |
742 | local name=${2:-${PN}} |
664 | local icon=${3:-${PN}.png} |
743 | local icon=${3:-${PN}} |
665 | local type=${4} |
744 | local type=${4} |
666 | local path=${5:-${GAMES_PREFIX}} |
745 | local path=${5} |
|
|
746 | |
667 | if [ -z "${type}" ] ; then |
747 | if [[ -z ${type} ]] ; then |
668 | case ${CATEGORY} in |
748 | local catmaj=${CATEGORY%%-*} |
|
|
749 | local catmin=${CATEGORY##*-} |
|
|
750 | case ${catmaj} in |
|
|
751 | app) |
|
|
752 | case ${catmin} in |
|
|
753 | accessibility) type=Accessibility;; |
|
|
754 | admin) type=System;; |
|
|
755 | antivirus) type=System;; |
|
|
756 | arch) type=Archiving;; |
|
|
757 | backup) type=Archiving;; |
|
|
758 | cdr) type=DiscBurning;; |
|
|
759 | dicts) type=Dictionary;; |
|
|
760 | doc) type=Documentation;; |
|
|
761 | editors) type=TextEditor;; |
|
|
762 | emacs) type=TextEditor;; |
|
|
763 | emulation) type=Emulator;; |
|
|
764 | laptop) type=HardwareSettings;; |
|
|
765 | office) type=Office;; |
|
|
766 | pda) type=PDA;; |
|
|
767 | vim) type=TextEditor;; |
|
|
768 | xemacs) type=TextEditor;; |
|
|
769 | *) type=;; |
|
|
770 | esac |
|
|
771 | ;; |
|
|
772 | |
|
|
773 | dev) |
|
|
774 | type="Development" |
|
|
775 | ;; |
|
|
776 | |
|
|
777 | games) |
|
|
778 | case ${catmin} in |
|
|
779 | action|fps) type=ActionGame;; |
|
|
780 | arcade) type=ArcadeGame;; |
|
|
781 | board) type=BoardGame;; |
669 | app-emulation) type=Emulator ;; |
782 | emulation) type=Emulator;; |
670 | app-games) type=Game ;; |
783 | kids) type=KidsGame;; |
|
|
784 | puzzle) type=LogicGame;; |
|
|
785 | roguelike) type=RolePlaying;; |
|
|
786 | rpg) type=RolePlaying;; |
|
|
787 | simulation) type=Simulation;; |
|
|
788 | sports) type=SportsGame;; |
|
|
789 | strategy) type=StrategyGame;; |
|
|
790 | *) type=;; |
|
|
791 | esac |
|
|
792 | type="Game;${type}" |
|
|
793 | ;; |
|
|
794 | |
|
|
795 | gnome) |
|
|
796 | type="Gnome;GTK" |
|
|
797 | ;; |
|
|
798 | |
|
|
799 | kde) |
|
|
800 | type="KDE;Qt" |
|
|
801 | ;; |
|
|
802 | |
|
|
803 | mail) |
|
|
804 | type="Network;Email" |
|
|
805 | ;; |
|
|
806 | |
|
|
807 | media) |
|
|
808 | case ${catmin} in |
|
|
809 | gfx) type=Graphics;; |
|
|
810 | radio) type=Tuner;; |
|
|
811 | sound) type=Audio;; |
|
|
812 | tv) type=TV;; |
|
|
813 | video) type=Video;; |
|
|
814 | *) type=;; |
|
|
815 | esac |
|
|
816 | type="AudioVideo;${type}" |
|
|
817 | ;; |
|
|
818 | |
|
|
819 | net) |
|
|
820 | case ${catmin} in |
|
|
821 | dialup) type=Dialup;; |
|
|
822 | ftp) type=FileTransfer;; |
|
|
823 | im) type=InstantMessaging;; |
|
|
824 | irc) type=IRCClient;; |
|
|
825 | mail) type=Email;; |
|
|
826 | news) type=News;; |
|
|
827 | nntp) type=News;; |
|
|
828 | p2p) type=FileTransfer;; |
671 | *) type="" ;; |
829 | *) type=;; |
|
|
830 | esac |
|
|
831 | type="Network;${type}" |
|
|
832 | ;; |
|
|
833 | |
|
|
834 | sci) |
|
|
835 | case ${catmin} in |
|
|
836 | astro*) type=Astronomy;; |
|
|
837 | bio*) type=Biology;; |
|
|
838 | calc*) type=Calculator;; |
|
|
839 | chem*) type=Chemistry;; |
|
|
840 | elec*) type=Electronics;; |
|
|
841 | geo*) type=Geology;; |
|
|
842 | math*) type=Math;; |
|
|
843 | physics) type=Physics;; |
|
|
844 | visual*) type=DataVisualization;; |
|
|
845 | *) type=;; |
|
|
846 | esac |
|
|
847 | type="Science;${type}" |
|
|
848 | ;; |
|
|
849 | |
|
|
850 | sys) |
|
|
851 | type="System" |
|
|
852 | ;; |
|
|
853 | |
|
|
854 | www) |
|
|
855 | case ${catmin} in |
|
|
856 | client) type=WebBrowser;; |
|
|
857 | *) type=;; |
|
|
858 | esac |
|
|
859 | type="Network" |
|
|
860 | ;; |
|
|
861 | |
|
|
862 | *) |
|
|
863 | type= |
|
|
864 | ;; |
672 | esac |
865 | esac |
673 | fi |
866 | fi |
|
|
867 | if [ "${SLOT}" == "0" ] ; then |
|
|
868 | local desktop_name="${PN}" |
|
|
869 | else |
|
|
870 | local desktop_name="${PN}-${SLOT}" |
|
|
871 | fi |
|
|
872 | local desktop="${T}/$(echo ${exec} | sed 's:[[:space:]/:]:_:g')-${desktop_name}.desktop" |
674 | local desktop=${T}/${exec}.desktop |
873 | #local desktop=${T}/${exec%% *:-${desktop_name}}.desktop |
675 | |
874 | |
|
|
875 | cat <<-EOF > "${desktop}" |
676 | echo "[Desktop Entry] |
876 | [Desktop Entry] |
677 | Encoding=UTF-8 |
877 | Version=1.0 |
678 | Version=0.9.2 |
|
|
679 | Name=${name} |
878 | Name=${name} |
680 | Type=Application |
879 | Type=Application |
681 | Comment=${DESCRIPTION} |
880 | Comment=${DESCRIPTION} |
682 | Exec=${exec} |
881 | Exec=${exec} |
683 | Path=${path} |
882 | TryExec=${exec%% *} |
684 | Icon=${icon} |
883 | Icon=${icon} |
685 | Categories=Application;${type};" > ${desktop} |
884 | Categories=${type}; |
|
|
885 | EOF |
686 | |
886 | |
687 | if [ -d /usr/share/applications ] ; then |
887 | [[ ${path} ]] && echo "Path=${path}" >> "${desktop}" |
|
|
888 | |
|
|
889 | ( |
|
|
890 | # wrap the env here so that the 'insinto' call |
|
|
891 | # doesn't corrupt the env of the caller |
688 | insinto /usr/share/applications |
892 | insinto /usr/share/applications |
689 | doins ${desktop} |
893 | doins "${desktop}" |
690 | fi |
894 | ) |
|
|
895 | } |
691 | |
896 | |
692 | #if [ -d /usr/share/gnome/apps ] ; then |
897 | # @FUNCTION: validate_desktop_entries |
693 | # insinto /usr/share/gnome/apps/Games |
898 | # @USAGE: [directories] |
694 | # doins ${desktop} |
899 | # @MAINTAINER: |
695 | #fi |
900 | # Carsten Lohrke <carlo@gentoo.org> |
696 | |
901 | # @DESCRIPTION: |
697 | #if [ ! -z "`ls /usr/kde/* 2>/dev/null`" ] ; then |
902 | # Validate desktop entries using desktop-file-utils |
698 | # for ver in /usr/kde/* ; do |
903 | validate_desktop_entries() { |
699 | # insinto ${ver}/share/applnk/Games |
904 | if [[ -x /usr/bin/desktop-file-validate ]] ; then |
700 | # doins ${desktop} |
905 | einfo "Checking desktop entry validity" |
|
|
906 | local directories="" |
|
|
907 | for d in /usr/share/applications $@ ; do |
|
|
908 | [[ -d ${D}${d} ]] && directories="${directories} ${D}${d}" |
701 | # done |
909 | done |
702 | #fi |
910 | if [[ -n ${directories} ]] ; then |
703 | |
911 | for FILE in $(find ${directories} -name "*\.desktop" \ |
704 | if [ -d /usr/share/applnk ] ; then |
912 | -not -path '*.hidden*' | sort -u 2>/dev/null) |
705 | insinto /usr/share/applnk/${type} |
913 | do |
706 | doins ${desktop} |
914 | local temp=$(desktop-file-validate ${FILE} | grep -v "warning:" | \ |
707 | fi |
915 | sed -e "s|error: ||" -e "s|${FILE}:|--|g" ) |
708 | |
916 | [[ -n $temp ]] && elog ${temp/--/${FILE/${D}/}:} |
709 | return 0 |
|
|
710 | } |
|
|
711 | |
|
|
712 | # new convenience patch wrapper function to eventually replace epatch(), |
|
|
713 | # $PATCHES, $PATCHES1, src_unpack:patch, src_unpack:autopatch and |
|
|
714 | # /usr/bin/patch |
|
|
715 | # Features: |
|
|
716 | # - bulk patch handling similar to epatch()'s |
|
|
717 | # - automatic patch level detection like epatch()'s |
|
|
718 | # - automatic patch uncompression like epatch()'s |
|
|
719 | # - doesn't have the --dry-run overhead of epatch() - inspects patchfiles |
|
|
720 | # manually instead |
|
|
721 | # - once I decide it's production-ready, it'll be called from base_src_unpack |
|
|
722 | # to handle $PATCHES to avoid defining src_unpack just to use xpatch |
|
|
723 | |
|
|
724 | # accepts zero or more parameters specifying patchfiles and/or patchdirs |
|
|
725 | |
|
|
726 | # known issues: |
|
|
727 | # - only supports unified style patches (does anyone _really_ use anything |
|
|
728 | # else?) |
|
|
729 | # - because it doesn't use --dry-run there is a risk of it failing |
|
|
730 | # to find the files to patch, ie detect the patchlevel, properly. It doesn't use |
|
|
731 | # any of the backup heuristics that patch employs to discover a filename. |
|
|
732 | # however, this isn't dangerous because if it works for the developer who's |
|
|
733 | # writing the ebuild, it'll always work for the users, and if it doesn't, |
|
|
734 | # then we'll fix it :-) |
|
|
735 | # - no support as yet for patches applying outside $S (and not directly in $WORKDIR). |
|
|
736 | xpatch() { |
|
|
737 | |
|
|
738 | debug-print-function $FUNCNAME $* |
|
|
739 | |
|
|
740 | local list="" |
|
|
741 | local list2="" |
|
|
742 | declare -i plevel |
|
|
743 | |
|
|
744 | # parse patch sources |
|
|
745 | for x in $*; do |
|
|
746 | debug-print "$FUNCNAME: parsing parameter $x" |
|
|
747 | if [ -f "$x" ]; then |
|
|
748 | list="$list $x" |
|
|
749 | elif [ -d "$x" ]; then |
|
|
750 | # handles patchdirs like epatch() for now: no recursion. |
|
|
751 | # patches are sorted by filename, so with an xy_foo naming scheme you'll get the right order. |
|
|
752 | # only patches with _$ARCH_ or _all_ in their filenames are applied. |
|
|
753 | for file in `ls -A $x`; do |
|
|
754 | debug-print "$FUNCNAME: parsing in subdir: file $file" |
|
|
755 | if [ -f "$x/$file" ] && [ "${file}" != "${file/_all_}" -o "${file}" != "${file/_$ARCH_}" ]; then |
|
|
756 | list2="$list2 $x/$file" |
|
|
757 | fi |
|
|
758 | done |
917 | done |
759 | list="`echo $list2 | sort` $list" |
918 | fi |
|
|
919 | echo "" |
|
|
920 | else |
|
|
921 | einfo "Passing desktop entry validity check. Install dev-util/desktop-file-utils, if you want to help to improve Gentoo." |
|
|
922 | fi |
|
|
923 | } |
|
|
924 | |
|
|
925 | # @FUNCTION: make_session_desktop |
|
|
926 | # @USAGE: <title> <command> |
|
|
927 | # @DESCRIPTION: |
|
|
928 | # Make a GDM/KDM Session file. The title is the file to execute to start the |
|
|
929 | # Window Manager. The command is the name of the Window Manager. |
|
|
930 | make_session_desktop() { |
|
|
931 | [[ -z $1 ]] && eerror "make_session_desktop: You must specify the title" && return 1 |
|
|
932 | [[ -z $2 ]] && eerror "make_session_desktop: You must specify the command" && return 1 |
|
|
933 | |
|
|
934 | local title=$1 |
|
|
935 | local command=$2 |
|
|
936 | local desktop=${T}/${wm}.desktop |
|
|
937 | |
|
|
938 | cat <<-EOF > "${desktop}" |
|
|
939 | [Desktop Entry] |
|
|
940 | Name=${title} |
|
|
941 | Comment=This session logs you into ${title} |
|
|
942 | Exec=${command} |
|
|
943 | TryExec=${command} |
|
|
944 | Type=Application |
|
|
945 | EOF |
|
|
946 | |
|
|
947 | ( |
|
|
948 | # wrap the env here so that the 'insinto' call |
|
|
949 | # doesn't corrupt the env of the caller |
|
|
950 | insinto /usr/share/xsessions |
|
|
951 | doins "${desktop}" |
|
|
952 | ) |
|
|
953 | } |
|
|
954 | |
|
|
955 | # @FUNCTION: domenu |
|
|
956 | # @USAGE: <menus> |
|
|
957 | # @DESCRIPTION: |
|
|
958 | # Install the list of .desktop menu files into the appropriate directory |
|
|
959 | # (/usr/share/applications). |
|
|
960 | domenu() { |
|
|
961 | ( |
|
|
962 | # wrap the env here so that the 'insinto' call |
|
|
963 | # doesn't corrupt the env of the caller |
|
|
964 | local i j ret=0 |
|
|
965 | insinto /usr/share/applications |
|
|
966 | for i in "$@" ; do |
|
|
967 | if [[ -f ${i} ]] ; then |
|
|
968 | doins "${i}" |
|
|
969 | ((ret+=$?)) |
|
|
970 | elif [[ -d ${i} ]] ; then |
|
|
971 | for j in "${i}"/*.desktop ; do |
|
|
972 | doins "${j}" |
|
|
973 | ((ret+=$?)) |
|
|
974 | done |
760 | else |
975 | else |
761 | die "Couldn't find $x" |
976 | ((++ret)) |
762 | fi |
977 | fi |
763 | done |
978 | done |
|
|
979 | exit ${ret} |
|
|
980 | ) |
|
|
981 | } |
764 | |
982 | |
765 | debug-print "$FUNCNAME: final list of patches: $list" |
983 | # @FUNCTION: newmenu |
|
|
984 | # @USAGE: <menu> <newname> |
|
|
985 | # @DESCRIPTION: |
|
|
986 | # Like all other new* functions, install the specified menu as newname. |
|
|
987 | newmenu() { |
|
|
988 | ( |
|
|
989 | # wrap the env here so that the 'insinto' call |
|
|
990 | # doesn't corrupt the env of the caller |
|
|
991 | insinto /usr/share/applications |
|
|
992 | newins "$@" |
|
|
993 | ) |
|
|
994 | } |
766 | |
995 | |
767 | for x in $list; do |
996 | # @FUNCTION: doicon |
768 | debug-print "$FUNCNAME: processing $x" |
997 | # @USAGE: <list of icons> |
769 | # deal with compressed files. /usr/bin/file is in the system profile, or should be. |
998 | # @DESCRIPTION: |
770 | case "`/usr/bin/file -b $x`" in |
999 | # Install the list of icons into the icon directory (/usr/share/pixmaps). |
771 | *gzip*) patchfile="${T}/current.patch"; ungzip -c "$x" > "${patchfile}";; |
1000 | # This is useful in conjunction with creating desktop/menu files. |
772 | *bzip2*) patchfile="${T}/current.patch"; bunzip2 -c "$x" > "${patchfile}";; |
1001 | doicon() { |
773 | *text*) patchfile="$x";; |
1002 | ( |
774 | *) die "Could not determine filetype of patch $x";; |
1003 | # wrap the env here so that the 'insinto' call |
775 | esac |
1004 | # doesn't corrupt the env of the caller |
776 | debug-print "$FUNCNAME: patchfile=$patchfile" |
1005 | local i j ret |
777 | |
1006 | insinto /usr/share/pixmaps |
778 | # determine patchlevel. supports p0 and higher with either $S or $WORKDIR as base. |
1007 | for i in "$@" ; do |
779 | target="`/bin/grep -m 1 '^+++ ' $patchfile`" |
1008 | if [[ -f ${i} ]] ; then |
780 | debug-print "$FUNCNAME: raw target=$target" |
1009 | doins "${i}" |
781 | # strip target down to the path/filename, remove leading +++ |
1010 | ((ret+=$?)) |
782 | target="${target/+++ }"; target="${target%% *}" |
1011 | elif [[ -d ${i} ]] ; then |
783 | # duplicate slashes are discarded by patch wrt the patchlevel. therefore we need |
1012 | for j in "${i}"/*.png ; do |
784 | # to discard them as well to calculate the correct patchlevel. |
1013 | doins "${j}" |
785 | target="${target//\/\//\/}" |
1014 | ((ret+=$?)) |
786 | debug-print "$FUNCNAME: stripped target=$target" |
|
|
787 | |
|
|
788 | # look for target |
|
|
789 | for basedir in "$S" "$WORKDIR" "${PWD}"; do |
|
|
790 | debug-print "$FUNCNAME: looking in basedir=$basedir" |
|
|
791 | cd "$basedir" |
|
|
792 | |
|
|
793 | # try stripping leading directories |
|
|
794 | target2="$target" |
|
|
795 | plevel=0 |
|
|
796 | debug-print "$FUNCNAME: trying target2=$target2, plevel=$plevel" |
|
|
797 | while [ ! -f "$target2" ]; do |
|
|
798 | target2="${target2#*/}" # removes piece of target2 upto the first occurence of / |
|
|
799 | plevel=plevel+1 |
|
|
800 | debug-print "$FUNCNAME: trying target2=$target2, plevel=$plevel" |
|
|
801 | [ "$target2" == "${target2/\/}" ] && break |
|
|
802 | done |
1015 | done |
803 | test -f "$target2" && break |
1016 | else |
804 | |
1017 | ((++ret)) |
805 | # try stripping filename - needed to support patches creating new files |
1018 | fi |
806 | target2="${target%/*}" |
|
|
807 | plevel=0 |
|
|
808 | debug-print "$FUNCNAME: trying target2=$target2, plevel=$plevel" |
|
|
809 | while [ ! -d "$target2" ]; do |
|
|
810 | target2="${target2#*/}" # removes piece of target2 upto the first occurence of / |
|
|
811 | plevel=plevel+1 |
|
|
812 | debug-print "$FUNCNAME: trying target2=$target2, plevel=$plevel" |
|
|
813 | [ "$target2" == "${target2/\/}" ] && break |
|
|
814 | done |
|
|
815 | test -d "$target2" && break |
|
|
816 | |
|
|
817 | done |
|
|
818 | |
|
|
819 | test -f "${basedir}/${target2}" || test -d "${basedir}/${target2}" || die "Could not determine patchlevel for $x" |
|
|
820 | debug-print "$FUNCNAME: determined plevel=$plevel" |
|
|
821 | # do the patching |
|
|
822 | ebegin "Applying patch ${x##*/}..." |
|
|
823 | /usr/bin/patch -p$plevel < "$patchfile" > /dev/null || die "Failed to apply patch $x" |
|
|
824 | eend $? |
|
|
825 | |
|
|
826 | done |
1019 | done |
827 | |
1020 | exit ${ret} |
|
|
1021 | ) |
828 | } |
1022 | } |
829 | |
1023 | |
|
|
1024 | # @FUNCTION: newicon |
|
|
1025 | # @USAGE: <icon> <newname> |
|
|
1026 | # @DESCRIPTION: |
|
|
1027 | # Like all other new* functions, install the specified icon as newname. |
|
|
1028 | newicon() { |
|
|
1029 | ( |
|
|
1030 | # wrap the env here so that the 'insinto' call |
|
|
1031 | # doesn't corrupt the env of the caller |
|
|
1032 | insinto /usr/share/pixmaps |
|
|
1033 | newins "$@" |
|
|
1034 | ) |
|
|
1035 | } |
|
|
1036 | |
|
|
1037 | # for internal use only (unpack_pdv and unpack_makeself) |
|
|
1038 | find_unpackable_file() { |
|
|
1039 | local src=$1 |
|
|
1040 | if [[ -z ${src} ]] ; then |
|
|
1041 | src=${DISTDIR}/${A} |
|
|
1042 | else |
|
|
1043 | if [[ -e ${DISTDIR}/${src} ]] ; then |
|
|
1044 | src=${DISTDIR}/${src} |
|
|
1045 | elif [[ -e ${PWD}/${src} ]] ; then |
|
|
1046 | src=${PWD}/${src} |
|
|
1047 | elif [[ -e ${src} ]] ; then |
|
|
1048 | src=${src} |
|
|
1049 | fi |
|
|
1050 | fi |
|
|
1051 | [[ ! -e ${src} ]] && return 1 |
|
|
1052 | echo "${src}" |
|
|
1053 | } |
|
|
1054 | |
|
|
1055 | # @FUNCTION: unpack_pdv |
|
|
1056 | # @USAGE: <file to unpack> <size of off_t> |
|
|
1057 | # @DESCRIPTION: |
|
|
1058 | # Unpack those pesky pdv generated files ... |
|
|
1059 | # They're self-unpacking programs with the binary package stuffed in |
|
|
1060 | # the middle of the archive. Valve seems to use it a lot ... too bad |
|
|
1061 | # it seems to like to segfault a lot :(. So lets take it apart ourselves. |
|
|
1062 | # |
|
|
1063 | # You have to specify the off_t size ... I have no idea how to extract that |
|
|
1064 | # information out of the binary executable myself. Basically you pass in |
|
|
1065 | # the size of the off_t type (in bytes) on the machine that built the pdv |
|
|
1066 | # archive. |
|
|
1067 | # |
|
|
1068 | # One way to determine this is by running the following commands: |
|
|
1069 | # |
|
|
1070 | # @CODE |
|
|
1071 | # strings <pdv archive> | grep lseek |
|
|
1072 | # strace -elseek <pdv archive> |
|
|
1073 | # @CODE |
|
|
1074 | # |
|
|
1075 | # Basically look for the first lseek command (we do the strings/grep because |
|
|
1076 | # sometimes the function call is _llseek or something) and steal the 2nd |
|
|
1077 | # parameter. Here is an example: |
|
|
1078 | # |
|
|
1079 | # @CODE |
|
|
1080 | # vapier@vapier 0 pdv_unpack # strings hldsupdatetool.bin | grep lseek |
|
|
1081 | # lseek |
|
|
1082 | # vapier@vapier 0 pdv_unpack # strace -elseek ./hldsupdatetool.bin |
|
|
1083 | # lseek(3, -4, SEEK_END) = 2981250 |
|
|
1084 | # @CODE |
|
|
1085 | # |
|
|
1086 | # Thus we would pass in the value of '4' as the second parameter. |
|
|
1087 | unpack_pdv() { |
|
|
1088 | local src=$(find_unpackable_file "$1") |
|
|
1089 | local sizeoff_t=$2 |
|
|
1090 | |
|
|
1091 | [[ -z ${src} ]] && die "Could not locate source for '$1'" |
|
|
1092 | [[ -z ${sizeoff_t} ]] && die "No idea what off_t size was used for this pdv :(" |
|
|
1093 | |
|
|
1094 | local shrtsrc=$(basename "${src}") |
|
|
1095 | echo ">>> Unpacking ${shrtsrc} to ${PWD}" |
|
|
1096 | local metaskip=$(tail -c ${sizeoff_t} "${src}" | hexdump -e \"%i\") |
|
|
1097 | local tailskip=$(tail -c $((${sizeoff_t}*2)) "${src}" | head -c ${sizeoff_t} | hexdump -e \"%i\") |
|
|
1098 | |
|
|
1099 | # grab metadata for debug reasons |
|
|
1100 | local metafile=$(emktemp) |
|
|
1101 | tail -c +$((${metaskip}+1)) "${src}" > "${metafile}" |
|
|
1102 | |
|
|
1103 | # rip out the final file name from the metadata |
|
|
1104 | local datafile=$(tail -c +$((${metaskip}+1)) "${src}" | strings | head -n 1) |
|
|
1105 | datafile=$(basename "${datafile}") |
|
|
1106 | |
|
|
1107 | # now lets uncompress/untar the file if need be |
|
|
1108 | local tmpfile=$(emktemp) |
|
|
1109 | tail -c +$((${tailskip}+1)) ${src} 2>/dev/null | head -c 512 > ${tmpfile} |
|
|
1110 | |
|
|
1111 | local iscompressed=$(file -b "${tmpfile}") |
|
|
1112 | if [[ ${iscompressed:0:8} == "compress" ]] ; then |
|
|
1113 | iscompressed=1 |
|
|
1114 | mv ${tmpfile}{,.Z} |
|
|
1115 | gunzip ${tmpfile} |
|
|
1116 | else |
|
|
1117 | iscompressed=0 |
|
|
1118 | fi |
|
|
1119 | local istar=$(file -b "${tmpfile}") |
|
|
1120 | if [[ ${istar:0:9} == "POSIX tar" ]] ; then |
|
|
1121 | istar=1 |
|
|
1122 | else |
|
|
1123 | istar=0 |
|
|
1124 | fi |
|
|
1125 | |
|
|
1126 | #for some reason gzip dies with this ... dd cant provide buffer fast enough ? |
|
|
1127 | #dd if=${src} ibs=${metaskip} count=1 \ |
|
|
1128 | # | dd ibs=${tailskip} skip=1 \ |
|
|
1129 | # | gzip -dc \ |
|
|
1130 | # > ${datafile} |
|
|
1131 | if [ ${iscompressed} -eq 1 ] ; then |
|
|
1132 | if [ ${istar} -eq 1 ] ; then |
|
|
1133 | tail -c +$((${tailskip}+1)) ${src} 2>/dev/null \ |
|
|
1134 | | head -c $((${metaskip}-${tailskip})) \ |
|
|
1135 | | tar -xzf - |
|
|
1136 | else |
|
|
1137 | tail -c +$((${tailskip}+1)) ${src} 2>/dev/null \ |
|
|
1138 | | head -c $((${metaskip}-${tailskip})) \ |
|
|
1139 | | gzip -dc \ |
|
|
1140 | > ${datafile} |
|
|
1141 | fi |
|
|
1142 | else |
|
|
1143 | if [ ${istar} -eq 1 ] ; then |
|
|
1144 | tail -c +$((${tailskip}+1)) ${src} 2>/dev/null \ |
|
|
1145 | | head -c $((${metaskip}-${tailskip})) \ |
|
|
1146 | | tar --no-same-owner -xf - |
|
|
1147 | else |
|
|
1148 | tail -c +$((${tailskip}+1)) ${src} 2>/dev/null \ |
|
|
1149 | | head -c $((${metaskip}-${tailskip})) \ |
|
|
1150 | > ${datafile} |
|
|
1151 | fi |
|
|
1152 | fi |
|
|
1153 | true |
|
|
1154 | #[ -s "${datafile}" ] || die "failure unpacking pdv ('${metaskip}' '${tailskip}' '${datafile}')" |
|
|
1155 | #assert "failure unpacking pdv ('${metaskip}' '${tailskip}' '${datafile}')" |
|
|
1156 | } |
|
|
1157 | |
|
|
1158 | # @FUNCTION: unpack_makeself |
|
|
1159 | # @USAGE: [file to unpack] [offset] [tail|dd] |
|
|
1160 | # @DESCRIPTION: |
830 | # Unpack those pesky makeself generated files ... |
1161 | # Unpack those pesky makeself generated files ... |
831 | # They're shell scripts with the binary package tagged onto |
1162 | # They're shell scripts with the binary package tagged onto |
832 | # the end of the archive. Loki utilized the format as does |
1163 | # the end of the archive. Loki utilized the format as does |
833 | # many other game companies. |
1164 | # many other game companies. |
834 | # |
1165 | # |
835 | # Usage: unpack_makeself [file to unpack] [offset] |
1166 | # If the file is not specified, then ${A} is used. If the |
836 | # - If the file is not specified then unpack will utilize ${A}. |
|
|
837 | # - If the offset is not specified then we will attempt to extract |
1167 | # offset is not specified then we will attempt to extract |
838 | # the proper offset from the script itself. |
1168 | # the proper offset from the script itself. |
839 | unpack_makeself() { |
1169 | unpack_makeself() { |
840 | local src=$1 |
1170 | local src_input=${1:-${A}} |
|
|
1171 | local src=$(find_unpackable_file "${src_input}") |
841 | local skip=$2 |
1172 | local skip=$2 |
|
|
1173 | local exe=$3 |
842 | |
1174 | |
843 | if [ -z "${src}" ] ; then |
1175 | [[ -z ${src} ]] && die "Could not locate source for '${src_input}'" |
844 | src="${DISTDIR}/${A}" |
|
|
845 | else |
|
|
846 | if [ -e "${DISTDIR}/${src}" ] ; then |
|
|
847 | src="${DISTDIR}/${src}" |
|
|
848 | elif [ -e "${PWD}/${src}" ] ; then |
|
|
849 | src="${PWD}/${src}" |
|
|
850 | elif [ -e "${src}" ] ; then |
|
|
851 | src="${src}" |
|
|
852 | fi |
|
|
853 | fi |
|
|
854 | [ ! -e "${src}" ] && die "Could not find requested makeself archive ${src}" |
|
|
855 | |
1176 | |
856 | local shrtsrc=`basename ${src}` |
1177 | local shrtsrc=$(basename "${src}") |
857 | echo ">>> Unpacking ${shrtsrc} to ${PWD}" |
1178 | echo ">>> Unpacking ${shrtsrc} to ${PWD}" |
858 | if [ -z "${skip}" ] ; then |
1179 | if [[ -z ${skip} ]] ; then |
859 | local ver="`grep -a '#.*Makeself' ${src} | awk '{print $NF}'`" |
1180 | local ver=$(grep -a '#.*Makeself' "${src}" | awk '{print $NF}') |
860 | local skip=0 |
1181 | local skip=0 |
|
|
1182 | exe=tail |
861 | case ${ver} in |
1183 | case ${ver} in |
862 | 1.5.*) # tested 1.5.{3,4,5} ... guessing 1.5.x series is same |
1184 | 1.5.*|1.6.0-nv) # tested 1.5.{3,4,5} ... guessing 1.5.x series is same |
863 | skip=`grep -a ^skip= ${src} | cut -d= -f2` |
1185 | skip=$(grep -a ^skip= "${src}" | cut -d= -f2) |
864 | ;; |
1186 | ;; |
865 | 2.0|2.0.1) |
1187 | 2.0|2.0.1) |
866 | skip=`grep -a ^$'\t'tail ${src} | awk '{print $2}' | cut -b2-` |
1188 | skip=$(grep -a ^$'\t'tail "${src}" | awk '{print $2}' | cut -b2-) |
867 | ;; |
1189 | ;; |
868 | 2.1.1) |
1190 | 2.1.1) |
869 | skip=`grep -a ^offset= ${src} | awk '{print $2}' | cut -b2-` |
1191 | skip=$(grep -a ^offset= "${src}" | awk '{print $2}' | cut -b2-) |
870 | let skip="skip + 1" |
1192 | let skip="skip + 1" |
871 | ;; |
1193 | ;; |
872 | 2.1.2) |
1194 | 2.1.2) |
873 | skip=`grep -a ^offset= ${src} | awk '{print $3}' | head -n 1` |
1195 | skip=$(grep -a ^offset= "${src}" | awk '{print $3}' | head -n 1) |
874 | let skip="skip + 1" |
1196 | let skip="skip + 1" |
875 | ;; |
1197 | ;; |
876 | 2.1.3) |
1198 | 2.1.3) |
877 | skip=`grep -a ^offset= ${src} | awk '{print $3}'` |
1199 | skip=`grep -a ^offset= "${src}" | awk '{print $3}'` |
878 | let skip="skip + 1" |
1200 | let skip="skip + 1" |
|
|
1201 | ;; |
|
|
1202 | 2.1.4|2.1.5) |
|
|
1203 | skip=$(grep -a offset=.*head.*wc "${src}" | awk '{print $3}' | head -n 1) |
|
|
1204 | skip=$(head -n ${skip} "${src}" | wc -c) |
|
|
1205 | exe="dd" |
879 | ;; |
1206 | ;; |
880 | *) |
1207 | *) |
881 | eerror "I'm sorry, but I was unable to support the Makeself file." |
1208 | eerror "I'm sorry, but I was unable to support the Makeself file." |
882 | eerror "The version I detected was '${ver}'." |
1209 | eerror "The version I detected was '${ver}'." |
883 | eerror "Please file a bug about the file ${shrtsrc} at" |
1210 | eerror "Please file a bug about the file ${shrtsrc} at" |
… | |
… | |
885 | die "makeself version '${ver}' not supported" |
1212 | die "makeself version '${ver}' not supported" |
886 | ;; |
1213 | ;; |
887 | esac |
1214 | esac |
888 | debug-print "Detected Makeself version ${ver} ... using ${skip} as offset" |
1215 | debug-print "Detected Makeself version ${ver} ... using ${skip} as offset" |
889 | fi |
1216 | fi |
|
|
1217 | case ${exe} in |
|
|
1218 | tail) exe="tail -n +${skip} '${src}'";; |
|
|
1219 | dd) exe="dd ibs=${skip} skip=1 obs=1024 conv=sync if='${src}'";; |
|
|
1220 | *) die "makeself cant handle exe '${exe}'" |
|
|
1221 | esac |
890 | |
1222 | |
891 | # we do this because otherwise a failure in gzip will cause 0 bytes to be sent |
1223 | # lets grab the first few bytes of the file to figure out what kind of archive it is |
892 | # to tar which will make tar not extract anything and exit with 0 |
1224 | local tmpfile=$(emktemp) |
893 | tail -n +${skip} ${src} | gzip -cd | tar -x --no-same-owner -f - 2>/dev/null |
1225 | eval ${exe} 2>/dev/null | head -c 512 > "${tmpfile}" |
894 | local pipestatus="${PIPESTATUS[*]}" |
1226 | local filetype=$(file -b "${tmpfile}") |
895 | pipestatus="${pipestatus// }" |
1227 | case ${filetype} in |
896 | if [ "${pipestatus//0}" != "" ] ; then |
1228 | *tar\ archive*) |
897 | # maybe it isnt gzipped ... they usually are, but not always ... |
1229 | eval ${exe} | tar --no-same-owner -xf - |
898 | tail -n +${skip} ${src} | tar -x --no-same-owner -f - \ |
1230 | ;; |
|
|
1231 | bzip2*) |
|
|
1232 | eval ${exe} | bzip2 -dc | tar --no-same-owner -xf - |
|
|
1233 | ;; |
|
|
1234 | gzip*) |
|
|
1235 | eval ${exe} | tar --no-same-owner -xzf - |
|
|
1236 | ;; |
|
|
1237 | compress*) |
|
|
1238 | eval ${exe} | gunzip | tar --no-same-owner -xf - |
|
|
1239 | ;; |
|
|
1240 | *) |
|
|
1241 | eerror "Unknown filetype \"${filetype}\" ?" |
|
|
1242 | false |
|
|
1243 | ;; |
|
|
1244 | esac |
899 | || die "failure unpacking makeself ${shrtsrc} ('${ver}' +${skip})" |
1245 | assert "failure unpacking (${filetype}) makeself ${shrtsrc} ('${ver}' +${skip})" |
|
|
1246 | } |
|
|
1247 | |
|
|
1248 | # @FUNCTION: check_license |
|
|
1249 | # @USAGE: [license] |
|
|
1250 | # @DESCRIPTION: |
|
|
1251 | # Display a license for user to accept. If no license is |
|
|
1252 | # specified, then ${LICENSE} is used. |
|
|
1253 | check_license() { |
|
|
1254 | local lic=$1 |
|
|
1255 | if [ -z "${lic}" ] ; then |
|
|
1256 | lic="${PORTDIR}/licenses/${LICENSE}" |
|
|
1257 | else |
|
|
1258 | if [ -e "${PORTDIR}/licenses/${lic}" ] ; then |
|
|
1259 | lic="${PORTDIR}/licenses/${lic}" |
|
|
1260 | elif [ -e "${PWD}/${lic}" ] ; then |
|
|
1261 | lic="${PWD}/${lic}" |
|
|
1262 | elif [ -e "${lic}" ] ; then |
|
|
1263 | lic="${lic}" |
900 | fi |
1264 | fi |
|
|
1265 | fi |
|
|
1266 | [ ! -f "${lic}" ] && die "Could not find requested license ${lic}" |
|
|
1267 | local l="`basename ${lic}`" |
|
|
1268 | |
|
|
1269 | # here is where we check for the licenses the user already |
|
|
1270 | # accepted ... if we don't find a match, we make the user accept |
|
|
1271 | local shopts=$- |
|
|
1272 | local alic |
|
|
1273 | set -o noglob #so that bash doesn't expand "*" |
|
|
1274 | for alic in ${ACCEPT_LICENSE} ; do |
|
|
1275 | if [[ ${alic} == ${l} ]]; then |
|
|
1276 | set +o noglob; set -${shopts} #reset old shell opts |
|
|
1277 | return 0 |
|
|
1278 | fi |
|
|
1279 | done |
|
|
1280 | set +o noglob; set -$shopts #reset old shell opts |
|
|
1281 | |
|
|
1282 | local licmsg=$(emktemp) |
|
|
1283 | cat <<-EOF > ${licmsg} |
|
|
1284 | ********************************************************** |
|
|
1285 | The following license outlines the terms of use of this |
|
|
1286 | package. You MUST accept this license for installation to |
|
|
1287 | continue. When you are done viewing, hit 'q'. If you |
|
|
1288 | CTRL+C out of this, the install will not run! |
|
|
1289 | ********************************************************** |
|
|
1290 | |
|
|
1291 | EOF |
|
|
1292 | cat ${lic} >> ${licmsg} |
|
|
1293 | ${PAGER:-less} ${licmsg} || die "Could not execute pager (${PAGER}) to accept ${lic}" |
|
|
1294 | einfon "Do you accept the terms of this license (${l})? [yes/no] " |
|
|
1295 | read alic |
|
|
1296 | case ${alic} in |
|
|
1297 | yes|Yes|y|Y) |
|
|
1298 | return 0 |
|
|
1299 | ;; |
|
|
1300 | *) |
|
|
1301 | echo;echo;echo |
|
|
1302 | eerror "You MUST accept the license to continue! Exiting!" |
|
|
1303 | die "Failed to accept license" |
|
|
1304 | ;; |
|
|
1305 | esac |
901 | } |
1306 | } |
|
|
1307 | |
|
|
1308 | # @FUNCTION: cdrom_get_cds |
|
|
1309 | # @USAGE: <file on cd1> [file on cd2] [file on cd3] [...] |
|
|
1310 | # @DESCRIPTION: |
|
|
1311 | # Aquire cd(s) for those lovely cd-based emerges. Yes, this violates |
|
|
1312 | # the whole 'non-interactive' policy, but damnit I want CD support ! |
|
|
1313 | # |
|
|
1314 | # With these cdrom functions we handle all the user interaction and |
|
|
1315 | # standardize everything. All you have to do is call cdrom_get_cds() |
|
|
1316 | # and when the function returns, you can assume that the cd has been |
|
|
1317 | # found at CDROM_ROOT. |
|
|
1318 | # |
|
|
1319 | # The function will attempt to locate a cd based upon a file that is on |
|
|
1320 | # the cd. The more files you give this function, the more cds |
|
|
1321 | # the cdrom functions will handle. |
|
|
1322 | # |
|
|
1323 | # Normally the cdrom functions will refer to the cds as 'cd #1', 'cd #2', |
|
|
1324 | # etc... If you want to give the cds better names, then just export |
|
|
1325 | # the appropriate CDROM_NAME variable before calling cdrom_get_cds(). |
|
|
1326 | # Use CDROM_NAME for one cd, or CDROM_NAME_# for multiple cds. You can |
|
|
1327 | # also use the CDROM_NAME_SET bash array. |
|
|
1328 | # |
|
|
1329 | # For those multi cd ebuilds, see the cdrom_load_next_cd() function. |
|
|
1330 | cdrom_get_cds() { |
|
|
1331 | # first we figure out how many cds we're dealing with by |
|
|
1332 | # the # of files they gave us |
|
|
1333 | local cdcnt=0 |
|
|
1334 | local f= |
|
|
1335 | for f in "$@" ; do |
|
|
1336 | ((++cdcnt)) |
|
|
1337 | export CDROM_CHECK_${cdcnt}="$f" |
|
|
1338 | done |
|
|
1339 | export CDROM_TOTAL_CDS=${cdcnt} |
|
|
1340 | export CDROM_CURRENT_CD=1 |
|
|
1341 | |
|
|
1342 | # now we see if the user gave use CD_ROOT ... |
|
|
1343 | # if they did, let's just believe them that it's correct |
|
|
1344 | if [[ -n ${CD_ROOT}${CD_ROOT_1} ]] ; then |
|
|
1345 | local var= |
|
|
1346 | cdcnt=0 |
|
|
1347 | while [[ ${cdcnt} -lt ${CDROM_TOTAL_CDS} ]] ; do |
|
|
1348 | ((++cdcnt)) |
|
|
1349 | var="CD_ROOT_${cdcnt}" |
|
|
1350 | [[ -z ${!var} ]] && var="CD_ROOT" |
|
|
1351 | if [[ -z ${!var} ]] ; then |
|
|
1352 | eerror "You must either use just the CD_ROOT" |
|
|
1353 | eerror "or specify ALL the CD_ROOT_X variables." |
|
|
1354 | eerror "In this case, you will need ${CDROM_TOTAL_CDS} CD_ROOT_X variables." |
|
|
1355 | die "could not locate CD_ROOT_${cdcnt}" |
|
|
1356 | fi |
|
|
1357 | done |
|
|
1358 | export CDROM_ROOT=${CD_ROOT_1:-${CD_ROOT}} |
|
|
1359 | einfo "Found CD #${CDROM_CURRENT_CD} root at ${CDROM_ROOT}" |
|
|
1360 | export CDROM_SET=-1 |
|
|
1361 | for f in ${CDROM_CHECK_1//:/ } ; do |
|
|
1362 | ((++CDROM_SET)) |
|
|
1363 | [[ -e ${CD_ROOT}/${f} ]] && break |
|
|
1364 | done |
|
|
1365 | export CDROM_MATCH=${f} |
|
|
1366 | return |
|
|
1367 | fi |
|
|
1368 | |
|
|
1369 | # User didn't help us out so lets make sure they know they can |
|
|
1370 | # simplify the whole process ... |
|
|
1371 | if [[ ${CDROM_TOTAL_CDS} -eq 1 ]] ; then |
|
|
1372 | einfo "This ebuild will need the ${CDROM_NAME:-cdrom for ${PN}}" |
|
|
1373 | echo |
|
|
1374 | einfo "If you do not have the CD, but have the data files" |
|
|
1375 | einfo "mounted somewhere on your filesystem, just export" |
|
|
1376 | einfo "the variable CD_ROOT so that it points to the" |
|
|
1377 | einfo "directory containing the files." |
|
|
1378 | echo |
|
|
1379 | einfo "For example:" |
|
|
1380 | einfo "export CD_ROOT=/mnt/cdrom" |
|
|
1381 | echo |
|
|
1382 | else |
|
|
1383 | if [[ -n ${CDROM_NAME_SET} ]] ; then |
|
|
1384 | # Translate the CDROM_NAME_SET array into CDROM_NAME_# |
|
|
1385 | cdcnt=0 |
|
|
1386 | while [[ ${cdcnt} -lt ${CDROM_TOTAL_CDS} ]] ; do |
|
|
1387 | ((++cdcnt)) |
|
|
1388 | export CDROM_NAME_${cdcnt}="${CDROM_NAME_SET[$((${cdcnt}-1))]}" |
|
|
1389 | done |
|
|
1390 | fi |
|
|
1391 | |
|
|
1392 | einfo "This package will need access to ${CDROM_TOTAL_CDS} cds." |
|
|
1393 | cdcnt=0 |
|
|
1394 | while [[ ${cdcnt} -lt ${CDROM_TOTAL_CDS} ]] ; do |
|
|
1395 | ((++cdcnt)) |
|
|
1396 | var="CDROM_NAME_${cdcnt}" |
|
|
1397 | [[ ! -z ${!var} ]] && einfo " CD ${cdcnt}: ${!var}" |
|
|
1398 | done |
|
|
1399 | echo |
|
|
1400 | einfo "If you do not have the CDs, but have the data files" |
|
|
1401 | einfo "mounted somewhere on your filesystem, just export" |
|
|
1402 | einfo "the following variables so they point to the right place:" |
|
|
1403 | einfon "" |
|
|
1404 | cdcnt=0 |
|
|
1405 | while [[ ${cdcnt} -lt ${CDROM_TOTAL_CDS} ]] ; do |
|
|
1406 | ((++cdcnt)) |
|
|
1407 | echo -n " CD_ROOT_${cdcnt}" |
|
|
1408 | done |
|
|
1409 | echo |
|
|
1410 | einfo "Or, if you have all the files in the same place, or" |
|
|
1411 | einfo "you only have one cdrom, you can export CD_ROOT" |
|
|
1412 | einfo "and that place will be used as the same data source" |
|
|
1413 | einfo "for all the CDs." |
|
|
1414 | echo |
|
|
1415 | einfo "For example:" |
|
|
1416 | einfo "export CD_ROOT_1=/mnt/cdrom" |
|
|
1417 | echo |
|
|
1418 | fi |
|
|
1419 | |
|
|
1420 | export CDROM_SET="" |
|
|
1421 | export CDROM_CURRENT_CD=0 |
|
|
1422 | cdrom_load_next_cd |
|
|
1423 | } |
|
|
1424 | |
|
|
1425 | # @FUNCTION: cdrom_load_next_cd |
|
|
1426 | # @DESCRIPTION: |
|
|
1427 | # Some packages are so big they come on multiple CDs. When you're done reading |
|
|
1428 | # files off a CD and want access to the next one, just call this function. |
|
|
1429 | # Again, all the messy details of user interaction are taken care of for you. |
|
|
1430 | # Once this returns, just read the variable CDROM_ROOT for the location of the |
|
|
1431 | # mounted CD. Note that you can only go forward in the CD list, so make sure |
|
|
1432 | # you only call this function when you're done using the current CD. |
|
|
1433 | cdrom_load_next_cd() { |
|
|
1434 | local var |
|
|
1435 | ((++CDROM_CURRENT_CD)) |
|
|
1436 | |
|
|
1437 | unset CDROM_ROOT |
|
|
1438 | var=CD_ROOT_${CDROM_CURRENT_CD} |
|
|
1439 | [[ -z ${!var} ]] && var="CD_ROOT" |
|
|
1440 | if [[ -z ${!var} ]] ; then |
|
|
1441 | var="CDROM_CHECK_${CDROM_CURRENT_CD}" |
|
|
1442 | _cdrom_locate_file_on_cd ${!var} |
|
|
1443 | else |
|
|
1444 | export CDROM_ROOT=${!var} |
|
|
1445 | fi |
|
|
1446 | |
|
|
1447 | einfo "Found CD #${CDROM_CURRENT_CD} root at ${CDROM_ROOT}" |
|
|
1448 | } |
|
|
1449 | |
|
|
1450 | # this is used internally by the cdrom_get_cds() and cdrom_load_next_cd() |
|
|
1451 | # functions. this should *never* be called from an ebuild. |
|
|
1452 | # all it does is try to locate a give file on a cd ... if the cd isn't |
|
|
1453 | # found, then a message asking for the user to insert the cdrom will be |
|
|
1454 | # displayed and we'll hang out here until: |
|
|
1455 | # (1) the file is found on a mounted cdrom |
|
|
1456 | # (2) the user hits CTRL+C |
|
|
1457 | _cdrom_locate_file_on_cd() { |
|
|
1458 | local mline="" |
|
|
1459 | local showedmsg=0 showjolietmsg=0 |
|
|
1460 | |
|
|
1461 | while [[ -z ${CDROM_ROOT} ]] ; do |
|
|
1462 | local i=0 |
|
|
1463 | local -a cdset=(${*//:/ }) |
|
|
1464 | if [[ -n ${CDROM_SET} ]] ; then |
|
|
1465 | cdset=(${cdset[${CDROM_SET}]}) |
|
|
1466 | fi |
|
|
1467 | |
|
|
1468 | while [[ -n ${cdset[${i}]} ]] ; do |
|
|
1469 | local dir=$(dirname ${cdset[${i}]}) |
|
|
1470 | local file=$(basename ${cdset[${i}]}) |
|
|
1471 | |
|
|
1472 | local point= node= fs= foo= |
|
|
1473 | while read point node fs foo ; do |
|
|
1474 | [[ " cd9660 iso9660 udf " != *" ${fs} "* ]] && \ |
|
|
1475 | ! [[ ${fs} == "subfs" && ",${opts}," == *",fs=cdfss,"* ]] \ |
|
|
1476 | && continue |
|
|
1477 | point=${point//\040/ } |
|
|
1478 | [[ ! -d ${point}/${dir} ]] && continue |
|
|
1479 | [[ -z $(find "${point}/${dir}" -maxdepth 1 -iname "${file}") ]] && continue |
|
|
1480 | export CDROM_ROOT=${point} |
|
|
1481 | export CDROM_SET=${i} |
|
|
1482 | export CDROM_MATCH=${cdset[${i}]} |
|
|
1483 | return |
|
|
1484 | done <<< "$(get_mounts)" |
|
|
1485 | |
|
|
1486 | ((++i)) |
|
|
1487 | done |
|
|
1488 | |
|
|
1489 | echo |
|
|
1490 | if [[ ${showedmsg} -eq 0 ]] ; then |
|
|
1491 | if [[ ${CDROM_TOTAL_CDS} -eq 1 ]] ; then |
|
|
1492 | if [[ -z ${CDROM_NAME} ]] ; then |
|
|
1493 | einfo "Please insert+mount the cdrom for ${PN} now !" |
|
|
1494 | else |
|
|
1495 | einfo "Please insert+mount the ${CDROM_NAME} cdrom now !" |
|
|
1496 | fi |
|
|
1497 | else |
|
|
1498 | if [[ -z ${CDROM_NAME_1} ]] ; then |
|
|
1499 | einfo "Please insert+mount cd #${CDROM_CURRENT_CD} for ${PN} now !" |
|
|
1500 | else |
|
|
1501 | local var="CDROM_NAME_${CDROM_CURRENT_CD}" |
|
|
1502 | einfo "Please insert+mount the ${!var} cdrom now !" |
|
|
1503 | fi |
|
|
1504 | fi |
|
|
1505 | showedmsg=1 |
|
|
1506 | fi |
|
|
1507 | einfo "Press return to scan for the cd again" |
|
|
1508 | einfo "or hit CTRL+C to abort the emerge." |
|
|
1509 | echo |
|
|
1510 | if [[ ${showjolietmsg} -eq 0 ]] ; then |
|
|
1511 | showjolietmsg=1 |
|
|
1512 | else |
|
|
1513 | ewarn "If you are having trouble with the detection" |
|
|
1514 | ewarn "of your CD, it is possible that you do not have" |
|
|
1515 | ewarn "Joliet support enabled in your kernel. Please" |
|
|
1516 | ewarn "check that CONFIG_JOLIET is enabled in your kernel." |
|
|
1517 | ebeep 5 |
|
|
1518 | fi |
|
|
1519 | read || die "something is screwed with your system" |
|
|
1520 | done |
|
|
1521 | } |
|
|
1522 | |
|
|
1523 | # @FUNCTION: strip-linguas |
|
|
1524 | # @USAGE: [<allow LINGUAS>|<-i|-u> <directories of .po files>] |
|
|
1525 | # @DESCRIPTION: |
|
|
1526 | # Make sure that LINGUAS only contains languages that |
|
|
1527 | # a package can support. The first form allows you to |
|
|
1528 | # specify a list of LINGUAS. The -i builds a list of po |
|
|
1529 | # files found in all the directories and uses the |
|
|
1530 | # intersection of the lists. The -u builds a list of po |
|
|
1531 | # files found in all the directories and uses the union |
|
|
1532 | # of the lists. |
|
|
1533 | strip-linguas() { |
|
|
1534 | local ls newls nols |
|
|
1535 | if [[ $1 == "-i" ]] || [[ $1 == "-u" ]] ; then |
|
|
1536 | local op=$1; shift |
|
|
1537 | ls=$(find "$1" -name '*.po' -exec basename {} .po \;); shift |
|
|
1538 | local d f |
|
|
1539 | for d in "$@" ; do |
|
|
1540 | if [[ ${op} == "-u" ]] ; then |
|
|
1541 | newls=${ls} |
|
|
1542 | else |
|
|
1543 | newls="" |
|
|
1544 | fi |
|
|
1545 | for f in $(find "$d" -name '*.po' -exec basename {} .po \;) ; do |
|
|
1546 | if [[ ${op} == "-i" ]] ; then |
|
|
1547 | hasq ${f} ${ls} && newls="${newls} ${f}" |
|
|
1548 | else |
|
|
1549 | hasq ${f} ${ls} || newls="${newls} ${f}" |
|
|
1550 | fi |
|
|
1551 | done |
|
|
1552 | ls=${newls} |
|
|
1553 | done |
|
|
1554 | else |
|
|
1555 | ls="$@" |
|
|
1556 | fi |
|
|
1557 | |
|
|
1558 | nols="" |
|
|
1559 | newls="" |
|
|
1560 | for f in ${LINGUAS} ; do |
|
|
1561 | if hasq ${f} ${ls} ; then |
|
|
1562 | newls="${newls} ${f}" |
|
|
1563 | else |
|
|
1564 | nols="${nols} ${f}" |
|
|
1565 | fi |
|
|
1566 | done |
|
|
1567 | [[ -n ${nols} ]] \ |
|
|
1568 | && ewarn "Sorry, but ${PN} does not support the LINGUAs:" ${nols} |
|
|
1569 | export LINGUAS=${newls:1} |
|
|
1570 | } |
|
|
1571 | |
|
|
1572 | # @FUNCTION: preserve_old_lib |
|
|
1573 | # @USAGE: <libs to preserve> [more libs] |
|
|
1574 | # @DESCRIPTION: |
|
|
1575 | # These functions are useful when a lib in your package changes ABI SONAME. |
|
|
1576 | # An example might be from libogg.so.0 to libogg.so.1. Removing libogg.so.0 |
|
|
1577 | # would break packages that link against it. Most people get around this |
|
|
1578 | # by using the portage SLOT mechanism, but that is not always a relevant |
|
|
1579 | # solution, so instead you can call this from pkg_preinst. See also the |
|
|
1580 | # preserve_old_lib_notify function. |
|
|
1581 | preserve_old_lib() { |
|
|
1582 | if [[ ${EBUILD_PHASE} != "preinst" ]] ; then |
|
|
1583 | eerror "preserve_old_lib() must be called from pkg_preinst() only" |
|
|
1584 | die "Invalid preserve_old_lib() usage" |
|
|
1585 | fi |
|
|
1586 | [[ -z $1 ]] && die "Usage: preserve_old_lib <library to preserve> [more libraries to preserve]" |
|
|
1587 | |
|
|
1588 | local lib dir |
|
|
1589 | for lib in "$@" ; do |
|
|
1590 | [[ -e ${ROOT}/${lib} ]] || continue |
|
|
1591 | dir=${lib%/*} |
|
|
1592 | dodir ${dir} || die "dodir ${dir} failed" |
|
|
1593 | cp "${ROOT}"/${lib} "${D}"/${lib} || die "cp ${lib} failed" |
|
|
1594 | touch "${D}"/${lib} |
|
|
1595 | done |
|
|
1596 | } |
|
|
1597 | |
|
|
1598 | # @FUNCTION: preserve_old_lib_notify |
|
|
1599 | # @USAGE: <libs to notify> [more libs] |
|
|
1600 | # @DESCRIPTION: |
|
|
1601 | # Spit helpful messages about the libraries preserved by preserve_old_lib. |
|
|
1602 | preserve_old_lib_notify() { |
|
|
1603 | if [[ ${EBUILD_PHASE} != "postinst" ]] ; then |
|
|
1604 | eerror "preserve_old_lib_notify() must be called from pkg_postinst() only" |
|
|
1605 | die "Invalid preserve_old_lib_notify() usage" |
|
|
1606 | fi |
|
|
1607 | |
|
|
1608 | local lib notice=0 |
|
|
1609 | for lib in "$@" ; do |
|
|
1610 | [[ -e ${ROOT}/${lib} ]] || continue |
|
|
1611 | if [[ ${notice} -eq 0 ]] ; then |
|
|
1612 | notice=1 |
|
|
1613 | ewarn "Old versions of installed libraries were detected on your system." |
|
|
1614 | ewarn "In order to avoid breaking packages that depend on these old libs," |
|
|
1615 | ewarn "the libraries are not being removed. You need to run revdep-rebuild" |
|
|
1616 | ewarn "in order to remove these old dependencies. If you do not have this" |
|
|
1617 | ewarn "helper program, simply emerge the 'gentoolkit' package." |
|
|
1618 | ewarn |
|
|
1619 | fi |
|
|
1620 | ewarn " # revdep-rebuild --library ${lib##*/}" |
|
|
1621 | done |
|
|
1622 | if [[ ${notice} -eq 1 ]] ; then |
|
|
1623 | ewarn |
|
|
1624 | ewarn "Once you've finished running revdep-rebuild, it should be safe to" |
|
|
1625 | ewarn "delete the old libraries." |
|
|
1626 | fi |
|
|
1627 | } |
|
|
1628 | |
|
|
1629 | # @FUNCTION: built_with_use |
|
|
1630 | # @USAGE: [--hidden] [--missing <action>] [-a|-o] <DEPEND ATOM> <List of USE flags> |
|
|
1631 | # @DESCRIPTION: |
|
|
1632 | # A temporary hack until portage properly supports DEPENDing on USE |
|
|
1633 | # flags being enabled in packages. This will check to see if the specified |
|
|
1634 | # DEPEND atom was built with the specified list of USE flags. The |
|
|
1635 | # --missing option controls the behavior if called on a package that does |
|
|
1636 | # not actually support the defined USE flags (aka listed in IUSE). |
|
|
1637 | # The default is to abort (call die). The -a and -o flags control |
|
|
1638 | # the requirements of the USE flags. They correspond to "and" and "or" |
|
|
1639 | # logic. So the -a flag means all listed USE flags must be enabled |
|
|
1640 | # while the -o flag means at least one of the listed fIUSE flags must be |
|
|
1641 | # enabled. The --hidden option is really for internal use only as it |
|
|
1642 | # means the USE flag we're checking is hidden expanded, so it won't be found |
|
|
1643 | # in IUSE like normal USE flags. |
|
|
1644 | # |
|
|
1645 | # Remember that this function isn't terribly intelligent so order of optional |
|
|
1646 | # flags matter. |
|
|
1647 | built_with_use() { |
|
|
1648 | local hidden="no" |
|
|
1649 | if [[ $1 == "--hidden" ]] ; then |
|
|
1650 | hidden="yes" |
|
|
1651 | shift |
|
|
1652 | fi |
|
|
1653 | |
|
|
1654 | local missing_action="die" |
|
|
1655 | if [[ $1 == "--missing" ]] ; then |
|
|
1656 | missing_action=$2 |
|
|
1657 | shift ; shift |
|
|
1658 | case ${missing_action} in |
|
|
1659 | true|false|die) ;; |
|
|
1660 | *) die "unknown action '${missing_action}'";; |
|
|
1661 | esac |
|
|
1662 | fi |
|
|
1663 | |
|
|
1664 | local opt=$1 |
|
|
1665 | [[ ${opt:0:1} = "-" ]] && shift || opt="-a" |
|
|
1666 | |
|
|
1667 | local PKG=$(best_version $1) |
|
|
1668 | [[ -z ${PKG} ]] && die "Unable to resolve $1 to an installed package" |
|
|
1669 | shift |
|
|
1670 | |
|
|
1671 | local USEFILE=${ROOT}/var/db/pkg/${PKG}/USE |
|
|
1672 | local IUSEFILE=${ROOT}/var/db/pkg/${PKG}/IUSE |
|
|
1673 | |
|
|
1674 | # if the IUSE file doesn't exist, the read will error out, we need to handle |
|
|
1675 | # this gracefully |
|
|
1676 | if [[ ! -e ${USEFILE} ]] || [[ ! -e ${IUSEFILE} && ${hidden} == "no" ]] ; then |
|
|
1677 | case ${missing_action} in |
|
|
1678 | true) return 0;; |
|
|
1679 | false) return 1;; |
|
|
1680 | die) die "Unable to determine what USE flags $PKG was built with";; |
|
|
1681 | esac |
|
|
1682 | fi |
|
|
1683 | |
|
|
1684 | if [[ ${hidden} == "no" ]] ; then |
|
|
1685 | local IUSE_BUILT=$(<${IUSEFILE}) |
|
|
1686 | # Don't check USE_EXPAND #147237 |
|
|
1687 | local expand |
|
|
1688 | for expand in $(echo ${USE_EXPAND} | tr '[:upper:]' '[:lower:]') ; do |
|
|
1689 | if [[ $1 == ${expand}_* ]] ; then |
|
|
1690 | expand="" |
|
|
1691 | break |
|
|
1692 | fi |
|
|
1693 | done |
|
|
1694 | if [[ -n ${expand} ]] ; then |
|
|
1695 | if ! has $1 ${IUSE_BUILT} ; then |
|
|
1696 | case ${missing_action} in |
|
|
1697 | true) return 0;; |
|
|
1698 | false) return 1;; |
|
|
1699 | die) die "$PKG does not actually support the $1 USE flag!";; |
|
|
1700 | esac |
|
|
1701 | fi |
|
|
1702 | fi |
|
|
1703 | fi |
|
|
1704 | |
|
|
1705 | local USE_BUILT=$(<${USEFILE}) |
|
|
1706 | while [[ $# -gt 0 ]] ; do |
|
|
1707 | if [[ ${opt} = "-o" ]] ; then |
|
|
1708 | has $1 ${USE_BUILT} && return 0 |
|
|
1709 | else |
|
|
1710 | has $1 ${USE_BUILT} || return 1 |
|
|
1711 | fi |
|
|
1712 | shift |
|
|
1713 | done |
|
|
1714 | [[ ${opt} = "-a" ]] |
|
|
1715 | } |
|
|
1716 | |
|
|
1717 | # @FUNCTION: epunt_cxx |
|
|
1718 | # @USAGE: [dir to scan] |
|
|
1719 | # @DESCRIPTION: |
|
|
1720 | # Many configure scripts wrongly bail when a C++ compiler could not be |
|
|
1721 | # detected. If dir is not specified, then it defaults to ${S}. |
|
|
1722 | # |
|
|
1723 | # http://bugs.gentoo.org/73450 |
|
|
1724 | epunt_cxx() { |
|
|
1725 | local dir=$1 |
|
|
1726 | [[ -z ${dir} ]] && dir=${S} |
|
|
1727 | ebegin "Removing useless C++ checks" |
|
|
1728 | local f |
|
|
1729 | find "${dir}" -name configure | while read f ; do |
|
|
1730 | patch --no-backup-if-mismatch -p0 "${f}" "${PORTDIR}/eclass/ELT-patches/nocxx/nocxx.patch" > /dev/null |
|
|
1731 | done |
|
|
1732 | eend 0 |
|
|
1733 | } |
|
|
1734 | |
|
|
1735 | # @FUNCTION: make_wrapper |
|
|
1736 | # @USAGE: <wrapper> <target> [chdir] [libpaths] [installpath] |
|
|
1737 | # @DESCRIPTION: |
|
|
1738 | # Create a shell wrapper script named wrapper in installpath |
|
|
1739 | # (defaults to the bindir) to execute target (default of wrapper) by |
|
|
1740 | # first optionally setting LD_LIBRARY_PATH to the colon-delimited |
|
|
1741 | # libpaths followed by optionally changing directory to chdir. |
|
|
1742 | make_wrapper() { |
|
|
1743 | local wrapper=$1 bin=$2 chdir=$3 libdir=$4 path=$5 |
|
|
1744 | local tmpwrapper=$(emktemp) |
|
|
1745 | # We don't want to quote ${bin} so that people can pass complex |
|
|
1746 | # things as $bin ... "./someprog --args" |
|
|
1747 | cat << EOF > "${tmpwrapper}" |
|
|
1748 | #!/bin/sh |
|
|
1749 | cd "${chdir:-.}" |
|
|
1750 | if [ -n "${libdir}" ] ; then |
|
|
1751 | if [ "\${LD_LIBRARY_PATH+set}" = "set" ] ; then |
|
|
1752 | export LD_LIBRARY_PATH="\${LD_LIBRARY_PATH}:${libdir}" |
|
|
1753 | else |
|
|
1754 | export LD_LIBRARY_PATH="${libdir}" |
|
|
1755 | fi |
|
|
1756 | fi |
|
|
1757 | exec ${bin} "\$@" |
|
|
1758 | EOF |
|
|
1759 | chmod go+rx "${tmpwrapper}" |
|
|
1760 | if [[ -n ${path} ]] ; then |
|
|
1761 | ( |
|
|
1762 | exeinto "${path}" |
|
|
1763 | newexe "${tmpwrapper}" "${wrapper}" |
|
|
1764 | ) || die |
|
|
1765 | else |
|
|
1766 | newbin "${tmpwrapper}" "${wrapper}" || die |
|
|
1767 | fi |
|
|
1768 | } |