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