1 | # Copyright 1999-2002 Gentoo Technologies, Inc. |
1 | # Copyright 1999-2003 Gentoo Technologies, Inc. |
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.32 2003/06/10 17:30:21 danarmak Exp $ |
|
|
4 | # |
3 | # Author: Martin Schlemmer <azarah@gentoo.org> |
5 | # Author: Martin Schlemmer <azarah@gentoo.org> |
4 | # $Header: /var/cvsroot/gentoo-x86/eclass/eutils.eclass,v 1.12 2002/12/14 21:46:25 azarah Exp $ |
6 | # |
5 | # This eclass is for general purpose functions that most ebuilds |
7 | # This eclass is for general purpose functions that most ebuilds |
6 | # have to implement themselves. |
8 | # have to implement themselves. |
7 | # |
9 | # |
8 | # NB: If you add anything, please comment it! |
10 | # NB: If you add anything, please comment it! |
9 | |
11 | |
10 | ECLASS=eutils |
12 | ECLASS=eutils |
11 | INHERITED="$INHERITED $ECLASS" |
13 | INHERITED="$INHERITED $ECLASS" |
12 | |
14 | |
13 | newdepend "!bootstrap? ( sys-devel/patch )" |
15 | DEPEND="$DEPEND !bootstrap? ( sys-devel/patch )" |
14 | |
16 | |
15 | DESCRIPTION="Based on the ${ECLASS} eclass" |
17 | DESCRIPTION="Based on the ${ECLASS} eclass" |
16 | |
18 | |
17 | # This function generate linker scripts in /usr/lib for dynamic |
19 | # This function generate linker scripts in /usr/lib for dynamic |
18 | # libs in /lib. This is to fix linking problems when you have |
20 | # libs in /lib. This is to fix linking problems when you have |
… | |
… | |
34 | # |
36 | # |
35 | gen_usr_ldscript() { |
37 | gen_usr_ldscript() { |
36 | |
38 | |
37 | # Just make sure it exists |
39 | # Just make sure it exists |
38 | dodir /usr/lib |
40 | dodir /usr/lib |
39 | |
41 | |
40 | cat > ${D}/usr/lib/$1 <<"END_LDSCRIPT" |
42 | cat > ${D}/usr/lib/$1 <<"END_LDSCRIPT" |
41 | /* GNU ld script |
43 | /* GNU ld script |
42 | Because Gentoo have critical dynamic libraries |
44 | Because Gentoo have critical dynamic libraries |
43 | in /lib, and the static versions in /usr/lib, we |
45 | in /lib, and the static versions in /usr/lib, we |
44 | need to have a "fake" dynamic lib in /usr/lib, |
46 | need to have a "fake" dynamic lib in /usr/lib, |
… | |
… | |
68 | return 0 |
70 | return 0 |
69 | fi |
71 | fi |
70 | |
72 | |
71 | # Get the length of $* |
73 | # Get the length of $* |
72 | str_length="$(echo -n "$*" | wc -m)" |
74 | str_length="$(echo -n "$*" | wc -m)" |
73 | |
75 | |
74 | while [ "$i" -lt "${str_length}" ] |
76 | while [ "$i" -lt "${str_length}" ] |
75 | do |
77 | do |
76 | echo -n "=" |
78 | echo -n "=" |
77 | |
79 | |
78 | i=$((i + 1)) |
80 | i=$((i + 1)) |
79 | done |
81 | done |
80 | |
82 | |
81 | echo |
83 | echo |
82 | |
84 | |
… | |
… | |
92 | # List of patches not to apply. Not this is only file names, |
94 | # List of patches not to apply. Not this is only file names, |
93 | # and not the full path .. |
95 | # and not the full path .. |
94 | EPATCH_EXCLUDE="" |
96 | EPATCH_EXCLUDE="" |
95 | # Change the printed message for a single patch. |
97 | # Change the printed message for a single patch. |
96 | EPATCH_SINGLE_MSG="" |
98 | EPATCH_SINGLE_MSG="" |
|
|
99 | # Force applying bulk patches even if not following the style: |
|
|
100 | # |
|
|
101 | # ??_${ARCH}_foo.${EPATCH_SUFFIX} |
|
|
102 | # |
|
|
103 | EPATCH_FORCE="no" |
97 | |
104 | |
98 | # This function is for bulk patching, or in theory for just one |
105 | # This function is for bulk patching, or in theory for just one |
99 | # or two patches. |
106 | # or two patches. |
100 | # |
107 | # |
101 | # It should work with .bz2, .gz, .zip and plain text patches. |
108 | # It should work with .bz2, .gz, .zip and plain text patches. |
… | |
… | |
143 | fi |
150 | fi |
144 | |
151 | |
145 | if [ -n "$1" -a -f "$1" ] |
152 | if [ -n "$1" -a -f "$1" ] |
146 | then |
153 | then |
147 | SINGLE_PATCH="yes" |
154 | SINGLE_PATCH="yes" |
148 | |
155 | |
149 | local EPATCH_SOURCE="$1" |
156 | local EPATCH_SOURCE="$1" |
150 | local EPATCH_SUFFIX="${1##*\.}" |
157 | local EPATCH_SUFFIX="${1##*\.}" |
151 | |
158 | |
152 | elif [ -n "$1" -a -d "$1" ] |
159 | elif [ -n "$1" -a -d "$1" ] |
153 | then |
160 | then |
|
|
161 | # Allow no extension if EPATCH_FORCE=yes ... used by vim for example ... |
|
|
162 | if [ "${EPATCH_FORCE}" = "yes" ] && [ -z "${EPATCH_SUFFIX}" ] |
|
|
163 | then |
|
|
164 | local EPATCH_SOURCE="$1/*" |
|
|
165 | else |
154 | local EPATCH_SOURCE="$1/*.${EPATCH_SUFFIX}" |
166 | local EPATCH_SOURCE="$1/*.${EPATCH_SUFFIX}" |
|
|
167 | fi |
155 | else |
168 | else |
156 | if [ ! -d ${EPATCH_SOURCE} ] |
169 | if [ ! -d ${EPATCH_SOURCE} ] |
157 | then |
170 | then |
|
|
171 | if [ -n "$1" -a "${EPATCH_SOURCE}" = "${WORKDIR}/patch" ] |
|
|
172 | then |
|
|
173 | EPATCH_SOURCE="$1" |
|
|
174 | fi |
|
|
175 | |
158 | echo |
176 | echo |
159 | eerror "Cannot find \$EPATCH_SOURCE! Value for \$EPATCH_SOURCE is:" |
177 | eerror "Cannot find \$EPATCH_SOURCE! Value for \$EPATCH_SOURCE is:" |
160 | eerror |
178 | eerror |
161 | eerror " ${EPATCH_SOURCE}" |
179 | eerror " ${EPATCH_SOURCE}" |
162 | echo |
180 | echo |
163 | die "Cannot find \$EPATCH_SOURCE!" |
181 | die "Cannot find \$EPATCH_SOURCE!" |
164 | fi |
182 | fi |
165 | |
183 | |
166 | local EPATCH_SOURCE="${EPATCH_SOURCE}/*.${EPATCH_SUFFIX}" |
184 | local EPATCH_SOURCE="${EPATCH_SOURCE}/*.${EPATCH_SUFFIX}" |
167 | fi |
185 | fi |
168 | |
186 | |
169 | case ${EPATCH_SUFFIX##*\.} in |
187 | case ${EPATCH_SUFFIX##*\.} in |
170 | bz2) |
188 | bz2) |
… | |
… | |
194 | # New ARCH dependant patch naming scheme... |
212 | # New ARCH dependant patch naming scheme... |
195 | # |
213 | # |
196 | # ???_arch_foo.patch |
214 | # ???_arch_foo.patch |
197 | # |
215 | # |
198 | if [ -f ${x} ] && \ |
216 | if [ -f ${x} ] && \ |
199 | [ "${SINGLE_PATCH}" = "yes" -o "${x/_all_}" != "${x}" -o "`eval echo \$\{x/_${ARCH}_\}`" != "${x}" ] |
217 | ([ "${SINGLE_PATCH}" = "yes" -o "${x/_all_}" != "${x}" -o "`eval echo \$\{x/_${ARCH}_\}`" != "${x}" ] || \ |
|
|
218 | [ "${EPATCH_FORCE}" = "yes" ]) |
200 | then |
219 | then |
201 | local count=0 |
220 | local count=0 |
202 | local popts="${EPATCH_OPTS}" |
221 | local popts="${EPATCH_OPTS}" |
203 | |
222 | |
204 | if [ -n "${EPATCH_EXCLUDE}" ] |
223 | if [ -n "${EPATCH_EXCLUDE}" ] |
… | |
… | |
206 | if [ "`eval echo \$\{EPATCH_EXCLUDE/${x##*/}\}`" != "${EPATCH_EXCLUDE}" ] |
225 | if [ "`eval echo \$\{EPATCH_EXCLUDE/${x##*/}\}`" != "${EPATCH_EXCLUDE}" ] |
207 | then |
226 | then |
208 | continue |
227 | continue |
209 | fi |
228 | fi |
210 | fi |
229 | fi |
211 | |
230 | |
212 | if [ "${SINGLE_PATCH}" = "yes" ] |
231 | if [ "${SINGLE_PATCH}" = "yes" ] |
213 | then |
232 | then |
214 | if [ -n "${EPATCH_SINGLE_MSG}" ] |
233 | if [ -n "${EPATCH_SINGLE_MSG}" ] |
215 | then |
234 | then |
216 | einfo "${EPATCH_SINGLE_MSG}" |
235 | einfo "${EPATCH_SINGLE_MSG}" |
… | |
… | |
236 | echo -n "PIPE_COMMAND: " >> ${STDERR_TARGET%/*}/${x##*/}-${STDERR_TARGET##*/} |
255 | echo -n "PIPE_COMMAND: " >> ${STDERR_TARGET%/*}/${x##*/}-${STDERR_TARGET##*/} |
237 | echo "${PIPE_CMD} ${x} > ${PATCH_TARGET}" >> ${STDERR_TARGET%/*}/${x##*/}-${STDERR_TARGET##*/} |
256 | echo "${PIPE_CMD} ${x} > ${PATCH_TARGET}" >> ${STDERR_TARGET%/*}/${x##*/}-${STDERR_TARGET##*/} |
238 | else |
257 | else |
239 | PATCH_TARGET="${x}" |
258 | PATCH_TARGET="${x}" |
240 | fi |
259 | fi |
241 | |
260 | |
242 | echo -n "PATCH COMMAND: " >> ${STDERR_TARGET%/*}/${x##*/}-${STDERR_TARGET##*/} |
261 | echo -n "PATCH COMMAND: " >> ${STDERR_TARGET%/*}/${x##*/}-${STDERR_TARGET##*/} |
243 | echo "patch ${popts} -p${count} < ${PATCH_TARGET}" >> ${STDERR_TARGET%/*}/${x##*/}-${STDERR_TARGET##*/} |
262 | echo "patch ${popts} -p${count} < ${PATCH_TARGET}" >> ${STDERR_TARGET%/*}/${x##*/}-${STDERR_TARGET##*/} |
244 | |
263 | |
245 | echo >> ${STDERR_TARGET%/*}/${x##*/}-${STDERR_TARGET##*/} |
264 | echo >> ${STDERR_TARGET%/*}/${x##*/}-${STDERR_TARGET##*/} |
246 | draw_line "***** ${x##*/} *****" >> ${STDERR_TARGET%/*}/${x##*/}-${STDERR_TARGET##*/} |
265 | draw_line "***** ${x##*/} *****" >> ${STDERR_TARGET%/*}/${x##*/}-${STDERR_TARGET##*/} |
247 | |
266 | |
248 | if [ "${PATCH_SUFFIX}" != "patch" ] |
267 | if [ "${PATCH_SUFFIX}" != "patch" ] |
249 | then |
268 | then |
… | |
… | |
254 | #die "Could not extract patch!" |
273 | #die "Could not extract patch!" |
255 | count=5 |
274 | count=5 |
256 | break |
275 | break |
257 | fi |
276 | fi |
258 | fi |
277 | fi |
259 | |
278 | |
260 | if patch ${popts} --dry-run -f -p${count} < ${PATCH_TARGET} >> ${STDERR_TARGET%/*}/${x##*/}-${STDERR_TARGET##*/} 2>&1 |
279 | if (cat ${PATCH_TARGET} | patch ${popts} --dry-run -f -p${count}) >> ${STDERR_TARGET%/*}/${x##*/}-${STDERR_TARGET##*/} 2>&1 |
261 | then |
280 | then |
262 | draw_line "***** ${x##*/} *****" > ${STDERR_TARGET%/*}/${x##*/}-${STDERR_TARGET##*/}.real |
281 | draw_line "***** ${x##*/} *****" > ${STDERR_TARGET%/*}/${x##*/}-${STDERR_TARGET##*/}.real |
263 | echo >> ${STDERR_TARGET%/*}/${x##*/}-${STDERR_TARGET##*/}.real |
282 | echo >> ${STDERR_TARGET%/*}/${x##*/}-${STDERR_TARGET##*/}.real |
264 | echo "ACTUALLY APPLYING ${x##*/}..." >> ${STDERR_TARGET%/*}/${x##*/}-${STDERR_TARGET##*/}.real |
283 | echo "ACTUALLY APPLYING ${x##*/}..." >> ${STDERR_TARGET%/*}/${x##*/}-${STDERR_TARGET##*/}.real |
265 | echo >> ${STDERR_TARGET%/*}/${x##*/}-${STDERR_TARGET##*/}.real |
284 | echo >> ${STDERR_TARGET%/*}/${x##*/}-${STDERR_TARGET##*/}.real |
266 | draw_line "***** ${x##*/} *****" >> ${STDERR_TARGET%/*}/${x##*/}-${STDERR_TARGET##*/}.real |
285 | draw_line "***** ${x##*/} *****" >> ${STDERR_TARGET%/*}/${x##*/}-${STDERR_TARGET##*/}.real |
267 | |
286 | |
268 | patch ${popts} -p${count} < ${PATCH_TARGET} >> ${STDERR_TARGET%/*}/${x##*/}-${STDERR_TARGET##*/}.real 2>&1 |
287 | cat ${PATCH_TARGET} | patch ${popts} -p${count} >> ${STDERR_TARGET%/*}/${x##*/}-${STDERR_TARGET##*/}.real 2>&1 |
269 | |
288 | |
270 | if [ "$?" -ne 0 ] |
289 | if [ "$?" -ne 0 ] |
271 | then |
290 | then |
272 | cat ${STDERR_TARGET%/*}/${x##*/}-${STDERR_TARGET##*/}.real >> ${STDERR_TARGET%/*}/${x##*/}-${STDERR_TARGET##*/} |
291 | cat ${STDERR_TARGET%/*}/${x##*/}-${STDERR_TARGET##*/}.real >> ${STDERR_TARGET%/*}/${x##*/}-${STDERR_TARGET##*/} |
273 | echo |
292 | echo |
… | |
… | |
276 | #die "Real world sux compared to the dreamworld!" |
295 | #die "Real world sux compared to the dreamworld!" |
277 | count=5 |
296 | count=5 |
278 | fi |
297 | fi |
279 | |
298 | |
280 | rm -f ${STDERR_TARGET%/*}/${x##*/}-${STDERR_TARGET##*/}.real |
299 | rm -f ${STDERR_TARGET%/*}/${x##*/}-${STDERR_TARGET##*/}.real |
281 | |
300 | |
282 | break |
301 | break |
283 | fi |
302 | fi |
284 | |
303 | |
285 | count=$((count + 1)) |
304 | count=$((count + 1)) |
286 | done |
305 | done |
… | |
… | |
311 | then |
330 | then |
312 | einfo "Done with patching" |
331 | einfo "Done with patching" |
313 | fi |
332 | fi |
314 | } |
333 | } |
315 | |
334 | |
|
|
335 | # This function return true if we are using the NPTL pthreads |
|
|
336 | # implementation. |
|
|
337 | # |
|
|
338 | # <azarah@gentoo.org> (06 March 2003) |
|
|
339 | # |
|
|
340 | |
|
|
341 | have_NPTL() { |
|
|
342 | |
|
|
343 | cat > ${T}/test-nptl.c <<-"END" |
|
|
344 | #define _XOPEN_SOURCE |
|
|
345 | #include <unistd.h> |
|
|
346 | #include <stdio.h> |
|
|
347 | |
|
|
348 | int main() |
|
|
349 | { |
|
|
350 | char buf[255]; |
|
|
351 | char *str = buf; |
|
|
352 | |
|
|
353 | confstr(_CS_GNU_LIBPTHREAD_VERSION, str, 255); |
|
|
354 | if (NULL != str) { |
|
|
355 | printf("%s\n", str); |
|
|
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 |
|
|
373 | return 1 |
|
|
374 | fi |
|
|
375 | else |
|
|
376 | echo "no" |
|
|
377 | fi |
|
|
378 | |
|
|
379 | return 1 |
|
|
380 | } |
|
|
381 | |
316 | # This function check how many cpu's are present, and then set |
382 | # This function check how many cpu's are present, and then set |
317 | # -j in MAKEOPTS accordingly. |
383 | # -j in MAKEOPTS accordingly. |
318 | # |
384 | # |
319 | # Thanks to nall <nall@gentoo.org> for this. |
385 | # Thanks to nall <nall@gentoo.org> for this. |
320 | # |
386 | # |
321 | get_number_of_jobs() { |
387 | get_number_of_jobs() { |
|
|
388 | local jobs=0 |
|
|
389 | |
322 | if [ ! -r /proc/cpuinfo ] |
390 | if [ ! -r /proc/cpuinfo ] |
323 | then |
391 | then |
324 | return 1 |
392 | return 1 |
325 | fi |
393 | fi |
326 | |
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 | |
327 | export MAKEOPTS="`echo ${MAKEOPTS} | sed -e 's:-j[0-9]*::g'`" |
403 | export MAKEOPTS="`echo ${MAKEOPTS} | sed -e 's:-j *[0-9]*::g'`" |
328 | |
404 | |
329 | if [ "${ARCH}" = "x86" ] |
405 | if [ "${ARCH}" = "x86" -o "${ARCH}" = "hppa" -o \ |
|
|
406 | "${ARCH}" = "arm" -o "${ARCH}" = "mips" ] |
330 | then |
407 | then |
331 | # x86 always has "processor" |
408 | # these archs will always have "[Pp]rocessor" |
332 | export MAKEOPTS="${MAKEOPTS} -j$((`grep -c ^processor /proc/cpuinfo` * 2))" |
409 | jobs="$((`grep -c ^[Pp]rocessor /proc/cpuinfo` * 2))" |
333 | |
410 | |
334 | elif [ "${ARCH}" = "sparc" -o "${ARCH}" = "sparc64" ] |
411 | elif [ "${ARCH}" = "sparc" -o "${ARCH}" = "sparc64" ] |
335 | then |
412 | then |
336 | # sparc always has "ncpus active" |
413 | # sparc always has "ncpus active" |
337 | export MAKEOPTS="${MAKEOPTS} -j$((`grep "^ncpus active" /proc/cpuinfo | sed -e "s/^.*: //"` * 2))" |
414 | jobs="$((`grep "^ncpus active" /proc/cpuinfo | sed -e "s/^.*: //"` * 2))" |
338 | |
415 | |
339 | elif [ "${ARCH}" = "alpha" ] |
416 | elif [ "${ARCH}" = "alpha" ] |
340 | then |
417 | then |
341 | # alpha has "cpus active", but only when compiled with SMP |
418 | # alpha has "cpus active", but only when compiled with SMP |
342 | if [ "`grep -c "^cpus active" /proc/cpuinfo`" = "1" ] |
419 | if [ "`grep -c "^cpus active" /proc/cpuinfo`" -eq 1 ] |
343 | then |
420 | then |
344 | export MAKEOPTS="${MAKEOPTS} -j$((`grep "^cpus active" /proc/cpuinfo | sed -e "s/^.*: //"` * 2))" |
421 | jobs="$((`grep "^cpus active" /proc/cpuinfo | sed -e "s/^.*: //"` * 2))" |
345 | else |
422 | else |
346 | export MAKEOPTS="${MAKEOPTS} -j2" |
423 | jobs=2 |
347 | fi |
424 | fi |
348 | |
425 | |
349 | elif [ "${ARCH}" = "ppc" ] |
426 | elif [ "${ARCH}" = "ppc" ] |
350 | then |
427 | then |
351 | # ppc has "processor", but only when compiled with SMP |
428 | # ppc has "processor", but only when compiled with SMP |
352 | if [ "`grep -c "^processor" /proc/cpuinfo`" = "1" ] |
429 | if [ "`grep -c "^processor" /proc/cpuinfo`" -eq 1 ] |
353 | then |
430 | then |
354 | export MAKEOPTS="${MAKEOPTS} -j$((`grep -c ^processor /proc/cpuinfo` * 2))" |
431 | jobs="$((`grep -c ^processor /proc/cpuinfo` * 2))" |
355 | else |
432 | else |
356 | export MAKEOPTS="${MAKEOPTS} -j2" |
433 | jobs=2 |
357 | fi |
434 | fi |
358 | else |
435 | else |
359 | export MAKEOPTS="${MAKEOPTS} -j$((`grep -c ^cpu /proc/cpuinfo` * 2))" |
436 | jobs="$((`grep -c ^cpu /proc/cpuinfo` * 2))" |
360 | die "Unknown ARCH -- ${ARCH}!" |
437 | die "Unknown ARCH -- ${ARCH}!" |
361 | fi |
438 | fi |
362 | } |
|
|
363 | |
439 | |
|
|
440 | # Make sure the number is valid ... |
|
|
441 | if [ "${jobs}" -lt 1 ] |
|
|
442 | then |
|
|
443 | jobs=1 |
|
|
444 | fi |
|
|
445 | |
|
|
446 | if [ -n "${ADMINPARAM}" ] |
|
|
447 | then |
|
|
448 | if [ "${jobs}" -gt "${ADMINPARAM}" ] |
|
|
449 | then |
|
|
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 | } |
|
|
458 | |
|
|
459 | # Simplify/standardize adding users to the system |
|
|
460 | # vapier@gentoo.org |
|
|
461 | # |
|
|
462 | # enewuser(username, uid, shell, homedir, groups, extra options) |
|
|
463 | # |
|
|
464 | # Default values if you do not specify any: |
|
|
465 | # username: REQUIRED ! |
|
|
466 | # uid: next available (see useradd(8)) |
|
|
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() { |
|
|
473 | # get the username |
|
|
474 | local euser="$1"; shift |
|
|
475 | if [ -z "${euser}" ] ; then |
|
|
476 | eerror "No username specified !" |
|
|
477 | die "Cannot call enewuser without a username" |
|
|
478 | fi |
|
|
479 | einfo "Adding user '${euser}' to your system ..." |
|
|
480 | |
|
|
481 | # setup a file for testing usernames/groups |
|
|
482 | local tmpfile="`mktemp -p ${T}`" |
|
|
483 | touch ${tmpfile} |
|
|
484 | chown ${euser} ${tmpfile} >& /dev/null |
|
|
485 | local realuser="`ls -l ${tmpfile} | awk '{print $3}'`" |
|
|
486 | |
|
|
487 | # see if user already exists |
|
|
488 | if [ "${euser}" == "${realuser}" ] ; then |
|
|
489 | einfo "${euser} already exists on your system :)" |
|
|
490 | return 0 |
|
|
491 | fi |
|
|
492 | |
|
|
493 | # options to pass to useradd |
|
|
494 | local opts="" |
|
|
495 | |
|
|
496 | # handle uid |
|
|
497 | local euid="$1"; shift |
|
|
498 | if [ ! -z "${euid}" ] && [ "${euid}" != "-1" ] ; then |
|
|
499 | if [ ${euid} -gt 0 ] ; then |
|
|
500 | opts="${opts} -u ${euid}" |
|
|
501 | else |
|
|
502 | eerror "Userid given but is not greater than 0 !" |
|
|
503 | die "${euid} is not a valid UID" |
|
|
504 | fi |
|
|
505 | else |
|
|
506 | euid="next available" |
|
|
507 | fi |
|
|
508 | einfo " - Userid: ${euid}" |
|
|
509 | |
|
|
510 | # handle shell |
|
|
511 | local eshell="$1"; shift |
|
|
512 | if [ ! -z "${eshell}" ] ; then |
|
|
513 | if [ ! -e ${eshell} ] ; then |
|
|
514 | eerror "A shell was specified but it does not exist !" |
|
|
515 | die "${eshell} does not exist" |
|
|
516 | fi |
|
|
517 | else |
|
|
518 | eshell=/bin/false |
|
|
519 | fi |
|
|
520 | einfo " - Shell: ${eshell}" |
|
|
521 | opts="${opts} -s ${eshell}" |
|
|
522 | |
|
|
523 | # handle homedir |
|
|
524 | local ehome="$1"; shift |
|
|
525 | if [ -z "${ehome}" ] ; then |
|
|
526 | ehome=/dev/null |
|
|
527 | fi |
|
|
528 | einfo " - Home: ${ehome}" |
|
|
529 | opts="${opts} -d ${ehome}" |
|
|
530 | |
|
|
531 | # handle groups |
|
|
532 | local egroups="$1"; shift |
|
|
533 | if [ ! -z "${egroups}" ] ; then |
|
|
534 | local realgroup |
|
|
535 | local oldifs="${IFS}" |
|
|
536 | export IFS="," |
|
|
537 | for g in ${egroups} ; do |
|
|
538 | chgrp ${g} ${tmpfile} >& /dev/null |
|
|
539 | realgroup="`ls -l ${tmpfile} | awk '{print $4}'`" |
|
|
540 | if [ "${g}" != "${realgroup}" ] ; then |
|
|
541 | eerror "You must add ${g} to the system first" |
|
|
542 | die "${g} is not a valid GID" |
|
|
543 | fi |
|
|
544 | done |
|
|
545 | export IFS="${oldifs}" |
|
|
546 | opts="${opts} -g ${egroups}" |
|
|
547 | else |
|
|
548 | egroups="(none)" |
|
|
549 | fi |
|
|
550 | einfo " - Groups: ${egroups}" |
|
|
551 | |
|
|
552 | # handle extra and add the user |
|
|
553 | local eextra="$@" |
|
|
554 | local oldsandbox="${oldsandbox}" |
|
|
555 | export SANDBOX_ON="0" |
|
|
556 | if [ -z "${eextra}" ] ; then |
|
|
557 | useradd ${opts} ${euser} \ |
|
|
558 | -c "added by portage for ${PN}" \ |
|
|
559 | || die "enewuser failed" |
|
|
560 | else |
|
|
561 | einfo " - Extra: ${eextra}" |
|
|
562 | useradd ${opts} ${euser} ${eextra} \ |
|
|
563 | || die "enewuser failed" |
|
|
564 | fi |
|
|
565 | export SANDBOX_ON="${oldsandbox}" |
|
|
566 | |
|
|
567 | if [ ! -e ${ehome} ] && [ ! -e ${D}/${ehome} ] ; then |
|
|
568 | einfo " - Creating ${ehome} in ${D}" |
|
|
569 | dodir ${ehome} |
|
|
570 | fperms ${euser} ${ehome} |
|
|
571 | fi |
|
|
572 | } |
|
|
573 | |
|
|
574 | # Simplify/standardize adding groups to the system |
|
|
575 | # vapier@gentoo.org |
|
|
576 | # |
|
|
577 | # enewgroup(group, gid) |
|
|
578 | # |
|
|
579 | # Default values if you do not specify any: |
|
|
580 | # groupname: REQUIRED ! |
|
|
581 | # gid: next available (see groupadd(8)) |
|
|
582 | # extra: none |
|
|
583 | enewgroup() { |
|
|
584 | # get the group |
|
|
585 | local egroup="$1"; shift |
|
|
586 | if [ -z "${egroup}" ] ; then |
|
|
587 | eerror "No group specified !" |
|
|
588 | die "Cannot call enewgroup without a group" |
|
|
589 | fi |
|
|
590 | einfo "Adding group '${egroup}' to your system ..." |
|
|
591 | |
|
|
592 | # setup a file for testing groupname |
|
|
593 | local tmpfile="`mktemp -p ${T}`" |
|
|
594 | touch ${tmpfile} |
|
|
595 | chgrp ${egroup} ${tmpfile} >& /dev/null |
|
|
596 | local realgroup="`ls -l ${tmpfile} | awk '{print $4}'`" |
|
|
597 | |
|
|
598 | # see if group already exists |
|
|
599 | if [ "${egroup}" == "${realgroup}" ] ; then |
|
|
600 | einfo "${egroup} already exists on your system :)" |
|
|
601 | return 0 |
|
|
602 | fi |
|
|
603 | |
|
|
604 | # options to pass to useradd |
|
|
605 | local opts="" |
|
|
606 | |
|
|
607 | # handle gid |
|
|
608 | local egid="$1"; shift |
|
|
609 | if [ ! -z "${egid}" ] ; then |
|
|
610 | if [ ${egid} -gt 0 ] ; then |
|
|
611 | opts="${opts} -g ${egid}" |
|
|
612 | else |
|
|
613 | eerror "Groupid given but is not greater than 0 !" |
|
|
614 | die "${egid} is not a valid GID" |
|
|
615 | fi |
|
|
616 | else |
|
|
617 | egid="next available" |
|
|
618 | fi |
|
|
619 | einfo " - Groupid: ${egid}" |
|
|
620 | |
|
|
621 | # handle extra |
|
|
622 | local eextra="$@" |
|
|
623 | opts="${opts} ${eextra}" |
|
|
624 | |
|
|
625 | # add the group |
|
|
626 | local oldsandbox="${oldsandbox}" |
|
|
627 | export SANDBOX_ON="0" |
|
|
628 | groupadd ${opts} ${egroup} || die "enewgroup failed" |
|
|
629 | export SANDBOX_ON="${oldsandbox}" |
|
|
630 | } |
|
|
631 | |
|
|
632 | # Simple script to replace 'dos2unix' binaries |
|
|
633 | # vapier@gentoo.org |
|
|
634 | # |
|
|
635 | # edos2unix(file, <more files>...) |
|
|
636 | edos2unix() { |
|
|
637 | for f in $@ ; do |
|
|
638 | cp ${f} ${T}/edos2unix |
|
|
639 | rm -f ${f} |
|
|
640 | sed 's/\r$//' ${T}/edos2unix > ${f} |
|
|
641 | rm -f ${T}/edos2unix |
|
|
642 | done |
|
|
643 | } |
|
|
644 | |
|
|
645 | # new convinience patch wapper function to eventually replace epatch(), $PATCHES, $PATCHES1, src_unpack:patch, src_unpack:autopatch and /usr/bin/patch |
|
|
646 | # Features: |
|
|
647 | # - bulk patch handling similar to epatch()'s |
|
|
648 | # - automatic patch level detection like epatch()'s |
|
|
649 | # - semiautomatic patch uncompression like epatch()'s (may switch to using /usr/bin/file for extra power, instead of just looking at the filename) |
|
|
650 | # - doesn't have the --dry-run overhead of epatch() - inspects patchfiles manually instead |
|
|
651 | # - is called from base_src_unpack to handle $PATCHES to avoid defining src_unpack(-) just to use xpatch |
|
|
652 | |
|
|
653 | # accepts zero or more parameters specifying patchfiles and/or patchdirs |
|
|
654 | |
|
|
655 | # known issues: |
|
|
656 | # - only supports unified style patches (does anyone _really_ use anything else?) |
|
|
657 | # - first file addressed in a patch can't have spaces in its name or in the path mentioned in the patchfile |
|
|
658 | # (can be easily fixed to be: at least one file addressed in the patch must have no spaces...) |
|
|
659 | xpatch() { |
|
|
660 | |
|
|
661 | debug-print-function $FUNCNAME $* |
|
|
662 | |
|
|
663 | local list="" |
|
|
664 | local list2="" |
|
|
665 | declare -i plevel |
|
|
666 | |
|
|
667 | # parse patch sources |
|
|
668 | for x in $*; do |
|
|
669 | debug-print "$FUNCNAME: parsing parameter $x" |
|
|
670 | if [ -f "$x" ]; then |
|
|
671 | list="$list $x" |
|
|
672 | elif [ -d "$x" ]; then |
|
|
673 | # handles patchdirs like epatch() for now: no recursion. |
|
|
674 | # patches are sorted by filename, so with an xy_foo naming scheme you'll get the right order. |
|
|
675 | # only patches with _$ARCH_ or _all_ in their filenames are applied. |
|
|
676 | for file in `ls -A $x`; do |
|
|
677 | debug-print "$FUNCNAME: parsing in subdir: file $file" |
|
|
678 | if [ -f "$x/$file" ] && [ "${file}" != "${file/_all_}" -o "${file}" != "${file/_$ARCH_}" ]; then |
|
|
679 | list2="$list2 $x/$file" |
|
|
680 | fi |
|
|
681 | done |
|
|
682 | list="`echo $list2 | sort` $list" |
|
|
683 | else |
|
|
684 | die "Couldn't find $x" |
|
|
685 | fi |
|
|
686 | done |
|
|
687 | |
|
|
688 | debug-print "$FUNCNAME: final list of patches: $list" |
|
|
689 | |
|
|
690 | for x in $list; do |
|
|
691 | debug-print "$FUNCNAME: processing $x" |
|
|
692 | # deal with compressed files. /usr/bin/file is in the system profile, or should be. |
|
|
693 | case "`/usr/bin/file -b $x`" in |
|
|
694 | *gzip*) patchfile="${T}/current.patch"; ungzip -c "$x" > "${patchfile}";; |
|
|
695 | *bzip2*) patchfile="${T}/current.patch"; bunzip2 -c "$x" > "${patchfile}";; |
|
|
696 | *text*) patchfile="$x";; |
|
|
697 | *) die "Could not determine filetype of patch $x";; |
|
|
698 | esac |
|
|
699 | debug-print "$FUNCNAME: patchfile=$patchfile" |
|
|
700 | |
|
|
701 | # determine patchlevel. supports p0 and higher with either $S or $WORKDIR as base. |
|
|
702 | target="`/bin/grep '+++' $patchfile | /usr/bin/tail -1`" |
|
|
703 | debug-print "$FUNCNAME: raw target=$target" |
|
|
704 | # strip target down to the path/filename. NOTE doesn't support filenames/paths with spaces in them :-( |
|
|
705 | # remove leading +++ |
|
|
706 | target="${target/+++ }" |
|
|
707 | # ugly, yes. i dunno why doesn't this work instead: target=${target%% *} |
|
|
708 | for foo in $target; do target="$foo"; break; done |
|
|
709 | # duplicate slashes are discarded by patch wrt the patchlevel. therefore we need to discard them as well |
|
|
710 | # to calculate the correct patchlevel. |
|
|
711 | while [ "$target" != "${target/\/\/}" ]; do |
|
|
712 | target="${target/\/\//\/}" |
|
|
713 | done |
|
|
714 | debug-print "$FUNCNAME: stripped target=$target" |
|
|
715 | |
|
|
716 | # look for target |
|
|
717 | for basedir in "$S" "$WORKDIR" "`pwd`"; do |
|
|
718 | debug-print "$FUNCNAME: looking in basedir=$basedir" |
|
|
719 | cd "$basedir" |
|
|
720 | |
|
|
721 | # try stripping leading directories |
|
|
722 | target2="$target" |
|
|
723 | plevel=0 |
|
|
724 | debug-print "$FUNCNAME: trying target2=$target2, plevel=$plevel" |
|
|
725 | while [ ! -f "$target2" ]; do |
|
|
726 | target2="${target2#*/}" # removes piece of target2 upto the first occurence of / |
|
|
727 | plevel=plevel+1 |
|
|
728 | debug-print "$FUNCNAME: trying target2=$target2, plevel=$plevel" |
|
|
729 | [ "$target2" == "${target2/\/}" ] && break |
|
|
730 | done |
|
|
731 | test -f "$target2" && break |
|
|
732 | |
|
|
733 | # try stripping filename - needed to support patches creating new files |
|
|
734 | target2="${target%/*}" |
|
|
735 | plevel=0 |
|
|
736 | debug-print "$FUNCNAME: trying target2=$target2, plevel=$plevel" |
|
|
737 | while [ ! -d "$target2" ]; do |
|
|
738 | target2="${target2#*/}" # removes piece of target2 upto the first occurence of / |
|
|
739 | plevel=plevel+1 |
|
|
740 | debug-print "$FUNCNAME: trying target2=$target2, plevel=$plevel" |
|
|
741 | [ "$target2" == "${target2/\/}" ] && break |
|
|
742 | done |
|
|
743 | test -d "$target2" && break |
|
|
744 | |
|
|
745 | done |
|
|
746 | |
|
|
747 | test -f "${basedir}/${target2}" || test -d "${basedir}/${target2}" || die "Could not determine patchlevel for $x" |
|
|
748 | debug-print "$FUNCNAME: determined plevel=$plevel" |
|
|
749 | # do the patching |
|
|
750 | ebegin "Applying patch ${x##*/}..." |
|
|
751 | /usr/bin/patch -p$plevel < "$patchfile" > /dev/null || die "Failed to apply patch $x" |
|
|
752 | eend $? |
|
|
753 | |
|
|
754 | done |
|
|
755 | |
|
|
756 | } |