1 | # Copyright 1999-2003 Gentoo Technologies, Inc. |
1 | # Copyright 1999-2004 Gentoo Foundation |
2 | # Distributed under the terms of the GNU General Public License v2 |
2 | # Distributed under the terms of the GNU General Public License v2 |
3 | # $Header: /var/cvsroot/gentoo-x86/eclass/eutils.eclass,v 1.24 2003/03/03 21:27:15 vapier Exp $ |
3 | # $Header: /var/cvsroot/gentoo-x86/eclass/eutils.eclass,v 1.150 2005/02/08 10:59:46 eradicator Exp $ |
4 | # |
4 | # |
5 | # Author: Martin Schlemmer <azarah@gentoo.org> |
5 | # Author: Martin Schlemmer <azarah@gentoo.org> |
6 | # |
6 | # |
7 | # This eclass is for general purpose functions that most ebuilds |
7 | # This eclass is for general purpose functions that most ebuilds |
8 | # have to implement themselves. |
8 | # have to implement themselves. |
9 | # |
9 | # |
10 | # NB: If you add anything, please comment it! |
10 | # NB: If you add anything, please comment it! |
11 | |
11 | |
|
|
12 | inherit multilib |
12 | ECLASS=eutils |
13 | ECLASS=eutils |
13 | INHERITED="$INHERITED $ECLASS" |
14 | INHERITED="$INHERITED $ECLASS" |
14 | |
15 | |
15 | newdepend "!bootstrap? ( sys-devel/patch )" |
16 | DEPEND="!bootstrap? ( sys-devel/patch )" |
16 | |
17 | |
17 | DESCRIPTION="Based on the ${ECLASS} eclass" |
18 | DESCRIPTION="Based on the ${ECLASS} eclass" |
|
|
19 | |
|
|
20 | # ecpu_check |
|
|
21 | # Usage: |
|
|
22 | # |
|
|
23 | # ecpu_check array_of_cpu_flags |
|
|
24 | # |
|
|
25 | # array_of_cpu_flags - An array of cpu flags to check against USE flags |
|
|
26 | # |
|
|
27 | # Checks user USE related cpu flags against /proc/cpuinfo. If user enables a |
|
|
28 | # cpu flag that is not supported in their processor flags, it will warn the |
|
|
29 | # user if CROSSCOMPILE is not set to 1 ( because cross compile users are |
|
|
30 | # obviously using different cpu flags than their own cpu ). Examples: |
|
|
31 | # |
|
|
32 | # CPU_FLAGS=(mmx mmx2 sse sse2) |
|
|
33 | # ecpu_check CPU_FLAGS |
|
|
34 | # Chris White <chriswhite@gentoo.org> (03 Feb 2005) |
|
|
35 | |
|
|
36 | ecpu_check() { |
|
|
37 | # Think about changing below to: if [ "${CROSSCOMPILE}" -ne 1 -a -e "/proc/cpuinfo" ] |
|
|
38 | # and dropping the else if you do not plan on adding anything to that |
|
|
39 | # empty block .... |
|
|
40 | # PS: also try to add some quoting, and consider rather using ${foo} than $foo ... |
|
|
41 | if [ "${CROSSCOMPILE}" != "1" -a -e "/proc/cpuinfo" ] |
|
|
42 | then |
|
|
43 | CPU_FLAGS=${1} |
|
|
44 | USER_CPU=`grep "flags" /proc/cpuinfo` |
|
|
45 | |
|
|
46 | for flags in `seq 1 ${#CPU_FLAGS[@]}` |
|
|
47 | do |
|
|
48 | if has ${CPU_FLAGS[${flags} - 1]} ${USER_CPU} && ! has ${CPU_FLAGS[${flags} - 1]} ${USE} |
|
|
49 | then |
|
|
50 | ewarn "Your system is ${CPU_FLAGS[${flags} - 1]} capable but you don't have it enabled!" |
|
|
51 | ewarn "You might be cross compiling (in this case set CROSSCOMPILE to 1 to disable this warning." |
|
|
52 | fi |
|
|
53 | |
|
|
54 | if ! has ${CPU_FLAGS[${flags} - 1]} ${USER_CPU} && has ${CPU_FLAGS[${flags} -1]} ${USE} |
|
|
55 | then |
|
|
56 | ewarn "You have ${CPU_FLAGS[${flags} - 1]} support enabled but your processor doesn't" |
|
|
57 | ewarn "Seem to support it! You might be cross compiling or do not have /proc filesystem" |
|
|
58 | ewarn "enabled. If either is the case, set CROSSCOMPILE to 1 to disable this warning." |
|
|
59 | fi |
|
|
60 | done |
|
|
61 | fi |
|
|
62 | } |
|
|
63 | |
|
|
64 | # Wait for the supplied number of seconds. If no argument is supplied, defaults |
|
|
65 | # to five seconds. If the EPAUSE_IGNORE env var is set, don't wait. If we're not |
|
|
66 | # outputting to a terminal, don't wait. For compatability purposes, the argument |
|
|
67 | # must be an integer greater than zero. |
|
|
68 | # Bug 62950, Ciaran McCreesh <ciaranm@gentoo.org> (05 Sep 2004) |
|
|
69 | epause() { |
|
|
70 | if [ -z "$EPAUSE_IGNORE" ] && [ -t 1 ] ; then |
|
|
71 | sleep ${1:-5} |
|
|
72 | fi |
|
|
73 | } |
|
|
74 | |
|
|
75 | # Beep the specified number of times (defaults to five). If our output |
|
|
76 | # is not a terminal, don't beep. If the EBEEP_IGNORE env var is set, |
|
|
77 | # don't beep. |
|
|
78 | # Bug 62950, Ciaran McCreesh <ciaranm@gentoo.org> (05 Sep 2004) |
|
|
79 | ebeep() { |
|
|
80 | local n |
|
|
81 | if [ -z "$EBEEP_IGNORE" ] && [ -t 1 ] ; then |
|
|
82 | for ((n=1 ; n <= ${1:-5} ; n++)) ; do |
|
|
83 | echo -ne "\a" |
|
|
84 | sleep 0.1 &>/dev/null ; sleep 0,1 &>/dev/null |
|
|
85 | echo -ne "\a" |
|
|
86 | sleep 1 |
|
|
87 | done |
|
|
88 | fi |
|
|
89 | } |
18 | |
90 | |
19 | # This function generate linker scripts in /usr/lib for dynamic |
91 | # This function generate linker scripts in /usr/lib for dynamic |
20 | # libs in /lib. This is to fix linking problems when you have |
92 | # libs in /lib. This is to fix linking problems when you have |
21 | # the .so in /lib, and the .a in /usr/lib. What happens is that |
93 | # the .so in /lib, and the .a in /usr/lib. What happens is that |
22 | # in some cases when linking dynamic, the .a in /usr/lib is used |
94 | # in some cases when linking dynamic, the .a in /usr/lib is used |
… | |
… | |
33 | # to point to the latest version of the library present. |
105 | # to point to the latest version of the library present. |
34 | # |
106 | # |
35 | # <azarah@gentoo.org> (26 Oct 2002) |
107 | # <azarah@gentoo.org> (26 Oct 2002) |
36 | # |
108 | # |
37 | gen_usr_ldscript() { |
109 | gen_usr_ldscript() { |
38 | |
110 | local libdir="$(get_libdir)" |
39 | # Just make sure it exists |
111 | # Just make sure it exists |
40 | dodir /usr/lib |
112 | dodir /usr/${libdir} |
41 | |
113 | |
42 | cat > ${D}/usr/lib/$1 <<"END_LDSCRIPT" |
114 | cat > "${D}/usr/${libdir}/${1}" << END_LDSCRIPT |
43 | /* GNU ld script |
115 | /* GNU ld script |
44 | Because Gentoo have critical dynamic libraries |
116 | Because Gentoo have critical dynamic libraries |
45 | in /lib, and the static versions in /usr/lib, we |
117 | in /lib, and the static versions in /usr/lib, we |
46 | need to have a "fake" dynamic lib in /usr/lib, |
118 | need to have a "fake" dynamic lib in /usr/lib, |
47 | otherwise we run into linking problems. |
119 | otherwise we run into linking problems. |
48 | See bug #4411 on http://bugs.gentoo.org/ for |
120 | See bug #4411 on http://bugs.gentoo.org/ for |
49 | more info. */ |
121 | more info. */ |
50 | GROUP ( /lib/libxxx ) |
122 | GROUP ( /${libdir}/${1} ) |
51 | END_LDSCRIPT |
123 | END_LDSCRIPT |
52 | |
124 | fperms a+x "/usr/${libdir}/${1}" |
53 | dosed "s:libxxx:$1:" /usr/lib/$1 |
|
|
54 | |
|
|
55 | return 0 |
|
|
56 | } |
125 | } |
57 | |
126 | |
58 | # Simple function to draw a line consisting of '=' the same length as $* |
127 | # Simple function to draw a line consisting of '=' the same length as $* |
59 | # |
128 | # |
60 | # <azarah@gentoo.org> (11 Nov 2002) |
129 | # <azarah@gentoo.org> (11 Nov 2002) |
… | |
… | |
70 | return 0 |
139 | return 0 |
71 | fi |
140 | fi |
72 | |
141 | |
73 | # Get the length of $* |
142 | # Get the length of $* |
74 | str_length="$(echo -n "$*" | wc -m)" |
143 | str_length="$(echo -n "$*" | wc -m)" |
75 | |
144 | |
76 | while [ "$i" -lt "${str_length}" ] |
145 | while [ "$i" -lt "${str_length}" ] |
77 | do |
146 | do |
78 | echo -n "=" |
147 | echo -n "=" |
79 | |
148 | |
80 | i=$((i + 1)) |
149 | i=$((i + 1)) |
81 | done |
150 | done |
82 | |
151 | |
83 | echo |
152 | echo |
84 | |
153 | |
… | |
… | |
88 | # Default directory where patches are located |
157 | # Default directory where patches are located |
89 | EPATCH_SOURCE="${WORKDIR}/patch" |
158 | EPATCH_SOURCE="${WORKDIR}/patch" |
90 | # Default extension for patches |
159 | # Default extension for patches |
91 | EPATCH_SUFFIX="patch.bz2" |
160 | EPATCH_SUFFIX="patch.bz2" |
92 | # Default options for patch |
161 | # Default options for patch |
|
|
162 | # Set -g0 to keep RCS, ClearCase, Perforce and SCCS happy. Bug #24571 |
93 | EPATCH_OPTS="" |
163 | EPATCH_OPTS="-g0" |
94 | # List of patches not to apply. Not this is only file names, |
164 | # List of patches not to apply. Not this is only file names, |
95 | # and not the full path .. |
165 | # and not the full path .. |
96 | EPATCH_EXCLUDE="" |
166 | EPATCH_EXCLUDE="" |
97 | # Change the printed message for a single patch. |
167 | # Change the printed message for a single patch. |
98 | EPATCH_SINGLE_MSG="" |
168 | EPATCH_SINGLE_MSG="" |
|
|
169 | # Force applying bulk patches even if not following the style: |
|
|
170 | # |
|
|
171 | # ??_${ARCH}_foo.${EPATCH_SUFFIX} |
|
|
172 | # |
|
|
173 | EPATCH_FORCE="no" |
99 | |
174 | |
100 | # This function is for bulk patching, or in theory for just one |
175 | # This function is for bulk patching, or in theory for just one |
101 | # or two patches. |
176 | # or two patches. |
102 | # |
177 | # |
103 | # It should work with .bz2, .gz, .zip and plain text patches. |
178 | # It should work with .bz2, .gz, .zip and plain text patches. |
… | |
… | |
138 | local SINGLE_PATCH="no" |
213 | local SINGLE_PATCH="no" |
139 | local x="" |
214 | local x="" |
140 | |
215 | |
141 | if [ "$#" -gt 1 ] |
216 | if [ "$#" -gt 1 ] |
142 | then |
217 | then |
143 | eerror "Invalid arguments to epatch()" |
218 | local m="" |
144 | die "Invalid arguments to epatch()" |
219 | einfo "${#} patches to apply ..." |
|
|
220 | for m in "$@" ; do |
|
|
221 | epatch "${m}" |
|
|
222 | done |
|
|
223 | return 0 |
145 | fi |
224 | fi |
146 | |
225 | |
147 | if [ -n "$1" -a -f "$1" ] |
226 | if [ -n "$1" -a -f "$1" ] |
148 | then |
227 | then |
149 | SINGLE_PATCH="yes" |
228 | SINGLE_PATCH="yes" |
150 | |
229 | |
151 | local EPATCH_SOURCE="$1" |
230 | local EPATCH_SOURCE="$1" |
152 | local EPATCH_SUFFIX="${1##*\.}" |
231 | local EPATCH_SUFFIX="${1##*\.}" |
153 | |
232 | |
154 | elif [ -n "$1" -a -d "$1" ] |
233 | elif [ -n "$1" -a -d "$1" ] |
155 | then |
234 | then |
|
|
235 | # Allow no extension if EPATCH_FORCE=yes ... used by vim for example ... |
|
|
236 | if [ "${EPATCH_FORCE}" = "yes" ] && [ -z "${EPATCH_SUFFIX}" ] |
|
|
237 | then |
|
|
238 | local EPATCH_SOURCE="$1/*" |
|
|
239 | else |
156 | local EPATCH_SOURCE="$1/*.${EPATCH_SUFFIX}" |
240 | local EPATCH_SOURCE="$1/*.${EPATCH_SUFFIX}" |
|
|
241 | fi |
157 | else |
242 | else |
158 | if [ ! -d ${EPATCH_SOURCE} ] |
243 | if [ ! -d ${EPATCH_SOURCE} ] || [ -n "$1" ] |
159 | then |
244 | then |
160 | if [ -n "$1" -a "${EPATCH_SOURCE}" = "${WORKDIR}/patch" ] |
245 | if [ -n "$1" -a "${EPATCH_SOURCE}" = "${WORKDIR}/patch" ] |
161 | then |
246 | then |
162 | EPATCH_SOURCE="$1" |
247 | EPATCH_SOURCE="$1" |
163 | fi |
248 | fi |
164 | |
249 | |
165 | echo |
250 | echo |
166 | eerror "Cannot find \$EPATCH_SOURCE! Value for \$EPATCH_SOURCE is:" |
251 | eerror "Cannot find \$EPATCH_SOURCE! Value for \$EPATCH_SOURCE is:" |
167 | eerror |
252 | eerror |
168 | eerror " ${EPATCH_SOURCE}" |
253 | eerror " ${EPATCH_SOURCE}" |
|
|
254 | eerror " ( ${EPATCH_SOURCE##*/} )" |
169 | echo |
255 | echo |
170 | die "Cannot find \$EPATCH_SOURCE!" |
256 | die "Cannot find \$EPATCH_SOURCE!" |
171 | fi |
257 | fi |
172 | |
258 | |
173 | local EPATCH_SOURCE="${EPATCH_SOURCE}/*.${EPATCH_SUFFIX}" |
259 | local EPATCH_SOURCE="${EPATCH_SOURCE}/*.${EPATCH_SUFFIX}" |
174 | fi |
260 | fi |
175 | |
261 | |
176 | case ${EPATCH_SUFFIX##*\.} in |
262 | case ${EPATCH_SUFFIX##*\.} in |
177 | bz2) |
263 | bz2) |
… | |
… | |
192 | ;; |
278 | ;; |
193 | esac |
279 | esac |
194 | |
280 | |
195 | if [ "${SINGLE_PATCH}" = "no" ] |
281 | if [ "${SINGLE_PATCH}" = "no" ] |
196 | then |
282 | then |
197 | einfo "Applying various patches (bugfixes/updates)..." |
283 | einfo "Applying various patches (bugfixes/updates) ..." |
198 | fi |
284 | fi |
199 | for x in ${EPATCH_SOURCE} |
285 | for x in ${EPATCH_SOURCE} |
200 | do |
286 | do |
201 | # New ARCH dependant patch naming scheme... |
287 | # New ARCH dependant patch naming scheme ... |
202 | # |
288 | # |
203 | # ???_arch_foo.patch |
289 | # ???_arch_foo.patch |
204 | # |
290 | # |
205 | if [ -f ${x} ] && \ |
291 | if [ -f ${x} ] && \ |
206 | [ "${SINGLE_PATCH}" = "yes" -o "${x/_all_}" != "${x}" -o "`eval echo \$\{x/_${ARCH}_\}`" != "${x}" ] |
292 | ([ "${SINGLE_PATCH}" = "yes" -o "${x/_all_}" != "${x}" -o "`eval echo \$\{x/_${ARCH}_\}`" != "${x}" ] || \ |
|
|
293 | [ "${EPATCH_FORCE}" = "yes" ]) |
207 | then |
294 | then |
208 | local count=0 |
295 | local count=0 |
209 | local popts="${EPATCH_OPTS}" |
296 | local popts="${EPATCH_OPTS}" |
|
|
297 | local patchname=${x##*/} |
210 | |
298 | |
211 | if [ -n "${EPATCH_EXCLUDE}" ] |
299 | if [ -n "${EPATCH_EXCLUDE}" ] |
212 | then |
300 | then |
213 | if [ "`eval echo \$\{EPATCH_EXCLUDE/${x##*/}\}`" != "${EPATCH_EXCLUDE}" ] |
301 | if [ "${EPATCH_EXCLUDE/${patchname}}" != "${EPATCH_EXCLUDE}" ] |
214 | then |
302 | then |
215 | continue |
303 | continue |
216 | fi |
304 | fi |
217 | fi |
305 | fi |
218 | |
306 | |
219 | if [ "${SINGLE_PATCH}" = "yes" ] |
307 | if [ "${SINGLE_PATCH}" = "yes" ] |
220 | then |
308 | then |
221 | if [ -n "${EPATCH_SINGLE_MSG}" ] |
309 | if [ -n "${EPATCH_SINGLE_MSG}" ] |
222 | then |
310 | then |
223 | einfo "${EPATCH_SINGLE_MSG}" |
311 | einfo "${EPATCH_SINGLE_MSG}" |
224 | else |
312 | else |
225 | einfo "Applying ${x##*/}..." |
313 | einfo "Applying ${patchname} ..." |
226 | fi |
314 | fi |
227 | else |
315 | else |
228 | einfo " ${x##*/}..." |
316 | einfo " ${patchname} ..." |
229 | fi |
317 | fi |
230 | |
318 | |
231 | echo "***** ${x##*/} *****" > ${STDERR_TARGET%/*}/${x##*/}-${STDERR_TARGET##*/} |
319 | echo "***** ${patchname} *****" > ${STDERR_TARGET%/*}/${patchname}-${STDERR_TARGET##*/} |
232 | echo >> ${STDERR_TARGET%/*}/${x##*/}-${STDERR_TARGET##*/} |
320 | echo >> ${STDERR_TARGET%/*}/${patchname}-${STDERR_TARGET##*/} |
233 | |
321 | |
234 | # Allow for prefix to differ ... im lazy, so shoot me :/ |
322 | # Allow for prefix to differ ... im lazy, so shoot me :/ |
235 | while [ "${count}" -lt 5 ] |
323 | while [ "${count}" -lt 5 ] |
236 | do |
324 | do |
237 | # Generate some useful debug info ... |
325 | # Generate some useful debug info ... |
238 | draw_line "***** ${x##*/} *****" >> ${STDERR_TARGET%/*}/${x##*/}-${STDERR_TARGET##*/} |
326 | draw_line "***** ${patchname} *****" >> ${STDERR_TARGET%/*}/${patchname}-${STDERR_TARGET##*/} |
239 | echo >> ${STDERR_TARGET%/*}/${x##*/}-${STDERR_TARGET##*/} |
327 | echo >> ${STDERR_TARGET%/*}/${patchname}-${STDERR_TARGET##*/} |
240 | |
328 | |
241 | if [ "${PATCH_SUFFIX}" != "patch" ] |
329 | if [ "${PATCH_SUFFIX}" != "patch" ] |
242 | then |
330 | then |
243 | echo -n "PIPE_COMMAND: " >> ${STDERR_TARGET%/*}/${x##*/}-${STDERR_TARGET##*/} |
331 | echo -n "PIPE_COMMAND: " >> ${STDERR_TARGET%/*}/${patchname}-${STDERR_TARGET##*/} |
244 | echo "${PIPE_CMD} ${x} > ${PATCH_TARGET}" >> ${STDERR_TARGET%/*}/${x##*/}-${STDERR_TARGET##*/} |
332 | echo "${PIPE_CMD} ${x} > ${PATCH_TARGET}" >> ${STDERR_TARGET%/*}/${patchname}-${STDERR_TARGET##*/} |
245 | else |
333 | else |
246 | PATCH_TARGET="${x}" |
334 | PATCH_TARGET="${x}" |
247 | fi |
335 | fi |
248 | |
336 | |
249 | echo -n "PATCH COMMAND: " >> ${STDERR_TARGET%/*}/${x##*/}-${STDERR_TARGET##*/} |
337 | echo -n "PATCH COMMAND: " >> ${STDERR_TARGET%/*}/${patchname}-${STDERR_TARGET##*/} |
250 | echo "patch ${popts} -p${count} < ${PATCH_TARGET}" >> ${STDERR_TARGET%/*}/${x##*/}-${STDERR_TARGET##*/} |
338 | echo "patch -p${count} ${popts} < ${PATCH_TARGET}" >> ${STDERR_TARGET%/*}/${patchname}-${STDERR_TARGET##*/} |
251 | |
339 | |
252 | echo >> ${STDERR_TARGET%/*}/${x##*/}-${STDERR_TARGET##*/} |
340 | echo >> ${STDERR_TARGET%/*}/${patchname}-${STDERR_TARGET##*/} |
253 | draw_line "***** ${x##*/} *****" >> ${STDERR_TARGET%/*}/${x##*/}-${STDERR_TARGET##*/} |
341 | draw_line "***** ${patchname} *****" >> ${STDERR_TARGET%/*}/${patchname}-${STDERR_TARGET##*/} |
254 | |
342 | |
255 | if [ "${PATCH_SUFFIX}" != "patch" ] |
343 | if [ "${PATCH_SUFFIX}" != "patch" ] |
256 | then |
344 | then |
257 | if ! (${PIPE_CMD} ${x} > ${PATCH_TARGET}) >> ${STDERR_TARGET%/*}/${x##*/}-${STDERR_TARGET##*/} 2>&1 |
345 | if ! (${PIPE_CMD} ${x} > ${PATCH_TARGET}) >> ${STDERR_TARGET%/*}/${patchname}-${STDERR_TARGET##*/} 2>&1 |
258 | then |
346 | then |
259 | echo |
347 | echo |
260 | eerror "Could not extract patch!" |
348 | eerror "Could not extract patch!" |
261 | #die "Could not extract patch!" |
349 | #die "Could not extract patch!" |
262 | count=5 |
350 | count=5 |
263 | break |
351 | break |
264 | fi |
352 | fi |
265 | fi |
353 | fi |
266 | |
354 | |
267 | if (cat ${PATCH_TARGET} | patch ${popts} --dry-run -f -p${count}) >> ${STDERR_TARGET%/*}/${x##*/}-${STDERR_TARGET##*/} 2>&1 |
355 | if (cat ${PATCH_TARGET} | patch -p${count} ${popts} --dry-run -f) >> ${STDERR_TARGET%/*}/${patchname}-${STDERR_TARGET##*/} 2>&1 |
268 | then |
356 | then |
269 | draw_line "***** ${x##*/} *****" > ${STDERR_TARGET%/*}/${x##*/}-${STDERR_TARGET##*/}.real |
357 | draw_line "***** ${patchname} *****" > ${STDERR_TARGET%/*}/${patchname}-${STDERR_TARGET##*/}.real |
270 | echo >> ${STDERR_TARGET%/*}/${x##*/}-${STDERR_TARGET##*/}.real |
358 | echo >> ${STDERR_TARGET%/*}/${patchname}-${STDERR_TARGET##*/}.real |
271 | echo "ACTUALLY APPLYING ${x##*/}..." >> ${STDERR_TARGET%/*}/${x##*/}-${STDERR_TARGET##*/}.real |
359 | echo "ACTUALLY APPLYING ${patchname} ..." >> ${STDERR_TARGET%/*}/${patchname}-${STDERR_TARGET##*/}.real |
272 | echo >> ${STDERR_TARGET%/*}/${x##*/}-${STDERR_TARGET##*/}.real |
360 | echo >> ${STDERR_TARGET%/*}/${patchname}-${STDERR_TARGET##*/}.real |
273 | draw_line "***** ${x##*/} *****" >> ${STDERR_TARGET%/*}/${x##*/}-${STDERR_TARGET##*/}.real |
361 | draw_line "***** ${patchname} *****" >> ${STDERR_TARGET%/*}/${patchname}-${STDERR_TARGET##*/}.real |
274 | |
362 | |
275 | cat ${PATCH_TARGET} | patch ${popts} -p${count} >> ${STDERR_TARGET%/*}/${x##*/}-${STDERR_TARGET##*/}.real 2>&1 |
363 | cat ${PATCH_TARGET} | patch -p${count} ${popts} >> ${STDERR_TARGET%/*}/${patchname}-${STDERR_TARGET##*/}.real 2>&1 |
276 | |
364 | |
277 | if [ "$?" -ne 0 ] |
365 | if [ "$?" -ne 0 ] |
278 | then |
366 | then |
279 | cat ${STDERR_TARGET%/*}/${x##*/}-${STDERR_TARGET##*/}.real >> ${STDERR_TARGET%/*}/${x##*/}-${STDERR_TARGET##*/} |
367 | cat ${STDERR_TARGET%/*}/${patchname}-${STDERR_TARGET##*/}.real >> ${STDERR_TARGET%/*}/${patchname}-${STDERR_TARGET##*/} |
280 | echo |
368 | echo |
281 | eerror "A dry-run of patch command succeeded, but actually" |
369 | eerror "A dry-run of patch command succeeded, but actually" |
282 | eerror "applying the patch failed!" |
370 | eerror "applying the patch failed!" |
283 | #die "Real world sux compared to the dreamworld!" |
371 | #die "Real world sux compared to the dreamworld!" |
284 | count=5 |
372 | count=5 |
285 | fi |
373 | fi |
286 | |
374 | |
287 | rm -f ${STDERR_TARGET%/*}/${x##*/}-${STDERR_TARGET##*/}.real |
375 | rm -f ${STDERR_TARGET%/*}/${patchname}-${STDERR_TARGET##*/}.real |
288 | |
376 | |
289 | break |
377 | break |
290 | fi |
378 | fi |
291 | |
379 | |
292 | count=$((count + 1)) |
380 | count=$((count + 1)) |
293 | done |
381 | done |
… | |
… | |
298 | fi |
386 | fi |
299 | |
387 | |
300 | if [ "${count}" -eq 5 ] |
388 | if [ "${count}" -eq 5 ] |
301 | then |
389 | then |
302 | echo |
390 | echo |
303 | eerror "Failed Patch: ${x##*/}!" |
391 | eerror "Failed Patch: ${patchname}!" |
304 | eerror |
392 | eerror |
305 | eerror "Include in your bugreport the contents of:" |
393 | eerror "Include in your bugreport the contents of:" |
306 | eerror |
394 | eerror |
307 | eerror " ${STDERR_TARGET%/*}/${x##*/}-${STDERR_TARGET##*/}" |
395 | eerror " ${STDERR_TARGET%/*}/${patchname}-${STDERR_TARGET##*/}" |
308 | echo |
396 | echo |
309 | die "Failed Patch: ${x##*/}!" |
397 | die "Failed Patch: ${patchname}!" |
310 | fi |
398 | fi |
311 | |
399 | |
312 | rm -f ${STDERR_TARGET%/*}/${x##*/}-${STDERR_TARGET##*/} |
400 | rm -f ${STDERR_TARGET%/*}/${patchname}-${STDERR_TARGET##*/} |
313 | |
401 | |
314 | eend 0 |
402 | eend 0 |
315 | fi |
403 | fi |
316 | done |
404 | done |
317 | if [ "${SINGLE_PATCH}" = "no" ] |
405 | if [ "${SINGLE_PATCH}" = "no" ] |
318 | then |
406 | then |
319 | einfo "Done with patching" |
407 | einfo "Done with patching" |
320 | fi |
408 | fi |
|
|
409 | } |
|
|
410 | |
|
|
411 | # This function return true if we are using the NPTL pthreads |
|
|
412 | # implementation. |
|
|
413 | # |
|
|
414 | # <azarah@gentoo.org> (06 March 2003) |
|
|
415 | # |
|
|
416 | have_NPTL() { |
|
|
417 | cat > ${T}/test-nptl.c <<-"END" |
|
|
418 | #define _XOPEN_SOURCE |
|
|
419 | #include <unistd.h> |
|
|
420 | #include <stdio.h> |
|
|
421 | |
|
|
422 | int main() |
|
|
423 | { |
|
|
424 | char buf[255]; |
|
|
425 | char *str = buf; |
|
|
426 | |
|
|
427 | confstr(_CS_GNU_LIBPTHREAD_VERSION, str, 255); |
|
|
428 | if (NULL != str) { |
|
|
429 | printf("%s\n", str); |
|
|
430 | if (NULL != strstr(str, "NPTL")) |
|
|
431 | return 0; |
|
|
432 | } |
|
|
433 | |
|
|
434 | return 1; |
|
|
435 | } |
|
|
436 | END |
|
|
437 | |
|
|
438 | einfon "Checking for _CS_GNU_LIBPTHREAD_VERSION support in glibc ..." |
|
|
439 | if gcc -o ${T}/nptl ${T}/test-nptl.c &> /dev/null |
|
|
440 | then |
|
|
441 | echo "yes" |
|
|
442 | einfon "Checking what PTHREADS implementation we have ..." |
|
|
443 | if ${T}/nptl |
|
|
444 | then |
|
|
445 | return 0 |
|
|
446 | else |
|
|
447 | return 1 |
|
|
448 | fi |
|
|
449 | else |
|
|
450 | echo "no" |
|
|
451 | fi |
|
|
452 | |
|
|
453 | return 1 |
321 | } |
454 | } |
322 | |
455 | |
323 | # This function check how many cpu's are present, and then set |
456 | # This function check how many cpu's are present, and then set |
324 | # -j in MAKEOPTS accordingly. |
457 | # -j in MAKEOPTS accordingly. |
325 | # |
458 | # |
… | |
… | |
340 | ADMINPARAM="`echo ${ADMINOPTS} | gawk '{match($0, /-j *[0-9]*/, opt); print opt[0]}'`" |
473 | ADMINPARAM="`echo ${ADMINOPTS} | gawk '{match($0, /-j *[0-9]*/, opt); print opt[0]}'`" |
341 | ADMINPARAM="${ADMINPARAM/-j}" |
474 | ADMINPARAM="${ADMINPARAM/-j}" |
342 | fi |
475 | fi |
343 | |
476 | |
344 | export MAKEOPTS="`echo ${MAKEOPTS} | sed -e 's:-j *[0-9]*::g'`" |
477 | export MAKEOPTS="`echo ${MAKEOPTS} | sed -e 's:-j *[0-9]*::g'`" |
345 | |
478 | |
346 | if [ "${ARCH}" = "x86" -o "${ARCH}" = "hppa" -o \ |
479 | if [ "${ARCH}" = "amd64" -o "${ARCH}" = "x86" -o "${ARCH}" = "hppa" -o \ |
347 | "${ARCH}" = "arm" -o "${ARCH}" = "mips" ] |
480 | "${ARCH}" = "arm" -o "${ARCH}" = "mips" -o "${ARCH}" = "ia64" ] |
348 | then |
481 | then |
349 | # these archs will always have "[Pp]rocessor" |
482 | # these archs will always have "[Pp]rocessor" |
350 | jobs="$((`grep -c ^[Pp]rocessor /proc/cpuinfo` * 2))" |
483 | jobs="$((`grep -c ^[Pp]rocessor /proc/cpuinfo` * 2))" |
351 | |
484 | |
352 | elif [ "${ARCH}" = "sparc" -o "${ARCH}" = "sparc64" ] |
485 | elif [ "${ARCH}" = "sparc" -o "${ARCH}" = "sparc64" ] |
353 | then |
486 | then |
354 | # sparc always has "ncpus active" |
487 | # sparc always has "ncpus active" |
355 | jobs="$((`grep "^ncpus active" /proc/cpuinfo | sed -e "s/^.*: //"` * 2))" |
488 | jobs="$((`grep "^ncpus active" /proc/cpuinfo | sed -e "s/^.*: //"` * 2))" |
356 | |
489 | |
357 | elif [ "${ARCH}" = "alpha" ] |
490 | elif [ "${ARCH}" = "alpha" ] |
358 | then |
491 | then |
359 | # alpha has "cpus active", but only when compiled with SMP |
492 | # alpha has "cpus active", but only when compiled with SMP |
360 | if [ "`grep -c "^cpus active" /proc/cpuinfo`" -eq 1 ] |
493 | if [ "`grep -c "^cpus active" /proc/cpuinfo`" -eq 1 ] |
361 | then |
494 | then |
362 | jobs="$((`grep "^cpus active" /proc/cpuinfo | sed -e "s/^.*: //"` * 2))" |
495 | jobs="$((`grep "^cpus active" /proc/cpuinfo | sed -e "s/^.*: //"` * 2))" |
363 | else |
496 | else |
364 | jobs=2 |
497 | jobs=2 |
365 | fi |
498 | fi |
366 | |
499 | |
367 | elif [ "${ARCH}" = "ppc" ] |
500 | elif [ "${ARCH}" = "ppc" -o "${ARCH}" = "ppc64" ] |
368 | then |
501 | then |
369 | # ppc has "processor", but only when compiled with SMP |
502 | # ppc has "processor", but only when compiled with SMP |
370 | if [ "`grep -c "^processor" /proc/cpuinfo`" -eq 1 ] |
503 | if [ "`grep -c "^processor" /proc/cpuinfo`" -eq 1 ] |
371 | then |
504 | then |
372 | jobs="$((`grep -c ^processor /proc/cpuinfo` * 2))" |
505 | jobs="$((`grep -c ^processor /proc/cpuinfo` * 2))" |
373 | else |
506 | else |
374 | jobs=2 |
507 | jobs=2 |
375 | fi |
508 | fi |
|
|
509 | elif [ "${ARCH}" = "s390" ] |
|
|
510 | then |
|
|
511 | # s390 has "# processors : " |
|
|
512 | jobs="$((`grep "^\# processors" /proc/cpuinfo | sed -e "s/^.*: //"` * 2))" |
376 | else |
513 | else |
377 | jobs="$((`grep -c ^cpu /proc/cpuinfo` * 2))" |
514 | jobs="$((`grep -c ^cpu /proc/cpuinfo` * 2))" |
378 | die "Unknown ARCH -- ${ARCH}!" |
515 | die "Unknown ARCH -- ${ARCH}!" |
379 | fi |
516 | fi |
380 | |
517 | |
381 | # Make sure the number is valid ... |
518 | # Make sure the number is valid ... |
382 | if [ "${jobs}" -lt 1 ] |
519 | if [ "${jobs}" -lt 1 ] |
383 | then |
520 | then |
384 | jobs=1 |
521 | jobs=1 |
385 | fi |
522 | fi |
386 | |
523 | |
387 | if [ -n "${ADMINPARAM}" ] |
524 | if [ -n "${ADMINPARAM}" ] |
388 | then |
525 | then |
389 | if [ "${jobs}" -gt "${ADMINPARAM}" ] |
526 | if [ "${jobs}" -gt "${ADMINPARAM}" ] |
390 | then |
527 | then |
391 | einfo "Setting make jobs to \"-j${ADMINPARAM}\" to ensure successful merge..." |
528 | einfo "Setting make jobs to \"-j${ADMINPARAM}\" to ensure successful merge ..." |
392 | export MAKEOPTS="${MAKEOPTS} -j${ADMINPARAM}" |
529 | export MAKEOPTS="${MAKEOPTS} -j${ADMINPARAM}" |
393 | else |
530 | else |
394 | einfo "Setting make jobs to \"-j${jobs}\" to ensure successful merge..." |
531 | einfo "Setting make jobs to \"-j${jobs}\" to ensure successful merge ..." |
395 | export MAKEOPTS="${MAKEOPTS} -j${jobs}" |
532 | export MAKEOPTS="${MAKEOPTS} -j${jobs}" |
396 | fi |
533 | fi |
|
|
534 | fi |
|
|
535 | } |
|
|
536 | |
|
|
537 | # Cheap replacement for when debianutils (and thus mktemp) |
|
|
538 | # does not exist on the users system |
|
|
539 | # vapier@gentoo.org |
|
|
540 | # |
|
|
541 | # Takes just 1 optional parameter (the directory to create tmpfile in) |
|
|
542 | emktemp() { |
|
|
543 | local exe="touch" |
|
|
544 | [ "$1" == "-d" ] && exe="mkdir" && shift |
|
|
545 | local topdir="$1" |
|
|
546 | |
|
|
547 | if [ -z "${topdir}" ] |
|
|
548 | then |
|
|
549 | [ -z "${T}" ] \ |
|
|
550 | && topdir="/tmp" \ |
|
|
551 | || topdir="${T}" |
|
|
552 | fi |
|
|
553 | |
|
|
554 | if [ -z "$(type -p mktemp)" ] |
|
|
555 | then |
|
|
556 | local tmp=/ |
|
|
557 | while [ -e "${tmp}" ] ; do |
|
|
558 | tmp="${topdir}/tmp.${RANDOM}.${RANDOM}.${RANDOM}" |
|
|
559 | done |
|
|
560 | ${exe} "${tmp}" |
|
|
561 | echo "${tmp}" |
|
|
562 | else |
|
|
563 | [ "${exe}" == "touch" ] \ |
|
|
564 | && exe="-p" \ |
|
|
565 | || exe="-d" |
|
|
566 | mktemp ${exe} "${topdir}" |
|
|
567 | fi |
|
|
568 | } |
|
|
569 | |
|
|
570 | # Small wrapper for getent (Linux), nidump (Mac OS X), |
|
|
571 | # and pw (FreeBSD) used in enewuser()/enewgroup() |
|
|
572 | # Joe Jezak <josejx@gmail.com> and usata@gentoo.org |
|
|
573 | # FBSD stuff: Aaron Walker <ka0ttic@gentoo.org> |
|
|
574 | # |
|
|
575 | # egetent(database, key) |
|
|
576 | egetent() { |
|
|
577 | if useq ppc-macos ; then |
|
|
578 | case "$2" in |
|
|
579 | *[!0-9]*) # Non numeric |
|
|
580 | nidump $1 . | awk -F":" "{ if (\$1 ~ /^$2$/) {print \$0;exit;} }" |
|
|
581 | ;; |
|
|
582 | *) # Numeric |
|
|
583 | nidump $1 . | awk -F":" "{ if (\$3 == $2) {print \$0;exit;} }" |
|
|
584 | ;; |
|
|
585 | esac |
|
|
586 | elif useq x86-fbsd ; then |
|
|
587 | local action |
|
|
588 | if [ "$1" == "passwd" ] |
|
|
589 | then |
|
|
590 | action="user" |
|
|
591 | else |
|
|
592 | action="group" |
|
|
593 | fi |
|
|
594 | pw show "${action}" "$2" -q |
|
|
595 | else |
|
|
596 | which nscd >& /dev/null && nscd -i "$1" |
|
|
597 | getent "$1" "$2" |
397 | fi |
598 | fi |
398 | } |
599 | } |
399 | |
600 | |
400 | # Simplify/standardize adding users to the system |
601 | # Simplify/standardize adding users to the system |
401 | # vapier@gentoo.org |
602 | # vapier@gentoo.org |
… | |
… | |
403 | # enewuser(username, uid, shell, homedir, groups, extra options) |
604 | # enewuser(username, uid, shell, homedir, groups, extra options) |
404 | # |
605 | # |
405 | # Default values if you do not specify any: |
606 | # Default values if you do not specify any: |
406 | # username: REQUIRED ! |
607 | # username: REQUIRED ! |
407 | # uid: next available (see useradd(8)) |
608 | # uid: next available (see useradd(8)) |
|
|
609 | # note: pass -1 to get default behavior |
408 | # shell: /bin/false |
610 | # shell: /bin/false |
409 | # homedir: /dev/null |
611 | # homedir: /dev/null |
410 | # groups: none |
612 | # groups: none |
411 | # extra: comment of 'added by portage for ${PN}' |
613 | # extra: comment of 'added by portage for ${PN}' |
412 | enewuser() { |
614 | enewuser() { |
413 | # get the username |
615 | # get the username |
414 | local euser="$1"; shift |
616 | local euser="$1"; shift |
415 | if [ -z "${euser}" ] ; then |
617 | if [ -z "${euser}" ] |
|
|
618 | then |
416 | eerror "No username specified !" |
619 | eerror "No username specified !" |
417 | die "Cannot call enewuser without a username" |
620 | die "Cannot call enewuser without a username" |
418 | fi |
621 | fi |
|
|
622 | |
|
|
623 | # lets see if the username already exists |
|
|
624 | if [ "${euser}" == "`egetent passwd \"${euser}\" | cut -d: -f1`" ] |
|
|
625 | then |
|
|
626 | return 0 |
|
|
627 | fi |
419 | einfo "Adding user '${euser}' to your system ..." |
628 | einfo "Adding user '${euser}' to your system ..." |
420 | |
629 | |
421 | # setup a file for testing usernames/groups |
|
|
422 | local tmpfile="`mktemp -p ${T}`" |
|
|
423 | touch ${tmpfile} |
|
|
424 | chown ${euser} ${tmpfile} >& /dev/null |
|
|
425 | local realuser="`ls -l ${tmpfile} | awk '{print $3}'`" |
|
|
426 | |
|
|
427 | # see if user already exists |
|
|
428 | if [ "${euser}" == "${realuser}" ] ; then |
|
|
429 | einfo "${euser} already exists on your system :)" |
|
|
430 | return 0 |
|
|
431 | fi |
|
|
432 | |
|
|
433 | # options to pass to useradd |
630 | # options to pass to useradd |
434 | local opts="" |
631 | local opts= |
435 | |
632 | |
436 | # handle uid |
633 | # handle uid |
437 | local euid="$1"; shift |
634 | local euid="$1"; shift |
438 | if [ ! -z "${euid}" ] ; then |
635 | if [ ! -z "${euid}" ] && [ "${euid}" != "-1" ] |
|
|
636 | then |
439 | if [ ${euid} -gt 0 ] ; then |
637 | if [ "${euid}" -gt 0 ] |
440 | opts="${opts} -u ${euid}" |
638 | then |
|
|
639 | if [ ! -z "`egetent passwd ${euid}`" ] |
|
|
640 | then |
|
|
641 | euid="next" |
|
|
642 | fi |
441 | else |
643 | else |
442 | eerror "Userid given but is not greater than 0 !" |
644 | eerror "Userid given but is not greater than 0 !" |
443 | die "${euid} is not a valid UID" |
645 | die "${euid} is not a valid UID" |
444 | fi |
646 | fi |
445 | else |
647 | else |
446 | euid="next available" |
648 | euid="next" |
|
|
649 | fi |
|
|
650 | if [ "${euid}" == "next" ] |
|
|
651 | then |
|
|
652 | local pwrange |
|
|
653 | if [ "${USERLAND}" == "BSD" ] ; then |
|
|
654 | pwrange="`jot 898 101`" |
|
|
655 | else |
|
|
656 | pwrange="`seq 101 999`" |
447 | fi |
657 | fi |
|
|
658 | for euid in ${pwrange} ; do |
|
|
659 | [ -z "`egetent passwd ${euid}`" ] && break |
|
|
660 | done |
|
|
661 | fi |
|
|
662 | opts="${opts} -u ${euid}" |
448 | einfo " - Userid: ${euid}" |
663 | einfo " - Userid: ${euid}" |
449 | |
664 | |
450 | # handle shell |
665 | # handle shell |
451 | local eshell="$1"; shift |
666 | local eshell="$1"; shift |
452 | if [ ! -z "${eshell}" ] ; then |
667 | if [ ! -z "${eshell}" ] && [ "${eshell}" != "-1" ] |
|
|
668 | then |
453 | if [ ! -e ${eshell} ] ; then |
669 | if [ ! -e "${eshell}" ] |
|
|
670 | then |
454 | eerror "A shell was specified but it does not exist !" |
671 | eerror "A shell was specified but it does not exist !" |
455 | die "${eshell} does not exist" |
672 | die "${eshell} does not exist" |
456 | fi |
673 | fi |
457 | else |
674 | else |
|
|
675 | if [ "${USERLAND}" == "BSD" ] |
|
|
676 | then |
|
|
677 | eshell="/usr/bin/false" |
|
|
678 | else |
458 | eshell=/bin/false |
679 | eshell="/bin/false" |
|
|
680 | fi |
459 | fi |
681 | fi |
460 | einfo " - Shell: ${eshell}" |
682 | einfo " - Shell: ${eshell}" |
461 | opts="${opts} -s ${eshell}" |
683 | opts="${opts} -s ${eshell}" |
462 | |
684 | |
463 | # handle homedir |
685 | # handle homedir |
464 | local ehome="$1"; shift |
686 | local ehome="$1"; shift |
465 | if [ -z "${ehome}" ] ; then |
687 | if [ -z "${ehome}" ] && [ "${eshell}" != "-1" ] |
|
|
688 | then |
466 | ehome=/dev/null |
689 | ehome="/dev/null" |
467 | fi |
690 | fi |
468 | einfo " - Home: ${ehome}" |
691 | einfo " - Home: ${ehome}" |
469 | opts="${opts} -d ${ehome}" |
692 | opts="${opts} -d ${ehome}" |
470 | |
693 | |
471 | # handle groups |
694 | # handle groups |
472 | local egroups="$1"; shift |
695 | local egroups="$1"; shift |
473 | if [ ! -z "${egroups}" ] ; then |
696 | if [ ! -z "${egroups}" ] |
474 | local realgroup |
697 | then |
475 | local oldifs="${IFS}" |
698 | local oldifs="${IFS}" |
|
|
699 | local defgroup="" exgroups="" |
|
|
700 | |
476 | export IFS="," |
701 | export IFS="," |
477 | for g in ${egroups} ; do |
702 | for g in ${egroups} |
478 | chgrp ${g} ${tmpfile} >& /dev/null |
703 | do |
479 | realgroup="`ls -l ${tmpfile} | awk '{print $4}'`" |
704 | export IFS="${oldifs}" |
480 | if [ "${g}" != "${realgroup}" ] ; then |
705 | if [ -z "`egetent group \"${g}\"`" ] |
|
|
706 | then |
481 | eerror "You must add ${g} to the system first" |
707 | eerror "You must add group ${g} to the system first" |
482 | die "${g} is not a valid GID" |
708 | die "${g} is not a valid GID" |
483 | fi |
709 | fi |
|
|
710 | if [ -z "${defgroup}" ] |
|
|
711 | then |
|
|
712 | defgroup="${g}" |
|
|
713 | else |
|
|
714 | exgroups="${exgroups},${g}" |
|
|
715 | fi |
|
|
716 | export IFS="," |
484 | done |
717 | done |
485 | export IFS="${oldifs}" |
718 | export IFS="${oldifs}" |
|
|
719 | |
486 | opts="${opts} -g ${egroups}" |
720 | opts="${opts} -g ${defgroup}" |
|
|
721 | if [ ! -z "${exgroups}" ] |
|
|
722 | then |
|
|
723 | opts="${opts} -G ${exgroups:1}" |
|
|
724 | fi |
487 | else |
725 | else |
488 | egroups="(none)" |
726 | egroups="(none)" |
489 | fi |
727 | fi |
490 | einfo " - Groups: ${egroups}" |
728 | einfo " - Groups: ${egroups}" |
491 | |
729 | |
492 | # handle extra and add the user |
730 | # handle extra and add the user |
493 | local eextra="$@" |
731 | local eextra="$@" |
494 | local oldsandbox="${oldsandbox}" |
732 | local oldsandbox="${SANDBOX_ON}" |
495 | export SANDBOX_ON="0" |
733 | export SANDBOX_ON="0" |
|
|
734 | if useq ppc-macos |
|
|
735 | then |
|
|
736 | ### Make the user |
496 | if [ -z "${eextra}" ] ; then |
737 | if [ -z "${eextra}" ] |
497 | useradd ${opts} ${euser} \ |
738 | then |
|
|
739 | dscl . create /users/${euser} uid ${euid} |
|
|
740 | dscl . create /users/${euser} shell ${eshell} |
|
|
741 | dscl . create /users/${euser} home ${ehome} |
|
|
742 | dscl . create /users/${euser} realname "added by portage for ${PN}" |
|
|
743 | ### Add the user to the groups specified |
|
|
744 | local oldifs="${IFS}" |
|
|
745 | export IFS="," |
|
|
746 | for g in ${egroups} |
|
|
747 | do |
|
|
748 | dscl . merge /groups/${g} users ${euser} |
|
|
749 | done |
|
|
750 | export IFS="${oldifs}" |
|
|
751 | else |
|
|
752 | einfo "Extra options are not supported on macos yet" |
|
|
753 | einfo "Please report the ebuild along with the info below" |
|
|
754 | einfo "eextra: ${eextra}" |
|
|
755 | die "Required function missing" |
|
|
756 | fi |
|
|
757 | elif use x86-fbsd ; then |
|
|
758 | if [ -z "${eextra}" ] |
|
|
759 | then |
|
|
760 | pw useradd ${euser} ${opts} \ |
498 | -c "added by portage for ${PN}" \ |
761 | -c "added by portage for ${PN}" \ |
499 | || die "enewuser failed" |
762 | die "enewuser failed" |
500 | else |
763 | else |
501 | einfo " - Extra: ${eextra}" |
764 | einfo " - Extra: ${eextra}" |
|
|
765 | pw useradd ${euser} ${opts} \ |
|
|
766 | -c ${eextra} || die "enewuser failed" |
|
|
767 | fi |
|
|
768 | else |
|
|
769 | if [ -z "${eextra}" ] |
|
|
770 | then |
|
|
771 | useradd ${opts} ${euser} \ |
|
|
772 | -c "added by portage for ${PN}" \ |
|
|
773 | || die "enewuser failed" |
|
|
774 | else |
|
|
775 | einfo " - Extra: ${eextra}" |
502 | useradd ${opts} ${euser} ${eextra} \ |
776 | useradd ${opts} ${euser} ${eextra} \ |
503 | || die "enewuser failed" |
777 | || die "enewuser failed" |
|
|
778 | fi |
504 | fi |
779 | fi |
505 | export SANDBOX_ON="${oldsandbox}" |
780 | export SANDBOX_ON="${oldsandbox}" |
506 | |
781 | |
507 | if [ ! -e ${ehome} ] && [ ! -e ${D}/${ehome} ] ; then |
782 | if [ ! -e "${ehome}" ] && [ ! -e "${D}/${ehome}" ] |
|
|
783 | then |
508 | einfo " - Creating ${ehome} in ${D}" |
784 | einfo " - Creating ${ehome} in ${D}" |
509 | dodir ${ehome} |
785 | dodir ${ehome} |
510 | fperms ${euser} ${ehome} |
786 | fowners ${euser} ${ehome} |
|
|
787 | fperms 755 ${ehome} |
511 | fi |
788 | fi |
512 | } |
789 | } |
513 | |
790 | |
514 | # Simplify/standardize adding groups to the system |
791 | # Simplify/standardize adding groups to the system |
515 | # vapier@gentoo.org |
792 | # vapier@gentoo.org |
… | |
… | |
521 | # gid: next available (see groupadd(8)) |
798 | # gid: next available (see groupadd(8)) |
522 | # extra: none |
799 | # extra: none |
523 | enewgroup() { |
800 | enewgroup() { |
524 | # get the group |
801 | # get the group |
525 | local egroup="$1"; shift |
802 | local egroup="$1"; shift |
526 | if [ -z "${egroup}" ] ; then |
803 | if [ -z "${egroup}" ] |
|
|
804 | then |
527 | eerror "No group specified !" |
805 | eerror "No group specified !" |
528 | die "Cannot call enewgroup without a group" |
806 | die "Cannot call enewgroup without a group" |
529 | fi |
807 | fi |
|
|
808 | |
|
|
809 | # see if group already exists |
|
|
810 | if [ "${egroup}" == "`egetent group \"${egroup}\" | cut -d: -f1`" ] |
|
|
811 | then |
|
|
812 | return 0 |
|
|
813 | fi |
530 | einfo "Adding group '${egroup}' to your system ..." |
814 | einfo "Adding group '${egroup}' to your system ..." |
531 | |
815 | |
532 | # setup a file for testing groupname |
|
|
533 | local tmpfile="`mktemp -p ${T}`" |
|
|
534 | touch ${tmpfile} |
|
|
535 | chgrp ${egroup} ${tmpfile} >& /dev/null |
|
|
536 | local realgroup="`ls -l ${tmpfile} | awk '{print $4}'`" |
|
|
537 | |
|
|
538 | # see if group already exists |
|
|
539 | if [ "${egroup}" == "${realgroup}" ] ; then |
|
|
540 | einfo "${egroup} already exists on your system :)" |
|
|
541 | return 0 |
|
|
542 | fi |
|
|
543 | |
|
|
544 | # options to pass to useradd |
816 | # options to pass to useradd |
545 | local opts="" |
817 | local opts= |
546 | |
818 | |
547 | # handle gid |
819 | # handle gid |
548 | local egid="$1"; shift |
820 | local egid="$1"; shift |
549 | if [ ! -z "${egid}" ] ; then |
821 | if [ ! -z "${egid}" ] |
|
|
822 | then |
550 | if [ ${egid} -gt 0 ] ; then |
823 | if [ "${egid}" -gt 0 ] |
|
|
824 | then |
|
|
825 | if [ -z "`egetent group ${egid}`" ] |
|
|
826 | then |
|
|
827 | if useq ppc-macos ; then |
|
|
828 | opts="${opts} ${egid}" |
|
|
829 | else |
551 | opts="${opts} -g ${egid}" |
830 | opts="${opts} -g ${egid}" |
|
|
831 | fi |
|
|
832 | else |
|
|
833 | egid="next available; requested gid taken" |
|
|
834 | fi |
552 | else |
835 | else |
553 | eerror "Groupid given but is not greater than 0 !" |
836 | eerror "Groupid given but is not greater than 0 !" |
554 | die "${egid} is not a valid GID" |
837 | die "${egid} is not a valid GID" |
555 | fi |
838 | fi |
556 | else |
839 | else |
… | |
… | |
561 | # handle extra |
844 | # handle extra |
562 | local eextra="$@" |
845 | local eextra="$@" |
563 | opts="${opts} ${eextra}" |
846 | opts="${opts} ${eextra}" |
564 | |
847 | |
565 | # add the group |
848 | # add the group |
566 | local oldsandbox="${oldsandbox}" |
849 | local oldsandbox="${SANDBOX_ON}" |
567 | export SANDBOX_ON="0" |
850 | export SANDBOX_ON="0" |
|
|
851 | if useq ppc-macos ; then |
|
|
852 | if [ ! -z "${eextra}" ]; |
|
|
853 | then |
|
|
854 | einfo "Extra options are not supported on macos yet" |
|
|
855 | einfo "Please report the ebuild along with the info below" |
|
|
856 | einfo "eextra: ${eextra}" |
|
|
857 | die "Required function missing" |
|
|
858 | fi |
|
|
859 | |
|
|
860 | # If we need the next available |
|
|
861 | case ${egid} in |
|
|
862 | *[!0-9]*) # Non numeric |
|
|
863 | for egid in `jot 898 101`; do |
|
|
864 | [ -z "`egetent group ${egid}`" ] && break |
|
|
865 | done |
|
|
866 | esac |
|
|
867 | dscl . create /groups/${egroup} gid ${egid} |
|
|
868 | dscl . create /groups/${egroup} passwd '*' |
|
|
869 | elif use x86-fbsd ; then |
|
|
870 | case ${egid} in |
|
|
871 | *[!0-9]*) # Non numeric |
|
|
872 | for egid in `jot 898 101`; do |
|
|
873 | [ -z "`egetent group ${egid}`" ] && break |
|
|
874 | done |
|
|
875 | esac |
|
|
876 | pw groupadd ${egroup} -g ${egid} || die "enewgroup failed" |
|
|
877 | else |
568 | groupadd ${opts} ${egroup} || die "enewgroup failed" |
878 | groupadd ${opts} ${egroup} || die "enewgroup failed" |
|
|
879 | fi |
569 | export SANDBOX_ON="${oldsandbox}" |
880 | export SANDBOX_ON="${oldsandbox}" |
570 | } |
881 | } |
571 | |
882 | |
572 | # Simple script to replace 'dos2unix' binaries |
883 | # Simple script to replace 'dos2unix' binaries |
573 | # vapier@gentoo.org |
884 | # vapier@gentoo.org |
574 | # |
885 | # |
575 | # edos2unix(file, <more files>...) |
886 | # edos2unix(file, <more files> ...) |
576 | edos2unix() { |
887 | edos2unix() { |
577 | for f in $@ ; do |
888 | for f in "$@" |
578 | cp ${f} ${T}/ |
889 | do |
579 | sed 's/\r$//' ${T}/${f}.old > ${f} |
890 | cp "${f}" ${T}/edos2unix |
|
|
891 | sed 's/\r$//' ${T}/edos2unix > "${f}" |
580 | done |
892 | done |
581 | } |
893 | } |
|
|
894 | |
|
|
895 | |
|
|
896 | ############################################################## |
|
|
897 | # START: Handle .desktop files and menu entries # |
|
|
898 | # maybe this should be separated into a new eclass some time # |
|
|
899 | # lanius@gentoo.org # |
|
|
900 | ############################################################## |
|
|
901 | |
|
|
902 | # Make a desktop file ! |
|
|
903 | # Great for making those icons in kde/gnome startmenu ! |
|
|
904 | # Amaze your friends ! Get the women ! Join today ! |
|
|
905 | # |
|
|
906 | # make_desktop_entry(<binary>, [name], [icon], [type], [path]) |
|
|
907 | # |
|
|
908 | # binary: what binary does the app run with ? |
|
|
909 | # name: the name that will show up in the menu |
|
|
910 | # icon: give your little like a pretty little icon ... |
|
|
911 | # this can be relative (to /usr/share/pixmaps) or |
|
|
912 | # a full path to an icon |
|
|
913 | # type: what kind of application is this ? for categories: |
|
|
914 | # http://www.freedesktop.org/standards/menu-spec/ |
|
|
915 | # path: if your app needs to startup in a specific dir |
|
|
916 | make_desktop_entry() { |
|
|
917 | [ -z "$1" ] && eerror "make_desktop_entry: You must specify the executable" && return 1 |
|
|
918 | |
|
|
919 | local exec="${1}" |
|
|
920 | local name="${2:-${PN}}" |
|
|
921 | local icon="${3:-${PN}.png}" |
|
|
922 | local type="${4}" |
|
|
923 | local subdir="${6}" |
|
|
924 | local path="${5:-${GAMES_BINDIR}}" |
|
|
925 | if [ -z "${type}" ] |
|
|
926 | then |
|
|
927 | case ${CATEGORY} in |
|
|
928 | "app-emulation") |
|
|
929 | type=Emulator |
|
|
930 | subdir="Emulation" |
|
|
931 | ;; |
|
|
932 | "games-"*) |
|
|
933 | type=Game |
|
|
934 | subdir="Games" |
|
|
935 | ;; |
|
|
936 | "net-"*) |
|
|
937 | type=Network |
|
|
938 | subdir="${type}" |
|
|
939 | ;; |
|
|
940 | *) |
|
|
941 | type= |
|
|
942 | subdir= |
|
|
943 | ;; |
|
|
944 | esac |
|
|
945 | fi |
|
|
946 | local desktop="${T}/${exec}.desktop" |
|
|
947 | |
|
|
948 | echo "[Desktop Entry] |
|
|
949 | Encoding=UTF-8 |
|
|
950 | Version=0.9.2 |
|
|
951 | Name=${name} |
|
|
952 | Type=Application |
|
|
953 | Comment=${DESCRIPTION} |
|
|
954 | Exec=${exec} |
|
|
955 | Path=${path} |
|
|
956 | Icon=${icon} |
|
|
957 | Categories=Application;${type};" > "${desktop}" |
|
|
958 | |
|
|
959 | insinto /usr/share/applications |
|
|
960 | doins "${desktop}" |
|
|
961 | |
|
|
962 | return 0 |
|
|
963 | } |
|
|
964 | |
|
|
965 | # Make a GDM/KDM Session file |
|
|
966 | # |
|
|
967 | # make_desktop_entry(<title>, <command>) |
|
|
968 | # title: File to execute to start the Window Manager |
|
|
969 | # command: Name of the Window Manager |
|
|
970 | |
|
|
971 | make_session_desktop() { |
|
|
972 | |
|
|
973 | [ -z "$1" ] && eerror "make_session_desktop: You must specify the title" && return 1 |
|
|
974 | [ -z "$2" ] && eerror "make_session_desktop: You must specify the command" && return 1 |
|
|
975 | |
|
|
976 | local title="${1}" |
|
|
977 | local command="${2}" |
|
|
978 | local desktop="${T}/${wm}.desktop" |
|
|
979 | |
|
|
980 | echo "[Desktop Entry] |
|
|
981 | Encoding=UTF-8 |
|
|
982 | Name=${title} |
|
|
983 | Comment=This session logs you into ${title} |
|
|
984 | Exec=${command} |
|
|
985 | TryExec=${command} |
|
|
986 | Type=Application" > "${desktop}" |
|
|
987 | |
|
|
988 | insinto /usr/share/xsessions |
|
|
989 | doins "${desktop}" |
|
|
990 | |
|
|
991 | return 0 |
|
|
992 | } |
|
|
993 | |
|
|
994 | domenu() { |
|
|
995 | local i |
|
|
996 | local j |
|
|
997 | insinto /usr/share/applications |
|
|
998 | for i in ${@} |
|
|
999 | do |
|
|
1000 | if [ -f "${i}" ]; |
|
|
1001 | then |
|
|
1002 | doins ${i} |
|
|
1003 | elif [ -d "${i}" ]; |
|
|
1004 | then |
|
|
1005 | for j in ${i}/*.desktop |
|
|
1006 | do |
|
|
1007 | doins ${j} |
|
|
1008 | done |
|
|
1009 | fi |
|
|
1010 | done |
|
|
1011 | } |
|
|
1012 | |
|
|
1013 | doicon() { |
|
|
1014 | local i |
|
|
1015 | local j |
|
|
1016 | insinto /usr/share/pixmaps |
|
|
1017 | for i in ${@} |
|
|
1018 | do |
|
|
1019 | if [ -f "${i}" ]; |
|
|
1020 | then |
|
|
1021 | doins ${i} |
|
|
1022 | elif [ -d "${i}" ]; |
|
|
1023 | then |
|
|
1024 | for j in ${i}/*.png |
|
|
1025 | do |
|
|
1026 | doins ${j} |
|
|
1027 | done |
|
|
1028 | fi |
|
|
1029 | done |
|
|
1030 | } |
|
|
1031 | |
|
|
1032 | ############################################################## |
|
|
1033 | # END: Handle .desktop files and menu entries # |
|
|
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}" ] |
|
|
1041 | then |
|
|
1042 | src="${DISTDIR}/${A}" |
|
|
1043 | else |
|
|
1044 | if [ -e "${DISTDIR}/${src}" ] |
|
|
1045 | then |
|
|
1046 | src="${DISTDIR}/${src}" |
|
|
1047 | elif [ -e "${PWD}/${src}" ] |
|
|
1048 | then |
|
|
1049 | src="${PWD}/${src}" |
|
|
1050 | elif [ -e "${src}" ] |
|
|
1051 | then |
|
|
1052 | src="${src}" |
|
|
1053 | fi |
|
|
1054 | fi |
|
|
1055 | [ ! -e "${src}" ] && die "Could not find requested archive ${src}" |
|
|
1056 | echo "${src}" |
|
|
1057 | } |
|
|
1058 | |
|
|
1059 | # Unpack those pesky pdv generated files ... |
|
|
1060 | # They're self-unpacking programs with the binary package stuffed in |
|
|
1061 | # the middle of the archive. Valve seems to use it a lot ... too bad |
|
|
1062 | # it seems to like to segfault a lot :(. So lets take it apart ourselves. |
|
|
1063 | # |
|
|
1064 | # Usage: unpack_pdv [file to unpack] [size of off_t] |
|
|
1065 | # - you have to specify the off_t size ... i have no idea how to extract that |
|
|
1066 | # information out of the binary executable myself. basically you pass in |
|
|
1067 | # the size of the off_t type (in bytes) on the machine that built the pdv |
|
|
1068 | # archive. one way to determine this is by running the following commands: |
|
|
1069 | # strings <pdv archive> | grep lseek |
|
|
1070 | # strace -elseek <pdv archive> |
|
|
1071 | # basically look for the first lseek command (we do the strings/grep because |
|
|
1072 | # sometimes the function call is _llseek or something) and steal the 2nd |
|
|
1073 | # parameter. here is an example: |
|
|
1074 | # root@vapier 0 pdv_unpack # strings hldsupdatetool.bin | grep lseek |
|
|
1075 | # lseek |
|
|
1076 | # root@vapier 0 pdv_unpack # strace -elseek ./hldsupdatetool.bin |
|
|
1077 | # lseek(3, -4, SEEK_END) = 2981250 |
|
|
1078 | # thus we would pass in the value of '4' as the second parameter. |
|
|
1079 | unpack_pdv() { |
|
|
1080 | local src="`find_unpackable_file $1`" |
|
|
1081 | local sizeoff_t="$2" |
|
|
1082 | |
|
|
1083 | [ -z "${sizeoff_t}" ] && die "No idea what off_t size was used for this pdv :(" |
|
|
1084 | |
|
|
1085 | local shrtsrc="`basename ${src}`" |
|
|
1086 | echo ">>> Unpacking ${shrtsrc} to ${PWD}" |
|
|
1087 | local metaskip=`tail -c ${sizeoff_t} ${src} | hexdump -e \"%i\"` |
|
|
1088 | local tailskip=`tail -c $((${sizeoff_t}*2)) ${src} | head -c ${sizeoff_t} | hexdump -e \"%i\"` |
|
|
1089 | |
|
|
1090 | # grab metadata for debug reasons |
|
|
1091 | local metafile="$(emktemp)" |
|
|
1092 | tail -c +$((${metaskip}+1)) ${src} > ${metafile} |
|
|
1093 | |
|
|
1094 | # rip out the final file name from the metadata |
|
|
1095 | local datafile="`tail -c +$((${metaskip}+1)) ${src} | strings | head -n 1`" |
|
|
1096 | datafile="`basename ${datafile}`" |
|
|
1097 | |
|
|
1098 | # now lets uncompress/untar the file if need be |
|
|
1099 | local tmpfile="$(emktemp)" |
|
|
1100 | tail -c +$((${tailskip}+1)) ${src} 2>/dev/null | head -c 512 > ${tmpfile} |
|
|
1101 | |
|
|
1102 | local iscompressed="`file -b ${tmpfile}`" |
|
|
1103 | if [ "${iscompressed:0:8}" == "compress" ] ; then |
|
|
1104 | iscompressed=1 |
|
|
1105 | mv ${tmpfile}{,.Z} |
|
|
1106 | gunzip ${tmpfile} |
|
|
1107 | else |
|
|
1108 | iscompressed=0 |
|
|
1109 | fi |
|
|
1110 | local istar="`file -b ${tmpfile}`" |
|
|
1111 | if [ "${istar:0:9}" == "POSIX tar" ] ; then |
|
|
1112 | istar=1 |
|
|
1113 | else |
|
|
1114 | istar=0 |
|
|
1115 | fi |
|
|
1116 | |
|
|
1117 | #for some reason gzip dies with this ... dd cant provide buffer fast enough ? |
|
|
1118 | #dd if=${src} ibs=${metaskip} count=1 \ |
|
|
1119 | # | dd ibs=${tailskip} skip=1 \ |
|
|
1120 | # | gzip -dc \ |
|
|
1121 | # > ${datafile} |
|
|
1122 | if [ ${iscompressed} -eq 1 ] ; then |
|
|
1123 | if [ ${istar} -eq 1 ] ; then |
|
|
1124 | tail -c +$((${tailskip}+1)) ${src} 2>/dev/null \ |
|
|
1125 | | head -c $((${metaskip}-${tailskip})) \ |
|
|
1126 | | tar -xzf - |
|
|
1127 | else |
|
|
1128 | tail -c +$((${tailskip}+1)) ${src} 2>/dev/null \ |
|
|
1129 | | head -c $((${metaskip}-${tailskip})) \ |
|
|
1130 | | gzip -dc \ |
|
|
1131 | > ${datafile} |
|
|
1132 | fi |
|
|
1133 | else |
|
|
1134 | if [ ${istar} -eq 1 ] ; then |
|
|
1135 | tail -c +$((${tailskip}+1)) ${src} 2>/dev/null \ |
|
|
1136 | | head -c $((${metaskip}-${tailskip})) \ |
|
|
1137 | | tar --no-same-owner -xf - |
|
|
1138 | else |
|
|
1139 | tail -c +$((${tailskip}+1)) ${src} 2>/dev/null \ |
|
|
1140 | | head -c $((${metaskip}-${tailskip})) \ |
|
|
1141 | > ${datafile} |
|
|
1142 | fi |
|
|
1143 | fi |
|
|
1144 | true |
|
|
1145 | #[ -s "${datafile}" ] || die "failure unpacking pdv ('${metaskip}' '${tailskip}' '${datafile}')" |
|
|
1146 | #assert "failure unpacking pdv ('${metaskip}' '${tailskip}' '${datafile}')" |
|
|
1147 | } |
|
|
1148 | |
|
|
1149 | # Unpack those pesky makeself generated files ... |
|
|
1150 | # They're shell scripts with the binary package tagged onto |
|
|
1151 | # the end of the archive. Loki utilized the format as does |
|
|
1152 | # many other game companies. |
|
|
1153 | # |
|
|
1154 | # Usage: unpack_makeself [file to unpack] [offset] [tail|dd] |
|
|
1155 | # - If the file is not specified then unpack will utilize ${A}. |
|
|
1156 | # - If the offset is not specified then we will attempt to extract |
|
|
1157 | # the proper offset from the script itself. |
|
|
1158 | unpack_makeself() { |
|
|
1159 | local src="$(find_unpackable_file "$1")" |
|
|
1160 | local skip="$2" |
|
|
1161 | local exe="$3" |
|
|
1162 | |
|
|
1163 | local shrtsrc="$(basename "${src}")" |
|
|
1164 | echo ">>> Unpacking ${shrtsrc} to ${PWD}" |
|
|
1165 | if [ -z "${skip}" ] |
|
|
1166 | then |
|
|
1167 | local ver="`grep -a '#.*Makeself' ${src} | awk '{print $NF}'`" |
|
|
1168 | local skip=0 |
|
|
1169 | exe=tail |
|
|
1170 | case ${ver} in |
|
|
1171 | 1.5.*) # tested 1.5.{3,4,5} ... guessing 1.5.x series is same |
|
|
1172 | skip=$(grep -a ^skip= "${src}" | cut -d= -f2) |
|
|
1173 | ;; |
|
|
1174 | 2.0|2.0.1) |
|
|
1175 | skip=$(grep -a ^$'\t'tail "${src}" | awk '{print $2}' | cut -b2-) |
|
|
1176 | ;; |
|
|
1177 | 2.1.1) |
|
|
1178 | skip=$(grep -a ^offset= "${src}" | awk '{print $2}' | cut -b2-) |
|
|
1179 | let skip="skip + 1" |
|
|
1180 | ;; |
|
|
1181 | 2.1.2) |
|
|
1182 | skip=$(grep -a ^offset= "${src}" | awk '{print $3}' | head -n 1) |
|
|
1183 | let skip="skip + 1" |
|
|
1184 | ;; |
|
|
1185 | 2.1.3) |
|
|
1186 | skip=`grep -a ^offset= "${src}" | awk '{print $3}'` |
|
|
1187 | let skip="skip + 1" |
|
|
1188 | ;; |
|
|
1189 | 2.1.4) |
|
|
1190 | skip=$(grep -a offset=.*head.*wc "${src}" | awk '{print $3}' | head -n 1) |
|
|
1191 | skip=$(head -n ${skip} "${src}" | wc -c) |
|
|
1192 | exe="dd" |
|
|
1193 | ;; |
|
|
1194 | *) |
|
|
1195 | eerror "I'm sorry, but I was unable to support the Makeself file." |
|
|
1196 | eerror "The version I detected was '${ver}'." |
|
|
1197 | eerror "Please file a bug about the file ${shrtsrc} at" |
|
|
1198 | eerror "http://bugs.gentoo.org/ so that support can be added." |
|
|
1199 | die "makeself version '${ver}' not supported" |
|
|
1200 | ;; |
|
|
1201 | esac |
|
|
1202 | debug-print "Detected Makeself version ${ver} ... using ${skip} as offset" |
|
|
1203 | fi |
|
|
1204 | case ${exe} in |
|
|
1205 | tail) exe="tail -n +${skip} '${src}'";; |
|
|
1206 | dd) exe="dd ibs=${skip} skip=1 obs=1024 conv=sync if='${src}'";; |
|
|
1207 | *) die "makeself cant handle exe '${exe}'" |
|
|
1208 | esac |
|
|
1209 | |
|
|
1210 | # lets grab the first few bytes of the file to figure out what kind of archive it is |
|
|
1211 | local tmpfile="$(emktemp)" |
|
|
1212 | eval ${exe} 2>/dev/null | head -c 512 > "${tmpfile}" |
|
|
1213 | local filetype="$(file -b "${tmpfile}")" |
|
|
1214 | case ${filetype} in |
|
|
1215 | *tar\ archive) |
|
|
1216 | eval ${exe} | tar --no-same-owner -xf - |
|
|
1217 | ;; |
|
|
1218 | bzip2*) |
|
|
1219 | eval ${exe} | bzip2 -dc | tar --no-same-owner -xf - |
|
|
1220 | ;; |
|
|
1221 | gzip*) |
|
|
1222 | eval ${exe} | tar --no-same-owner -xzf - |
|
|
1223 | ;; |
|
|
1224 | compress*) |
|
|
1225 | eval ${exe} | gunzip | tar --no-same-owner -xf - |
|
|
1226 | ;; |
|
|
1227 | *) |
|
|
1228 | eerror "Unknown filetype \"${filetype}\" ?" |
|
|
1229 | false |
|
|
1230 | ;; |
|
|
1231 | esac |
|
|
1232 | assert "failure unpacking (${filetype}) makeself ${shrtsrc} ('${ver}' +${skip})" |
|
|
1233 | } |
|
|
1234 | |
|
|
1235 | # Display a license for user to accept. |
|
|
1236 | # |
|
|
1237 | # Usage: check_license [license] |
|
|
1238 | # - If the file is not specified then ${LICENSE} is used. |
|
|
1239 | check_license() { |
|
|
1240 | local lic=$1 |
|
|
1241 | if [ -z "${lic}" ] ; then |
|
|
1242 | lic="${PORTDIR}/licenses/${LICENSE}" |
|
|
1243 | else |
|
|
1244 | if [ -e "${PORTDIR}/licenses/${src}" ] ; then |
|
|
1245 | lic="${PORTDIR}/licenses/${src}" |
|
|
1246 | elif [ -e "${PWD}/${src}" ] ; then |
|
|
1247 | lic="${PWD}/${src}" |
|
|
1248 | elif [ -e "${src}" ] ; then |
|
|
1249 | lic="${src}" |
|
|
1250 | fi |
|
|
1251 | fi |
|
|
1252 | [ ! -f "${lic}" ] && die "Could not find requested license ${src}" |
|
|
1253 | local l="`basename ${lic}`" |
|
|
1254 | |
|
|
1255 | # here is where we check for the licenses the user already |
|
|
1256 | # accepted ... if we don't find a match, we make the user accept |
|
|
1257 | local shopts=$- |
|
|
1258 | local alic |
|
|
1259 | set -o noglob #so that bash doesn't expand "*" |
|
|
1260 | for alic in ${ACCEPT_LICENSE} ; do |
|
|
1261 | if [[ ${alic} == * || ${alic} == ${l} ]]; then |
|
|
1262 | set +o noglob; set -${shopts} #reset old shell opts |
|
|
1263 | return 0 |
|
|
1264 | fi |
|
|
1265 | done |
|
|
1266 | set +o noglob; set -$shopts #reset old shell opts |
|
|
1267 | |
|
|
1268 | local licmsg="$(emktemp)" |
|
|
1269 | cat << EOF > ${licmsg} |
|
|
1270 | ********************************************************** |
|
|
1271 | The following license outlines the terms of use of this |
|
|
1272 | package. You MUST accept this license for installation to |
|
|
1273 | continue. When you are done viewing, hit 'q'. If you |
|
|
1274 | CTRL+C out of this, the install will not run! |
|
|
1275 | ********************************************************** |
|
|
1276 | |
|
|
1277 | EOF |
|
|
1278 | cat ${lic} >> ${licmsg} |
|
|
1279 | ${PAGER:-less} ${licmsg} || die "Could not execute pager (${PAGER}) to accept ${lic}" |
|
|
1280 | einfon "Do you accept the terms of this license (${l})? [yes/no] " |
|
|
1281 | read alic |
|
|
1282 | case ${alic} in |
|
|
1283 | yes|Yes|y|Y) |
|
|
1284 | return 0 |
|
|
1285 | ;; |
|
|
1286 | *) |
|
|
1287 | echo;echo;echo |
|
|
1288 | eerror "You MUST accept the license to continue! Exiting!" |
|
|
1289 | die "Failed to accept license" |
|
|
1290 | ;; |
|
|
1291 | esac |
|
|
1292 | } |
|
|
1293 | |
|
|
1294 | # Aquire cd(s) for those lovely cd-based emerges. Yes, this violates |
|
|
1295 | # the whole 'non-interactive' policy, but damnit I want CD support ! |
|
|
1296 | # |
|
|
1297 | # with these cdrom functions we handle all the user interaction and |
|
|
1298 | # standardize everything. all you have to do is call cdrom_get_cds() |
|
|
1299 | # and when the function returns, you can assume that the cd has been |
|
|
1300 | # found at CDROM_ROOT. |
|
|
1301 | # |
|
|
1302 | # normally the cdrom functions will refer to the cds as 'cd #1', 'cd #2', |
|
|
1303 | # etc... if you want to give the cds better names, then just export |
|
|
1304 | # the CDROM_NAME_X variables before calling cdrom_get_cds(). |
|
|
1305 | # |
|
|
1306 | # for those multi cd ebuilds, see the cdrom_load_next_cd() below. |
|
|
1307 | # |
|
|
1308 | # Usage: cdrom_get_cds <file on cd1> [file on cd2] [file on cd3] [...] |
|
|
1309 | # - this will attempt to locate a cd based upon a file that is on |
|
|
1310 | # the cd ... the more files you give this function, the more cds |
|
|
1311 | # the cdrom functions will handle |
|
|
1312 | cdrom_get_cds() { |
|
|
1313 | # first we figure out how many cds we're dealing with by |
|
|
1314 | # the # of files they gave us |
|
|
1315 | local cdcnt=0 |
|
|
1316 | local f= |
|
|
1317 | for f in "$@" ; do |
|
|
1318 | cdcnt=$((cdcnt + 1)) |
|
|
1319 | export CDROM_CHECK_${cdcnt}="$f" |
|
|
1320 | done |
|
|
1321 | export CDROM_TOTAL_CDS=${cdcnt} |
|
|
1322 | export CDROM_CURRENT_CD=1 |
|
|
1323 | |
|
|
1324 | # now we see if the user gave use CD_ROOT ... |
|
|
1325 | # if they did, let's just believe them that it's correct |
|
|
1326 | if [[ ! -z ${CD_ROOT} ]] ; then |
|
|
1327 | export CDROM_ROOT=${CD_ROOT} |
|
|
1328 | einfo "Found CD #${CDROM_CURRENT_CD} root at ${CDROM_ROOT}" |
|
|
1329 | return |
|
|
1330 | fi |
|
|
1331 | # do the same for CD_ROOT_X |
|
|
1332 | if [[ ! -z ${CD_ROOT_1} ]] ; then |
|
|
1333 | local var= |
|
|
1334 | cdcnt=0 |
|
|
1335 | while [[ ${cdcnt} -lt ${CDROM_TOTAL_CDS} ]] ; do |
|
|
1336 | cdcnt=$((cdcnt + 1)) |
|
|
1337 | var="CD_ROOT_${cdcnt}" |
|
|
1338 | if [[ -z ${!var} ]] ; then |
|
|
1339 | eerror "You must either use just the CD_ROOT" |
|
|
1340 | eerror "or specify ALL the CD_ROOT_X variables." |
|
|
1341 | eerror "In this case, you will need ${CDROM_TOTAL_CDS} CD_ROOT_X variables." |
|
|
1342 | die "could not locate CD_ROOT_${cdcnt}" |
|
|
1343 | fi |
|
|
1344 | export CDROM_ROOTS_${cdcnt}="${!var}" |
|
|
1345 | done |
|
|
1346 | export CDROM_ROOT=${CDROM_ROOTS_1} |
|
|
1347 | einfo "Found CD #${CDROM_CURRENT_CD} root at ${CDROM_ROOT}" |
|
|
1348 | return |
|
|
1349 | fi |
|
|
1350 | |
|
|
1351 | if [[ ${CDROM_TOTAL_CDS} -eq 1 ]] ; then |
|
|
1352 | einfon "This ebuild will need the " |
|
|
1353 | if [[ -z ${CDROM_NAME} ]] ; then |
|
|
1354 | echo "cdrom for ${PN}." |
|
|
1355 | else |
|
|
1356 | echo "${CDROM_NAME}." |
|
|
1357 | fi |
|
|
1358 | echo |
|
|
1359 | einfo "If you do not have the CD, but have the data files" |
|
|
1360 | einfo "mounted somewhere on your filesystem, just export" |
|
|
1361 | einfo "the variable CD_ROOT so that it points to the" |
|
|
1362 | einfo "directory containing the files." |
|
|
1363 | echo |
|
|
1364 | einfo "For example:" |
|
|
1365 | einfo "export CD_ROOT=/mnt/cdrom" |
|
|
1366 | echo |
|
|
1367 | else |
|
|
1368 | einfo "This package will need access to ${CDROM_TOTAL_CDS} cds." |
|
|
1369 | cdcnt=0 |
|
|
1370 | while [[ ${cdcnt} -lt ${CDROM_TOTAL_CDS} ]] ; do |
|
|
1371 | cdcnt=$((cdcnt + 1)) |
|
|
1372 | var="CDROM_NAME_${cdcnt}" |
|
|
1373 | [[ ! -z ${!var} ]] && einfo " CD ${cdcnt}: ${!var}" |
|
|
1374 | done |
|
|
1375 | echo |
|
|
1376 | einfo "If you do not have the CDs, but have the data files" |
|
|
1377 | einfo "mounted somewhere on your filesystem, just export" |
|
|
1378 | einfo "the following variables so they point to the right place:" |
|
|
1379 | einfon "" |
|
|
1380 | cdcnt=0 |
|
|
1381 | while [[ ${cdcnt} -lt ${CDROM_TOTAL_CDS} ]] ; do |
|
|
1382 | cdcnt=$((cdcnt + 1)) |
|
|
1383 | echo -n " CD_ROOT_${cdcnt}" |
|
|
1384 | done |
|
|
1385 | echo |
|
|
1386 | einfo "Or, if you have all the files in the same place, or" |
|
|
1387 | einfo "you only have one cdrom, you can export CD_ROOT" |
|
|
1388 | einfo "and that place will be used as the same data source" |
|
|
1389 | einfo "for all the CDs." |
|
|
1390 | echo |
|
|
1391 | einfo "For example:" |
|
|
1392 | einfo "export CD_ROOT_1=/mnt/cdrom" |
|
|
1393 | echo |
|
|
1394 | fi |
|
|
1395 | export CDROM_CURRENT_CD=0 |
|
|
1396 | cdrom_load_next_cd |
|
|
1397 | } |
|
|
1398 | |
|
|
1399 | # this is only used when you need access to more than one cd. |
|
|
1400 | # when you have finished using the first cd, just call this function. |
|
|
1401 | # when it returns, CDROM_ROOT will be pointing to the second cd. |
|
|
1402 | # remember, you can only go forward in the cd chain, you can't go back. |
|
|
1403 | cdrom_load_next_cd() { |
|
|
1404 | export CDROM_CURRENT_CD=$((CDROM_CURRENT_CD + 1)) |
|
|
1405 | local var= |
|
|
1406 | |
|
|
1407 | if [[ ! -z ${CD_ROOT} ]] ; then |
|
|
1408 | einfo "Using same root as before for CD #${CDROM_CURRENT_CD}" |
|
|
1409 | return |
|
|
1410 | fi |
|
|
1411 | |
|
|
1412 | unset CDROM_ROOT |
|
|
1413 | var=CDROM_ROOTS_${CDROM_CURRENT_CD} |
|
|
1414 | if [[ -z ${!var} ]] ; then |
|
|
1415 | var="CDROM_CHECK_${CDROM_CURRENT_CD}" |
|
|
1416 | cdrom_locate_file_on_cd ${!var} |
|
|
1417 | else |
|
|
1418 | export CDROM_ROOT=${!var} |
|
|
1419 | fi |
|
|
1420 | |
|
|
1421 | einfo "Found CD #${CDROM_CURRENT_CD} root at ${CDROM_ROOT}" |
|
|
1422 | } |
|
|
1423 | |
|
|
1424 | # this is used internally by the cdrom_get_cds() and cdrom_load_next_cd() |
|
|
1425 | # functions. this should *never* be called from an ebuild. |
|
|
1426 | # all it does is try to locate a give file on a cd ... if the cd isn't |
|
|
1427 | # found, then a message asking for the user to insert the cdrom will be |
|
|
1428 | # displayed and we'll hang out here until: |
|
|
1429 | # (1) the file is found on a mounted cdrom |
|
|
1430 | # (2) the user hits CTRL+C |
|
|
1431 | cdrom_locate_file_on_cd() { |
|
|
1432 | while [[ -z ${CDROM_ROOT} ]] ; do |
|
|
1433 | local dir="$(dirname ${@})" |
|
|
1434 | local file="$(basename ${@})" |
|
|
1435 | local mline="" |
|
|
1436 | local showedmsg=0 |
|
|
1437 | |
|
|
1438 | for mline in $(mount | egrep -e '(iso|cdrom)' | awk '{print $3}') ; do |
|
|
1439 | [[ -d ${mline}/${dir} ]] || continue |
|
|
1440 | [[ ! -z $(find ${mline}/${dir} -iname ${file} -maxdepth 1) ]] \ |
|
|
1441 | && export CDROM_ROOT=${mline} |
|
|
1442 | done |
|
|
1443 | |
|
|
1444 | if [[ -z ${CDROM_ROOT} ]] ; then |
|
|
1445 | echo |
|
|
1446 | if [[ ${showedmsg} -eq 0 ]] ; then |
|
|
1447 | if [[ ${CDROM_TOTAL_CDS} -eq 1 ]] ; then |
|
|
1448 | if [[ -z ${CDROM_NAME} ]] ; then |
|
|
1449 | einfo "Please insert the cdrom for ${PN} now !" |
|
|
1450 | else |
|
|
1451 | einfo "Please insert the ${CDROM_NAME} cdrom now !" |
|
|
1452 | fi |
|
|
1453 | else |
|
|
1454 | if [[ -z ${CDROM_NAME_1} ]] ; then |
|
|
1455 | einfo "Please insert cd #${CDROM_CURRENT_CD} for ${PN} now !" |
|
|
1456 | else |
|
|
1457 | local var="CDROM_NAME_${CDROM_CURRENT_CD}" |
|
|
1458 | einfo "Please insert+mount the ${!var} cdrom now !" |
|
|
1459 | fi |
|
|
1460 | fi |
|
|
1461 | showedmsg=1 |
|
|
1462 | fi |
|
|
1463 | einfo "Press return to scan for the cd again" |
|
|
1464 | einfo "or hit CTRL+C to abort the emerge." |
|
|
1465 | read |
|
|
1466 | fi |
|
|
1467 | done |
|
|
1468 | } |
|
|
1469 | |
|
|
1470 | # Make sure that LINGUAS only contains languages that |
|
|
1471 | # a package can support |
|
|
1472 | # |
|
|
1473 | # usage: strip-linguas <allow LINGUAS> |
|
|
1474 | # strip-linguas -i <directories of .po files> |
|
|
1475 | # strip-linguas -u <directories of .po files> |
|
|
1476 | # |
|
|
1477 | # The first form allows you to specify a list of LINGUAS. |
|
|
1478 | # The -i builds a list of po files found in all the |
|
|
1479 | # directories and uses the intersection of the lists. |
|
|
1480 | # The -u builds a list of po files found in all the |
|
|
1481 | # directories and uses the union of the lists. |
|
|
1482 | strip-linguas() { |
|
|
1483 | local ls newls |
|
|
1484 | if [ "$1" == "-i" ] || [ "$1" == "-u" ] ; then |
|
|
1485 | local op="$1"; shift |
|
|
1486 | ls=" $(find "$1" -name '*.po' -printf '%f ') "; shift |
|
|
1487 | local d f |
|
|
1488 | for d in "$@" ; do |
|
|
1489 | if [ "${op}" == "-u" ] ; then |
|
|
1490 | newls="${ls}" |
|
|
1491 | else |
|
|
1492 | newls="" |
|
|
1493 | fi |
|
|
1494 | for f in $(find "$d" -name '*.po' -printf '%f ') ; do |
|
|
1495 | if [ "${op}" == "-i" ] ; then |
|
|
1496 | [ "${ls/ ${f} /}" != "${ls}" ] && newls="${newls} ${f}" |
|
|
1497 | else |
|
|
1498 | [ "${ls/ ${f} /}" == "${ls}" ] && newls="${newls} ${f}" |
|
|
1499 | fi |
|
|
1500 | done |
|
|
1501 | ls="${newls}" |
|
|
1502 | done |
|
|
1503 | ls="${ls//.po}" |
|
|
1504 | else |
|
|
1505 | ls="$@" |
|
|
1506 | fi |
|
|
1507 | |
|
|
1508 | ls=" ${ls} " |
|
|
1509 | newls="" |
|
|
1510 | for f in ${LINGUAS} ; do |
|
|
1511 | if [ "${ls/ ${f} /}" != "${ls}" ] ; then |
|
|
1512 | newls="${newls} ${f}" |
|
|
1513 | else |
|
|
1514 | ewarn "Sorry, but ${PN} does not support the ${f} LINGUA" |
|
|
1515 | fi |
|
|
1516 | done |
|
|
1517 | if [ -z "${newls}" ] ; then |
|
|
1518 | unset LINGUAS |
|
|
1519 | else |
|
|
1520 | export LINGUAS="${newls}" |
|
|
1521 | fi |
|
|
1522 | } |
|
|
1523 | |
|
|
1524 | # moved from kernel.eclass since they are generally useful outside of |
|
|
1525 | # kernel.eclass -iggy (20041002) |
|
|
1526 | |
|
|
1527 | # the following functions are useful in kernel module ebuilds, etc. |
|
|
1528 | # for an example see ivtv or drbd ebuilds |
|
|
1529 | |
|
|
1530 | # set's ARCH to match what the kernel expects |
|
|
1531 | set_arch_to_kernel() { |
|
|
1532 | i=10 |
|
|
1533 | while ((i--)) ; do |
|
|
1534 | ewarn "PLEASE UPDATE TO YOUR PACKAGE TO USE linux-info.eclass" |
|
|
1535 | done |
|
|
1536 | export EUTILS_ECLASS_PORTAGE_ARCH="${ARCH}" |
|
|
1537 | case ${ARCH} in |
|
|
1538 | x86) export ARCH="i386";; |
|
|
1539 | amd64) export ARCH="x86_64";; |
|
|
1540 | hppa) export ARCH="parisc";; |
|
|
1541 | mips) export ARCH="mips";; |
|
|
1542 | sparc) export ARCH="$(tc-arch-kernel)";; # Yeah this is ugly, but it's even WORSE if you don't do this. linux-info.eclass's set_arch_to_kernel is fixed, but won't get used over this one! |
|
|
1543 | *) export ARCH="${ARCH}";; |
|
|
1544 | esac |
|
|
1545 | } |
|
|
1546 | |
|
|
1547 | # set's ARCH back to what portage expects |
|
|
1548 | set_arch_to_portage() { |
|
|
1549 | i=10 |
|
|
1550 | while ((i--)) ; do |
|
|
1551 | ewarn "PLEASE UPDATE TO YOUR PACKAGE TO USE linux-info.eclass" |
|
|
1552 | done |
|
|
1553 | export ARCH="${EUTILS_ECLASS_PORTAGE_ARCH}" |
|
|
1554 | } |
|
|
1555 | |
|
|
1556 | # Jeremy Huddleston <eradicator@gentoo.org>: |
|
|
1557 | # preserve_old_lib /path/to/libblah.so.0 |
|
|
1558 | # preserve_old_lib_notify /path/to/libblah.so.0 |
|
|
1559 | # |
|
|
1560 | # These functions are useful when a lib in your package changes --soname. Such |
|
|
1561 | # an example might be from libogg.so.0 to libogg.so.1. Removing libogg.so.0 |
|
|
1562 | # would break packages that link against it. Most people get around this |
|
|
1563 | # by using the portage SLOT mechanism, but that is not always a relevant |
|
|
1564 | # solution, so instead you can add the following to your ebuilds: |
|
|
1565 | # |
|
|
1566 | # src_install() { |
|
|
1567 | # ... |
|
|
1568 | # preserve_old_lib /usr/$(get_libdir)/libogg.so.0 |
|
|
1569 | # ... |
|
|
1570 | # } |
|
|
1571 | # |
|
|
1572 | # pkg_postinst() { |
|
|
1573 | # ... |
|
|
1574 | # preserve_old_lib_notify /usr/$(get_libdir)/libogg.so.0 |
|
|
1575 | # ... |
|
|
1576 | # } |
|
|
1577 | |
|
|
1578 | preserve_old_lib() { |
|
|
1579 | LIB=$1 |
|
|
1580 | |
|
|
1581 | if [ -n "${LIB}" -a -f "${ROOT}${LIB}" ]; then |
|
|
1582 | SONAME=`basename ${LIB}` |
|
|
1583 | DIRNAME=`dirname ${LIB}` |
|
|
1584 | |
|
|
1585 | dodir ${DIRNAME} |
|
|
1586 | cp ${ROOT}${LIB} ${D}${DIRNAME} |
|
|
1587 | touch ${D}${LIB} |
|
|
1588 | fi |
|
|
1589 | } |
|
|
1590 | |
|
|
1591 | preserve_old_lib_notify() { |
|
|
1592 | LIB=$1 |
|
|
1593 | |
|
|
1594 | if [ -n "${LIB}" -a -f "${ROOT}${LIB}" ]; then |
|
|
1595 | SONAME=`basename ${LIB}` |
|
|
1596 | |
|
|
1597 | einfo "An old version of an installed library was detected on your system." |
|
|
1598 | einfo "In order to avoid breaking packages that link against is, this older version" |
|
|
1599 | einfo "is not being removed. In order to make full use of this newer version," |
|
|
1600 | einfo "you will need to execute the following command:" |
|
|
1601 | einfo " revdep-rebuild --soname ${SONAME}" |
|
|
1602 | einfo |
|
|
1603 | einfo "After doing that, you can safely remove ${LIB}" |
|
|
1604 | einfo "Note: 'emerge gentoolkit' to get revdep-rebuild" |
|
|
1605 | fi |
|
|
1606 | } |
|
|
1607 | |
|
|
1608 | # Hack for people to figure out if a package was built with |
|
|
1609 | # certain USE flags |
|
|
1610 | # |
|
|
1611 | # Usage: built_with_use [-a|-o] <DEPEND ATOM> <List of USE flags> |
|
|
1612 | # ex: built_with_use xchat gtk2 |
|
|
1613 | # |
|
|
1614 | # Flags: -a all USE flags should be utilized |
|
|
1615 | # -o at least one USE flag should be utilized |
|
|
1616 | # Note: the default flag is '-a' |
|
|
1617 | built_with_use() { |
|
|
1618 | local opt=$1 |
|
|
1619 | [[ ${opt:0:1} = "-" ]] && shift || opt="-a" |
|
|
1620 | |
|
|
1621 | local PKG=$(best_version $1) |
|
|
1622 | shift |
|
|
1623 | |
|
|
1624 | local USEFILE="${ROOT}/var/db/pkg/${PKG}/USE" |
|
|
1625 | [[ ! -e ${USEFILE} ]] && return 1 |
|
|
1626 | |
|
|
1627 | local USE_BUILT=$(<${USEFILE}) |
|
|
1628 | while [[ $# -gt 0 ]] ; do |
|
|
1629 | if [[ ${opt} = "-o" ]] ; then |
|
|
1630 | has $1 ${USE_BUILT} && return 0 |
|
|
1631 | else |
|
|
1632 | has $1 ${USE_BUILT} || return 1 |
|
|
1633 | fi |
|
|
1634 | shift |
|
|
1635 | done |
|
|
1636 | [[ ${opt} = "-a" ]] |
|
|
1637 | } |
|
|
1638 | |
|
|
1639 | # Many configure scripts wrongly bail when a C++ compiler |
|
|
1640 | # could not be detected. #73450 |
|
|
1641 | epunt_cxx() { |
|
|
1642 | local dir=$1 |
|
|
1643 | [[ -z ${dir} ]] && dir=${S} |
|
|
1644 | ebegin "Removing useless C++ checks" |
|
|
1645 | local f |
|
|
1646 | for f in $(find ${dir} -name configure) ; do |
|
|
1647 | patch -p0 "${f}" "${PORTDIR}/eclass/ELT-patches/nocxx/nocxx.patch" > /dev/null |
|
|
1648 | done |
|
|
1649 | eend 0 |
|
|
1650 | } |
|
|
1651 | |
|
|
1652 | # dopamd [ file ] [ new file ] |
|
|
1653 | # |
|
|
1654 | # Install pam auth config file in /etc/pam.d |
|
|
1655 | # |
|
|
1656 | # The first argument, 'file' is required. Install as 'new file', if |
|
|
1657 | # specified. |
|
|
1658 | |
|
|
1659 | dopamd() { |
|
|
1660 | local pamd="$1" newpamd="${2:-$1}" |
|
|
1661 | [[ -z "$1" ]] && die "dopamd requires at least one argument." |
|
|
1662 | |
|
|
1663 | use pam || return 0 |
|
|
1664 | |
|
|
1665 | insinto /etc/pam.d |
|
|
1666 | # these are the default doins options, but be explicit just in case |
|
|
1667 | insopts -m 0644 -o root -g root |
|
|
1668 | newins ${pamd} ${newpamd} || die "failed to install ${newpamd}" |
|
|
1669 | } |