| 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.23 2003/03/01 03:38:40 vapier Exp $ |
3 | # $Header: /var/cvsroot/gentoo-x86/eclass/eutils.eclass,v 1.106 2004/09/21 17:34:33 wolf31o2 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. |
| … | |
… | |
| 10 | # NB: If you add anything, please comment it! |
10 | # NB: If you add anything, please comment it! |
| 11 | |
11 | |
| 12 | ECLASS=eutils |
12 | ECLASS=eutils |
| 13 | INHERITED="$INHERITED $ECLASS" |
13 | INHERITED="$INHERITED $ECLASS" |
| 14 | |
14 | |
| 15 | newdepend "!bootstrap? ( sys-devel/patch )" |
15 | DEPEND="!bootstrap? ( sys-devel/patch )" |
| 16 | |
16 | |
| 17 | DESCRIPTION="Based on the ${ECLASS} eclass" |
17 | DESCRIPTION="Based on the ${ECLASS} eclass" |
|
|
18 | |
|
|
19 | # Wait for the supplied number of seconds. If no argument is supplied, defaults |
|
|
20 | # to five seconds. If the EPAUSE_IGNORE env var is set, don't wait. If we're not |
|
|
21 | # outputting to a terminal, don't wait. For compatability purposes, the argument |
|
|
22 | # must be an integer greater than zero. |
|
|
23 | # Bug 62950, Ciaran McCreesh <ciaranm@gentoo.org> (05 Sep 2004) |
|
|
24 | epause() { |
|
|
25 | if [ -z "$EPAUSE_IGNORE" ] && [ -t 1 ] ; then |
|
|
26 | sleep ${1:-5} |
|
|
27 | fi |
|
|
28 | } |
|
|
29 | |
|
|
30 | # Beep the specified number of times (defaults to five). If our output |
|
|
31 | # is not a terminal, don't beep. If the EBEEP_IGNORE env var is set, |
|
|
32 | # don't beep. |
|
|
33 | # Bug 62950, Ciaran McCreesh <ciaranm@gentoo.org> (05 Sep 2004) |
|
|
34 | ebeep() { |
|
|
35 | local n |
|
|
36 | if [ -z "$EBEEP_IGNORE" ] && [ -t 1 ] ; then |
|
|
37 | for ((n=1 ; n <= ${1:-5} ; n++)) ; do |
|
|
38 | echo -ne "\a" |
|
|
39 | sleep 0.1 &>/dev/null ; sleep 0,1 &>/dev/null |
|
|
40 | echo -ne "\a" |
|
|
41 | sleep 1 |
|
|
42 | done |
|
|
43 | fi |
|
|
44 | } |
|
|
45 | |
|
|
46 | # This function simply returns the desired lib directory. With portage |
|
|
47 | # 2.0.51, we now have support for installing libraries to lib32/lib64 |
|
|
48 | # to accomidate the needs of multilib systems. It's no longer a good idea |
|
|
49 | # to assume all libraries will end up in lib. Replace any (sane) instances |
|
|
50 | # where lib is named directly with $(get_libdir) if possible. |
|
|
51 | # |
|
|
52 | # Travis Tilley <lv@gentoo.org> (24 Aug 2004) |
|
|
53 | get_libdir() { |
|
|
54 | LIBDIR_TEST=$(type econf) |
|
|
55 | if [ ! -z "${CONF_LIBDIR_OVERRIDE}" ] ; then |
|
|
56 | # if there is an override, we want to use that... always. |
|
|
57 | CONF_LIBDIR="${CONF_LIBDIR_OVERRIDE}" |
|
|
58 | # We don't need to know the verison of portage. We only need to know |
|
|
59 | # if there is support for CONF_LIBDIR in econf and co. |
|
|
60 | # Danny van Dyk <kugelfang@gentoo.org> 2004/17/09 |
|
|
61 | #elif portageq has_version / '<sys-apps/portage-2.0.51_pre20' ; then |
|
|
62 | # # and if there isnt an override, and we're using a version of |
|
|
63 | # # portage without CONF_LIBDIR support, force the use of lib. dolib |
|
|
64 | # # and friends from portage 2.0.50 wont be too happy otherwise. |
|
|
65 | # CONF_LIBDIR="lib" |
|
|
66 | #fi |
|
|
67 | elif [ "${LIBDIR_TEST/CONF_LIBDIR}" == "${LIBDIR_TEST}" ]; then # we don't have CONF_LIBDIR support |
|
|
68 | # will be <portage-2.0.51_pre20 |
|
|
69 | CONF_LIBDIR="lib" |
|
|
70 | fi |
|
|
71 | # and of course, default to lib if CONF_LIBDIR isnt set |
|
|
72 | echo ${CONF_LIBDIR:=lib} |
|
|
73 | unset LIBDIR_TEST |
|
|
74 | } |
|
|
75 | |
|
|
76 | |
|
|
77 | get_multilibdir() { |
|
|
78 | echo ${CONF_MULTILIBDIR:=lib32} |
|
|
79 | } |
|
|
80 | |
|
|
81 | |
|
|
82 | # Sometimes you need to override the value returned by get_libdir. A good |
|
|
83 | # example of this is xorg-x11, where lib32 isnt a supported configuration, |
|
|
84 | # and where lib64 -must- be used on amd64 (for applications that need lib |
|
|
85 | # to be 32bit, such as adobe acrobat). Note that this override also bypasses |
|
|
86 | # portage version sanity checking. |
|
|
87 | # get_libdir_override expects one argument, the result get_libdir should |
|
|
88 | # return: |
|
|
89 | # |
|
|
90 | # get_libdir_override lib64 |
|
|
91 | # |
|
|
92 | # Travis Tilley <lv@gentoo.org> (31 Aug 2004) |
|
|
93 | get_libdir_override() { |
|
|
94 | CONF_LIBDIR="$1" |
|
|
95 | CONF_LIBDIR_OVERRIDE="$1" |
|
|
96 | } |
| 18 | |
97 | |
| 19 | # This function generate linker scripts in /usr/lib for dynamic |
98 | # This function generate linker scripts in /usr/lib for dynamic |
| 20 | # libs in /lib. This is to fix linking problems when you have |
99 | # 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 |
100 | # 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 |
101 | # in some cases when linking dynamic, the .a in /usr/lib is used |
| … | |
… | |
| 33 | # to point to the latest version of the library present. |
112 | # to point to the latest version of the library present. |
| 34 | # |
113 | # |
| 35 | # <azarah@gentoo.org> (26 Oct 2002) |
114 | # <azarah@gentoo.org> (26 Oct 2002) |
| 36 | # |
115 | # |
| 37 | gen_usr_ldscript() { |
116 | gen_usr_ldscript() { |
| 38 | |
|
|
| 39 | # Just make sure it exists |
117 | # Just make sure it exists |
| 40 | dodir /usr/lib |
118 | dodir /usr/$(get_libdir) |
| 41 | |
119 | |
| 42 | cat > ${D}/usr/lib/$1 <<"END_LDSCRIPT" |
120 | cat > "${D}/usr/$(get_libdir)/$1" << END_LDSCRIPT |
| 43 | /* GNU ld script |
121 | /* GNU ld script |
| 44 | Because Gentoo have critical dynamic libraries |
122 | Because Gentoo have critical dynamic libraries |
| 45 | in /lib, and the static versions in /usr/lib, we |
123 | in /lib, and the static versions in /usr/lib, we |
| 46 | need to have a "fake" dynamic lib in /usr/lib, |
124 | need to have a "fake" dynamic lib in /usr/lib, |
| 47 | otherwise we run into linking problems. |
125 | otherwise we run into linking problems. |
| 48 | See bug #4411 on http://bugs.gentoo.org/ for |
126 | See bug #4411 on http://bugs.gentoo.org/ for |
| 49 | more info. */ |
127 | more info. */ |
| 50 | GROUP ( /lib/libxxx ) |
128 | GROUP ( /$(get_libdir)/$1 ) |
| 51 | END_LDSCRIPT |
129 | END_LDSCRIPT |
| 52 | |
|
|
| 53 | dosed "s:libxxx:$1:" /usr/lib/$1 |
|
|
| 54 | |
|
|
| 55 | return 0 |
|
|
| 56 | } |
130 | } |
| 57 | |
131 | |
| 58 | # Simple function to draw a line consisting of '=' the same length as $* |
132 | # Simple function to draw a line consisting of '=' the same length as $* |
| 59 | # |
133 | # |
| 60 | # <azarah@gentoo.org> (11 Nov 2002) |
134 | # <azarah@gentoo.org> (11 Nov 2002) |
| … | |
… | |
| 70 | return 0 |
144 | return 0 |
| 71 | fi |
145 | fi |
| 72 | |
146 | |
| 73 | # Get the length of $* |
147 | # Get the length of $* |
| 74 | str_length="$(echo -n "$*" | wc -m)" |
148 | str_length="$(echo -n "$*" | wc -m)" |
| 75 | |
149 | |
| 76 | while [ "$i" -lt "${str_length}" ] |
150 | while [ "$i" -lt "${str_length}" ] |
| 77 | do |
151 | do |
| 78 | echo -n "=" |
152 | echo -n "=" |
| 79 | |
153 | |
| 80 | i=$((i + 1)) |
154 | i=$((i + 1)) |
| 81 | done |
155 | done |
| 82 | |
156 | |
| 83 | echo |
157 | echo |
| 84 | |
158 | |
| … | |
… | |
| 88 | # Default directory where patches are located |
162 | # Default directory where patches are located |
| 89 | EPATCH_SOURCE="${WORKDIR}/patch" |
163 | EPATCH_SOURCE="${WORKDIR}/patch" |
| 90 | # Default extension for patches |
164 | # Default extension for patches |
| 91 | EPATCH_SUFFIX="patch.bz2" |
165 | EPATCH_SUFFIX="patch.bz2" |
| 92 | # Default options for patch |
166 | # Default options for patch |
|
|
167 | # Set -g0 to keep RCS, ClearCase, Perforce and SCCS happy. Bug #24571 |
| 93 | EPATCH_OPTS="" |
168 | EPATCH_OPTS="-g0" |
| 94 | # List of patches not to apply. Not this is only file names, |
169 | # List of patches not to apply. Not this is only file names, |
| 95 | # and not the full path .. |
170 | # and not the full path .. |
| 96 | EPATCH_EXCLUDE="" |
171 | EPATCH_EXCLUDE="" |
| 97 | # Change the printed message for a single patch. |
172 | # Change the printed message for a single patch. |
| 98 | EPATCH_SINGLE_MSG="" |
173 | EPATCH_SINGLE_MSG="" |
|
|
174 | # Force applying bulk patches even if not following the style: |
|
|
175 | # |
|
|
176 | # ??_${ARCH}_foo.${EPATCH_SUFFIX} |
|
|
177 | # |
|
|
178 | EPATCH_FORCE="no" |
| 99 | |
179 | |
| 100 | # This function is for bulk patching, or in theory for just one |
180 | # This function is for bulk patching, or in theory for just one |
| 101 | # or two patches. |
181 | # or two patches. |
| 102 | # |
182 | # |
| 103 | # It should work with .bz2, .gz, .zip and plain text patches. |
183 | # It should work with .bz2, .gz, .zip and plain text patches. |
| … | |
… | |
| 138 | local SINGLE_PATCH="no" |
218 | local SINGLE_PATCH="no" |
| 139 | local x="" |
219 | local x="" |
| 140 | |
220 | |
| 141 | if [ "$#" -gt 1 ] |
221 | if [ "$#" -gt 1 ] |
| 142 | then |
222 | then |
| 143 | eerror "Invalid arguments to epatch()" |
223 | local m="" |
| 144 | die "Invalid arguments to epatch()" |
224 | einfo "${#} patches to apply..." |
|
|
225 | for m in "$@" ; do |
|
|
226 | epatch "${m}" |
|
|
227 | done |
|
|
228 | return 0 |
| 145 | fi |
229 | fi |
| 146 | |
230 | |
| 147 | if [ -n "$1" -a -f "$1" ] |
231 | if [ -n "$1" -a -f "$1" ] |
| 148 | then |
232 | then |
| 149 | SINGLE_PATCH="yes" |
233 | SINGLE_PATCH="yes" |
| 150 | |
234 | |
| 151 | local EPATCH_SOURCE="$1" |
235 | local EPATCH_SOURCE="$1" |
| 152 | local EPATCH_SUFFIX="${1##*\.}" |
236 | local EPATCH_SUFFIX="${1##*\.}" |
| 153 | |
237 | |
| 154 | elif [ -n "$1" -a -d "$1" ] |
238 | elif [ -n "$1" -a -d "$1" ] |
| 155 | then |
239 | then |
|
|
240 | # Allow no extension if EPATCH_FORCE=yes ... used by vim for example ... |
|
|
241 | if [ "${EPATCH_FORCE}" = "yes" ] && [ -z "${EPATCH_SUFFIX}" ] |
|
|
242 | then |
|
|
243 | local EPATCH_SOURCE="$1/*" |
|
|
244 | else |
| 156 | local EPATCH_SOURCE="$1/*.${EPATCH_SUFFIX}" |
245 | local EPATCH_SOURCE="$1/*.${EPATCH_SUFFIX}" |
|
|
246 | fi |
| 157 | else |
247 | else |
| 158 | if [ ! -d ${EPATCH_SOURCE} ] |
248 | if [ ! -d ${EPATCH_SOURCE} ] |
| 159 | then |
249 | then |
| 160 | if [ -n "$1" -a "${EPATCH_SOURCE}" = "${WORKDIR}/patch" ] |
250 | if [ -n "$1" -a "${EPATCH_SOURCE}" = "${WORKDIR}/patch" ] |
| 161 | then |
251 | then |
| … | |
… | |
| 167 | eerror |
257 | eerror |
| 168 | eerror " ${EPATCH_SOURCE}" |
258 | eerror " ${EPATCH_SOURCE}" |
| 169 | echo |
259 | echo |
| 170 | die "Cannot find \$EPATCH_SOURCE!" |
260 | die "Cannot find \$EPATCH_SOURCE!" |
| 171 | fi |
261 | fi |
| 172 | |
262 | |
| 173 | local EPATCH_SOURCE="${EPATCH_SOURCE}/*.${EPATCH_SUFFIX}" |
263 | local EPATCH_SOURCE="${EPATCH_SOURCE}/*.${EPATCH_SUFFIX}" |
| 174 | fi |
264 | fi |
| 175 | |
265 | |
| 176 | case ${EPATCH_SUFFIX##*\.} in |
266 | case ${EPATCH_SUFFIX##*\.} in |
| 177 | bz2) |
267 | bz2) |
| … | |
… | |
| 201 | # New ARCH dependant patch naming scheme... |
291 | # New ARCH dependant patch naming scheme... |
| 202 | # |
292 | # |
| 203 | # ???_arch_foo.patch |
293 | # ???_arch_foo.patch |
| 204 | # |
294 | # |
| 205 | if [ -f ${x} ] && \ |
295 | if [ -f ${x} ] && \ |
| 206 | [ "${SINGLE_PATCH}" = "yes" -o "${x/_all_}" != "${x}" -o "`eval echo \$\{x/_${ARCH}_\}`" != "${x}" ] |
296 | ([ "${SINGLE_PATCH}" = "yes" -o "${x/_all_}" != "${x}" -o "`eval echo \$\{x/_${ARCH}_\}`" != "${x}" ] || \ |
|
|
297 | [ "${EPATCH_FORCE}" = "yes" ]) |
| 207 | then |
298 | then |
| 208 | local count=0 |
299 | local count=0 |
| 209 | local popts="${EPATCH_OPTS}" |
300 | local popts="${EPATCH_OPTS}" |
| 210 | |
301 | |
| 211 | if [ -n "${EPATCH_EXCLUDE}" ] |
302 | if [ -n "${EPATCH_EXCLUDE}" ] |
| … | |
… | |
| 213 | if [ "`eval echo \$\{EPATCH_EXCLUDE/${x##*/}\}`" != "${EPATCH_EXCLUDE}" ] |
304 | if [ "`eval echo \$\{EPATCH_EXCLUDE/${x##*/}\}`" != "${EPATCH_EXCLUDE}" ] |
| 214 | then |
305 | then |
| 215 | continue |
306 | continue |
| 216 | fi |
307 | fi |
| 217 | fi |
308 | fi |
| 218 | |
309 | |
| 219 | if [ "${SINGLE_PATCH}" = "yes" ] |
310 | if [ "${SINGLE_PATCH}" = "yes" ] |
| 220 | then |
311 | then |
| 221 | if [ -n "${EPATCH_SINGLE_MSG}" ] |
312 | if [ -n "${EPATCH_SINGLE_MSG}" ] |
| 222 | then |
313 | then |
| 223 | einfo "${EPATCH_SINGLE_MSG}" |
314 | einfo "${EPATCH_SINGLE_MSG}" |
| … | |
… | |
| 243 | echo -n "PIPE_COMMAND: " >> ${STDERR_TARGET%/*}/${x##*/}-${STDERR_TARGET##*/} |
334 | echo -n "PIPE_COMMAND: " >> ${STDERR_TARGET%/*}/${x##*/}-${STDERR_TARGET##*/} |
| 244 | echo "${PIPE_CMD} ${x} > ${PATCH_TARGET}" >> ${STDERR_TARGET%/*}/${x##*/}-${STDERR_TARGET##*/} |
335 | echo "${PIPE_CMD} ${x} > ${PATCH_TARGET}" >> ${STDERR_TARGET%/*}/${x##*/}-${STDERR_TARGET##*/} |
| 245 | else |
336 | else |
| 246 | PATCH_TARGET="${x}" |
337 | PATCH_TARGET="${x}" |
| 247 | fi |
338 | fi |
| 248 | |
339 | |
| 249 | echo -n "PATCH COMMAND: " >> ${STDERR_TARGET%/*}/${x##*/}-${STDERR_TARGET##*/} |
340 | echo -n "PATCH COMMAND: " >> ${STDERR_TARGET%/*}/${x##*/}-${STDERR_TARGET##*/} |
| 250 | echo "patch ${popts} -p${count} < ${PATCH_TARGET}" >> ${STDERR_TARGET%/*}/${x##*/}-${STDERR_TARGET##*/} |
341 | echo "patch -p${count} ${popts} < ${PATCH_TARGET}" >> ${STDERR_TARGET%/*}/${x##*/}-${STDERR_TARGET##*/} |
| 251 | |
342 | |
| 252 | echo >> ${STDERR_TARGET%/*}/${x##*/}-${STDERR_TARGET##*/} |
343 | echo >> ${STDERR_TARGET%/*}/${x##*/}-${STDERR_TARGET##*/} |
| 253 | draw_line "***** ${x##*/} *****" >> ${STDERR_TARGET%/*}/${x##*/}-${STDERR_TARGET##*/} |
344 | draw_line "***** ${x##*/} *****" >> ${STDERR_TARGET%/*}/${x##*/}-${STDERR_TARGET##*/} |
| 254 | |
345 | |
| 255 | if [ "${PATCH_SUFFIX}" != "patch" ] |
346 | if [ "${PATCH_SUFFIX}" != "patch" ] |
| 256 | then |
347 | then |
| … | |
… | |
| 261 | #die "Could not extract patch!" |
352 | #die "Could not extract patch!" |
| 262 | count=5 |
353 | count=5 |
| 263 | break |
354 | break |
| 264 | fi |
355 | fi |
| 265 | fi |
356 | fi |
| 266 | |
357 | |
| 267 | if (cat ${PATCH_TARGET} | patch ${popts} --dry-run -f -p${count}) >> ${STDERR_TARGET%/*}/${x##*/}-${STDERR_TARGET##*/} 2>&1 |
358 | if (cat ${PATCH_TARGET} | patch -p${count} ${popts} --dry-run -f) >> ${STDERR_TARGET%/*}/${x##*/}-${STDERR_TARGET##*/} 2>&1 |
| 268 | then |
359 | then |
| 269 | draw_line "***** ${x##*/} *****" > ${STDERR_TARGET%/*}/${x##*/}-${STDERR_TARGET##*/}.real |
360 | draw_line "***** ${x##*/} *****" > ${STDERR_TARGET%/*}/${x##*/}-${STDERR_TARGET##*/}.real |
| 270 | echo >> ${STDERR_TARGET%/*}/${x##*/}-${STDERR_TARGET##*/}.real |
361 | echo >> ${STDERR_TARGET%/*}/${x##*/}-${STDERR_TARGET##*/}.real |
| 271 | echo "ACTUALLY APPLYING ${x##*/}..." >> ${STDERR_TARGET%/*}/${x##*/}-${STDERR_TARGET##*/}.real |
362 | echo "ACTUALLY APPLYING ${x##*/}..." >> ${STDERR_TARGET%/*}/${x##*/}-${STDERR_TARGET##*/}.real |
| 272 | echo >> ${STDERR_TARGET%/*}/${x##*/}-${STDERR_TARGET##*/}.real |
363 | echo >> ${STDERR_TARGET%/*}/${x##*/}-${STDERR_TARGET##*/}.real |
| 273 | draw_line "***** ${x##*/} *****" >> ${STDERR_TARGET%/*}/${x##*/}-${STDERR_TARGET##*/}.real |
364 | draw_line "***** ${x##*/} *****" >> ${STDERR_TARGET%/*}/${x##*/}-${STDERR_TARGET##*/}.real |
| 274 | |
365 | |
| 275 | cat ${PATCH_TARGET} | patch ${popts} -p${count} >> ${STDERR_TARGET%/*}/${x##*/}-${STDERR_TARGET##*/}.real 2>&1 |
366 | cat ${PATCH_TARGET} | patch -p${count} ${popts} >> ${STDERR_TARGET%/*}/${x##*/}-${STDERR_TARGET##*/}.real 2>&1 |
| 276 | |
367 | |
| 277 | if [ "$?" -ne 0 ] |
368 | if [ "$?" -ne 0 ] |
| 278 | then |
369 | then |
| 279 | cat ${STDERR_TARGET%/*}/${x##*/}-${STDERR_TARGET##*/}.real >> ${STDERR_TARGET%/*}/${x##*/}-${STDERR_TARGET##*/} |
370 | cat ${STDERR_TARGET%/*}/${x##*/}-${STDERR_TARGET##*/}.real >> ${STDERR_TARGET%/*}/${x##*/}-${STDERR_TARGET##*/} |
| 280 | echo |
371 | echo |
| … | |
… | |
| 283 | #die "Real world sux compared to the dreamworld!" |
374 | #die "Real world sux compared to the dreamworld!" |
| 284 | count=5 |
375 | count=5 |
| 285 | fi |
376 | fi |
| 286 | |
377 | |
| 287 | rm -f ${STDERR_TARGET%/*}/${x##*/}-${STDERR_TARGET##*/}.real |
378 | rm -f ${STDERR_TARGET%/*}/${x##*/}-${STDERR_TARGET##*/}.real |
| 288 | |
379 | |
| 289 | break |
380 | break |
| 290 | fi |
381 | fi |
| 291 | |
382 | |
| 292 | count=$((count + 1)) |
383 | count=$((count + 1)) |
| 293 | done |
384 | done |
| … | |
… | |
| 318 | then |
409 | then |
| 319 | einfo "Done with patching" |
410 | einfo "Done with patching" |
| 320 | fi |
411 | fi |
| 321 | } |
412 | } |
| 322 | |
413 | |
|
|
414 | # This function return true if we are using the NPTL pthreads |
|
|
415 | # implementation. |
|
|
416 | # |
|
|
417 | # <azarah@gentoo.org> (06 March 2003) |
|
|
418 | # |
|
|
419 | have_NPTL() { |
|
|
420 | cat > ${T}/test-nptl.c <<-"END" |
|
|
421 | #define _XOPEN_SOURCE |
|
|
422 | #include <unistd.h> |
|
|
423 | #include <stdio.h> |
|
|
424 | |
|
|
425 | int main() |
|
|
426 | { |
|
|
427 | char buf[255]; |
|
|
428 | char *str = buf; |
|
|
429 | |
|
|
430 | confstr(_CS_GNU_LIBPTHREAD_VERSION, str, 255); |
|
|
431 | if (NULL != str) { |
|
|
432 | printf("%s\n", str); |
|
|
433 | if (NULL != strstr(str, "NPTL")) |
|
|
434 | return 0; |
|
|
435 | } |
|
|
436 | |
|
|
437 | return 1; |
|
|
438 | } |
|
|
439 | END |
|
|
440 | |
|
|
441 | einfon "Checking for _CS_GNU_LIBPTHREAD_VERSION support in glibc ... " |
|
|
442 | if gcc -o ${T}/nptl ${T}/test-nptl.c &> /dev/null |
|
|
443 | then |
|
|
444 | echo "yes" |
|
|
445 | einfon "Checking what PTHREADS implementation we have ... " |
|
|
446 | if ${T}/nptl |
|
|
447 | then |
|
|
448 | return 0 |
|
|
449 | else |
|
|
450 | return 1 |
|
|
451 | fi |
|
|
452 | else |
|
|
453 | echo "no" |
|
|
454 | fi |
|
|
455 | |
|
|
456 | return 1 |
|
|
457 | } |
|
|
458 | |
| 323 | # This function check how many cpu's are present, and then set |
459 | # This function check how many cpu's are present, and then set |
| 324 | # -j in MAKEOPTS accordingly. |
460 | # -j in MAKEOPTS accordingly. |
| 325 | # |
461 | # |
| 326 | # Thanks to nall <nall@gentoo.org> for this. |
462 | # Thanks to nall <nall@gentoo.org> for this. |
| 327 | # |
463 | # |
| … | |
… | |
| 340 | ADMINPARAM="`echo ${ADMINOPTS} | gawk '{match($0, /-j *[0-9]*/, opt); print opt[0]}'`" |
476 | ADMINPARAM="`echo ${ADMINOPTS} | gawk '{match($0, /-j *[0-9]*/, opt); print opt[0]}'`" |
| 341 | ADMINPARAM="${ADMINPARAM/-j}" |
477 | ADMINPARAM="${ADMINPARAM/-j}" |
| 342 | fi |
478 | fi |
| 343 | |
479 | |
| 344 | export MAKEOPTS="`echo ${MAKEOPTS} | sed -e 's:-j *[0-9]*::g'`" |
480 | export MAKEOPTS="`echo ${MAKEOPTS} | sed -e 's:-j *[0-9]*::g'`" |
| 345 | |
481 | |
| 346 | if [ "${ARCH}" = "x86" -o "${ARCH}" = "hppa" -o \ |
482 | if [ "${ARCH}" = "amd64" -o "${ARCH}" = "x86" -o "${ARCH}" = "hppa" -o \ |
| 347 | "${ARCH}" = "arm" -o "${ARCH}" = "mips" ] |
483 | "${ARCH}" = "arm" -o "${ARCH}" = "mips" -o "${ARCH}" = "ia64" ] |
| 348 | then |
484 | then |
| 349 | # these archs will always have "[Pp]rocessor" |
485 | # these archs will always have "[Pp]rocessor" |
| 350 | jobs="$((`grep -c ^[Pp]rocessor /proc/cpuinfo` * 2))" |
486 | jobs="$((`grep -c ^[Pp]rocessor /proc/cpuinfo` * 2))" |
| 351 | |
487 | |
| 352 | elif [ "${ARCH}" = "sparc" -o "${ARCH}" = "sparc64" ] |
488 | elif [ "${ARCH}" = "sparc" -o "${ARCH}" = "sparc64" ] |
| 353 | then |
489 | then |
| 354 | # sparc always has "ncpus active" |
490 | # sparc always has "ncpus active" |
| 355 | jobs="$((`grep "^ncpus active" /proc/cpuinfo | sed -e "s/^.*: //"` * 2))" |
491 | jobs="$((`grep "^ncpus active" /proc/cpuinfo | sed -e "s/^.*: //"` * 2))" |
| 356 | |
492 | |
| 357 | elif [ "${ARCH}" = "alpha" ] |
493 | elif [ "${ARCH}" = "alpha" ] |
| 358 | then |
494 | then |
| 359 | # alpha has "cpus active", but only when compiled with SMP |
495 | # alpha has "cpus active", but only when compiled with SMP |
| 360 | if [ "`grep -c "^cpus active" /proc/cpuinfo`" -eq 1 ] |
496 | if [ "`grep -c "^cpus active" /proc/cpuinfo`" -eq 1 ] |
| 361 | then |
497 | then |
| 362 | jobs="$((`grep "^cpus active" /proc/cpuinfo | sed -e "s/^.*: //"` * 2))" |
498 | jobs="$((`grep "^cpus active" /proc/cpuinfo | sed -e "s/^.*: //"` * 2))" |
| 363 | else |
499 | else |
| 364 | jobs=2 |
500 | jobs=2 |
| 365 | fi |
501 | fi |
| 366 | |
502 | |
| 367 | elif [ "${ARCH}" = "ppc" ] |
503 | elif [ "${ARCH}" = "ppc" -o "${ARCH}" = "ppc64" ] |
| 368 | then |
504 | then |
| 369 | # ppc has "processor", but only when compiled with SMP |
505 | # ppc has "processor", but only when compiled with SMP |
| 370 | if [ "`grep -c "^processor" /proc/cpuinfo`" -eq 1 ] |
506 | if [ "`grep -c "^processor" /proc/cpuinfo`" -eq 1 ] |
| 371 | then |
507 | then |
| 372 | jobs="$((`grep -c ^processor /proc/cpuinfo` * 2))" |
508 | jobs="$((`grep -c ^processor /proc/cpuinfo` * 2))" |
| 373 | else |
509 | else |
| 374 | jobs=2 |
510 | jobs=2 |
| 375 | fi |
511 | fi |
|
|
512 | elif [ "${ARCH}" = "s390" ] |
|
|
513 | then |
|
|
514 | # s390 has "# processors : " |
|
|
515 | jobs="$((`grep "^\# processors" /proc/cpuinfo | sed -e "s/^.*: //"` * 2))" |
| 376 | else |
516 | else |
| 377 | jobs="$((`grep -c ^cpu /proc/cpuinfo` * 2))" |
517 | jobs="$((`grep -c ^cpu /proc/cpuinfo` * 2))" |
| 378 | die "Unknown ARCH -- ${ARCH}!" |
518 | die "Unknown ARCH -- ${ARCH}!" |
| 379 | fi |
519 | fi |
| 380 | |
520 | |
| 381 | # Make sure the number is valid ... |
521 | # Make sure the number is valid ... |
| 382 | if [ "${jobs}" -lt 1 ] |
522 | if [ "${jobs}" -lt 1 ] |
| 383 | then |
523 | then |
| 384 | jobs=1 |
524 | jobs=1 |
| 385 | fi |
525 | fi |
| 386 | |
526 | |
| 387 | if [ -n "${ADMINPARAM}" ] |
527 | if [ -n "${ADMINPARAM}" ] |
| 388 | then |
528 | then |
| 389 | if [ "${jobs}" -gt "${ADMINPARAM}" ] |
529 | if [ "${jobs}" -gt "${ADMINPARAM}" ] |
| 390 | then |
530 | then |
| 391 | einfo "Setting make jobs to \"-j${ADMINPARAM}\" to ensure successful merge..." |
531 | einfo "Setting make jobs to \"-j${ADMINPARAM}\" to ensure successful merge..." |
| … | |
… | |
| 395 | export MAKEOPTS="${MAKEOPTS} -j${jobs}" |
535 | export MAKEOPTS="${MAKEOPTS} -j${jobs}" |
| 396 | fi |
536 | fi |
| 397 | fi |
537 | fi |
| 398 | } |
538 | } |
| 399 | |
539 | |
|
|
540 | # Cheap replacement for when debianutils (and thus mktemp) |
|
|
541 | # does not exist on the users system |
|
|
542 | # vapier@gentoo.org |
|
|
543 | # |
|
|
544 | # Takes just 1 parameter (the directory to create tmpfile in) |
|
|
545 | mymktemp() { |
|
|
546 | local topdir="$1" |
|
|
547 | |
|
|
548 | [ -z "${topdir}" ] && topdir=/tmp |
|
|
549 | if [ "`which mktemp 2>/dev/null`" ] |
|
|
550 | then |
|
|
551 | mktemp -p ${topdir} |
|
|
552 | else |
|
|
553 | local tmp="${topdir}/tmp.${RANDOM}.${RANDOM}.${RANDOM}" |
|
|
554 | touch ${tmp} |
|
|
555 | echo ${tmp} |
|
|
556 | fi |
|
|
557 | } |
|
|
558 | |
|
|
559 | # Small wrapper for getent (Linux) and nidump (Mac OS X) |
|
|
560 | # used in enewuser()/enewgroup() |
|
|
561 | # Joe Jezak <josejx@gmail.com> and usata@gentoo.org |
|
|
562 | # |
|
|
563 | # egetent(database, key) |
|
|
564 | egetent() { |
|
|
565 | if use macos || use ppc-macos ; then |
|
|
566 | case "$2" in |
|
|
567 | *[!0-9]*) # Non numeric |
|
|
568 | nidump $1 . | awk -F":" "{ if (\$1 ~ /^$2$/) {print \$0;exit;} }" |
|
|
569 | ;; |
|
|
570 | *) # Numeric |
|
|
571 | nidump $1 . | awk -F":" "{ if (\$3 == $2) {print \$0;exit;} }" |
|
|
572 | ;; |
|
|
573 | esac |
|
|
574 | else |
|
|
575 | getent $1 $2 |
|
|
576 | fi |
|
|
577 | } |
|
|
578 | |
| 400 | # Simplify/standardize adding users to the system |
579 | # Simplify/standardize adding users to the system |
| 401 | # vapier@gentoo.org |
580 | # vapier@gentoo.org |
| 402 | # |
581 | # |
| 403 | # enewuser(username, uid, shell, homedir, groups, extra options) |
582 | # enewuser(username, uid, shell, homedir, groups, extra options) |
| 404 | # |
583 | # |
| 405 | # Default values if you do not specify any: |
584 | # Default values if you do not specify any: |
| 406 | # username: REQUIRED ! |
585 | # username: REQUIRED ! |
| 407 | # uid: next available (see useradd(8)) |
586 | # uid: next available (see useradd(8)) |
|
|
587 | # note: pass -1 to get default behavior |
| 408 | # shell: /bin/false |
588 | # shell: /bin/false |
| 409 | # homedir: /dev/null |
589 | # homedir: /dev/null |
| 410 | # groups: none |
590 | # groups: none |
| 411 | # extra: comment of 'added by portage for ${PN}' |
591 | # extra: comment of 'added by portage for ${PN}' |
| 412 | enewuser() { |
592 | enewuser() { |
| 413 | # get the username |
593 | # get the username |
| 414 | local euser="$1"; shift |
594 | local euser="$1"; shift |
| 415 | if [ -z "${euser}" ] ; then |
595 | if [ -z "${euser}" ] |
|
|
596 | then |
| 416 | eerror "No username specified !" |
597 | eerror "No username specified !" |
| 417 | die "Cannot call enewuser without a username" |
598 | die "Cannot call enewuser without a username" |
| 418 | fi |
599 | fi |
|
|
600 | |
|
|
601 | # lets see if the username already exists |
|
|
602 | if [ "${euser}" == "`egetent passwd \"${euser}\" | cut -d: -f1`" ] |
|
|
603 | then |
|
|
604 | return 0 |
|
|
605 | fi |
| 419 | einfo "Adding user '${euser}' to your system ..." |
606 | einfo "Adding user '${euser}' to your system ..." |
| 420 | |
607 | |
| 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 |
608 | # options to pass to useradd |
| 434 | local opts="" |
609 | local opts= |
| 435 | |
610 | |
| 436 | # handle uid |
611 | # handle uid |
| 437 | local euid="$1"; shift |
612 | local euid="$1"; shift |
| 438 | if [ ! -z "${euid}" ] ; then |
613 | if [ ! -z "${euid}" ] && [ "${euid}" != "-1" ] |
|
|
614 | then |
| 439 | if [ ${euid} -gt 0 ] ; then |
615 | if [ "${euid}" -gt 0 ] |
| 440 | opts="${opts} -u ${euid}" |
616 | then |
|
|
617 | if [ ! -z "`egetent passwd ${euid}`" ] |
|
|
618 | then |
|
|
619 | euid="next" |
|
|
620 | fi |
| 441 | else |
621 | else |
| 442 | eerror "Userid given but is not greater than 0 !" |
622 | eerror "Userid given but is not greater than 0 !" |
| 443 | die "${euid} is not a valid UID" |
623 | die "${euid} is not a valid UID" |
| 444 | fi |
624 | fi |
| 445 | else |
625 | else |
| 446 | euid="next available" |
626 | euid="next" |
|
|
627 | fi |
|
|
628 | if [ "${euid}" == "next" ] |
|
|
629 | then |
|
|
630 | local pwrange |
|
|
631 | if use macos || use ppc-macos ; then |
|
|
632 | pwrange="`jot 898 101`" |
|
|
633 | else |
|
|
634 | pwrange="`seq 101 999`" |
| 447 | fi |
635 | fi |
|
|
636 | for euid in ${pwrange} ; do |
|
|
637 | [ -z "`egetent passwd ${euid}`" ] && break |
|
|
638 | done |
|
|
639 | fi |
|
|
640 | opts="${opts} -u ${euid}" |
| 448 | einfo " - Userid: ${euid}" |
641 | einfo " - Userid: ${euid}" |
| 449 | |
642 | |
| 450 | # handle shell |
643 | # handle shell |
| 451 | local eshell="$1"; shift |
644 | local eshell="$1"; shift |
| 452 | if [ ! -z "${eshell}" ] ; then |
645 | if [ ! -z "${eshell}" ] && [ "${eshell}" != "-1" ] |
|
|
646 | then |
| 453 | if [ ! -e ${eshell} ] ; then |
647 | if [ ! -e "${eshell}" ] |
|
|
648 | then |
| 454 | eerror "A shell was specified but it does not exist !" |
649 | eerror "A shell was specified but it does not exist !" |
| 455 | die "${eshell} does not exist" |
650 | die "${eshell} does not exist" |
| 456 | fi |
651 | fi |
| 457 | else |
652 | else |
| 458 | eshell=/bin/false |
653 | eshell="/bin/false" |
| 459 | fi |
654 | fi |
| 460 | einfo " - Shell: ${eshell}" |
655 | einfo " - Shell: ${eshell}" |
| 461 | opts="${opts} -s ${eshell}" |
656 | opts="${opts} -s ${eshell}" |
| 462 | |
657 | |
| 463 | # handle homedir |
658 | # handle homedir |
| 464 | local ehome="$1"; shift |
659 | local ehome="$1"; shift |
| 465 | if [ -z "${ehome}" ] ; then |
660 | if [ -z "${ehome}" ] && [ "${eshell}" != "-1" ] |
|
|
661 | then |
| 466 | ehome=/dev/null |
662 | ehome="/dev/null" |
| 467 | fi |
663 | fi |
| 468 | einfo " - Home: ${ehome}" |
664 | einfo " - Home: ${ehome}" |
| 469 | opts="${opts} -d ${ehome}" |
665 | opts="${opts} -d ${ehome}" |
| 470 | |
666 | |
| 471 | # handle groups |
667 | # handle groups |
| 472 | local egroups="$1"; shift |
668 | local egroups="$1"; shift |
| 473 | if [ ! -z "${egroups}" ] ; then |
669 | if [ ! -z "${egroups}" ] |
| 474 | local realgroup |
670 | then |
| 475 | local oldifs="${IFS}" |
671 | local oldifs="${IFS}" |
| 476 | export IFS="," |
672 | export IFS="," |
| 477 | for g in ${egroups} ; do |
673 | for g in ${egroups} |
| 478 | chgrp ${g} ${tmpfile} >& /dev/null |
674 | do |
| 479 | realgroup="`ls -l ${tmpfile} | awk '{print $4}'`" |
675 | if [ -z "`egetent group \"${g}\"`" ] |
| 480 | if [ "${g}" != "${realgroup}" ] ; then |
676 | then |
| 481 | eerror "You must add ${g} to the system first" |
677 | eerror "You must add group ${g} to the system first" |
| 482 | die "${g} is not a valid GID" |
678 | die "${g} is not a valid GID" |
| 483 | fi |
679 | fi |
| 484 | done |
680 | done |
| 485 | export IFS="${oldifs}" |
681 | export IFS="${oldifs}" |
| 486 | opts="${opts} -g ${egroups}" |
682 | opts="${opts} -g ${egroups}" |
| … | |
… | |
| 489 | fi |
685 | fi |
| 490 | einfo " - Groups: ${egroups}" |
686 | einfo " - Groups: ${egroups}" |
| 491 | |
687 | |
| 492 | # handle extra and add the user |
688 | # handle extra and add the user |
| 493 | local eextra="$@" |
689 | local eextra="$@" |
| 494 | local oldsandbox="${oldsandbox}" |
690 | local oldsandbox="${SANDBOX_ON}" |
| 495 | export SANDBOX_ON="0" |
691 | export SANDBOX_ON="0" |
|
|
692 | if use macos || use ppc-macos ; |
|
|
693 | then |
|
|
694 | ### Make the user |
| 496 | if [ -z "${eextra}" ] ; then |
695 | if [ -z "${eextra}" ] |
|
|
696 | then |
|
|
697 | dscl . create /users/${euser} uid ${euid} |
|
|
698 | dscl . create /users/${euser} shell ${eshell} |
|
|
699 | dscl . create /users/${euser} home ${ehome} |
|
|
700 | dscl . create /users/${euser} realname "added by portage for ${PN}" |
|
|
701 | ### Add the user to the groups specified |
|
|
702 | for g in ${egroups} |
|
|
703 | do |
|
|
704 | dscl . merge /groups/${g} users ${euser} |
|
|
705 | done |
|
|
706 | else |
|
|
707 | einfo "Extra options are not supported on macos yet" |
|
|
708 | einfo "Please report the ebuild along with the info below" |
|
|
709 | einfo "eextra: ${eextra}" |
|
|
710 | die "Required function missing" |
|
|
711 | fi |
|
|
712 | else |
|
|
713 | if [ -z "${eextra}" ] |
|
|
714 | then |
| 497 | useradd ${opts} ${euser} \ |
715 | useradd ${opts} ${euser} \ |
| 498 | -c "added by portage for ${PN}" \ |
716 | -c "added by portage for ${PN}" \ |
| 499 | || die "enewuser failed" |
717 | || die "enewuser failed" |
| 500 | else |
718 | else |
| 501 | einfo " - Extra: ${eextra}" |
719 | einfo " - Extra: ${eextra}" |
| 502 | useradd ${opts} ${euser} ${eextra} \ |
720 | useradd ${opts} ${euser} ${eextra} \ |
| 503 | || die "enewuser failed" |
721 | || die "enewuser failed" |
|
|
722 | fi |
| 504 | fi |
723 | fi |
| 505 | export SANDBOX_ON="${oldsandbox}" |
724 | export SANDBOX_ON="${oldsandbox}" |
| 506 | |
725 | |
| 507 | if [ ! -e ${ehome} ] && [ ! -e ${D}/${ehome} ] ; then |
726 | if [ ! -e "${ehome}" ] && [ ! -e "${D}/${ehome}" ] |
|
|
727 | then |
| 508 | einfo " - Creating ${ehome} in ${D}" |
728 | einfo " - Creating ${ehome} in ${D}" |
| 509 | dodir ${ehome} |
729 | dodir ${ehome} |
| 510 | fperms ${euser} ${ehome} |
730 | fowners ${euser} ${ehome} |
|
|
731 | fperms 755 ${ehome} |
| 511 | fi |
732 | fi |
| 512 | } |
733 | } |
| 513 | |
734 | |
| 514 | # Simplify/standardize adding groups to the system |
735 | # Simplify/standardize adding groups to the system |
| 515 | # vapier@gentoo.org |
736 | # vapier@gentoo.org |
| … | |
… | |
| 521 | # gid: next available (see groupadd(8)) |
742 | # gid: next available (see groupadd(8)) |
| 522 | # extra: none |
743 | # extra: none |
| 523 | enewgroup() { |
744 | enewgroup() { |
| 524 | # get the group |
745 | # get the group |
| 525 | local egroup="$1"; shift |
746 | local egroup="$1"; shift |
| 526 | if [ -z "${egroup}" ] ; then |
747 | if [ -z "${egroup}" ] |
|
|
748 | then |
| 527 | eerror "No group specified !" |
749 | eerror "No group specified !" |
| 528 | die "Cannot call enewgroup without a group" |
750 | die "Cannot call enewgroup without a group" |
| 529 | fi |
751 | fi |
|
|
752 | |
|
|
753 | # see if group already exists |
|
|
754 | if [ "${egroup}" == "`egetent group \"${egroup}\" | cut -d: -f1`" ] |
|
|
755 | then |
|
|
756 | return 0 |
|
|
757 | fi |
| 530 | einfo "Adding group '${egroup}' to your system ..." |
758 | einfo "Adding group '${egroup}' to your system ..." |
| 531 | |
759 | |
| 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 |
760 | # options to pass to useradd |
| 545 | local opts="" |
761 | local opts= |
| 546 | |
762 | |
| 547 | # handle gid |
763 | # handle gid |
| 548 | local egid="$1"; shift |
764 | local egid="$1"; shift |
| 549 | if [ ! -z "${egid}" ] ; then |
765 | if [ ! -z "${egid}" ] |
|
|
766 | then |
| 550 | if [ ${egid} -gt 0 ] ; then |
767 | if [ "${egid}" -gt 0 ] |
|
|
768 | then |
|
|
769 | if [ -z "`egetent group ${egid}`" ] |
|
|
770 | then |
|
|
771 | if use macos || use ppc-macos ; then |
|
|
772 | opts="${opts} ${egid}" |
|
|
773 | else |
| 551 | opts="${opts} -g ${egid}" |
774 | opts="${opts} -g ${egid}" |
|
|
775 | fi |
|
|
776 | else |
|
|
777 | egid="next available; requested gid taken" |
|
|
778 | fi |
| 552 | else |
779 | else |
| 553 | eerror "Groupid given but is not greater than 0 !" |
780 | eerror "Groupid given but is not greater than 0 !" |
| 554 | die "${egid} is not a valid GID" |
781 | die "${egid} is not a valid GID" |
| 555 | fi |
782 | fi |
| 556 | else |
783 | else |
| … | |
… | |
| 561 | # handle extra |
788 | # handle extra |
| 562 | local eextra="$@" |
789 | local eextra="$@" |
| 563 | opts="${opts} ${eextra}" |
790 | opts="${opts} ${eextra}" |
| 564 | |
791 | |
| 565 | # add the group |
792 | # add the group |
| 566 | local oldsandbox="${oldsandbox}" |
793 | local oldsandbox="${SANDBOX_ON}" |
| 567 | export SANDBOX_ON="0" |
794 | export SANDBOX_ON="0" |
|
|
795 | if use macos || use ppc-macos ; |
|
|
796 | then |
|
|
797 | if [ ! -z "${eextra}" ]; |
|
|
798 | then |
|
|
799 | einfo "Extra options are not supported on macos yet" |
|
|
800 | einfo "Please report the ebuild along with the info below" |
|
|
801 | einfo "eextra: ${eextra}" |
|
|
802 | die "Required function missing" |
|
|
803 | fi |
|
|
804 | |
|
|
805 | # If we need the next available |
|
|
806 | case ${egid} in |
|
|
807 | *[!0-9]*) # Non numeric |
|
|
808 | for egid in `jot 898 101`; do |
|
|
809 | [ -z "`egetent group ${egid}`" ] && break |
|
|
810 | done |
|
|
811 | esac |
|
|
812 | dscl . create /groups/${egroup} gid ${egid} |
|
|
813 | dscl . create /groups/${egroup} passwd '*' |
|
|
814 | else |
| 568 | groupadd ${opts} ${egroup} || die "enewgroup failed" |
815 | groupadd ${opts} ${egroup} || die "enewgroup failed" |
|
|
816 | fi |
| 569 | export SANDBOX_ON="${oldsandbox}" |
817 | export SANDBOX_ON="${oldsandbox}" |
| 570 | } |
818 | } |
|
|
819 | |
|
|
820 | # Simple script to replace 'dos2unix' binaries |
|
|
821 | # vapier@gentoo.org |
|
|
822 | # |
|
|
823 | # edos2unix(file, <more files>...) |
|
|
824 | edos2unix() { |
|
|
825 | for f in "$@" |
|
|
826 | do |
|
|
827 | cp "${f}" ${T}/edos2unix |
|
|
828 | sed 's/\r$//' ${T}/edos2unix > "${f}" |
|
|
829 | done |
|
|
830 | } |
|
|
831 | |
|
|
832 | # Make a desktop file ! |
|
|
833 | # Great for making those icons in kde/gnome startmenu ! |
|
|
834 | # Amaze your friends ! Get the women ! Join today ! |
|
|
835 | # gnome2 /usr/share/applications |
|
|
836 | # gnome1 /usr/share/gnome/apps/ |
|
|
837 | # KDE ${KDEDIR}/share/applnk /usr/share/applnk |
|
|
838 | # |
|
|
839 | # make_desktop_entry(<binary>, [name], [icon], [type], [path]) |
|
|
840 | # |
|
|
841 | # binary: what binary does the app run with ? |
|
|
842 | # name: the name that will show up in the menu |
|
|
843 | # icon: give your little like a pretty little icon ... |
|
|
844 | # this can be relative (to /usr/share/pixmaps) or |
|
|
845 | # a full path to an icon |
|
|
846 | # type: what kind of application is this ? for categories: |
|
|
847 | # http://www.freedesktop.org/standards/menu-spec/ |
|
|
848 | # path: if your app needs to startup in a specific dir |
|
|
849 | make_desktop_entry() { |
|
|
850 | [ -z "$1" ] && eerror "You must specify the executable" && return 1 |
|
|
851 | |
|
|
852 | local exec="${1}" |
|
|
853 | local name="${2:-${PN}}" |
|
|
854 | local icon="${3:-${PN}.png}" |
|
|
855 | local type="${4}" |
|
|
856 | local subdir="${6}" |
|
|
857 | local path="${5:-${GAMES_BINDIR}}" |
|
|
858 | if [ -z "${type}" ] |
|
|
859 | then |
|
|
860 | case ${CATEGORY} in |
|
|
861 | "app-emulation") |
|
|
862 | type=Emulator |
|
|
863 | subdir="Emulation" |
|
|
864 | ;; |
|
|
865 | "games-"*) |
|
|
866 | type=Game |
|
|
867 | subdir="Games" |
|
|
868 | ;; |
|
|
869 | "net-"*) |
|
|
870 | type=Network |
|
|
871 | subdir="${type}" |
|
|
872 | ;; |
|
|
873 | *) |
|
|
874 | type= |
|
|
875 | subdir= |
|
|
876 | ;; |
|
|
877 | esac |
|
|
878 | fi |
|
|
879 | local desktop="${T}/${exec}.desktop" |
|
|
880 | |
|
|
881 | echo "[Desktop Entry] |
|
|
882 | Encoding=UTF-8 |
|
|
883 | Version=0.9.2 |
|
|
884 | Name=${name} |
|
|
885 | Type=Application |
|
|
886 | Comment=${DESCRIPTION} |
|
|
887 | Exec=${exec} |
|
|
888 | Path=${path} |
|
|
889 | Icon=${icon} |
|
|
890 | Categories=Application;${type};" > "${desktop}" |
|
|
891 | |
|
|
892 | if [ -d "/usr/share/applications" ] |
|
|
893 | then |
|
|
894 | insinto /usr/share/applications |
|
|
895 | doins "${desktop}" |
|
|
896 | fi |
|
|
897 | |
|
|
898 | #if [ -d "/usr/share/gnome/apps" ] |
|
|
899 | #then |
|
|
900 | # insinto /usr/share/gnome/apps/Games |
|
|
901 | # doins ${desktop} |
|
|
902 | #fi |
|
|
903 | |
|
|
904 | #if [ ! -z "`ls /usr/kde/* 2>/dev/null`" ] |
|
|
905 | #then |
|
|
906 | # for ver in /usr/kde/* |
|
|
907 | # do |
|
|
908 | # insinto ${ver}/share/applnk/Games |
|
|
909 | # doins ${desktop} |
|
|
910 | # done |
|
|
911 | #fi |
|
|
912 | |
|
|
913 | if [ -d "/usr/share/applnk" ] |
|
|
914 | then |
|
|
915 | insinto /usr/share/applnk/${subdir} |
|
|
916 | doins "${desktop}" |
|
|
917 | fi |
|
|
918 | |
|
|
919 | return 0 |
|
|
920 | } |
|
|
921 | |
|
|
922 | # for internal use only (unpack_pdv and unpack_makeself) |
|
|
923 | find_unpackable_file() { |
|
|
924 | local src="$1" |
|
|
925 | if [ -z "${src}" ] |
|
|
926 | then |
|
|
927 | src="${DISTDIR}/${A}" |
|
|
928 | else |
|
|
929 | if [ -e "${DISTDIR}/${src}" ] |
|
|
930 | then |
|
|
931 | src="${DISTDIR}/${src}" |
|
|
932 | elif [ -e "${PWD}/${src}" ] |
|
|
933 | then |
|
|
934 | src="${PWD}/${src}" |
|
|
935 | elif [ -e "${src}" ] |
|
|
936 | then |
|
|
937 | src="${src}" |
|
|
938 | fi |
|
|
939 | fi |
|
|
940 | [ ! -e "${src}" ] && die "Could not find requested archive ${src}" |
|
|
941 | echo "${src}" |
|
|
942 | } |
|
|
943 | |
|
|
944 | # Unpack those pesky pdv generated files ... |
|
|
945 | # They're self-unpacking programs with the binary package stuffed in |
|
|
946 | # the middle of the archive. Valve seems to use it a lot ... too bad |
|
|
947 | # it seems to like to segfault a lot :(. So lets take it apart ourselves. |
|
|
948 | # |
|
|
949 | # Usage: unpack_pdv [file to unpack] [size of off_t] |
|
|
950 | # - you have to specify the off_t size ... i have no idea how to extract that |
|
|
951 | # information out of the binary executable myself. basically you pass in |
|
|
952 | # the size of the off_t type (in bytes) on the machine that built the pdv |
|
|
953 | # archive. one way to determine this is by running the following commands: |
|
|
954 | # strings <pdv archive> | grep lseek |
|
|
955 | # strace -elseek <pdv archive> |
|
|
956 | # basically look for the first lseek command (we do the strings/grep because |
|
|
957 | # sometimes the function call is _llseek or something) and steal the 2nd |
|
|
958 | # parameter. here is an example: |
|
|
959 | # root@vapier 0 pdv_unpack # strings hldsupdatetool.bin | grep lseek |
|
|
960 | # lseek |
|
|
961 | # root@vapier 0 pdv_unpack # strace -elseek ./hldsupdatetool.bin |
|
|
962 | # lseek(3, -4, SEEK_END) = 2981250 |
|
|
963 | # thus we would pass in the value of '4' as the second parameter. |
|
|
964 | unpack_pdv() { |
|
|
965 | local src="`find_unpackable_file $1`" |
|
|
966 | local sizeoff_t="$2" |
|
|
967 | |
|
|
968 | [ -z "${sizeoff_t}" ] && die "No idea what off_t size was used for this pdv :(" |
|
|
969 | |
|
|
970 | local shrtsrc="`basename ${src}`" |
|
|
971 | echo ">>> Unpacking ${shrtsrc} to ${PWD}" |
|
|
972 | local metaskip=`tail -c ${sizeoff_t} ${src} | hexdump -e \"%i\"` |
|
|
973 | local tailskip=`tail -c $((${sizeoff_t}*2)) ${src} | head -c ${sizeoff_t} | hexdump -e \"%i\"` |
|
|
974 | |
|
|
975 | # grab metadata for debug reasons |
|
|
976 | local metafile="`mymktemp ${T}`" |
|
|
977 | tail -c +$((${metaskip}+1)) ${src} > ${metafile} |
|
|
978 | |
|
|
979 | # rip out the final file name from the metadata |
|
|
980 | local datafile="`tail -c +$((${metaskip}+1)) ${src} | strings | head -n 1`" |
|
|
981 | datafile="`basename ${datafile}`" |
|
|
982 | |
|
|
983 | # now lets uncompress/untar the file if need be |
|
|
984 | local tmpfile="`mymktemp ${T}`" |
|
|
985 | tail -c +$((${tailskip}+1)) ${src} 2>/dev/null | head -c 512 > ${tmpfile} |
|
|
986 | |
|
|
987 | local iscompressed="`file -b ${tmpfile}`" |
|
|
988 | if [ "${iscompressed:0:8}" == "compress" ] ; then |
|
|
989 | iscompressed=1 |
|
|
990 | mv ${tmpfile}{,.Z} |
|
|
991 | gunzip ${tmpfile} |
|
|
992 | else |
|
|
993 | iscompressed=0 |
|
|
994 | fi |
|
|
995 | local istar="`file -b ${tmpfile}`" |
|
|
996 | if [ "${istar:0:9}" == "POSIX tar" ] ; then |
|
|
997 | istar=1 |
|
|
998 | else |
|
|
999 | istar=0 |
|
|
1000 | fi |
|
|
1001 | |
|
|
1002 | #for some reason gzip dies with this ... dd cant provide buffer fast enough ? |
|
|
1003 | #dd if=${src} ibs=${metaskip} count=1 \ |
|
|
1004 | # | dd ibs=${tailskip} skip=1 \ |
|
|
1005 | # | gzip -dc \ |
|
|
1006 | # > ${datafile} |
|
|
1007 | if [ ${iscompressed} -eq 1 ] ; then |
|
|
1008 | if [ ${istar} -eq 1 ] ; then |
|
|
1009 | tail -c +$((${tailskip}+1)) ${src} 2>/dev/null \ |
|
|
1010 | | head -c $((${metaskip}-${tailskip})) \ |
|
|
1011 | | tar -xzf - |
|
|
1012 | else |
|
|
1013 | tail -c +$((${tailskip}+1)) ${src} 2>/dev/null \ |
|
|
1014 | | head -c $((${metaskip}-${tailskip})) \ |
|
|
1015 | | gzip -dc \ |
|
|
1016 | > ${datafile} |
|
|
1017 | fi |
|
|
1018 | else |
|
|
1019 | if [ ${istar} -eq 1 ] ; then |
|
|
1020 | tail -c +$((${tailskip}+1)) ${src} 2>/dev/null \ |
|
|
1021 | | head -c $((${metaskip}-${tailskip})) \ |
|
|
1022 | | tar --no-same-owner -xf - |
|
|
1023 | else |
|
|
1024 | tail -c +$((${tailskip}+1)) ${src} 2>/dev/null \ |
|
|
1025 | | head -c $((${metaskip}-${tailskip})) \ |
|
|
1026 | > ${datafile} |
|
|
1027 | fi |
|
|
1028 | fi |
|
|
1029 | true |
|
|
1030 | #[ -s "${datafile}" ] || die "failure unpacking pdv ('${metaskip}' '${tailskip}' '${datafile}')" |
|
|
1031 | #assert "failure unpacking pdv ('${metaskip}' '${tailskip}' '${datafile}')" |
|
|
1032 | } |
|
|
1033 | |
|
|
1034 | # Unpack those pesky makeself generated files ... |
|
|
1035 | # They're shell scripts with the binary package tagged onto |
|
|
1036 | # the end of the archive. Loki utilized the format as does |
|
|
1037 | # many other game companies. |
|
|
1038 | # |
|
|
1039 | # Usage: unpack_makeself [file to unpack] [offset] |
|
|
1040 | # - If the file is not specified then unpack will utilize ${A}. |
|
|
1041 | # - If the offset is not specified then we will attempt to extract |
|
|
1042 | # the proper offset from the script itself. |
|
|
1043 | unpack_makeself() { |
|
|
1044 | local src="`find_unpackable_file $1`" |
|
|
1045 | local skip="$2" |
|
|
1046 | |
|
|
1047 | local shrtsrc="`basename ${src}`" |
|
|
1048 | echo ">>> Unpacking ${shrtsrc} to ${PWD}" |
|
|
1049 | if [ -z "${skip}" ] |
|
|
1050 | then |
|
|
1051 | local ver="`grep -a '#.*Makeself' ${src} | awk '{print $NF}'`" |
|
|
1052 | local skip=0 |
|
|
1053 | case ${ver} in |
|
|
1054 | 1.5.*) # tested 1.5.{3,4,5} ... guessing 1.5.x series is same |
|
|
1055 | skip=`grep -a ^skip= ${src} | cut -d= -f2` |
|
|
1056 | ;; |
|
|
1057 | 2.0|2.0.1) |
|
|
1058 | skip=`grep -a ^$'\t'tail ${src} | awk '{print $2}' | cut -b2-` |
|
|
1059 | ;; |
|
|
1060 | 2.1.1) |
|
|
1061 | skip=`grep -a ^offset= ${src} | awk '{print $2}' | cut -b2-` |
|
|
1062 | let skip="skip + 1" |
|
|
1063 | ;; |
|
|
1064 | 2.1.2) |
|
|
1065 | skip=`grep -a ^offset= ${src} | awk '{print $3}' | head -n 1` |
|
|
1066 | let skip="skip + 1" |
|
|
1067 | ;; |
|
|
1068 | 2.1.3) |
|
|
1069 | skip=`grep -a ^offset= ${src} | awk '{print $3}'` |
|
|
1070 | let skip="skip + 1" |
|
|
1071 | ;; |
|
|
1072 | *) |
|
|
1073 | eerror "I'm sorry, but I was unable to support the Makeself file." |
|
|
1074 | eerror "The version I detected was '${ver}'." |
|
|
1075 | eerror "Please file a bug about the file ${shrtsrc} at" |
|
|
1076 | eerror "http://bugs.gentoo.org/ so that support can be added." |
|
|
1077 | die "makeself version '${ver}' not supported" |
|
|
1078 | ;; |
|
|
1079 | esac |
|
|
1080 | debug-print "Detected Makeself version ${ver} ... using ${skip} as offset" |
|
|
1081 | fi |
|
|
1082 | |
|
|
1083 | # lets grab the first few bytes of the file to figure out what kind of archive it is |
|
|
1084 | local tmpfile="`mymktemp ${T}`" |
|
|
1085 | tail -n +${skip} ${src} 2>/dev/null | head -c 512 > ${tmpfile} |
|
|
1086 | local filetype="`file -b ${tmpfile}`" |
|
|
1087 | case ${filetype} in |
|
|
1088 | *tar\ archive) |
|
|
1089 | tail -n +${skip} ${src} | tar --no-same-owner -xf - |
|
|
1090 | ;; |
|
|
1091 | bzip2*) |
|
|
1092 | tail -n +${skip} ${src} | bzip2 -dc | tar --no-same-owner -xf - |
|
|
1093 | ;; |
|
|
1094 | gzip*) |
|
|
1095 | tail -n +${skip} ${src} | tar --no-same-owner -xzf - |
|
|
1096 | ;; |
|
|
1097 | compress*) |
|
|
1098 | tail -n +${skip} ${src} | gunzip | tar --no-same-owner -xf - |
|
|
1099 | ;; |
|
|
1100 | *) |
|
|
1101 | eerror "Unknown filetype \"${filetype}\" ?" |
|
|
1102 | false |
|
|
1103 | ;; |
|
|
1104 | esac |
|
|
1105 | assert "failure unpacking (${filetype}) makeself ${shrtsrc} ('${ver}' +${skip})" |
|
|
1106 | } |
|
|
1107 | |
|
|
1108 | # Display a license for user to accept. |
|
|
1109 | # |
|
|
1110 | # Usage: check_license [license] |
|
|
1111 | # - If the file is not specified then ${LICENSE} is used. |
|
|
1112 | check_license() { |
|
|
1113 | local lic=$1 |
|
|
1114 | if [ -z "${lic}" ] ; then |
|
|
1115 | lic="${PORTDIR}/licenses/${LICENSE}" |
|
|
1116 | else |
|
|
1117 | if [ -e "${PORTDIR}/licenses/${src}" ] ; then |
|
|
1118 | lic="${PORTDIR}/licenses/${src}" |
|
|
1119 | elif [ -e "${PWD}/${src}" ] ; then |
|
|
1120 | lic="${PWD}/${src}" |
|
|
1121 | elif [ -e "${src}" ] ; then |
|
|
1122 | lic="${src}" |
|
|
1123 | fi |
|
|
1124 | fi |
|
|
1125 | [ ! -f "${lic}" ] && die "Could not find requested license ${src}" |
|
|
1126 | local l="`basename ${lic}`" |
|
|
1127 | |
|
|
1128 | # here is where we check for the licenses the user already |
|
|
1129 | # accepted ... if we don't find a match, we make the user accept |
|
|
1130 | local shopts=$- |
|
|
1131 | local alic |
|
|
1132 | set -o noglob #so that bash doesn't expand "*" |
|
|
1133 | for alic in ${ACCEPT_LICENSE} ; do |
|
|
1134 | if [[ ${alic} == * || ${alic} == ${l} ]]; then |
|
|
1135 | set +o noglob; set -${shopts} #reset old shell opts |
|
|
1136 | return 0 |
|
|
1137 | fi |
|
|
1138 | done |
|
|
1139 | set +o noglob; set -$shopts #reset old shell opts |
|
|
1140 | |
|
|
1141 | local licmsg="`mymktemp ${T}`" |
|
|
1142 | cat << EOF > ${licmsg} |
|
|
1143 | ********************************************************** |
|
|
1144 | The following license outlines the terms of use of this |
|
|
1145 | package. You MUST accept this license for installation to |
|
|
1146 | continue. When you are done viewing, hit 'q'. If you |
|
|
1147 | CTRL+C out of this, the install will not run! |
|
|
1148 | ********************************************************** |
|
|
1149 | |
|
|
1150 | EOF |
|
|
1151 | cat ${lic} >> ${licmsg} |
|
|
1152 | ${PAGER:-less} ${licmsg} || die "Could not execute pager (${PAGER}) to accept ${lic}" |
|
|
1153 | einfon "Do you accept the terms of this license (${l})? [yes/no] " |
|
|
1154 | read alic |
|
|
1155 | case ${alic} in |
|
|
1156 | yes|Yes|y|Y) |
|
|
1157 | return 0 |
|
|
1158 | ;; |
|
|
1159 | *) |
|
|
1160 | echo;echo;echo |
|
|
1161 | eerror "You MUST accept the license to continue! Exiting!" |
|
|
1162 | die "Failed to accept license" |
|
|
1163 | ;; |
|
|
1164 | esac |
|
|
1165 | } |
|
|
1166 | |
|
|
1167 | # Aquire cd(s) for those lovely cd-based emerges. Yes, this violates |
|
|
1168 | # the whole 'non-interactive' policy, but damnit I want CD support ! |
|
|
1169 | # |
|
|
1170 | # with these cdrom functions we handle all the user interaction and |
|
|
1171 | # standardize everything. all you have to do is call cdrom_get_cds() |
|
|
1172 | # and when the function returns, you can assume that the cd has been |
|
|
1173 | # found at CDROM_ROOT. |
|
|
1174 | # |
|
|
1175 | # normally the cdrom functions will refer to the cds as 'cd #1', 'cd #2', |
|
|
1176 | # etc... if you want to give the cds better names, then just export |
|
|
1177 | # the CDROM_NAME_X variables before calling cdrom_get_cds(). |
|
|
1178 | # |
|
|
1179 | # for those multi cd ebuilds, see the cdrom_load_next_cd() below. |
|
|
1180 | # |
|
|
1181 | # Usage: cdrom_get_cds <file on cd1> [file on cd2] [file on cd3] [...] |
|
|
1182 | # - this will attempt to locate a cd based upon a file that is on |
|
|
1183 | # the cd ... the more files you give this function, the more cds |
|
|
1184 | # the cdrom functions will handle |
|
|
1185 | cdrom_get_cds() { |
|
|
1186 | # first we figure out how many cds we're dealing with by |
|
|
1187 | # the # of files they gave us |
|
|
1188 | local cdcnt=0 |
|
|
1189 | local f= |
|
|
1190 | for f in "$@" ; do |
|
|
1191 | cdcnt=$((cdcnt + 1)) |
|
|
1192 | export CDROM_CHECK_${cdcnt}="$f" |
|
|
1193 | done |
|
|
1194 | export CDROM_TOTAL_CDS=${cdcnt} |
|
|
1195 | export CDROM_CURRENT_CD=1 |
|
|
1196 | |
|
|
1197 | # now we see if the user gave use CD_ROOT ... |
|
|
1198 | # if they did, let's just believe them that it's correct |
|
|
1199 | if [ ! -z "${CD_ROOT}" ] ; then |
|
|
1200 | export CDROM_ROOT="${CD_ROOT}" |
|
|
1201 | einfo "Found CD #${CDROM_CURRENT_CD} root at ${CDROM_ROOT}" |
|
|
1202 | return |
|
|
1203 | fi |
|
|
1204 | # do the same for CD_ROOT_X |
|
|
1205 | if [ ! -z "${CD_ROOT_1}" ] ; then |
|
|
1206 | local var= |
|
|
1207 | cdcnt=0 |
|
|
1208 | while [ ${cdcnt} -lt ${CDROM_TOTAL_CDS} ] ; do |
|
|
1209 | cdcnt=$((cdcnt + 1)) |
|
|
1210 | var="CD_ROOT_${cdcnt}" |
|
|
1211 | if [ -z "${!var}" ] ; then |
|
|
1212 | eerror "You must either use just the CD_ROOT" |
|
|
1213 | eerror "or specify ALL the CD_ROOT_X variables." |
|
|
1214 | eerror "In this case, you will need ${CDROM_TOTAL_CDS} CD_ROOT_X variables." |
|
|
1215 | die "could not locate CD_ROOT_${cdcnt}" |
|
|
1216 | fi |
|
|
1217 | export CDROM_ROOTS_${cdcnt}="${!var}" |
|
|
1218 | done |
|
|
1219 | export CDROM_ROOT=${CDROM_ROOTS_1} |
|
|
1220 | einfo "Found CD #${CDROM_CURRENT_CD} root at ${CDROM_ROOT}" |
|
|
1221 | return |
|
|
1222 | fi |
|
|
1223 | |
|
|
1224 | if [ ${CDROM_TOTAL_CDS} -eq 1 ] ; then |
|
|
1225 | einfon "This ebuild will need the " |
|
|
1226 | if [ -z "${CDROM_NAME}" ] ; then |
|
|
1227 | echo "cdrom for ${PN}." |
|
|
1228 | else |
|
|
1229 | echo "${CDROM_NAME}." |
|
|
1230 | fi |
|
|
1231 | echo |
|
|
1232 | einfo "If you do not have the CD, but have the data files" |
|
|
1233 | einfo "mounted somewhere on your filesystem, just export" |
|
|
1234 | einfo "the variable CD_ROOT so that it points to the" |
|
|
1235 | einfo "directory containing the files." |
|
|
1236 | echo |
|
|
1237 | else |
|
|
1238 | einfo "This package will need access to ${CDROM_TOTAL_CDS} cds." |
|
|
1239 | cdcnt=0 |
|
|
1240 | while [ ${cdcnt} -lt ${CDROM_TOTAL_CDS} ] ; do |
|
|
1241 | cdcnt=$((cdcnt + 1)) |
|
|
1242 | var="CDROM_NAME_${cdcnt}" |
|
|
1243 | [ ! -z "${!var}" ] && einfo " CD ${cdcnt}: ${!var}" |
|
|
1244 | done |
|
|
1245 | echo |
|
|
1246 | einfo "If you do not have the CDs, but have the data files" |
|
|
1247 | einfo "mounted somewhere on your filesystem, just export" |
|
|
1248 | einfo "the following variables so they point to the right place:" |
|
|
1249 | einfon "" |
|
|
1250 | cdcnt=0 |
|
|
1251 | while [ ${cdcnt} -lt ${CDROM_TOTAL_CDS} ] ; do |
|
|
1252 | cdcnt=$((cdcnt + 1)) |
|
|
1253 | echo -n " CD_ROOT_${cdcnt}" |
|
|
1254 | done |
|
|
1255 | echo |
|
|
1256 | einfo "Or, if you have all the files in the same place, or" |
|
|
1257 | einfo "you only have one cdrom, you can export CD_ROOT" |
|
|
1258 | einfo "and that place will be used as the same data source" |
|
|
1259 | einfo "for all the CDs." |
|
|
1260 | echo |
|
|
1261 | fi |
|
|
1262 | export CDROM_CURRENT_CD=0 |
|
|
1263 | cdrom_load_next_cd |
|
|
1264 | } |
|
|
1265 | |
|
|
1266 | # this is only used when you need access to more than one cd. |
|
|
1267 | # when you have finished using the first cd, just call this function. |
|
|
1268 | # when it returns, CDROM_ROOT will be pointing to the second cd. |
|
|
1269 | # remember, you can only go forward in the cd chain, you can't go back. |
|
|
1270 | cdrom_load_next_cd() { |
|
|
1271 | export CDROM_CURRENT_CD=$((CDROM_CURRENT_CD + 1)) |
|
|
1272 | local var= |
|
|
1273 | |
|
|
1274 | if [ ! -z "${CD_ROOT}" ] ; then |
|
|
1275 | einfo "Using same root as before for CD #${CDROM_CURRENT_CD}" |
|
|
1276 | return |
|
|
1277 | fi |
|
|
1278 | |
|
|
1279 | unset CDROM_ROOT |
|
|
1280 | var=CDROM_ROOTS_${CDROM_CURRENT_CD} |
|
|
1281 | if [ -z "${!var}" ] ; then |
|
|
1282 | var="CDROM_CHECK_${CDROM_CURRENT_CD}" |
|
|
1283 | cdrom_locate_file_on_cd ${!var} |
|
|
1284 | else |
|
|
1285 | export CDROM_ROOT="${!var}" |
|
|
1286 | fi |
|
|
1287 | |
|
|
1288 | einfo "Found CD #${CDROM_CURRENT_CD} root at ${CDROM_ROOT}" |
|
|
1289 | } |
|
|
1290 | |
|
|
1291 | # this is used internally by the cdrom_get_cds() and cdrom_load_next_cd() |
|
|
1292 | # functions. this should *never* be called from an ebuild. |
|
|
1293 | # all it does is try to locate a give file on a cd ... if the cd isn't |
|
|
1294 | # found, then a message asking for the user to insert the cdrom will be |
|
|
1295 | # displayed and we'll hang out here until: |
|
|
1296 | # (1) the file is found on a mounted cdrom |
|
|
1297 | # (2) the user hits CTRL+C |
|
|
1298 | cdrom_locate_file_on_cd() { |
|
|
1299 | while [ -z "${CDROM_ROOT}" ] ; do |
|
|
1300 | local dir="$(dirname ${@})" |
|
|
1301 | local file="$(basename ${@})" |
|
|
1302 | local mline="" |
|
|
1303 | local showedmsg=0 |
|
|
1304 | |
|
|
1305 | for mline in `mount | egrep -e '(iso|cdrom)' | awk '{print $3}'` ; do |
|
|
1306 | [ -d "${mline}/${dir}" ] || continue |
|
|
1307 | [ ! -z "$(find ${mline}/${dir} -iname ${file} -maxdepth 1)" ] \ |
|
|
1308 | && export CDROM_ROOT=${mline} |
|
|
1309 | done |
|
|
1310 | |
|
|
1311 | if [ -z "${CDROM_ROOT}" ] ; then |
|
|
1312 | echo |
|
|
1313 | if [ ${showedmsg} -eq 0 ] ; then |
|
|
1314 | if [ ${CDROM_TOTAL_CDS} -eq 1 ] ; then |
|
|
1315 | if [ -z "${CDROM_NAME}" ] ; then |
|
|
1316 | einfo "Please insert the cdrom for ${PN} now !" |
|
|
1317 | else |
|
|
1318 | einfo "Please insert the ${CDROM_NAME} cdrom now !" |
|
|
1319 | fi |
|
|
1320 | else |
|
|
1321 | if [ -z "${CDROM_NAME_1}" ] ; then |
|
|
1322 | einfo "Please insert cd #${CDROM_CURRENT_CD} for ${PN} now !" |
|
|
1323 | else |
|
|
1324 | local var="CDROM_NAME_${CDROM_CURRENT_CD}" |
|
|
1325 | einfo "Please insert+mount the ${!var} cdrom now !" |
|
|
1326 | fi |
|
|
1327 | fi |
|
|
1328 | showedmsg=1 |
|
|
1329 | fi |
|
|
1330 | einfo "Press return to scan for the cd again" |
|
|
1331 | einfo "or hit CTRL+C to abort the emerge." |
|
|
1332 | read |
|
|
1333 | fi |
|
|
1334 | done |
|
|
1335 | } |
|
|
1336 | |
|
|
1337 | # Make sure that LINGUAS only contains languages that |
|
|
1338 | # a package can support |
|
|
1339 | # |
|
|
1340 | # usage: strip-linguas <allow LINGUAS> |
|
|
1341 | # strip-linguas -i <directories of .po files> |
|
|
1342 | # strip-linguas -u <directories of .po files> |
|
|
1343 | # |
|
|
1344 | # The first form allows you to specify a list of LINGUAS. |
|
|
1345 | # The -i builds a list of po files found in all the |
|
|
1346 | # directories and uses the intersection of the lists. |
|
|
1347 | # The -u builds a list of po files found in all the |
|
|
1348 | # directories and uses the union of the lists. |
|
|
1349 | strip-linguas() { |
|
|
1350 | local ls newls |
|
|
1351 | if [ "$1" == "-i" ] || [ "$1" == "-u" ] ; then |
|
|
1352 | local op="$1"; shift |
|
|
1353 | ls=" $(find "$1" -name '*.po' -printf '%f ') "; shift |
|
|
1354 | local d f |
|
|
1355 | for d in "$@" ; do |
|
|
1356 | if [ "${op}" == "-u" ] ; then |
|
|
1357 | newls="${ls}" |
|
|
1358 | else |
|
|
1359 | newls="" |
|
|
1360 | fi |
|
|
1361 | for f in $(find "$d" -name '*.po' -printf '%f ') ; do |
|
|
1362 | if [ "${op}" == "-i" ] ; then |
|
|
1363 | [ "${ls/ ${f} /}" != "${ls}" ] && newls="${newls} ${f}" |
|
|
1364 | else |
|
|
1365 | [ "${ls/ ${f} /}" == "${ls}" ] && newls="${newls} ${f}" |
|
|
1366 | fi |
|
|
1367 | done |
|
|
1368 | ls="${newls}" |
|
|
1369 | done |
|
|
1370 | ls="${ls//.po}" |
|
|
1371 | else |
|
|
1372 | ls="$@" |
|
|
1373 | fi |
|
|
1374 | |
|
|
1375 | ls=" ${ls} " |
|
|
1376 | newls="" |
|
|
1377 | for f in ${LINGUAS} ; do |
|
|
1378 | if [ "${ls/ ${f} /}" != "${ls}" ] ; then |
|
|
1379 | nl="${newls} ${f}" |
|
|
1380 | else |
|
|
1381 | ewarn "Sorry, but ${PN} does not support the ${f} LINGUA" |
|
|
1382 | fi |
|
|
1383 | done |
|
|
1384 | if [ -z "${newls}" ] ; then |
|
|
1385 | unset LINGUAS |
|
|
1386 | else |
|
|
1387 | export LINGUAS="${newls}" |
|
|
1388 | fi |
|
|
1389 | } |