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