1 | # Copyright 1999-2004 Gentoo Foundation |
1 | # Copyright 1999-2005 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.123 2004/11/11 04:10:40 vapier Exp $ |
3 | # $Header: /var/cvsroot/gentoo-x86/eclass/eutils.eclass,v 1.200 2005/09/23 20:44:26 wolf31o2 Exp $ |
4 | # |
4 | # |
5 | # Author: Martin Schlemmer <azarah@gentoo.org> |
5 | # Author: Martin Schlemmer <azarah@gentoo.org> |
6 | # |
6 | # |
7 | # This eclass is for general purpose functions that most ebuilds |
7 | # This eclass is for general purpose functions that most ebuilds |
8 | # have to implement themselves. |
8 | # have to implement themselves. |
9 | # |
9 | # |
10 | # NB: If you add anything, please comment it! |
10 | # NB: If you add anything, please comment it! |
11 | |
11 | |
12 | ECLASS=eutils |
12 | inherit multilib portability |
13 | INHERITED="$INHERITED $ECLASS" |
|
|
14 | |
13 | |
15 | DEPEND="!bootstrap? ( sys-devel/patch )" |
14 | DEPEND="!bootstrap? ( sys-devel/patch )" |
|
|
15 | # sys-apps/shadow is needed for useradd, etc, bug #94745. |
16 | |
16 | |
17 | DESCRIPTION="Based on the ${ECLASS} eclass" |
17 | DESCRIPTION="Based on the ${ECLASS} eclass" |
18 | |
18 | |
19 | # Wait for the supplied number of seconds. If no argument is supplied, defaults |
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 |
20 | # to five seconds. If the EPAUSE_IGNORE env var is set, don't wait. If we're not |
… | |
… | |
41 | sleep 1 |
41 | sleep 1 |
42 | done |
42 | done |
43 | fi |
43 | fi |
44 | } |
44 | } |
45 | |
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 | } |
|
|
97 | |
|
|
98 | # This function generate linker scripts in /usr/lib for dynamic |
46 | # This function generate linker scripts in /usr/lib for dynamic |
99 | # libs in /lib. This is to fix linking problems when you have |
47 | # libs in /lib. This is to fix linking problems when you have |
100 | # the .so in /lib, and the .a in /usr/lib. What happens is that |
48 | # the .so in /lib, and the .a in /usr/lib. What happens is that |
101 | # in some cases when linking dynamic, the .a in /usr/lib is used |
49 | # in some cases when linking dynamic, the .a in /usr/lib is used |
102 | # instead of the .so in /lib due to gcc/libtool tweaking ld's |
50 | # instead of the .so in /lib due to gcc/libtool tweaking ld's |
… | |
… | |
116 | gen_usr_ldscript() { |
64 | gen_usr_ldscript() { |
117 | local libdir="$(get_libdir)" |
65 | local libdir="$(get_libdir)" |
118 | # Just make sure it exists |
66 | # Just make sure it exists |
119 | dodir /usr/${libdir} |
67 | dodir /usr/${libdir} |
120 | |
68 | |
|
|
69 | for lib in "${@}" ; do |
121 | cat > "${D}/usr/${libdir}/${1}" << END_LDSCRIPT |
70 | cat > "${D}/usr/${libdir}/${lib}" <<-END_LDSCRIPT |
122 | /* GNU ld script |
71 | /* GNU ld script |
123 | Because Gentoo have critical dynamic libraries |
72 | Since Gentoo has critical dynamic libraries |
124 | in /lib, and the static versions in /usr/lib, we |
73 | in /lib, and the static versions in /usr/lib, |
125 | need to have a "fake" dynamic lib in /usr/lib, |
74 | we need to have a "fake" dynamic lib in /usr/lib, |
126 | otherwise we run into linking problems. |
75 | otherwise we run into linking problems. |
127 | See bug #4411 on http://bugs.gentoo.org/ for |
76 | |
128 | more info. */ |
77 | See bug http://bugs.gentoo.org/4411 for more info. |
|
|
78 | */ |
129 | GROUP ( /${libdir}/${1} ) |
79 | GROUP ( /${libdir}/${lib} ) |
130 | END_LDSCRIPT |
80 | END_LDSCRIPT |
131 | fperms a+x "/usr/${libdir}/${1}" |
81 | fperms a+x "/usr/${libdir}/${lib}" |
|
|
82 | done |
132 | } |
83 | } |
133 | |
84 | |
134 | # Simple function to draw a line consisting of '=' the same length as $* |
85 | # Simple function to draw a line consisting of '=' the same length as $* |
|
|
86 | # - only to be used by epatch() |
135 | # |
87 | # |
136 | # <azarah@gentoo.org> (11 Nov 2002) |
88 | # <azarah@gentoo.org> (11 Nov 2002) |
137 | # |
89 | # |
138 | draw_line() { |
90 | draw_line() { |
139 | local i=0 |
91 | local i=0 |
… | |
… | |
165 | EPATCH_SOURCE="${WORKDIR}/patch" |
117 | EPATCH_SOURCE="${WORKDIR}/patch" |
166 | # Default extension for patches |
118 | # Default extension for patches |
167 | EPATCH_SUFFIX="patch.bz2" |
119 | EPATCH_SUFFIX="patch.bz2" |
168 | # Default options for patch |
120 | # Default options for patch |
169 | # Set -g0 to keep RCS, ClearCase, Perforce and SCCS happy. Bug #24571 |
121 | # Set -g0 to keep RCS, ClearCase, Perforce and SCCS happy. Bug #24571 |
170 | EPATCH_OPTS="-g0" |
122 | # Set --no-backup-if-mismatch so we don't leave '.orig' files behind. |
|
|
123 | EPATCH_OPTS="-g0 --no-backup-if-mismatch" |
171 | # List of patches not to apply. Not this is only file names, |
124 | # List of patches not to apply. Not this is only file names, |
172 | # and not the full path .. |
125 | # and not the full path .. |
173 | EPATCH_EXCLUDE="" |
126 | EPATCH_EXCLUDE="" |
174 | # Change the printed message for a single patch. |
127 | # Change the printed message for a single patch. |
175 | EPATCH_SINGLE_MSG="" |
128 | EPATCH_SINGLE_MSG="" |
|
|
129 | # Change the printed message for multiple patches. |
|
|
130 | EPATCH_MULTI_MSG="Applying various patches (bugfixes/updates) ..." |
176 | # Force applying bulk patches even if not following the style: |
131 | # Force applying bulk patches even if not following the style: |
177 | # |
132 | # |
178 | # ??_${ARCH}_foo.${EPATCH_SUFFIX} |
133 | # ??_${ARCH}_foo.${EPATCH_SUFFIX} |
179 | # |
134 | # |
180 | EPATCH_FORCE="no" |
135 | EPATCH_FORCE="no" |
… | |
… | |
218 | local PATCH_TARGET="${T}/$$.patch" |
173 | local PATCH_TARGET="${T}/$$.patch" |
219 | local PATCH_SUFFIX="" |
174 | local PATCH_SUFFIX="" |
220 | local SINGLE_PATCH="no" |
175 | local SINGLE_PATCH="no" |
221 | local x="" |
176 | local x="" |
222 | |
177 | |
|
|
178 | unset P4CONFIG P4PORT P4USER # keep perforce at bay #56402 |
|
|
179 | |
223 | if [ "$#" -gt 1 ] |
180 | if [ "$#" -gt 1 ] |
224 | then |
181 | then |
225 | local m="" |
182 | local m="" |
226 | einfo "${#} patches to apply ..." |
|
|
227 | for m in "$@" ; do |
183 | for m in "$@" ; do |
228 | epatch "${m}" |
184 | epatch "${m}" |
229 | done |
185 | done |
230 | return 0 |
186 | return 0 |
231 | fi |
187 | fi |
… | |
… | |
256 | |
212 | |
257 | echo |
213 | echo |
258 | eerror "Cannot find \$EPATCH_SOURCE! Value for \$EPATCH_SOURCE is:" |
214 | eerror "Cannot find \$EPATCH_SOURCE! Value for \$EPATCH_SOURCE is:" |
259 | eerror |
215 | eerror |
260 | eerror " ${EPATCH_SOURCE}" |
216 | eerror " ${EPATCH_SOURCE}" |
|
|
217 | eerror " ( ${EPATCH_SOURCE##*/} )" |
261 | echo |
218 | echo |
262 | die "Cannot find \$EPATCH_SOURCE!" |
219 | die "Cannot find \$EPATCH_SOURCE!" |
263 | fi |
220 | fi |
264 | |
221 | |
265 | local EPATCH_SOURCE="${EPATCH_SOURCE}/*.${EPATCH_SUFFIX}" |
222 | local EPATCH_SOURCE="${EPATCH_SOURCE}/*.${EPATCH_SUFFIX}" |
… | |
… | |
284 | ;; |
241 | ;; |
285 | esac |
242 | esac |
286 | |
243 | |
287 | if [ "${SINGLE_PATCH}" = "no" ] |
244 | if [ "${SINGLE_PATCH}" = "no" ] |
288 | then |
245 | then |
289 | einfo "Applying various patches (bugfixes/updates) ..." |
246 | einfo "${EPATCH_MULTI_MSG}" |
290 | fi |
247 | fi |
291 | for x in ${EPATCH_SOURCE} |
248 | for x in ${EPATCH_SOURCE} |
292 | do |
249 | do |
293 | # New ARCH dependant patch naming scheme ... |
250 | # New ARCH dependant patch naming scheme ... |
294 | # |
251 | # |
295 | # ???_arch_foo.patch |
252 | # ???_arch_foo.patch |
296 | # |
253 | # |
297 | if [ -f ${x} ] && \ |
254 | if [ -f ${x} ] && \ |
298 | ([ "${SINGLE_PATCH}" = "yes" -o "${x/_all_}" != "${x}" -o "`eval echo \$\{x/_${ARCH}_\}`" != "${x}" ] || \ |
255 | ([ "${SINGLE_PATCH}" = "yes" -o "${x/_all_}" != "${x}" -o "${x/_${ARCH}_}" != "${x}" ] || \ |
299 | [ "${EPATCH_FORCE}" = "yes" ]) |
256 | [ "${EPATCH_FORCE}" = "yes" ]) |
300 | then |
257 | then |
301 | local count=0 |
258 | local count=0 |
302 | local popts="${EPATCH_OPTS}" |
259 | local popts="${EPATCH_OPTS}" |
|
|
260 | local patchname=${x##*/} |
303 | |
261 | |
304 | if [ -n "${EPATCH_EXCLUDE}" ] |
262 | if [ -n "${EPATCH_EXCLUDE}" ] |
305 | then |
263 | then |
306 | if [ "`eval echo \$\{EPATCH_EXCLUDE/${x##*/}\}`" != "${EPATCH_EXCLUDE}" ] |
264 | if [ "${EPATCH_EXCLUDE/${patchname}}" != "${EPATCH_EXCLUDE}" ] |
307 | then |
265 | then |
308 | continue |
266 | continue |
309 | fi |
267 | fi |
310 | fi |
268 | fi |
311 | |
269 | |
… | |
… | |
313 | then |
271 | then |
314 | if [ -n "${EPATCH_SINGLE_MSG}" ] |
272 | if [ -n "${EPATCH_SINGLE_MSG}" ] |
315 | then |
273 | then |
316 | einfo "${EPATCH_SINGLE_MSG}" |
274 | einfo "${EPATCH_SINGLE_MSG}" |
317 | else |
275 | else |
318 | einfo "Applying ${x##*/} ..." |
276 | einfo "Applying ${patchname} ..." |
319 | fi |
277 | fi |
320 | else |
278 | else |
321 | einfo " ${x##*/} ..." |
279 | einfo " ${patchname} ..." |
322 | fi |
280 | fi |
323 | |
281 | |
324 | echo "***** ${x##*/} *****" > ${STDERR_TARGET%/*}/${x##*/}-${STDERR_TARGET##*/} |
282 | echo "***** ${patchname} *****" > ${STDERR_TARGET%/*}/${patchname}-${STDERR_TARGET##*/} |
325 | echo >> ${STDERR_TARGET%/*}/${x##*/}-${STDERR_TARGET##*/} |
283 | echo >> ${STDERR_TARGET%/*}/${patchname}-${STDERR_TARGET##*/} |
326 | |
284 | |
327 | # Allow for prefix to differ ... im lazy, so shoot me :/ |
285 | # Allow for prefix to differ ... im lazy, so shoot me :/ |
328 | while [ "${count}" -lt 5 ] |
286 | while [ "${count}" -lt 5 ] |
329 | do |
287 | do |
330 | # Generate some useful debug info ... |
288 | # Generate some useful debug info ... |
331 | draw_line "***** ${x##*/} *****" >> ${STDERR_TARGET%/*}/${x##*/}-${STDERR_TARGET##*/} |
289 | draw_line "***** ${patchname} *****" >> ${STDERR_TARGET%/*}/${patchname}-${STDERR_TARGET##*/} |
332 | echo >> ${STDERR_TARGET%/*}/${x##*/}-${STDERR_TARGET##*/} |
290 | echo >> ${STDERR_TARGET%/*}/${patchname}-${STDERR_TARGET##*/} |
333 | |
291 | |
334 | if [ "${PATCH_SUFFIX}" != "patch" ] |
292 | if [ "${PATCH_SUFFIX}" != "patch" ] |
335 | then |
293 | then |
336 | echo -n "PIPE_COMMAND: " >> ${STDERR_TARGET%/*}/${x##*/}-${STDERR_TARGET##*/} |
294 | echo -n "PIPE_COMMAND: " >> ${STDERR_TARGET%/*}/${patchname}-${STDERR_TARGET##*/} |
337 | echo "${PIPE_CMD} ${x} > ${PATCH_TARGET}" >> ${STDERR_TARGET%/*}/${x##*/}-${STDERR_TARGET##*/} |
295 | echo "${PIPE_CMD} ${x} > ${PATCH_TARGET}" >> ${STDERR_TARGET%/*}/${patchname}-${STDERR_TARGET##*/} |
338 | else |
296 | else |
339 | PATCH_TARGET="${x}" |
297 | PATCH_TARGET="${x}" |
340 | fi |
298 | fi |
341 | |
299 | |
342 | echo -n "PATCH COMMAND: " >> ${STDERR_TARGET%/*}/${x##*/}-${STDERR_TARGET##*/} |
300 | echo -n "PATCH COMMAND: " >> ${STDERR_TARGET%/*}/${patchname}-${STDERR_TARGET##*/} |
343 | echo "patch -p${count} ${popts} < ${PATCH_TARGET}" >> ${STDERR_TARGET%/*}/${x##*/}-${STDERR_TARGET##*/} |
301 | echo "patch -p${count} ${popts} < ${PATCH_TARGET}" >> ${STDERR_TARGET%/*}/${patchname}-${STDERR_TARGET##*/} |
344 | |
302 | |
345 | echo >> ${STDERR_TARGET%/*}/${x##*/}-${STDERR_TARGET##*/} |
303 | echo >> ${STDERR_TARGET%/*}/${patchname}-${STDERR_TARGET##*/} |
346 | draw_line "***** ${x##*/} *****" >> ${STDERR_TARGET%/*}/${x##*/}-${STDERR_TARGET##*/} |
304 | draw_line "***** ${patchname} *****" >> ${STDERR_TARGET%/*}/${patchname}-${STDERR_TARGET##*/} |
347 | |
305 | |
348 | if [ "${PATCH_SUFFIX}" != "patch" ] |
306 | if [ "${PATCH_SUFFIX}" != "patch" ] |
349 | then |
307 | then |
350 | if ! (${PIPE_CMD} ${x} > ${PATCH_TARGET}) >> ${STDERR_TARGET%/*}/${x##*/}-${STDERR_TARGET##*/} 2>&1 |
308 | if ! (${PIPE_CMD} ${x} > ${PATCH_TARGET}) >> ${STDERR_TARGET%/*}/${patchname}-${STDERR_TARGET##*/} 2>&1 |
351 | then |
309 | then |
352 | echo |
310 | echo |
353 | eerror "Could not extract patch!" |
311 | eerror "Could not extract patch!" |
354 | #die "Could not extract patch!" |
312 | #die "Could not extract patch!" |
355 | count=5 |
313 | count=5 |
356 | break |
314 | break |
357 | fi |
315 | fi |
358 | fi |
316 | fi |
359 | |
317 | |
360 | if (cat ${PATCH_TARGET} | patch -p${count} ${popts} --dry-run -f) >> ${STDERR_TARGET%/*}/${x##*/}-${STDERR_TARGET##*/} 2>&1 |
318 | if (cat ${PATCH_TARGET} | patch -p${count} ${popts} --dry-run -f) >> ${STDERR_TARGET%/*}/${patchname}-${STDERR_TARGET##*/} 2>&1 |
361 | then |
319 | then |
362 | draw_line "***** ${x##*/} *****" > ${STDERR_TARGET%/*}/${x##*/}-${STDERR_TARGET##*/}.real |
320 | draw_line "***** ${patchname} *****" > ${STDERR_TARGET%/*}/${patchname}-${STDERR_TARGET##*/}.real |
363 | echo >> ${STDERR_TARGET%/*}/${x##*/}-${STDERR_TARGET##*/}.real |
321 | echo >> ${STDERR_TARGET%/*}/${patchname}-${STDERR_TARGET##*/}.real |
364 | echo "ACTUALLY APPLYING ${x##*/} ..." >> ${STDERR_TARGET%/*}/${x##*/}-${STDERR_TARGET##*/}.real |
322 | echo "ACTUALLY APPLYING ${patchname} ..." >> ${STDERR_TARGET%/*}/${patchname}-${STDERR_TARGET##*/}.real |
365 | echo >> ${STDERR_TARGET%/*}/${x##*/}-${STDERR_TARGET##*/}.real |
323 | echo >> ${STDERR_TARGET%/*}/${patchname}-${STDERR_TARGET##*/}.real |
366 | draw_line "***** ${x##*/} *****" >> ${STDERR_TARGET%/*}/${x##*/}-${STDERR_TARGET##*/}.real |
324 | draw_line "***** ${patchname} *****" >> ${STDERR_TARGET%/*}/${patchname}-${STDERR_TARGET##*/}.real |
367 | |
325 | |
368 | cat ${PATCH_TARGET} | patch -p${count} ${popts} >> ${STDERR_TARGET%/*}/${x##*/}-${STDERR_TARGET##*/}.real 2>&1 |
326 | cat ${PATCH_TARGET} | patch -p${count} ${popts} >> ${STDERR_TARGET%/*}/${patchname}-${STDERR_TARGET##*/}.real 2>&1 |
369 | |
327 | |
370 | if [ "$?" -ne 0 ] |
328 | if [ "$?" -ne 0 ] |
371 | then |
329 | then |
372 | cat ${STDERR_TARGET%/*}/${x##*/}-${STDERR_TARGET##*/}.real >> ${STDERR_TARGET%/*}/${x##*/}-${STDERR_TARGET##*/} |
330 | cat ${STDERR_TARGET%/*}/${patchname}-${STDERR_TARGET##*/}.real >> ${STDERR_TARGET%/*}/${patchname}-${STDERR_TARGET##*/} |
373 | echo |
331 | echo |
374 | eerror "A dry-run of patch command succeeded, but actually" |
332 | eerror "A dry-run of patch command succeeded, but actually" |
375 | eerror "applying the patch failed!" |
333 | eerror "applying the patch failed!" |
376 | #die "Real world sux compared to the dreamworld!" |
334 | #die "Real world sux compared to the dreamworld!" |
377 | count=5 |
335 | count=5 |
378 | fi |
336 | fi |
379 | |
337 | |
380 | rm -f ${STDERR_TARGET%/*}/${x##*/}-${STDERR_TARGET##*/}.real |
338 | rm -f ${STDERR_TARGET%/*}/${patchname}-${STDERR_TARGET##*/}.real |
381 | |
339 | |
382 | break |
340 | break |
383 | fi |
341 | fi |
384 | |
342 | |
385 | count=$((count + 1)) |
343 | count=$((count + 1)) |
… | |
… | |
391 | fi |
349 | fi |
392 | |
350 | |
393 | if [ "${count}" -eq 5 ] |
351 | if [ "${count}" -eq 5 ] |
394 | then |
352 | then |
395 | echo |
353 | echo |
396 | eerror "Failed Patch: ${x##*/}!" |
354 | eerror "Failed Patch: ${patchname} !" |
|
|
355 | eerror " ( ${PATCH_TARGET} )" |
397 | eerror |
356 | eerror |
398 | eerror "Include in your bugreport the contents of:" |
357 | eerror "Include in your bugreport the contents of:" |
399 | eerror |
358 | eerror |
400 | eerror " ${STDERR_TARGET%/*}/${x##*/}-${STDERR_TARGET##*/}" |
359 | eerror " ${STDERR_TARGET%/*}/${patchname}-${STDERR_TARGET##*/}" |
401 | echo |
360 | echo |
402 | die "Failed Patch: ${x##*/}!" |
361 | die "Failed Patch: ${patchname}!" |
403 | fi |
362 | fi |
404 | |
363 | |
405 | rm -f ${STDERR_TARGET%/*}/${x##*/}-${STDERR_TARGET##*/} |
364 | rm -f ${STDERR_TARGET%/*}/${patchname}-${STDERR_TARGET##*/} |
406 | |
365 | |
407 | eend 0 |
366 | eend 0 |
408 | fi |
367 | fi |
409 | done |
368 | done |
410 | if [ "${SINGLE_PATCH}" = "no" ] |
369 | if [ "${SINGLE_PATCH}" = "no" ] |
411 | then |
370 | then |
412 | einfo "Done with patching" |
371 | einfo "Done with patching" |
413 | fi |
372 | fi |
414 | } |
373 | } |
415 | |
374 | |
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 | |
|
|
461 | # This function check how many cpu's are present, and then set |
|
|
462 | # -j in MAKEOPTS accordingly. |
|
|
463 | # |
|
|
464 | # Thanks to nall <nall@gentoo.org> for this. |
|
|
465 | # |
|
|
466 | get_number_of_jobs() { |
|
|
467 | local jobs=0 |
|
|
468 | |
|
|
469 | if [ ! -r /proc/cpuinfo ] |
|
|
470 | then |
|
|
471 | return 1 |
|
|
472 | fi |
|
|
473 | |
|
|
474 | # This bit is from H?kan Wessberg <nacka-gentoo@refug.org>, bug #13565. |
|
|
475 | if [ "`egrep "^[[:space:]]*MAKEOPTS=" /etc/make.conf | wc -l`" -gt 0 ] |
|
|
476 | then |
|
|
477 | ADMINOPTS="`egrep "^[[:space:]]*MAKEOPTS=" /etc/make.conf | cut -d= -f2 | sed 's/\"//g'`" |
|
|
478 | ADMINPARAM="`echo ${ADMINOPTS} | gawk '{match($0, /-j *[0-9]*/, opt); print opt[0]}'`" |
|
|
479 | ADMINPARAM="${ADMINPARAM/-j}" |
|
|
480 | fi |
|
|
481 | |
|
|
482 | export MAKEOPTS="`echo ${MAKEOPTS} | sed -e 's:-j *[0-9]*::g'`" |
|
|
483 | |
|
|
484 | if [ "${ARCH}" = "amd64" -o "${ARCH}" = "x86" -o "${ARCH}" = "hppa" -o \ |
|
|
485 | "${ARCH}" = "arm" -o "${ARCH}" = "mips" -o "${ARCH}" = "ia64" ] |
|
|
486 | then |
|
|
487 | # these archs will always have "[Pp]rocessor" |
|
|
488 | jobs="$((`grep -c ^[Pp]rocessor /proc/cpuinfo` * 2))" |
|
|
489 | |
|
|
490 | elif [ "${ARCH}" = "sparc" -o "${ARCH}" = "sparc64" ] |
|
|
491 | then |
|
|
492 | # sparc always has "ncpus active" |
|
|
493 | jobs="$((`grep "^ncpus active" /proc/cpuinfo | sed -e "s/^.*: //"` * 2))" |
|
|
494 | |
|
|
495 | elif [ "${ARCH}" = "alpha" ] |
|
|
496 | then |
|
|
497 | # alpha has "cpus active", but only when compiled with SMP |
|
|
498 | if [ "`grep -c "^cpus active" /proc/cpuinfo`" -eq 1 ] |
|
|
499 | then |
|
|
500 | jobs="$((`grep "^cpus active" /proc/cpuinfo | sed -e "s/^.*: //"` * 2))" |
|
|
501 | else |
|
|
502 | jobs=2 |
|
|
503 | fi |
|
|
504 | |
|
|
505 | elif [ "${ARCH}" = "ppc" -o "${ARCH}" = "ppc64" ] |
|
|
506 | then |
|
|
507 | # ppc has "processor", but only when compiled with SMP |
|
|
508 | if [ "`grep -c "^processor" /proc/cpuinfo`" -eq 1 ] |
|
|
509 | then |
|
|
510 | jobs="$((`grep -c ^processor /proc/cpuinfo` * 2))" |
|
|
511 | else |
|
|
512 | jobs=2 |
|
|
513 | fi |
|
|
514 | elif [ "${ARCH}" = "s390" ] |
|
|
515 | then |
|
|
516 | # s390 has "# processors : " |
|
|
517 | jobs="$((`grep "^\# processors" /proc/cpuinfo | sed -e "s/^.*: //"` * 2))" |
|
|
518 | else |
|
|
519 | jobs="$((`grep -c ^cpu /proc/cpuinfo` * 2))" |
|
|
520 | die "Unknown ARCH -- ${ARCH}!" |
|
|
521 | fi |
|
|
522 | |
|
|
523 | # Make sure the number is valid ... |
|
|
524 | if [ "${jobs}" -lt 1 ] |
|
|
525 | then |
|
|
526 | jobs=1 |
|
|
527 | fi |
|
|
528 | |
|
|
529 | if [ -n "${ADMINPARAM}" ] |
|
|
530 | then |
|
|
531 | if [ "${jobs}" -gt "${ADMINPARAM}" ] |
|
|
532 | then |
|
|
533 | einfo "Setting make jobs to \"-j${ADMINPARAM}\" to ensure successful merge ..." |
|
|
534 | export MAKEOPTS="${MAKEOPTS} -j${ADMINPARAM}" |
|
|
535 | else |
|
|
536 | einfo "Setting make jobs to \"-j${jobs}\" to ensure successful merge ..." |
|
|
537 | export MAKEOPTS="${MAKEOPTS} -j${jobs}" |
|
|
538 | fi |
|
|
539 | fi |
|
|
540 | } |
|
|
541 | |
|
|
542 | # Cheap replacement for when debianutils (and thus mktemp) |
375 | # Cheap replacement for when debianutils (and thus mktemp) |
543 | # does not exist on the users system |
376 | # does not exist on the users system |
544 | # vapier@gentoo.org |
377 | # vapier@gentoo.org |
545 | # |
378 | # |
546 | # Takes just 1 optional parameter (the directory to create tmpfile in) |
379 | # Takes just 1 optional parameter (the directory to create tmpfile in) |
547 | emktemp() { |
380 | emktemp() { |
548 | local exe="touch" |
381 | local exe="touch" |
549 | [ "$1" == "-d" ] && exe="mkdir" && shift |
382 | [[ $1 == -d ]] && exe="mkdir" && shift |
550 | local topdir="$1" |
383 | local topdir=$1 |
551 | |
384 | |
552 | if [ -z "${topdir}" ] |
385 | if [[ -z ${topdir} ]] ; then |
553 | then |
|
|
554 | [ -z "${T}" ] \ |
386 | [[ -z ${T} ]] \ |
555 | && topdir="/tmp" \ |
387 | && topdir="/tmp" \ |
556 | || topdir="${T}" |
388 | || topdir=${T} |
557 | fi |
389 | fi |
558 | |
390 | |
559 | if [ -z "$(type -p mktemp)" ] |
391 | if [[ -z $(type -p mktemp) ]] ; then |
560 | then |
|
|
561 | local tmp=/ |
392 | local tmp=/ |
562 | while [ -e "${tmp}" ] ; do |
393 | while [[ -e ${tmp} ]] ; do |
563 | tmp="${topdir}/tmp.${RANDOM}.${RANDOM}.${RANDOM}" |
394 | tmp=${topdir}/tmp.${RANDOM}.${RANDOM}.${RANDOM} |
564 | done |
395 | done |
565 | ${exe} "${tmp}" |
396 | ${exe} "${tmp}" || ${exe} -p "${tmp}" |
566 | echo "${tmp}" |
397 | echo "${tmp}" |
567 | else |
398 | else |
568 | [ "${exe}" == "touch" ] \ |
399 | [[ ${exe} == "touch" ]] \ |
569 | && exe="-p" \ |
400 | && exe="-p" \ |
570 | || exe="-d" |
401 | || exe="-d" |
571 | mktemp ${exe} "${topdir}" |
402 | mktemp ${exe} "${topdir}" |
572 | fi |
403 | fi |
573 | } |
404 | } |
… | |
… | |
577 | # Joe Jezak <josejx@gmail.com> and usata@gentoo.org |
408 | # Joe Jezak <josejx@gmail.com> and usata@gentoo.org |
578 | # FBSD stuff: Aaron Walker <ka0ttic@gentoo.org> |
409 | # FBSD stuff: Aaron Walker <ka0ttic@gentoo.org> |
579 | # |
410 | # |
580 | # egetent(database, key) |
411 | # egetent(database, key) |
581 | egetent() { |
412 | egetent() { |
582 | if use ppc-macos ; then |
413 | if [[ "${USERLAND}" == "Darwin" ]] ; then |
583 | case "$2" in |
414 | case "$2" in |
584 | *[!0-9]*) # Non numeric |
415 | *[!0-9]*) # Non numeric |
585 | nidump $1 . | awk -F":" "{ if (\$1 ~ /^$2$/) {print \$0;exit;} }" |
416 | nidump $1 . | awk -F":" "{ if (\$1 ~ /^$2$/) {print \$0;exit;} }" |
586 | ;; |
417 | ;; |
587 | *) # Numeric |
418 | *) # Numeric |
588 | nidump $1 . | awk -F":" "{ if (\$3 == $2) {print \$0;exit;} }" |
419 | nidump $1 . | awk -F":" "{ if (\$3 == $2) {print \$0;exit;} }" |
589 | ;; |
420 | ;; |
590 | esac |
421 | esac |
591 | elif useq x86-fbsd ; then |
422 | elif [[ "${USERLAND}" == "BSD" ]] ; then |
592 | local action |
423 | local action |
593 | if [ "$1" == "passwd" ] |
424 | if [ "$1" == "passwd" ] |
594 | then |
425 | then |
595 | action="user" |
426 | action="user" |
596 | else |
427 | else |
… | |
… | |
616 | # homedir: /dev/null |
447 | # homedir: /dev/null |
617 | # groups: none |
448 | # groups: none |
618 | # extra: comment of 'added by portage for ${PN}' |
449 | # extra: comment of 'added by portage for ${PN}' |
619 | enewuser() { |
450 | enewuser() { |
620 | # get the username |
451 | # get the username |
621 | local euser="$1"; shift |
452 | local euser=$1; shift |
622 | if [ -z "${euser}" ] |
453 | if [[ -z ${euser} ]] ; then |
623 | then |
|
|
624 | eerror "No username specified !" |
454 | eerror "No username specified !" |
625 | die "Cannot call enewuser without a username" |
455 | die "Cannot call enewuser without a username" |
626 | fi |
456 | fi |
627 | |
457 | |
628 | # lets see if the username already exists |
458 | # lets see if the username already exists |
629 | if [ "${euser}" == "`egetent passwd \"${euser}\" | cut -d: -f1`" ] |
459 | if [[ ${euser} == $(egetent passwd "${euser}" | cut -d: -f1) ]] ; then |
630 | then |
|
|
631 | return 0 |
460 | return 0 |
632 | fi |
461 | fi |
633 | einfo "Adding user '${euser}' to your system ..." |
462 | einfo "Adding user '${euser}' to your system ..." |
634 | |
463 | |
635 | # options to pass to useradd |
464 | # options to pass to useradd |
636 | local opts= |
465 | local opts= |
637 | |
466 | |
638 | # handle uid |
467 | # handle uid |
639 | local euid="$1"; shift |
468 | local euid=$1; shift |
640 | if [ ! -z "${euid}" ] && [ "${euid}" != "-1" ] |
469 | if [[ ! -z ${euid} ]] && [[ ${euid} != "-1" ]] ; then |
641 | then |
|
|
642 | if [ "${euid}" -gt 0 ] |
470 | if [[ ${euid} -gt 0 ]] ; then |
643 | then |
|
|
644 | if [ ! -z "`egetent passwd ${euid}`" ] |
471 | if [[ ! -z $(egetent passwd ${euid}) ]] ; then |
645 | then |
|
|
646 | euid="next" |
472 | euid="next" |
647 | fi |
473 | fi |
648 | else |
474 | else |
649 | eerror "Userid given but is not greater than 0 !" |
475 | eerror "Userid given but is not greater than 0 !" |
650 | die "${euid} is not a valid UID" |
476 | die "${euid} is not a valid UID" |
651 | fi |
477 | fi |
652 | else |
478 | else |
653 | euid="next" |
479 | euid="next" |
654 | fi |
480 | fi |
655 | if [ "${euid}" == "next" ] |
481 | if [[ ${euid} == "next" ]] ; then |
656 | then |
482 | for euid in $(seq 101 999) ; do |
657 | local pwrange |
|
|
658 | if [ "${USERLAND}" == "BSD" ] ; then |
|
|
659 | pwrange="`jot 898 101`" |
|
|
660 | else |
|
|
661 | pwrange="`seq 101 999`" |
|
|
662 | fi |
|
|
663 | for euid in ${pwrange} ; do |
|
|
664 | [ -z "`egetent passwd ${euid}`" ] && break |
483 | [[ -z $(egetent passwd ${euid}) ]] && break |
665 | done |
484 | done |
666 | fi |
485 | fi |
667 | opts="${opts} -u ${euid}" |
486 | opts="${opts} -u ${euid}" |
668 | einfo " - Userid: ${euid}" |
487 | einfo " - Userid: ${euid}" |
669 | |
488 | |
670 | # handle shell |
489 | # handle shell |
671 | local eshell="$1"; shift |
490 | local eshell=$1; shift |
672 | if [ ! -z "${eshell}" ] && [ "${eshell}" != "-1" ] |
491 | if [[ ! -z ${eshell} ]] && [[ ${eshell} != "-1" ]] ; then |
673 | then |
|
|
674 | if [ ! -e "${eshell}" ] |
492 | if [[ ! -e ${eshell} ]] ; then |
675 | then |
|
|
676 | eerror "A shell was specified but it does not exist !" |
493 | eerror "A shell was specified but it does not exist !" |
677 | die "${eshell} does not exist" |
494 | die "${eshell} does not exist" |
678 | fi |
495 | fi |
679 | else |
496 | else |
680 | if [ "${USERLAND}" == "BSD" ] |
497 | for shell in /sbin/nologin /usr/sbin/nologin /bin/false /usr/bin/false /dev/null; do |
681 | then |
498 | [[ -x ${ROOT}${shell} ]] && break; |
682 | eshell="/usr/bin/false" |
499 | done |
683 | else |
500 | |
684 | eshell="/bin/false" |
501 | if [[ ${shell} == "/dev/null" ]]; then |
|
|
502 | eerror "Unable to identify the shell to use" |
|
|
503 | die "Unable to identify the shell to use" |
685 | fi |
504 | fi |
|
|
505 | |
|
|
506 | eshell=${shell} |
686 | fi |
507 | fi |
687 | einfo " - Shell: ${eshell}" |
508 | einfo " - Shell: ${eshell}" |
688 | opts="${opts} -s ${eshell}" |
509 | opts="${opts} -s ${eshell}" |
689 | |
510 | |
690 | # handle homedir |
511 | # handle homedir |
691 | local ehome="$1"; shift |
512 | local ehome=$1; shift |
692 | if [ -z "${ehome}" ] && [ "${eshell}" != "-1" ] |
513 | if [[ -z ${ehome} ]] || [[ ${ehome} == "-1" ]] ; then |
693 | then |
|
|
694 | ehome="/dev/null" |
514 | ehome="/dev/null" |
695 | fi |
515 | fi |
696 | einfo " - Home: ${ehome}" |
516 | einfo " - Home: ${ehome}" |
697 | opts="${opts} -d ${ehome}" |
517 | opts="${opts} -d ${ehome}" |
698 | |
518 | |
699 | # handle groups |
519 | # handle groups |
700 | local egroups="$1"; shift |
520 | local egroups=$1; shift |
701 | if [ ! -z "${egroups}" ] |
521 | if [[ ! -z ${egroups} ]] ; then |
702 | then |
|
|
703 | local oldifs="${IFS}" |
522 | local oldifs=${IFS} |
704 | local defgroup="" exgroups="" |
523 | local defgroup="" exgroups="" |
705 | |
524 | |
706 | export IFS="," |
525 | export IFS="," |
707 | for g in ${egroups} |
526 | for g in ${egroups} ; do |
708 | do |
|
|
709 | export IFS="${oldifs}" |
527 | export IFS=${oldifs} |
710 | if [ -z "`egetent group \"${g}\"`" ] |
528 | if [[ -z $(egetent group "${g}") ]] ; then |
711 | then |
|
|
712 | eerror "You must add group ${g} to the system first" |
529 | eerror "You must add group ${g} to the system first" |
713 | die "${g} is not a valid GID" |
530 | die "${g} is not a valid GID" |
714 | fi |
531 | fi |
715 | if [ -z "${defgroup}" ] |
532 | if [[ -z ${defgroup} ]] ; then |
716 | then |
|
|
717 | defgroup="${g}" |
533 | defgroup=${g} |
718 | else |
534 | else |
719 | exgroups="${exgroups},${g}" |
535 | exgroups="${exgroups},${g}" |
720 | fi |
536 | fi |
721 | export IFS="," |
537 | export IFS="," |
722 | done |
538 | done |
723 | export IFS="${oldifs}" |
539 | export IFS=${oldifs} |
724 | |
540 | |
725 | opts="${opts} -g ${defgroup}" |
541 | opts="${opts} -g ${defgroup}" |
726 | if [ ! -z "${exgroups}" ] |
542 | if [[ ! -z ${exgroups} ]] ; then |
727 | then |
|
|
728 | opts="${opts} -G ${exgroups:1}" |
543 | opts="${opts} -G ${exgroups:1}" |
729 | fi |
544 | fi |
730 | else |
545 | else |
731 | egroups="(none)" |
546 | egroups="(none)" |
732 | fi |
547 | fi |
733 | einfo " - Groups: ${egroups}" |
548 | einfo " - Groups: ${egroups}" |
734 | |
549 | |
735 | # handle extra and add the user |
550 | # handle extra and add the user |
736 | local eextra="$@" |
|
|
737 | local oldsandbox="${SANDBOX_ON}" |
551 | local oldsandbox=${SANDBOX_ON} |
738 | export SANDBOX_ON="0" |
552 | export SANDBOX_ON="0" |
739 | if use ppc-macos |
553 | case ${USERLAND} in |
740 | then |
554 | Darwin) |
741 | ### Make the user |
555 | ### Make the user |
742 | if [ -z "${eextra}" ] |
556 | if [[ -z $@ ]] ; then |
743 | then |
|
|
744 | dscl . create /users/${euser} uid ${euid} |
557 | dscl . create /users/${euser} uid ${euid} |
745 | dscl . create /users/${euser} shell ${eshell} |
558 | dscl . create /users/${euser} shell ${eshell} |
746 | dscl . create /users/${euser} home ${ehome} |
559 | dscl . create /users/${euser} home ${ehome} |
747 | dscl . create /users/${euser} realname "added by portage for ${PN}" |
560 | dscl . create /users/${euser} realname "added by portage for ${PN}" |
748 | ### Add the user to the groups specified |
561 | ### Add the user to the groups specified |
749 | local oldifs="${IFS}" |
562 | local oldifs=${IFS} |
750 | export IFS="," |
563 | export IFS="," |
751 | for g in ${egroups} |
564 | for g in ${egroups} ; do |
752 | do |
|
|
753 | dscl . merge /groups/${g} users ${euser} |
565 | dscl . merge /groups/${g} users ${euser} |
754 | done |
566 | done |
755 | export IFS="${oldifs}" |
567 | export IFS=${oldifs} |
756 | else |
568 | else |
757 | einfo "Extra options are not supported on macos yet" |
569 | einfo "Extra options are not supported on Darwin yet" |
758 | einfo "Please report the ebuild along with the info below" |
570 | einfo "Please report the ebuild along with the info below" |
759 | einfo "eextra: ${eextra}" |
571 | einfo "eextra: $@" |
760 | die "Required function missing" |
572 | die "Required function missing" |
761 | fi |
573 | fi |
762 | elif use x86-fbsd ; then |
574 | ;; |
763 | if [ -z "${eextra}" ] |
575 | BSD) |
764 | then |
576 | if [[ -z $@ ]] ; then |
765 | pw useradd ${euser} ${opts} \ |
577 | pw useradd ${euser} ${opts} \ |
766 | -c "added by portage for ${PN}" \ |
578 | -c "added by portage for ${PN}" \ |
767 | die "enewuser failed" |
579 | die "enewuser failed" |
768 | else |
580 | else |
769 | einfo " - Extra: ${eextra}" |
581 | einfo " - Extra: $@" |
770 | pw useradd ${euser} ${opts} \ |
582 | pw useradd ${euser} ${opts} \ |
771 | -c ${eextra} || die "enewuser failed" |
583 | "$@" || die "enewuser failed" |
772 | fi |
584 | fi |
773 | else |
585 | ;; |
774 | if [ -z "${eextra}" ] |
586 | *) |
775 | then |
587 | if [[ -z $@ ]] ; then |
776 | useradd ${opts} ${euser} \ |
588 | useradd ${opts} ${euser} \ |
777 | -c "added by portage for ${PN}" \ |
589 | -c "added by portage for ${PN}" \ |
778 | || die "enewuser failed" |
590 | || die "enewuser failed" |
779 | else |
591 | else |
780 | einfo " - Extra: ${eextra}" |
592 | einfo " - Extra: $@" |
781 | useradd ${opts} ${euser} ${eextra} \ |
593 | useradd ${opts} ${euser} "$@" \ |
782 | || die "enewuser failed" |
594 | || die "enewuser failed" |
783 | fi |
595 | fi |
|
|
596 | ;; |
|
|
597 | esac |
|
|
598 | |
|
|
599 | if [[ ! -e ${ROOT}/${ehome} ]] ; then |
|
|
600 | einfo " - Creating ${ehome} in ${ROOT}" |
|
|
601 | mkdir -p "${ROOT}/${ehome}" |
|
|
602 | chown ${euser} "${ROOT}/${ehome}" |
|
|
603 | chmod 755 "${ROOT}/${ehome}" |
784 | fi |
604 | fi |
|
|
605 | |
785 | export SANDBOX_ON="${oldsandbox}" |
606 | export SANDBOX_ON=${oldsandbox} |
786 | |
|
|
787 | if [ ! -e "${ehome}" ] && [ ! -e "${D}/${ehome}" ] |
|
|
788 | then |
|
|
789 | einfo " - Creating ${ehome} in ${D}" |
|
|
790 | dodir ${ehome} |
|
|
791 | fowners ${euser} ${ehome} |
|
|
792 | fperms 755 ${ehome} |
|
|
793 | fi |
|
|
794 | } |
607 | } |
795 | |
608 | |
796 | # Simplify/standardize adding groups to the system |
609 | # Simplify/standardize adding groups to the system |
797 | # vapier@gentoo.org |
610 | # vapier@gentoo.org |
798 | # |
611 | # |
… | |
… | |
827 | then |
640 | then |
828 | if [ "${egid}" -gt 0 ] |
641 | if [ "${egid}" -gt 0 ] |
829 | then |
642 | then |
830 | if [ -z "`egetent group ${egid}`" ] |
643 | if [ -z "`egetent group ${egid}`" ] |
831 | then |
644 | then |
832 | if use ppc-macos ; then |
645 | if [[ "${USERLAND}" == "Darwin" ]]; then |
833 | opts="${opts} ${egid}" |
646 | opts="${opts} ${egid}" |
834 | else |
647 | else |
835 | opts="${opts} -g ${egid}" |
648 | opts="${opts} -g ${egid}" |
836 | fi |
649 | fi |
837 | else |
650 | else |
… | |
… | |
851 | opts="${opts} ${eextra}" |
664 | opts="${opts} ${eextra}" |
852 | |
665 | |
853 | # add the group |
666 | # add the group |
854 | local oldsandbox="${SANDBOX_ON}" |
667 | local oldsandbox="${SANDBOX_ON}" |
855 | export SANDBOX_ON="0" |
668 | export SANDBOX_ON="0" |
856 | if use ppc-macos |
669 | if [[ "${USERLAND}" == "Darwin" ]]; then |
857 | then |
|
|
858 | if [ ! -z "${eextra}" ]; |
670 | if [ ! -z "${eextra}" ]; |
859 | then |
671 | then |
860 | einfo "Extra options are not supported on macos yet" |
672 | einfo "Extra options are not supported on Darwin/OS X yet" |
861 | einfo "Please report the ebuild along with the info below" |
673 | einfo "Please report the ebuild along with the info below" |
862 | einfo "eextra: ${eextra}" |
674 | einfo "eextra: ${eextra}" |
863 | die "Required function missing" |
675 | die "Required function missing" |
864 | fi |
676 | fi |
865 | |
677 | |
866 | # If we need the next available |
678 | # If we need the next available |
867 | case ${egid} in |
679 | case ${egid} in |
868 | *[!0-9]*) # Non numeric |
680 | *[!0-9]*) # Non numeric |
869 | for egid in `jot 898 101`; do |
681 | for egid in $(seq 101 999); do |
870 | [ -z "`egetent group ${egid}`" ] && break |
682 | [ -z "`egetent group ${egid}`" ] && break |
871 | done |
683 | done |
872 | esac |
684 | esac |
873 | dscl . create /groups/${egroup} gid ${egid} |
685 | dscl . create /groups/${egroup} gid ${egid} |
874 | dscl . create /groups/${egroup} passwd '*' |
686 | dscl . create /groups/${egroup} passwd '*' |
875 | elif use x86-fbsd ; then |
687 | elif [[ "${USERLAND}" == "BSD" ]] ; then |
876 | case ${egid} in |
688 | case ${egid} in |
877 | *[!0-9]*) # Non numeric |
689 | *[!0-9]*) # Non numeric |
878 | for egid in `jot 898 101`; do |
690 | for egid in $(seq 101 999); do |
879 | [ -z "`egetent group ${egid}`" ] && break |
691 | [ -z "`egetent group ${egid}`" ] && break |
880 | done |
692 | done |
881 | esac |
693 | esac |
882 | pw groupadd ${egroup} -g ${egid} || die "enewgroup failed" |
694 | pw groupadd ${egroup} -g ${egid} || die "enewgroup failed" |
883 | else |
695 | else |
… | |
… | |
896 | cp "${f}" ${T}/edos2unix |
708 | cp "${f}" ${T}/edos2unix |
897 | sed 's/\r$//' ${T}/edos2unix > "${f}" |
709 | sed 's/\r$//' ${T}/edos2unix > "${f}" |
898 | done |
710 | done |
899 | } |
711 | } |
900 | |
712 | |
|
|
713 | |
|
|
714 | ############################################################## |
|
|
715 | # START: Handle .desktop files and menu entries # |
|
|
716 | # maybe this should be separated into a new eclass some time # |
|
|
717 | # lanius@gentoo.org # |
|
|
718 | ############################################################## |
|
|
719 | |
901 | # Make a desktop file ! |
720 | # Make a desktop file ! |
902 | # Great for making those icons in kde/gnome startmenu ! |
721 | # Great for making those icons in kde/gnome startmenu ! |
903 | # Amaze your friends ! Get the women ! Join today ! |
722 | # Amaze your friends ! Get the women ! Join today ! |
904 | # |
723 | # |
905 | # make_desktop_entry(<binary>, [name], [icon], [type], [path]) |
724 | # make_desktop_entry(<binary>, [name], [icon], [type], [path]) |
… | |
… | |
908 | # name: the name that will show up in the menu |
727 | # name: the name that will show up in the menu |
909 | # icon: give your little like a pretty little icon ... |
728 | # icon: give your little like a pretty little icon ... |
910 | # this can be relative (to /usr/share/pixmaps) or |
729 | # this can be relative (to /usr/share/pixmaps) or |
911 | # a full path to an icon |
730 | # a full path to an icon |
912 | # type: what kind of application is this ? for categories: |
731 | # type: what kind of application is this ? for categories: |
913 | # http://www.freedesktop.org/standards/menu-spec/ |
732 | # http://www.freedesktop.org/Standards/desktop-entry-spec |
914 | # path: if your app needs to startup in a specific dir |
733 | # path: if your app needs to startup in a specific dir |
915 | make_desktop_entry() { |
734 | make_desktop_entry() { |
916 | [ -z "$1" ] && eerror "make_desktop_entry: You must specify the executable" && return 1 |
735 | [[ -z $1 ]] && eerror "make_desktop_entry: You must specify the executable" && return 1 |
917 | |
736 | |
918 | local exec="${1}" |
737 | local exec=${1} |
919 | local name="${2:-${PN}}" |
738 | local name=${2:-${PN}} |
920 | local icon="${3:-${PN}.png}" |
739 | local icon=${3:-${PN}.png} |
921 | local type="${4}" |
740 | local type=${4} |
922 | local subdir="${6}" |
741 | local path=${5} |
923 | local path="${5:-${GAMES_BINDIR}}" |
742 | |
924 | if [ -z "${type}" ] |
743 | if [[ -z ${type} ]] ; then |
925 | then |
744 | local catmaj=${CATEGORY%%-*} |
926 | case ${CATEGORY} in |
745 | local catmin=${CATEGORY##*-} |
927 | "app-emulation") |
746 | case ${catmaj} in |
928 | type=Emulator |
747 | app) |
929 | subdir="Emulation" |
748 | case ${catmin} in |
|
|
749 | admin) type=System;; |
|
|
750 | cdr) type=DiscBurning;; |
|
|
751 | dicts) type=Dictionary;; |
|
|
752 | editors) type=TextEditor;; |
|
|
753 | emacs) type=TextEditor;; |
|
|
754 | emulation) type=Emulator;; |
|
|
755 | laptop) type=HardwareSettings;; |
|
|
756 | office) type=Office;; |
|
|
757 | vim) type=TextEditor;; |
|
|
758 | xemacs) type=TextEditor;; |
|
|
759 | *) type=;; |
|
|
760 | esac |
930 | ;; |
761 | ;; |
931 | "games-"*) |
762 | |
932 | type=Game |
763 | dev) |
933 | subdir="Games" |
764 | type="Development" |
934 | ;; |
765 | ;; |
935 | "net-"*) |
766 | |
936 | type=Network |
767 | games) |
937 | subdir="${type}" |
768 | case ${catmin} in |
|
|
769 | action) type=ActionGame;; |
|
|
770 | arcade) type=ArcadeGame;; |
|
|
771 | board) type=BoardGame;; |
|
|
772 | kid) type=KidsGame;; |
|
|
773 | emulation) type=Emulator;; |
|
|
774 | puzzle) type=LogicGame;; |
|
|
775 | rpg) type=RolePlaying;; |
|
|
776 | roguelike) type=RolePlaying;; |
|
|
777 | simulation) type=Simulation;; |
|
|
778 | sports) type=SportsGame;; |
|
|
779 | strategy) type=StrategyGame;; |
|
|
780 | *) type=;; |
|
|
781 | esac |
|
|
782 | type="Game;${type}" |
938 | ;; |
783 | ;; |
|
|
784 | |
|
|
785 | mail) |
|
|
786 | type="Network;Email" |
|
|
787 | ;; |
|
|
788 | |
|
|
789 | media) |
|
|
790 | case ${catmin} in |
|
|
791 | gfx) type=Graphics;; |
|
|
792 | radio) type=Tuner;; |
|
|
793 | sound) type=Audio;; |
|
|
794 | tv) type=TV;; |
|
|
795 | video) type=Video;; |
|
|
796 | *) type=;; |
|
|
797 | esac |
|
|
798 | type="AudioVideo;${type}" |
|
|
799 | ;; |
|
|
800 | |
|
|
801 | net) |
|
|
802 | case ${catmin} in |
|
|
803 | dialup) type=Dialup;; |
|
|
804 | ftp) type=FileTransfer;; |
|
|
805 | im) type=InstantMessaging;; |
|
|
806 | irc) type=IRCClient;; |
|
|
807 | mail) type=Email;; |
|
|
808 | news) type=News;; |
|
|
809 | nntp) type=News;; |
|
|
810 | p2p) type=FileTransfer;; |
|
|
811 | *) type=;; |
|
|
812 | esac |
|
|
813 | type="Network;${type}" |
|
|
814 | ;; |
|
|
815 | |
|
|
816 | sci) |
|
|
817 | case ${catmin} in |
|
|
818 | astro*) type=Astronomoy;; |
|
|
819 | bio*) type=Biology;; |
|
|
820 | calc*) type=Calculator;; |
|
|
821 | chem*) type=Chemistry;; |
|
|
822 | geo*) type=Geology;; |
|
|
823 | math*) type=Math;; |
|
|
824 | *) type=;; |
|
|
825 | esac |
|
|
826 | type="Science;${type}" |
|
|
827 | ;; |
|
|
828 | |
|
|
829 | www) |
|
|
830 | case ${catmin} in |
|
|
831 | client) type=WebBrowser;; |
|
|
832 | *) type=;; |
|
|
833 | esac |
|
|
834 | type="Network" |
|
|
835 | ;; |
|
|
836 | |
939 | *) |
837 | *) |
940 | type= |
838 | type= |
941 | subdir= |
|
|
942 | ;; |
839 | ;; |
943 | esac |
840 | esac |
944 | fi |
841 | fi |
|
|
842 | if [ "${SLOT}" == "0" ] ; then |
|
|
843 | local desktop_name="${PN}" |
|
|
844 | else |
|
|
845 | local desktop_name="${PN}-${SLOT}" |
|
|
846 | fi |
945 | local desktop="${T}/${exec}.desktop" |
847 | local desktop=${T}/${exec%% *}-${desktop_name}.desktop |
946 | |
848 | |
947 | echo "[Desktop Entry] |
849 | echo "[Desktop Entry] |
948 | Encoding=UTF-8 |
850 | Encoding=UTF-8 |
949 | Version=0.9.2 |
851 | Version=0.9.2 |
950 | Name=${name} |
852 | Name=${name} |
… | |
… | |
959 | doins "${desktop}" |
861 | doins "${desktop}" |
960 | |
862 | |
961 | return 0 |
863 | return 0 |
962 | } |
864 | } |
963 | |
865 | |
|
|
866 | # Make a GDM/KDM Session file |
|
|
867 | # |
|
|
868 | # make_desktop_entry(<title>, <command>) |
|
|
869 | # title: File to execute to start the Window Manager |
|
|
870 | # command: Name of the Window Manager |
|
|
871 | |
|
|
872 | make_session_desktop() { |
|
|
873 | [[ -z $1 ]] && eerror "make_session_desktop: You must specify the title" && return 1 |
|
|
874 | [[ -z $2 ]] && eerror "make_session_desktop: You must specify the command" && return 1 |
|
|
875 | |
|
|
876 | local title=$1 |
|
|
877 | local command=$2 |
|
|
878 | local desktop=${T}/${wm}.desktop |
|
|
879 | |
|
|
880 | echo "[Desktop Entry] |
|
|
881 | Encoding=UTF-8 |
|
|
882 | Name=${title} |
|
|
883 | Comment=This session logs you into ${title} |
|
|
884 | Exec=${command} |
|
|
885 | TryExec=${command} |
|
|
886 | Type=Application" > "${desktop}" |
|
|
887 | |
|
|
888 | insinto /usr/share/xsessions |
|
|
889 | doins "${desktop}" |
|
|
890 | } |
|
|
891 | |
|
|
892 | domenu() { |
|
|
893 | local i j |
|
|
894 | insinto /usr/share/applications |
|
|
895 | for i in "$@" ; do |
|
|
896 | if [[ -f ${i} ]] ; then |
|
|
897 | doins "${i}" |
|
|
898 | elif [[ -d ${i} ]] ; then |
|
|
899 | for j in "${i}"/*.desktop ; do |
|
|
900 | doins "${j}" |
|
|
901 | done |
|
|
902 | fi |
|
|
903 | done |
|
|
904 | } |
|
|
905 | newmenu() { |
|
|
906 | insinto /usr/share/applications |
|
|
907 | newins "$1" "$2" |
|
|
908 | } |
|
|
909 | |
|
|
910 | doicon() { |
|
|
911 | local i j |
|
|
912 | insinto /usr/share/pixmaps |
|
|
913 | for i in "$@" ; do |
|
|
914 | if [[ -f ${i} ]] ; then |
|
|
915 | doins "${i}" |
|
|
916 | elif [[ -d ${i} ]] ; then |
|
|
917 | for j in "${i}"/*.png ; do |
|
|
918 | doins "${j}" |
|
|
919 | done |
|
|
920 | fi |
|
|
921 | done |
|
|
922 | } |
|
|
923 | newicon() { |
|
|
924 | insinto /usr/share/pixmaps |
|
|
925 | newins "$1" "$2" |
|
|
926 | } |
|
|
927 | |
|
|
928 | ############################################################## |
|
|
929 | # END: Handle .desktop files and menu entries # |
|
|
930 | ############################################################## |
|
|
931 | |
|
|
932 | |
964 | # for internal use only (unpack_pdv and unpack_makeself) |
933 | # for internal use only (unpack_pdv and unpack_makeself) |
965 | find_unpackable_file() { |
934 | find_unpackable_file() { |
966 | local src="$1" |
935 | local src=$1 |
967 | if [ -z "${src}" ] |
936 | if [[ -z ${src} ]] ; then |
968 | then |
|
|
969 | src="${DISTDIR}/${A}" |
937 | src=${DISTDIR}/${A} |
970 | else |
938 | else |
971 | if [ -e "${DISTDIR}/${src}" ] |
939 | if [[ -e ${DISTDIR}/${src} ]] ; then |
972 | then |
|
|
973 | src="${DISTDIR}/${src}" |
940 | src=${DISTDIR}/${src} |
974 | elif [ -e "${PWD}/${src}" ] |
941 | elif [[ -e ${PWD}/${src} ]] ; then |
975 | then |
|
|
976 | src="${PWD}/${src}" |
942 | src=${PWD}/${src} |
977 | elif [ -e "${src}" ] |
943 | elif [[ -e ${src} ]] ; then |
978 | then |
|
|
979 | src="${src}" |
944 | src=${src} |
980 | fi |
|
|
981 | fi |
945 | fi |
982 | [ ! -e "${src}" ] && die "Could not find requested archive ${src}" |
946 | fi |
|
|
947 | [[ ! -e ${src} ]] && return 1 |
983 | echo "${src}" |
948 | echo "${src}" |
984 | } |
949 | } |
985 | |
950 | |
986 | # Unpack those pesky pdv generated files ... |
951 | # Unpack those pesky pdv generated files ... |
987 | # They're self-unpacking programs with the binary package stuffed in |
952 | # They're self-unpacking programs with the binary package stuffed in |
… | |
… | |
1002 | # lseek |
967 | # lseek |
1003 | # root@vapier 0 pdv_unpack # strace -elseek ./hldsupdatetool.bin |
968 | # root@vapier 0 pdv_unpack # strace -elseek ./hldsupdatetool.bin |
1004 | # lseek(3, -4, SEEK_END) = 2981250 |
969 | # lseek(3, -4, SEEK_END) = 2981250 |
1005 | # thus we would pass in the value of '4' as the second parameter. |
970 | # thus we would pass in the value of '4' as the second parameter. |
1006 | unpack_pdv() { |
971 | unpack_pdv() { |
1007 | local src="`find_unpackable_file $1`" |
972 | local src=$(find_unpackable_file $1) |
1008 | local sizeoff_t="$2" |
973 | local sizeoff_t=$2 |
1009 | |
974 | |
|
|
975 | [[ -z ${src} ]] && die "Could not locate source for '$1'" |
1010 | [ -z "${sizeoff_t}" ] && die "No idea what off_t size was used for this pdv :(" |
976 | [[ -z ${sizeoff_t} ]] && die "No idea what off_t size was used for this pdv :(" |
1011 | |
977 | |
1012 | local shrtsrc="`basename ${src}`" |
978 | local shrtsrc="`basename ${src}`" |
1013 | echo ">>> Unpacking ${shrtsrc} to ${PWD}" |
979 | echo ">>> Unpacking ${shrtsrc} to ${PWD}" |
1014 | local metaskip=`tail -c ${sizeoff_t} ${src} | hexdump -e \"%i\"` |
980 | local metaskip=`tail -c ${sizeoff_t} ${src} | hexdump -e \"%i\"` |
1015 | local tailskip=`tail -c $((${sizeoff_t}*2)) ${src} | head -c ${sizeoff_t} | hexdump -e \"%i\"` |
981 | local tailskip=`tail -c $((${sizeoff_t}*2)) ${src} | head -c ${sizeoff_t} | hexdump -e \"%i\"` |
… | |
… | |
1081 | # Usage: unpack_makeself [file to unpack] [offset] [tail|dd] |
1047 | # Usage: unpack_makeself [file to unpack] [offset] [tail|dd] |
1082 | # - If the file is not specified then unpack will utilize ${A}. |
1048 | # - If the file is not specified then unpack will utilize ${A}. |
1083 | # - If the offset is not specified then we will attempt to extract |
1049 | # - If the offset is not specified then we will attempt to extract |
1084 | # the proper offset from the script itself. |
1050 | # the proper offset from the script itself. |
1085 | unpack_makeself() { |
1051 | unpack_makeself() { |
1086 | local src="$(find_unpackable_file "$1")" |
1052 | local src=$(find_unpackable_file "$1") |
1087 | local skip="$2" |
1053 | local skip=$2 |
1088 | local exe="$3" |
1054 | local exe=$3 |
1089 | |
1055 | |
|
|
1056 | [[ -z ${src} ]] && die "Could not locate source for '$1'" |
|
|
1057 | |
1090 | local shrtsrc="$(basename "${src}")" |
1058 | local shrtsrc=$(basename "${src}") |
1091 | echo ">>> Unpacking ${shrtsrc} to ${PWD}" |
1059 | echo ">>> Unpacking ${shrtsrc} to ${PWD}" |
1092 | if [ -z "${skip}" ] |
1060 | if [ -z "${skip}" ] |
1093 | then |
1061 | then |
1094 | local ver="`grep -a '#.*Makeself' ${src} | awk '{print $NF}'`" |
1062 | local ver="`grep -a '#.*Makeself' ${src} | awk '{print $NF}'`" |
1095 | local skip=0 |
1063 | local skip=0 |
… | |
… | |
1166 | check_license() { |
1134 | check_license() { |
1167 | local lic=$1 |
1135 | local lic=$1 |
1168 | if [ -z "${lic}" ] ; then |
1136 | if [ -z "${lic}" ] ; then |
1169 | lic="${PORTDIR}/licenses/${LICENSE}" |
1137 | lic="${PORTDIR}/licenses/${LICENSE}" |
1170 | else |
1138 | else |
1171 | if [ -e "${PORTDIR}/licenses/${src}" ] ; then |
1139 | if [ -e "${PORTDIR}/licenses/${lic}" ] ; then |
1172 | lic="${PORTDIR}/licenses/${src}" |
1140 | lic="${PORTDIR}/licenses/${lic}" |
1173 | elif [ -e "${PWD}/${src}" ] ; then |
1141 | elif [ -e "${PWD}/${lic}" ] ; then |
1174 | lic="${PWD}/${src}" |
1142 | lic="${PWD}/${lic}" |
1175 | elif [ -e "${src}" ] ; then |
1143 | elif [ -e "${lic}" ] ; then |
1176 | lic="${src}" |
1144 | lic="${lic}" |
1177 | fi |
|
|
1178 | fi |
1145 | fi |
|
|
1146 | fi |
1179 | [ ! -f "${lic}" ] && die "Could not find requested license ${src}" |
1147 | [ ! -f "${lic}" ] && die "Could not find requested license ${lic}" |
1180 | local l="`basename ${lic}`" |
1148 | local l="`basename ${lic}`" |
1181 | |
1149 | |
1182 | # here is where we check for the licenses the user already |
1150 | # here is where we check for the licenses the user already |
1183 | # accepted ... if we don't find a match, we make the user accept |
1151 | # accepted ... if we don't find a match, we make the user accept |
1184 | local shopts=$- |
1152 | local shopts=$- |
… | |
… | |
1248 | export CDROM_TOTAL_CDS=${cdcnt} |
1216 | export CDROM_TOTAL_CDS=${cdcnt} |
1249 | export CDROM_CURRENT_CD=1 |
1217 | export CDROM_CURRENT_CD=1 |
1250 | |
1218 | |
1251 | # now we see if the user gave use CD_ROOT ... |
1219 | # now we see if the user gave use CD_ROOT ... |
1252 | # if they did, let's just believe them that it's correct |
1220 | # if they did, let's just believe them that it's correct |
1253 | if [ ! -z "${CD_ROOT}" ] ; then |
1221 | if [[ ! -z ${CD_ROOT} ]] ; then |
1254 | export CDROM_ROOT="${CD_ROOT}" |
1222 | export CDROM_ROOT=${CD_ROOT} |
1255 | einfo "Found CD #${CDROM_CURRENT_CD} root at ${CDROM_ROOT}" |
1223 | einfo "Found CD #${CDROM_CURRENT_CD} root at ${CDROM_ROOT}" |
1256 | return |
1224 | return |
1257 | fi |
1225 | fi |
1258 | # do the same for CD_ROOT_X |
1226 | # do the same for CD_ROOT_X |
1259 | if [ ! -z "${CD_ROOT_1}" ] ; then |
1227 | if [[ ! -z ${CD_ROOT_1} ]] ; then |
1260 | local var= |
1228 | local var= |
1261 | cdcnt=0 |
1229 | cdcnt=0 |
1262 | while [ ${cdcnt} -lt ${CDROM_TOTAL_CDS} ] ; do |
1230 | while [[ ${cdcnt} -lt ${CDROM_TOTAL_CDS} ]] ; do |
1263 | cdcnt=$((cdcnt + 1)) |
1231 | cdcnt=$((cdcnt + 1)) |
1264 | var="CD_ROOT_${cdcnt}" |
1232 | var="CD_ROOT_${cdcnt}" |
1265 | if [ -z "${!var}" ] ; then |
1233 | if [[ -z ${!var} ]] ; then |
1266 | eerror "You must either use just the CD_ROOT" |
1234 | eerror "You must either use just the CD_ROOT" |
1267 | eerror "or specify ALL the CD_ROOT_X variables." |
1235 | eerror "or specify ALL the CD_ROOT_X variables." |
1268 | eerror "In this case, you will need ${CDROM_TOTAL_CDS} CD_ROOT_X variables." |
1236 | eerror "In this case, you will need ${CDROM_TOTAL_CDS} CD_ROOT_X variables." |
1269 | die "could not locate CD_ROOT_${cdcnt}" |
1237 | die "could not locate CD_ROOT_${cdcnt}" |
1270 | fi |
1238 | fi |
… | |
… | |
1273 | export CDROM_ROOT=${CDROM_ROOTS_1} |
1241 | export CDROM_ROOT=${CDROM_ROOTS_1} |
1274 | einfo "Found CD #${CDROM_CURRENT_CD} root at ${CDROM_ROOT}" |
1242 | einfo "Found CD #${CDROM_CURRENT_CD} root at ${CDROM_ROOT}" |
1275 | return |
1243 | return |
1276 | fi |
1244 | fi |
1277 | |
1245 | |
1278 | if [ ${CDROM_TOTAL_CDS} -eq 1 ] ; then |
1246 | if [[ ${CDROM_TOTAL_CDS} -eq 1 ]] ; then |
1279 | einfon "This ebuild will need the " |
1247 | einfon "This ebuild will need the " |
1280 | if [ -z "${CDROM_NAME}" ] ; then |
1248 | if [[ -z ${CDROM_NAME} ]] ; then |
1281 | echo "cdrom for ${PN}." |
1249 | echo "cdrom for ${PN}." |
1282 | else |
1250 | else |
1283 | echo "${CDROM_NAME}." |
1251 | echo "${CDROM_NAME}." |
1284 | fi |
1252 | fi |
1285 | echo |
1253 | echo |
1286 | einfo "If you do not have the CD, but have the data files" |
1254 | einfo "If you do not have the CD, but have the data files" |
1287 | einfo "mounted somewhere on your filesystem, just export" |
1255 | einfo "mounted somewhere on your filesystem, just export" |
1288 | einfo "the variable CD_ROOT so that it points to the" |
1256 | einfo "the variable CD_ROOT so that it points to the" |
1289 | einfo "directory containing the files." |
1257 | einfo "directory containing the files." |
1290 | echo |
1258 | echo |
|
|
1259 | einfo "For example:" |
|
|
1260 | einfo "export CD_ROOT=/mnt/cdrom" |
|
|
1261 | echo |
1291 | else |
1262 | else |
1292 | einfo "This package will need access to ${CDROM_TOTAL_CDS} cds." |
1263 | einfo "This package will need access to ${CDROM_TOTAL_CDS} cds." |
1293 | cdcnt=0 |
1264 | cdcnt=0 |
1294 | while [ ${cdcnt} -lt ${CDROM_TOTAL_CDS} ] ; do |
1265 | while [[ ${cdcnt} -lt ${CDROM_TOTAL_CDS} ]] ; do |
1295 | cdcnt=$((cdcnt + 1)) |
1266 | cdcnt=$((cdcnt + 1)) |
1296 | var="CDROM_NAME_${cdcnt}" |
1267 | var="CDROM_NAME_${cdcnt}" |
1297 | [ ! -z "${!var}" ] && einfo " CD ${cdcnt}: ${!var}" |
1268 | [[ ! -z ${!var} ]] && einfo " CD ${cdcnt}: ${!var}" |
1298 | done |
1269 | done |
1299 | echo |
1270 | echo |
1300 | einfo "If you do not have the CDs, but have the data files" |
1271 | einfo "If you do not have the CDs, but have the data files" |
1301 | einfo "mounted somewhere on your filesystem, just export" |
1272 | einfo "mounted somewhere on your filesystem, just export" |
1302 | einfo "the following variables so they point to the right place:" |
1273 | einfo "the following variables so they point to the right place:" |
1303 | einfon "" |
1274 | einfon "" |
1304 | cdcnt=0 |
1275 | cdcnt=0 |
1305 | while [ ${cdcnt} -lt ${CDROM_TOTAL_CDS} ] ; do |
1276 | while [[ ${cdcnt} -lt ${CDROM_TOTAL_CDS} ]] ; do |
1306 | cdcnt=$((cdcnt + 1)) |
1277 | cdcnt=$((cdcnt + 1)) |
1307 | echo -n " CD_ROOT_${cdcnt}" |
1278 | echo -n " CD_ROOT_${cdcnt}" |
1308 | done |
1279 | done |
1309 | echo |
1280 | echo |
1310 | einfo "Or, if you have all the files in the same place, or" |
1281 | einfo "Or, if you have all the files in the same place, or" |
1311 | einfo "you only have one cdrom, you can export CD_ROOT" |
1282 | einfo "you only have one cdrom, you can export CD_ROOT" |
1312 | einfo "and that place will be used as the same data source" |
1283 | einfo "and that place will be used as the same data source" |
1313 | einfo "for all the CDs." |
1284 | einfo "for all the CDs." |
1314 | echo |
1285 | echo |
|
|
1286 | einfo "For example:" |
|
|
1287 | einfo "export CD_ROOT_1=/mnt/cdrom" |
|
|
1288 | echo |
1315 | fi |
1289 | fi |
1316 | export CDROM_CURRENT_CD=0 |
1290 | export CDROM_CURRENT_CD=0 |
1317 | cdrom_load_next_cd |
1291 | cdrom_load_next_cd |
1318 | } |
1292 | } |
1319 | |
1293 | |
… | |
… | |
1323 | # remember, you can only go forward in the cd chain, you can't go back. |
1297 | # remember, you can only go forward in the cd chain, you can't go back. |
1324 | cdrom_load_next_cd() { |
1298 | cdrom_load_next_cd() { |
1325 | export CDROM_CURRENT_CD=$((CDROM_CURRENT_CD + 1)) |
1299 | export CDROM_CURRENT_CD=$((CDROM_CURRENT_CD + 1)) |
1326 | local var= |
1300 | local var= |
1327 | |
1301 | |
1328 | if [ ! -z "${CD_ROOT}" ] ; then |
1302 | if [[ ! -z ${CD_ROOT} ]] ; then |
1329 | einfo "Using same root as before for CD #${CDROM_CURRENT_CD}" |
1303 | einfo "Using same root as before for CD #${CDROM_CURRENT_CD}" |
1330 | return |
1304 | return |
1331 | fi |
1305 | fi |
1332 | |
1306 | |
1333 | unset CDROM_ROOT |
1307 | unset CDROM_ROOT |
1334 | var=CDROM_ROOTS_${CDROM_CURRENT_CD} |
1308 | var=CDROM_ROOTS_${CDROM_CURRENT_CD} |
1335 | if [ -z "${!var}" ] ; then |
1309 | if [[ -z ${!var} ]] ; then |
1336 | var="CDROM_CHECK_${CDROM_CURRENT_CD}" |
1310 | var="CDROM_CHECK_${CDROM_CURRENT_CD}" |
1337 | cdrom_locate_file_on_cd ${!var} |
1311 | cdrom_locate_file_on_cd ${!var} |
1338 | else |
1312 | else |
1339 | export CDROM_ROOT="${!var}" |
1313 | export CDROM_ROOT=${!var} |
1340 | fi |
1314 | fi |
1341 | |
1315 | |
1342 | einfo "Found CD #${CDROM_CURRENT_CD} root at ${CDROM_ROOT}" |
1316 | einfo "Found CD #${CDROM_CURRENT_CD} root at ${CDROM_ROOT}" |
1343 | } |
1317 | } |
1344 | |
1318 | |
… | |
… | |
1348 | # found, then a message asking for the user to insert the cdrom will be |
1322 | # found, then a message asking for the user to insert the cdrom will be |
1349 | # displayed and we'll hang out here until: |
1323 | # displayed and we'll hang out here until: |
1350 | # (1) the file is found on a mounted cdrom |
1324 | # (1) the file is found on a mounted cdrom |
1351 | # (2) the user hits CTRL+C |
1325 | # (2) the user hits CTRL+C |
1352 | cdrom_locate_file_on_cd() { |
1326 | cdrom_locate_file_on_cd() { |
1353 | while [ -z "${CDROM_ROOT}" ] ; do |
1327 | while [[ -z ${CDROM_ROOT} ]] ; do |
1354 | local dir="$(dirname ${@})" |
1328 | local dir=$(dirname "$*") |
1355 | local file="$(basename ${@})" |
1329 | local file=$(basename "$*") |
1356 | local mline="" |
1330 | local mline="" |
1357 | local showedmsg=0 |
1331 | local showedmsg=0 |
1358 | |
1332 | |
1359 | for mline in `mount | egrep -e '(iso|cdrom)' | awk '{print $3}'` ; do |
1333 | for mline in $(mount | egrep -e '(iso|cdrom)' | awk '{print $3}') ; do |
1360 | [ -d "${mline}/${dir}" ] || continue |
1334 | [[ -d ${mline}/${dir} ]] || continue |
1361 | [ ! -z "$(find ${mline}/${dir} -iname ${file} -maxdepth 1)" ] \ |
1335 | [[ ! -z $(find ${mline}/${dir} -maxdepth 1 -iname ${file}) ]] \ |
1362 | && export CDROM_ROOT=${mline} |
1336 | && export CDROM_ROOT=${mline} |
1363 | done |
1337 | done |
1364 | |
1338 | |
1365 | if [ -z "${CDROM_ROOT}" ] ; then |
1339 | if [[ -z ${CDROM_ROOT} ]] ; then |
1366 | echo |
1340 | echo |
1367 | if [ ${showedmsg} -eq 0 ] ; then |
1341 | if [[ ${showedmsg} -eq 0 ]] ; then |
1368 | if [ ${CDROM_TOTAL_CDS} -eq 1 ] ; then |
1342 | if [[ ${CDROM_TOTAL_CDS} -eq 1 ]] ; then |
1369 | if [ -z "${CDROM_NAME}" ] ; then |
1343 | if [[ -z ${CDROM_NAME} ]] ; then |
1370 | einfo "Please insert the cdrom for ${PN} now !" |
1344 | einfo "Please insert the cdrom for ${PN} now !" |
1371 | else |
1345 | else |
1372 | einfo "Please insert the ${CDROM_NAME} cdrom now !" |
1346 | einfo "Please insert the ${CDROM_NAME} cdrom now !" |
1373 | fi |
1347 | fi |
1374 | else |
1348 | else |
1375 | if [ -z "${CDROM_NAME_1}" ] ; then |
1349 | if [[ -z ${CDROM_NAME_1} ]] ; then |
1376 | einfo "Please insert cd #${CDROM_CURRENT_CD} for ${PN} now !" |
1350 | einfo "Please insert cd #${CDROM_CURRENT_CD} for ${PN} now !" |
1377 | else |
1351 | else |
1378 | local var="CDROM_NAME_${CDROM_CURRENT_CD}" |
1352 | local var="CDROM_NAME_${CDROM_CURRENT_CD}" |
1379 | einfo "Please insert+mount the ${!var} cdrom now !" |
1353 | einfo "Please insert+mount the ${!var} cdrom now !" |
1380 | fi |
1354 | fi |
1381 | fi |
1355 | fi |
1382 | showedmsg=1 |
1356 | showedmsg=1 |
1383 | fi |
1357 | fi |
1384 | einfo "Press return to scan for the cd again" |
1358 | einfo "Press return to scan for the cd again" |
1385 | einfo "or hit CTRL+C to abort the emerge." |
1359 | einfo "or hit CTRL+C to abort the emerge." |
|
|
1360 | echo |
|
|
1361 | einfo "If you are having trouble with the detection" |
|
|
1362 | einfo "of your CD, it is possible that you do not have" |
|
|
1363 | einfo "Joliet support enabled in your kernel. Please" |
|
|
1364 | einfo "check that CONFIG_JOLIET is enabled in your kernel." |
1386 | read |
1365 | read |
1387 | fi |
1366 | fi |
1388 | done |
1367 | done |
1389 | } |
1368 | } |
1390 | |
1369 | |
… | |
… | |
1400 | # directories and uses the intersection of the lists. |
1379 | # directories and uses the intersection of the lists. |
1401 | # The -u builds a list of po files found in all the |
1380 | # The -u builds a list of po files found in all the |
1402 | # directories and uses the union of the lists. |
1381 | # directories and uses the union of the lists. |
1403 | strip-linguas() { |
1382 | strip-linguas() { |
1404 | local ls newls |
1383 | local ls newls |
1405 | if [ "$1" == "-i" ] || [ "$1" == "-u" ] ; then |
1384 | if [[ $1 == "-i" ]] || [[ $1 == "-u" ]] ; then |
1406 | local op="$1"; shift |
1385 | local op=$1; shift |
1407 | ls=" $(find "$1" -name '*.po' -printf '%f ') "; shift |
1386 | ls=" $(find "$1" -name '*.po' -printf '%f ') "; shift |
1408 | local d f |
1387 | local d f |
1409 | for d in "$@" ; do |
1388 | for d in "$@" ; do |
1410 | if [ "${op}" == "-u" ] ; then |
1389 | if [[ ${op} == "-u" ]] ; then |
1411 | newls="${ls}" |
1390 | newls=${ls} |
1412 | else |
1391 | else |
1413 | newls="" |
1392 | newls="" |
1414 | fi |
1393 | fi |
1415 | for f in $(find "$d" -name '*.po' -printf '%f ') ; do |
1394 | for f in $(find "$d" -name '*.po' -printf '%f ') ; do |
1416 | if [ "${op}" == "-i" ] ; then |
1395 | if [[ ${op} == "-i" ]] ; then |
1417 | [ "${ls/ ${f} /}" != "${ls}" ] && newls="${newls} ${f}" |
1396 | [[ ${ls/ ${f} /} != ${ls} ]] && newls="${newls} ${f}" |
1418 | else |
1397 | else |
1419 | [ "${ls/ ${f} /}" == "${ls}" ] && newls="${newls} ${f}" |
1398 | [[ ${ls/ ${f} /} == ${ls} ]] && newls="${newls} ${f}" |
1420 | fi |
1399 | fi |
1421 | done |
1400 | done |
1422 | ls="${newls}" |
1401 | ls=${newls} |
1423 | done |
1402 | done |
1424 | ls="${ls//.po}" |
1403 | ls=${ls//.po} |
1425 | else |
1404 | else |
1426 | ls="$@" |
1405 | ls=$@ |
1427 | fi |
1406 | fi |
1428 | |
1407 | |
1429 | ls=" ${ls} " |
1408 | ls=" ${ls} " |
1430 | newls="" |
1409 | newls="" |
1431 | for f in ${LINGUAS} ; do |
1410 | for f in ${LINGUAS} ; do |
1432 | if [ "${ls/ ${f} /}" != "${ls}" ] ; then |
1411 | if [[ ${ls/ ${f} /} != ${ls} ]] ; then |
1433 | newls="${newls} ${f}" |
1412 | newls="${newls} ${f}" |
1434 | else |
1413 | else |
1435 | ewarn "Sorry, but ${PN} does not support the ${f} LINGUA" |
1414 | ewarn "Sorry, but ${PN} does not support the ${f} LINGUA" |
1436 | fi |
1415 | fi |
1437 | done |
1416 | done |
1438 | if [ -z "${newls}" ] ; then |
1417 | if [[ -z ${newls} ]] ; then |
1439 | unset LINGUAS |
1418 | export LINGUAS="" |
1440 | else |
1419 | else |
1441 | export LINGUAS="${newls}" |
1420 | export LINGUAS=${newls:1} |
1442 | fi |
1421 | fi |
1443 | } |
1422 | } |
1444 | |
1423 | |
1445 | # moved from kernel.eclass since they are generally useful outside of |
1424 | # moved from kernel.eclass since they are generally useful outside of |
1446 | # kernel.eclass -iggy (20041002) |
1425 | # kernel.eclass -iggy (20041002) |
… | |
… | |
1448 | # the following functions are useful in kernel module ebuilds, etc. |
1427 | # the following functions are useful in kernel module ebuilds, etc. |
1449 | # for an example see ivtv or drbd ebuilds |
1428 | # for an example see ivtv or drbd ebuilds |
1450 | |
1429 | |
1451 | # set's ARCH to match what the kernel expects |
1430 | # set's ARCH to match what the kernel expects |
1452 | set_arch_to_kernel() { |
1431 | set_arch_to_kernel() { |
|
|
1432 | i=10 |
|
|
1433 | while ((i--)) ; do |
|
|
1434 | ewarn "PLEASE UPDATE TO YOUR PACKAGE TO USE linux-info.eclass" |
|
|
1435 | done |
1453 | export EUTILS_ECLASS_PORTAGE_ARCH="${ARCH}" |
1436 | export EUTILS_ECLASS_PORTAGE_ARCH="${ARCH}" |
1454 | case ${ARCH} in |
1437 | case ${ARCH} in |
1455 | x86) export ARCH="i386";; |
1438 | x86) export ARCH="i386";; |
1456 | amd64) export ARCH="x86_64";; |
1439 | amd64) export ARCH="x86_64";; |
1457 | hppa) export ARCH="parisc";; |
1440 | hppa) export ARCH="parisc";; |
1458 | mips) export ARCH="mips";; |
1441 | mips) export ARCH="mips";; |
|
|
1442 | sparc) export ARCH="$(tc-arch-kernel)";; # Yeah this is ugly, but it's even WORSE if you don't do this. linux-info.eclass's set_arch_to_kernel is fixed, but won't get used over this one! |
1459 | *) export ARCH="${ARCH}";; |
1443 | *) export ARCH="${ARCH}";; |
1460 | esac |
1444 | esac |
1461 | } |
1445 | } |
1462 | |
1446 | |
1463 | # set's ARCH back to what portage expects |
1447 | # set's ARCH back to what portage expects |
1464 | set_arch_to_portage() { |
1448 | set_arch_to_portage() { |
|
|
1449 | i=10 |
|
|
1450 | while ((i--)) ; do |
|
|
1451 | ewarn "PLEASE UPDATE TO YOUR PACKAGE TO USE linux-info.eclass" |
|
|
1452 | done |
1465 | export ARCH="${EUTILS_ECLASS_PORTAGE_ARCH}" |
1453 | export ARCH="${EUTILS_ECLASS_PORTAGE_ARCH}" |
1466 | } |
1454 | } |
1467 | |
1455 | |
1468 | # Jeremy Huddleston <eradicator@gentoo.org>: |
1456 | # Jeremy Huddleston <eradicator@gentoo.org>: |
1469 | # preserve_old_lib /path/to/libblah.so.0 |
1457 | # preserve_old_lib /path/to/libblah.so.0 |
… | |
… | |
1499 | touch ${D}${LIB} |
1487 | touch ${D}${LIB} |
1500 | fi |
1488 | fi |
1501 | } |
1489 | } |
1502 | |
1490 | |
1503 | preserve_old_lib_notify() { |
1491 | preserve_old_lib_notify() { |
1504 | LIB=$1 |
1492 | LIB=$1 |
1505 | |
1493 | |
1506 | if [ -n "${LIB}" -a -f "${ROOT}${LIB}" ]; then |
1494 | if [ -n "${LIB}" -a -f "${ROOT}${LIB}" ]; then |
1507 | SONAME=`basename ${LIB}` |
1495 | SONAME=`basename ${LIB}` |
1508 | |
1496 | |
1509 | einfo "An old version of an installed library was detected on your system." |
1497 | ewarn "An old version of an installed library was detected on your system." |
1510 | einfo "In order to avoid breaking packages that link against is, this older version" |
1498 | ewarn "In order to avoid breaking packages that link against it, this older version" |
1511 | einfo "is not being removed. In order to make full use of this newer version," |
1499 | ewarn "is not being removed. In order to make full use of this newer version," |
1512 | einfo "you will need to execute the following command:" |
1500 | ewarn "you will need to execute the following command:" |
1513 | einfo " revdep-rebuild --soname ${SONAME}" |
1501 | ewarn " revdep-rebuild --soname ${SONAME}" |
1514 | einfo |
1502 | ewarn |
1515 | einfo "After doing that, you can safely remove ${LIB}" |
1503 | ewarn "After doing that, you can safely remove ${LIB}" |
1516 | einfo "Note: 'emerge gentoolkit' to get revdep-rebuild" |
1504 | ewarn "Note: 'emerge gentoolkit' to get revdep-rebuild" |
1517 | fi |
1505 | fi |
1518 | } |
1506 | } |
|
|
1507 | |
|
|
1508 | # Hack for people to figure out if a package was built with |
|
|
1509 | # certain USE flags |
|
|
1510 | # |
|
|
1511 | # Usage: built_with_use [-a|-o] <DEPEND ATOM> <List of USE flags> |
|
|
1512 | # ex: built_with_use xchat gtk2 |
|
|
1513 | # |
|
|
1514 | # Flags: -a all USE flags should be utilized |
|
|
1515 | # -o at least one USE flag should be utilized |
|
|
1516 | # Note: the default flag is '-a' |
|
|
1517 | built_with_use() { |
|
|
1518 | local opt=$1 |
|
|
1519 | [[ ${opt:0:1} = "-" ]] && shift || opt="-a" |
|
|
1520 | |
|
|
1521 | local PKG=$(best_version $1) |
|
|
1522 | shift |
|
|
1523 | |
|
|
1524 | local USEFILE="${ROOT}/var/db/pkg/${PKG}/USE" |
|
|
1525 | [[ ! -e ${USEFILE} ]] && return 1 |
|
|
1526 | |
|
|
1527 | local USE_BUILT=$(<${USEFILE}) |
|
|
1528 | while [[ $# -gt 0 ]] ; do |
|
|
1529 | if [[ ${opt} = "-o" ]] ; then |
|
|
1530 | has $1 ${USE_BUILT} && return 0 |
|
|
1531 | else |
|
|
1532 | has $1 ${USE_BUILT} || return 1 |
|
|
1533 | fi |
|
|
1534 | shift |
|
|
1535 | done |
|
|
1536 | [[ ${opt} = "-a" ]] |
|
|
1537 | } |
|
|
1538 | |
|
|
1539 | # Many configure scripts wrongly bail when a C++ compiler |
|
|
1540 | # could not be detected. #73450 |
|
|
1541 | epunt_cxx() { |
|
|
1542 | local dir=$1 |
|
|
1543 | [[ -z ${dir} ]] && dir=${S} |
|
|
1544 | ebegin "Removing useless C++ checks" |
|
|
1545 | local f |
|
|
1546 | for f in $(find ${dir} -name configure) ; do |
|
|
1547 | patch -p0 "${f}" "${PORTDIR}/eclass/ELT-patches/nocxx/nocxx.patch" > /dev/null |
|
|
1548 | done |
|
|
1549 | eend 0 |
|
|
1550 | } |
|
|
1551 | |
|
|
1552 | # dopamd <file> [more files] |
|
|
1553 | # |
|
|
1554 | # Install pam auth config file in /etc/pam.d |
|
|
1555 | dopamd() { |
|
|
1556 | [[ -z $1 ]] && die "dopamd requires at least one argument" |
|
|
1557 | |
|
|
1558 | use pam || return 0 |
|
|
1559 | |
|
|
1560 | INSDESTTREE=/etc/pam.d \ |
|
|
1561 | doins "$@" || die "failed to install $@" |
|
|
1562 | } |
|
|
1563 | # newpamd <old name> <new name> |
|
|
1564 | # |
|
|
1565 | # Install pam file <old name> as <new name> in /etc/pam.d |
|
|
1566 | newpamd() { |
|
|
1567 | [[ $# -ne 2 ]] && die "newpamd requires two arguements" |
|
|
1568 | |
|
|
1569 | use pam || return 0 |
|
|
1570 | |
|
|
1571 | INSDESTTREE=/etc/pam.d \ |
|
|
1572 | newins "$1" "$2" || die "failed to install $1 as $2" |
|
|
1573 | } |
|
|
1574 | |
|
|
1575 | # make a wrapper script ... |
|
|
1576 | # NOTE: this was originally games_make_wrapper, but I noticed other places where |
|
|
1577 | # this could be used, so I have moved it here and made it not games-specific |
|
|
1578 | # -- wolf31o2 |
|
|
1579 | # $1 == wrapper name |
|
|
1580 | # $2 == binary to run |
|
|
1581 | # $3 == directory to chdir before running binary |
|
|
1582 | # $4 == extra LD_LIBRARY_PATH's (make it : delimited) |
|
|
1583 | # $5 == path for wrapper |
|
|
1584 | make_wrapper() { |
|
|
1585 | local wrapper=$1 bin=$2 chdir=$3 libdir=$4 path=$5 |
|
|
1586 | local tmpwrapper=$(emktemp) |
|
|
1587 | cat << EOF > "${tmpwrapper}" |
|
|
1588 | #!/bin/sh |
|
|
1589 | cd "${chdir}" |
|
|
1590 | export LD_LIBRARY_PATH="\${LD_LIBRARY_PATH}:${libdir}" |
|
|
1591 | exec ${bin} "\$@" |
|
|
1592 | EOF |
|
|
1593 | chmod go+rx "${tmpwrapper}" |
|
|
1594 | if [ -n "${5}" ] |
|
|
1595 | then |
|
|
1596 | exeinto ${5} |
|
|
1597 | newexe "${tmpwrapper}" "${wrapper}" |
|
|
1598 | else |
|
|
1599 | newbin "${tmpwrapper}" "${wrapper}" |
|
|
1600 | fi |
|
|
1601 | } |