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