| 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.146 2005/02/03 22:40:47 chriswhite 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 | inherit multilib |
| 12 | ECLASS=eutils |
13 | ECLASS=eutils |
| 13 | INHERITED="$INHERITED $ECLASS" |
14 | INHERITED="$INHERITED $ECLASS" |
| 14 | |
15 | |
| 15 | DEPEND="$DEPEND !bootstrap? ( sys-devel/patch )" |
16 | DEPEND="!bootstrap? ( sys-devel/patch )" |
| 16 | |
17 | |
| 17 | DESCRIPTION="Based on the ${ECLASS} eclass" |
18 | DESCRIPTION="Based on the ${ECLASS} eclass" |
|
|
19 | |
|
|
20 | # ecpu_check |
|
|
21 | # Usage: |
|
|
22 | # |
|
|
23 | # ecpu_check array_of_cpu_flags |
|
|
24 | # |
|
|
25 | # array_of_cpu_flags - An array of cpu flags to check against USE flags |
|
|
26 | # |
|
|
27 | # Checks user USE related cpu flags against /proc/cpuinfo. If user enables a |
|
|
28 | # cpu flag that is not supported in their processor flags, it will warn the |
|
|
29 | # user if CROSSCOMPILE is not set to 1 ( because cross compile users are |
|
|
30 | # obviously using different cpu flags than their own cpu ). Examples: |
|
|
31 | # |
|
|
32 | # CPU_FLAGS=(mmx mmx2 sse sse2) |
|
|
33 | # ecpu_check CPU_FLAGS |
|
|
34 | # Chris White <chriswhite@gentoo.org> (03 Feb 2005) |
|
|
35 | |
|
|
36 | ecpu_check() { |
|
|
37 | if [ $CROSSCOMPILE -eq 1 ] || [ ! -e /proc/cpuinfo ] |
|
|
38 | then |
|
|
39 | else |
|
|
40 | CPU_FLAGS=$1 |
|
|
41 | USER_CPU=`grep "flags" /proc/cpuinfo` |
|
|
42 | |
|
|
43 | for flags in `seq 1 ${#CPU_FLAGS[@]}` |
|
|
44 | do |
|
|
45 | if has ${CPU_FLAGS[$flags - 1]} $USER_CPU && ! has ${CPU_FLAGS[$flags - 1]} $USE |
|
|
46 | then |
|
|
47 | ewarn "Your system is ${CPU_FLAGS[$flags - 1]} capable but you don't have it enabled!" |
|
|
48 | ewarn "You might be cross compiling (in this case set CROSSCOMPILE to 1 to disable this warning." |
|
|
49 | fi |
|
|
50 | |
|
|
51 | if ! has ${CPU_FLAGS[$flags - 1]} $USER_CPU && has ${CPU_FLAGS[$flags -1]} $USE |
|
|
52 | then |
|
|
53 | ewarn "You have ${CPU_FLAGS[$flags - 1]} support enabled but your processor doesn't" |
|
|
54 | ewarn "Seem to support it! You might be cross compiling or do not have /proc filesystem" |
|
|
55 | ewarn "enabled. If either is the case, set CROSSCOMPILE to 1 to disable this warning." |
|
|
56 | fi |
|
|
57 | done |
|
|
58 | fi |
|
|
59 | } |
|
|
60 | |
|
|
61 | # Wait for the supplied number of seconds. If no argument is supplied, defaults |
|
|
62 | # to five seconds. If the EPAUSE_IGNORE env var is set, don't wait. If we're not |
|
|
63 | # outputting to a terminal, don't wait. For compatability purposes, the argument |
|
|
64 | # must be an integer greater than zero. |
|
|
65 | # Bug 62950, Ciaran McCreesh <ciaranm@gentoo.org> (05 Sep 2004) |
|
|
66 | epause() { |
|
|
67 | if [ -z "$EPAUSE_IGNORE" ] && [ -t 1 ] ; then |
|
|
68 | sleep ${1:-5} |
|
|
69 | fi |
|
|
70 | } |
|
|
71 | |
|
|
72 | # Beep the specified number of times (defaults to five). If our output |
|
|
73 | # is not a terminal, don't beep. If the EBEEP_IGNORE env var is set, |
|
|
74 | # don't beep. |
|
|
75 | # Bug 62950, Ciaran McCreesh <ciaranm@gentoo.org> (05 Sep 2004) |
|
|
76 | ebeep() { |
|
|
77 | local n |
|
|
78 | if [ -z "$EBEEP_IGNORE" ] && [ -t 1 ] ; then |
|
|
79 | for ((n=1 ; n <= ${1:-5} ; n++)) ; do |
|
|
80 | echo -ne "\a" |
|
|
81 | sleep 0.1 &>/dev/null ; sleep 0,1 &>/dev/null |
|
|
82 | echo -ne "\a" |
|
|
83 | sleep 1 |
|
|
84 | done |
|
|
85 | fi |
|
|
86 | } |
| 18 | |
87 | |
| 19 | # This function generate linker scripts in /usr/lib for dynamic |
88 | # This function generate linker scripts in /usr/lib for dynamic |
| 20 | # libs in /lib. This is to fix linking problems when you have |
89 | # 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 |
90 | # 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 |
91 | # in some cases when linking dynamic, the .a in /usr/lib is used |
| … | |
… | |
| 33 | # to point to the latest version of the library present. |
102 | # to point to the latest version of the library present. |
| 34 | # |
103 | # |
| 35 | # <azarah@gentoo.org> (26 Oct 2002) |
104 | # <azarah@gentoo.org> (26 Oct 2002) |
| 36 | # |
105 | # |
| 37 | gen_usr_ldscript() { |
106 | gen_usr_ldscript() { |
| 38 | |
107 | local libdir="$(get_libdir)" |
| 39 | # Just make sure it exists |
108 | # Just make sure it exists |
| 40 | dodir /usr/lib |
109 | dodir /usr/${libdir} |
| 41 | |
110 | |
| 42 | cat > ${D}/usr/lib/$1 <<"END_LDSCRIPT" |
111 | cat > "${D}/usr/${libdir}/${1}" << END_LDSCRIPT |
| 43 | /* GNU ld script |
112 | /* GNU ld script |
| 44 | Because Gentoo have critical dynamic libraries |
113 | Because Gentoo have critical dynamic libraries |
| 45 | in /lib, and the static versions in /usr/lib, we |
114 | in /lib, and the static versions in /usr/lib, we |
| 46 | need to have a "fake" dynamic lib in /usr/lib, |
115 | need to have a "fake" dynamic lib in /usr/lib, |
| 47 | otherwise we run into linking problems. |
116 | otherwise we run into linking problems. |
| 48 | See bug #4411 on http://bugs.gentoo.org/ for |
117 | See bug #4411 on http://bugs.gentoo.org/ for |
| 49 | more info. */ |
118 | more info. */ |
| 50 | GROUP ( /lib/libxxx ) |
119 | GROUP ( /${libdir}/${1} ) |
| 51 | END_LDSCRIPT |
120 | END_LDSCRIPT |
| 52 | |
121 | fperms a+x "/usr/${libdir}/${1}" |
| 53 | dosed "s:libxxx:$1:" /usr/lib/$1 |
|
|
| 54 | |
|
|
| 55 | return 0 |
|
|
| 56 | } |
122 | } |
| 57 | |
123 | |
| 58 | # Simple function to draw a line consisting of '=' the same length as $* |
124 | # Simple function to draw a line consisting of '=' the same length as $* |
| 59 | # |
125 | # |
| 60 | # <azarah@gentoo.org> (11 Nov 2002) |
126 | # <azarah@gentoo.org> (11 Nov 2002) |
| … | |
… | |
| 88 | # Default directory where patches are located |
154 | # Default directory where patches are located |
| 89 | EPATCH_SOURCE="${WORKDIR}/patch" |
155 | EPATCH_SOURCE="${WORKDIR}/patch" |
| 90 | # Default extension for patches |
156 | # Default extension for patches |
| 91 | EPATCH_SUFFIX="patch.bz2" |
157 | EPATCH_SUFFIX="patch.bz2" |
| 92 | # Default options for patch |
158 | # Default options for patch |
|
|
159 | # Set -g0 to keep RCS, ClearCase, Perforce and SCCS happy. Bug #24571 |
| 93 | EPATCH_OPTS="" |
160 | EPATCH_OPTS="-g0" |
| 94 | # List of patches not to apply. Not this is only file names, |
161 | # List of patches not to apply. Not this is only file names, |
| 95 | # and not the full path .. |
162 | # and not the full path .. |
| 96 | EPATCH_EXCLUDE="" |
163 | EPATCH_EXCLUDE="" |
| 97 | # Change the printed message for a single patch. |
164 | # Change the printed message for a single patch. |
| 98 | EPATCH_SINGLE_MSG="" |
165 | EPATCH_SINGLE_MSG="" |
| … | |
… | |
| 143 | local SINGLE_PATCH="no" |
210 | local SINGLE_PATCH="no" |
| 144 | local x="" |
211 | local x="" |
| 145 | |
212 | |
| 146 | if [ "$#" -gt 1 ] |
213 | if [ "$#" -gt 1 ] |
| 147 | then |
214 | then |
| 148 | eerror "Invalid arguments to epatch()" |
215 | local m="" |
| 149 | die "Invalid arguments to epatch()" |
216 | einfo "${#} patches to apply ..." |
|
|
217 | for m in "$@" ; do |
|
|
218 | epatch "${m}" |
|
|
219 | done |
|
|
220 | return 0 |
| 150 | fi |
221 | fi |
| 151 | |
222 | |
| 152 | if [ -n "$1" -a -f "$1" ] |
223 | if [ -n "$1" -a -f "$1" ] |
| 153 | then |
224 | then |
| 154 | SINGLE_PATCH="yes" |
225 | SINGLE_PATCH="yes" |
| … | |
… | |
| 164 | local EPATCH_SOURCE="$1/*" |
235 | local EPATCH_SOURCE="$1/*" |
| 165 | else |
236 | else |
| 166 | local EPATCH_SOURCE="$1/*.${EPATCH_SUFFIX}" |
237 | local EPATCH_SOURCE="$1/*.${EPATCH_SUFFIX}" |
| 167 | fi |
238 | fi |
| 168 | else |
239 | else |
| 169 | if [ ! -d ${EPATCH_SOURCE} ] |
240 | if [ ! -d ${EPATCH_SOURCE} ] || [ -n "$1" ] |
| 170 | then |
241 | then |
| 171 | if [ -n "$1" -a "${EPATCH_SOURCE}" = "${WORKDIR}/patch" ] |
242 | if [ -n "$1" -a "${EPATCH_SOURCE}" = "${WORKDIR}/patch" ] |
| 172 | then |
243 | then |
| 173 | EPATCH_SOURCE="$1" |
244 | EPATCH_SOURCE="$1" |
| 174 | fi |
245 | fi |
| 175 | |
246 | |
| 176 | echo |
247 | echo |
| 177 | eerror "Cannot find \$EPATCH_SOURCE! Value for \$EPATCH_SOURCE is:" |
248 | eerror "Cannot find \$EPATCH_SOURCE! Value for \$EPATCH_SOURCE is:" |
| 178 | eerror |
249 | eerror |
| 179 | eerror " ${EPATCH_SOURCE}" |
250 | eerror " ${EPATCH_SOURCE}" |
|
|
251 | eerror " ( ${EPATCH_SOURCE##*/} )" |
| 180 | echo |
252 | echo |
| 181 | die "Cannot find \$EPATCH_SOURCE!" |
253 | die "Cannot find \$EPATCH_SOURCE!" |
| 182 | fi |
254 | fi |
| 183 | |
255 | |
| 184 | local EPATCH_SOURCE="${EPATCH_SOURCE}/*.${EPATCH_SUFFIX}" |
256 | local EPATCH_SOURCE="${EPATCH_SOURCE}/*.${EPATCH_SUFFIX}" |
| … | |
… | |
| 203 | ;; |
275 | ;; |
| 204 | esac |
276 | esac |
| 205 | |
277 | |
| 206 | if [ "${SINGLE_PATCH}" = "no" ] |
278 | if [ "${SINGLE_PATCH}" = "no" ] |
| 207 | then |
279 | then |
| 208 | einfo "Applying various patches (bugfixes/updates)..." |
280 | einfo "Applying various patches (bugfixes/updates) ..." |
| 209 | fi |
281 | fi |
| 210 | for x in ${EPATCH_SOURCE} |
282 | for x in ${EPATCH_SOURCE} |
| 211 | do |
283 | do |
| 212 | # New ARCH dependant patch naming scheme... |
284 | # New ARCH dependant patch naming scheme ... |
| 213 | # |
285 | # |
| 214 | # ???_arch_foo.patch |
286 | # ???_arch_foo.patch |
| 215 | # |
287 | # |
| 216 | if [ -f ${x} ] && \ |
288 | if [ -f ${x} ] && \ |
| 217 | ([ "${SINGLE_PATCH}" = "yes" -o "${x/_all_}" != "${x}" -o "`eval echo \$\{x/_${ARCH}_\}`" != "${x}" ] || \ |
289 | ([ "${SINGLE_PATCH}" = "yes" -o "${x/_all_}" != "${x}" -o "`eval echo \$\{x/_${ARCH}_\}`" != "${x}" ] || \ |
| … | |
… | |
| 232 | then |
304 | then |
| 233 | if [ -n "${EPATCH_SINGLE_MSG}" ] |
305 | if [ -n "${EPATCH_SINGLE_MSG}" ] |
| 234 | then |
306 | then |
| 235 | einfo "${EPATCH_SINGLE_MSG}" |
307 | einfo "${EPATCH_SINGLE_MSG}" |
| 236 | else |
308 | else |
| 237 | einfo "Applying ${x##*/}..." |
309 | einfo "Applying ${x##*/} ..." |
| 238 | fi |
310 | fi |
| 239 | else |
311 | else |
| 240 | einfo " ${x##*/}..." |
312 | einfo " ${x##*/} ..." |
| 241 | fi |
313 | fi |
| 242 | |
314 | |
| 243 | echo "***** ${x##*/} *****" > ${STDERR_TARGET%/*}/${x##*/}-${STDERR_TARGET##*/} |
315 | echo "***** ${x##*/} *****" > ${STDERR_TARGET%/*}/${x##*/}-${STDERR_TARGET##*/} |
| 244 | echo >> ${STDERR_TARGET%/*}/${x##*/}-${STDERR_TARGET##*/} |
316 | echo >> ${STDERR_TARGET%/*}/${x##*/}-${STDERR_TARGET##*/} |
| 245 | |
317 | |
| … | |
… | |
| 257 | else |
329 | else |
| 258 | PATCH_TARGET="${x}" |
330 | PATCH_TARGET="${x}" |
| 259 | fi |
331 | fi |
| 260 | |
332 | |
| 261 | echo -n "PATCH COMMAND: " >> ${STDERR_TARGET%/*}/${x##*/}-${STDERR_TARGET##*/} |
333 | echo -n "PATCH COMMAND: " >> ${STDERR_TARGET%/*}/${x##*/}-${STDERR_TARGET##*/} |
| 262 | echo "patch ${popts} -p${count} < ${PATCH_TARGET}" >> ${STDERR_TARGET%/*}/${x##*/}-${STDERR_TARGET##*/} |
334 | echo "patch -p${count} ${popts} < ${PATCH_TARGET}" >> ${STDERR_TARGET%/*}/${x##*/}-${STDERR_TARGET##*/} |
| 263 | |
335 | |
| 264 | echo >> ${STDERR_TARGET%/*}/${x##*/}-${STDERR_TARGET##*/} |
336 | echo >> ${STDERR_TARGET%/*}/${x##*/}-${STDERR_TARGET##*/} |
| 265 | draw_line "***** ${x##*/} *****" >> ${STDERR_TARGET%/*}/${x##*/}-${STDERR_TARGET##*/} |
337 | draw_line "***** ${x##*/} *****" >> ${STDERR_TARGET%/*}/${x##*/}-${STDERR_TARGET##*/} |
| 266 | |
338 | |
| 267 | if [ "${PATCH_SUFFIX}" != "patch" ] |
339 | if [ "${PATCH_SUFFIX}" != "patch" ] |
| … | |
… | |
| 274 | count=5 |
346 | count=5 |
| 275 | break |
347 | break |
| 276 | fi |
348 | fi |
| 277 | fi |
349 | fi |
| 278 | |
350 | |
| 279 | if (cat ${PATCH_TARGET} | patch ${popts} --dry-run -f -p${count}) >> ${STDERR_TARGET%/*}/${x##*/}-${STDERR_TARGET##*/} 2>&1 |
351 | if (cat ${PATCH_TARGET} | patch -p${count} ${popts} --dry-run -f) >> ${STDERR_TARGET%/*}/${x##*/}-${STDERR_TARGET##*/} 2>&1 |
| 280 | then |
352 | then |
| 281 | draw_line "***** ${x##*/} *****" > ${STDERR_TARGET%/*}/${x##*/}-${STDERR_TARGET##*/}.real |
353 | draw_line "***** ${x##*/} *****" > ${STDERR_TARGET%/*}/${x##*/}-${STDERR_TARGET##*/}.real |
| 282 | echo >> ${STDERR_TARGET%/*}/${x##*/}-${STDERR_TARGET##*/}.real |
354 | echo >> ${STDERR_TARGET%/*}/${x##*/}-${STDERR_TARGET##*/}.real |
| 283 | echo "ACTUALLY APPLYING ${x##*/}..." >> ${STDERR_TARGET%/*}/${x##*/}-${STDERR_TARGET##*/}.real |
355 | echo "ACTUALLY APPLYING ${x##*/} ..." >> ${STDERR_TARGET%/*}/${x##*/}-${STDERR_TARGET##*/}.real |
| 284 | echo >> ${STDERR_TARGET%/*}/${x##*/}-${STDERR_TARGET##*/}.real |
356 | echo >> ${STDERR_TARGET%/*}/${x##*/}-${STDERR_TARGET##*/}.real |
| 285 | draw_line "***** ${x##*/} *****" >> ${STDERR_TARGET%/*}/${x##*/}-${STDERR_TARGET##*/}.real |
357 | draw_line "***** ${x##*/} *****" >> ${STDERR_TARGET%/*}/${x##*/}-${STDERR_TARGET##*/}.real |
| 286 | |
358 | |
| 287 | cat ${PATCH_TARGET} | patch ${popts} -p${count} >> ${STDERR_TARGET%/*}/${x##*/}-${STDERR_TARGET##*/}.real 2>&1 |
359 | cat ${PATCH_TARGET} | patch -p${count} ${popts} >> ${STDERR_TARGET%/*}/${x##*/}-${STDERR_TARGET##*/}.real 2>&1 |
| 288 | |
360 | |
| 289 | if [ "$?" -ne 0 ] |
361 | if [ "$?" -ne 0 ] |
| 290 | then |
362 | then |
| 291 | cat ${STDERR_TARGET%/*}/${x##*/}-${STDERR_TARGET##*/}.real >> ${STDERR_TARGET%/*}/${x##*/}-${STDERR_TARGET##*/} |
363 | cat ${STDERR_TARGET%/*}/${x##*/}-${STDERR_TARGET##*/}.real >> ${STDERR_TARGET%/*}/${x##*/}-${STDERR_TARGET##*/} |
| 292 | echo |
364 | echo |
| … | |
… | |
| 335 | # This function return true if we are using the NPTL pthreads |
407 | # This function return true if we are using the NPTL pthreads |
| 336 | # implementation. |
408 | # implementation. |
| 337 | # |
409 | # |
| 338 | # <azarah@gentoo.org> (06 March 2003) |
410 | # <azarah@gentoo.org> (06 March 2003) |
| 339 | # |
411 | # |
| 340 | |
|
|
| 341 | have_NPTL() { |
412 | have_NPTL() { |
| 342 | |
|
|
| 343 | cat > ${T}/test-nptl.c <<-"END" |
413 | cat > ${T}/test-nptl.c <<-"END" |
| 344 | #define _XOPEN_SOURCE |
414 | #define _XOPEN_SOURCE |
| 345 | #include <unistd.h> |
415 | #include <unistd.h> |
| 346 | #include <stdio.h> |
416 | #include <stdio.h> |
| 347 | |
417 | |
| … | |
… | |
| 359 | |
429 | |
| 360 | return 1; |
430 | return 1; |
| 361 | } |
431 | } |
| 362 | END |
432 | END |
| 363 | |
433 | |
| 364 | einfon "Checking for _CS_GNU_LIBPTHREAD_VERSION support in glibc ... " |
434 | einfon "Checking for _CS_GNU_LIBPTHREAD_VERSION support in glibc ..." |
| 365 | if gcc -o ${T}/nptl ${T}/test-nptl.c &> /dev/null |
435 | if gcc -o ${T}/nptl ${T}/test-nptl.c &> /dev/null |
| 366 | then |
436 | then |
| 367 | echo "yes" |
437 | echo "yes" |
| 368 | einfon "Checking what PTHREADS implementation we have ... " |
438 | einfon "Checking what PTHREADS implementation we have ..." |
| 369 | if ${T}/nptl |
439 | if ${T}/nptl |
| 370 | then |
440 | then |
| 371 | return 0 |
441 | return 0 |
| 372 | else |
442 | else |
| 373 | return 1 |
443 | return 1 |
| … | |
… | |
| 401 | fi |
471 | fi |
| 402 | |
472 | |
| 403 | export MAKEOPTS="`echo ${MAKEOPTS} | sed -e 's:-j *[0-9]*::g'`" |
473 | export MAKEOPTS="`echo ${MAKEOPTS} | sed -e 's:-j *[0-9]*::g'`" |
| 404 | |
474 | |
| 405 | if [ "${ARCH}" = "amd64" -o "${ARCH}" = "x86" -o "${ARCH}" = "hppa" -o \ |
475 | if [ "${ARCH}" = "amd64" -o "${ARCH}" = "x86" -o "${ARCH}" = "hppa" -o \ |
| 406 | "${ARCH}" = "arm" -o "${ARCH}" = "mips" ] |
476 | "${ARCH}" = "arm" -o "${ARCH}" = "mips" -o "${ARCH}" = "ia64" ] |
| 407 | then |
477 | then |
| 408 | # these archs will always have "[Pp]rocessor" |
478 | # these archs will always have "[Pp]rocessor" |
| 409 | jobs="$((`grep -c ^[Pp]rocessor /proc/cpuinfo` * 2))" |
479 | jobs="$((`grep -c ^[Pp]rocessor /proc/cpuinfo` * 2))" |
| 410 | |
480 | |
| 411 | elif [ "${ARCH}" = "sparc" -o "${ARCH}" = "sparc64" ] |
481 | elif [ "${ARCH}" = "sparc" -o "${ARCH}" = "sparc64" ] |
| … | |
… | |
| 421 | jobs="$((`grep "^cpus active" /proc/cpuinfo | sed -e "s/^.*: //"` * 2))" |
491 | jobs="$((`grep "^cpus active" /proc/cpuinfo | sed -e "s/^.*: //"` * 2))" |
| 422 | else |
492 | else |
| 423 | jobs=2 |
493 | jobs=2 |
| 424 | fi |
494 | fi |
| 425 | |
495 | |
| 426 | elif [ "${ARCH}" = "ppc" ] |
496 | elif [ "${ARCH}" = "ppc" -o "${ARCH}" = "ppc64" ] |
| 427 | then |
497 | then |
| 428 | # ppc has "processor", but only when compiled with SMP |
498 | # ppc has "processor", but only when compiled with SMP |
| 429 | if [ "`grep -c "^processor" /proc/cpuinfo`" -eq 1 ] |
499 | if [ "`grep -c "^processor" /proc/cpuinfo`" -eq 1 ] |
| 430 | then |
500 | then |
| 431 | jobs="$((`grep -c ^processor /proc/cpuinfo` * 2))" |
501 | jobs="$((`grep -c ^processor /proc/cpuinfo` * 2))" |
| 432 | else |
502 | else |
| 433 | jobs=2 |
503 | jobs=2 |
| 434 | fi |
504 | fi |
|
|
505 | elif [ "${ARCH}" = "s390" ] |
|
|
506 | then |
|
|
507 | # s390 has "# processors : " |
|
|
508 | jobs="$((`grep "^\# processors" /proc/cpuinfo | sed -e "s/^.*: //"` * 2))" |
| 435 | else |
509 | else |
| 436 | jobs="$((`grep -c ^cpu /proc/cpuinfo` * 2))" |
510 | jobs="$((`grep -c ^cpu /proc/cpuinfo` * 2))" |
| 437 | die "Unknown ARCH -- ${ARCH}!" |
511 | die "Unknown ARCH -- ${ARCH}!" |
| 438 | fi |
512 | fi |
| 439 | |
513 | |
| … | |
… | |
| 445 | |
519 | |
| 446 | if [ -n "${ADMINPARAM}" ] |
520 | if [ -n "${ADMINPARAM}" ] |
| 447 | then |
521 | then |
| 448 | if [ "${jobs}" -gt "${ADMINPARAM}" ] |
522 | if [ "${jobs}" -gt "${ADMINPARAM}" ] |
| 449 | then |
523 | then |
| 450 | einfo "Setting make jobs to \"-j${ADMINPARAM}\" to ensure successful merge..." |
524 | einfo "Setting make jobs to \"-j${ADMINPARAM}\" to ensure successful merge ..." |
| 451 | export MAKEOPTS="${MAKEOPTS} -j${ADMINPARAM}" |
525 | export MAKEOPTS="${MAKEOPTS} -j${ADMINPARAM}" |
| 452 | else |
526 | else |
| 453 | einfo "Setting make jobs to \"-j${jobs}\" to ensure successful merge..." |
527 | einfo "Setting make jobs to \"-j${jobs}\" to ensure successful merge ..." |
| 454 | export MAKEOPTS="${MAKEOPTS} -j${jobs}" |
528 | export MAKEOPTS="${MAKEOPTS} -j${jobs}" |
| 455 | fi |
529 | fi |
|
|
530 | fi |
|
|
531 | } |
|
|
532 | |
|
|
533 | # Cheap replacement for when debianutils (and thus mktemp) |
|
|
534 | # does not exist on the users system |
|
|
535 | # vapier@gentoo.org |
|
|
536 | # |
|
|
537 | # Takes just 1 optional parameter (the directory to create tmpfile in) |
|
|
538 | emktemp() { |
|
|
539 | local exe="touch" |
|
|
540 | [ "$1" == "-d" ] && exe="mkdir" && shift |
|
|
541 | local topdir="$1" |
|
|
542 | |
|
|
543 | if [ -z "${topdir}" ] |
|
|
544 | then |
|
|
545 | [ -z "${T}" ] \ |
|
|
546 | && topdir="/tmp" \ |
|
|
547 | || topdir="${T}" |
|
|
548 | fi |
|
|
549 | |
|
|
550 | if [ -z "$(type -p mktemp)" ] |
|
|
551 | then |
|
|
552 | local tmp=/ |
|
|
553 | while [ -e "${tmp}" ] ; do |
|
|
554 | tmp="${topdir}/tmp.${RANDOM}.${RANDOM}.${RANDOM}" |
|
|
555 | done |
|
|
556 | ${exe} "${tmp}" |
|
|
557 | echo "${tmp}" |
|
|
558 | else |
|
|
559 | [ "${exe}" == "touch" ] \ |
|
|
560 | && exe="-p" \ |
|
|
561 | || exe="-d" |
|
|
562 | mktemp ${exe} "${topdir}" |
|
|
563 | fi |
|
|
564 | } |
|
|
565 | |
|
|
566 | # Small wrapper for getent (Linux), nidump (Mac OS X), |
|
|
567 | # and pw (FreeBSD) used in enewuser()/enewgroup() |
|
|
568 | # Joe Jezak <josejx@gmail.com> and usata@gentoo.org |
|
|
569 | # FBSD stuff: Aaron Walker <ka0ttic@gentoo.org> |
|
|
570 | # |
|
|
571 | # egetent(database, key) |
|
|
572 | egetent() { |
|
|
573 | if useq ppc-macos ; then |
|
|
574 | case "$2" in |
|
|
575 | *[!0-9]*) # Non numeric |
|
|
576 | nidump $1 . | awk -F":" "{ if (\$1 ~ /^$2$/) {print \$0;exit;} }" |
|
|
577 | ;; |
|
|
578 | *) # Numeric |
|
|
579 | nidump $1 . | awk -F":" "{ if (\$3 == $2) {print \$0;exit;} }" |
|
|
580 | ;; |
|
|
581 | esac |
|
|
582 | elif useq x86-fbsd ; then |
|
|
583 | local action |
|
|
584 | if [ "$1" == "passwd" ] |
|
|
585 | then |
|
|
586 | action="user" |
|
|
587 | else |
|
|
588 | action="group" |
|
|
589 | fi |
|
|
590 | pw show "${action}" "$2" -q |
|
|
591 | else |
|
|
592 | which nscd >& /dev/null && nscd -i "$1" |
|
|
593 | getent "$1" "$2" |
| 456 | fi |
594 | fi |
| 457 | } |
595 | } |
| 458 | |
596 | |
| 459 | # Simplify/standardize adding users to the system |
597 | # Simplify/standardize adding users to the system |
| 460 | # vapier@gentoo.org |
598 | # vapier@gentoo.org |
| … | |
… | |
| 470 | # groups: none |
608 | # groups: none |
| 471 | # extra: comment of 'added by portage for ${PN}' |
609 | # extra: comment of 'added by portage for ${PN}' |
| 472 | enewuser() { |
610 | enewuser() { |
| 473 | # get the username |
611 | # get the username |
| 474 | local euser="$1"; shift |
612 | local euser="$1"; shift |
| 475 | if [ -z "${euser}" ] ; then |
613 | if [ -z "${euser}" ] |
|
|
614 | then |
| 476 | eerror "No username specified !" |
615 | eerror "No username specified !" |
| 477 | die "Cannot call enewuser without a username" |
616 | die "Cannot call enewuser without a username" |
| 478 | fi |
617 | fi |
| 479 | |
618 | |
| 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 |
619 | # lets see if the username already exists |
| 487 | if [ "${euser}" == "${realuser}" ] ; then |
620 | if [ "${euser}" == "`egetent passwd \"${euser}\" | cut -d: -f1`" ] |
|
|
621 | then |
| 488 | return 0 |
622 | return 0 |
| 489 | fi |
623 | fi |
| 490 | einfo "Adding user '${euser}' to your system ..." |
624 | einfo "Adding user '${euser}' to your system ..." |
| 491 | |
625 | |
| 492 | # options to pass to useradd |
626 | # options to pass to useradd |
| 493 | local opts="" |
627 | local opts= |
| 494 | |
628 | |
| 495 | # handle uid |
629 | # handle uid |
| 496 | local euid="$1"; shift |
630 | local euid="$1"; shift |
| 497 | if [ ! -z "${euid}" ] && [ "${euid}" != "-1" ] ; then |
631 | if [ ! -z "${euid}" ] && [ "${euid}" != "-1" ] |
|
|
632 | then |
| 498 | if [ ${euid} -gt 0 ] ; then |
633 | if [ "${euid}" -gt 0 ] |
| 499 | opts="${opts} -u ${euid}" |
634 | then |
|
|
635 | if [ ! -z "`egetent passwd ${euid}`" ] |
|
|
636 | then |
|
|
637 | euid="next" |
|
|
638 | fi |
| 500 | else |
639 | else |
| 501 | eerror "Userid given but is not greater than 0 !" |
640 | eerror "Userid given but is not greater than 0 !" |
| 502 | die "${euid} is not a valid UID" |
641 | die "${euid} is not a valid UID" |
| 503 | fi |
642 | fi |
| 504 | else |
643 | else |
| 505 | euid="next available" |
644 | euid="next" |
|
|
645 | fi |
|
|
646 | if [ "${euid}" == "next" ] |
|
|
647 | then |
|
|
648 | local pwrange |
|
|
649 | if [ "${USERLAND}" == "BSD" ] ; then |
|
|
650 | pwrange="`jot 898 101`" |
|
|
651 | else |
|
|
652 | pwrange="`seq 101 999`" |
| 506 | fi |
653 | fi |
|
|
654 | for euid in ${pwrange} ; do |
|
|
655 | [ -z "`egetent passwd ${euid}`" ] && break |
|
|
656 | done |
|
|
657 | fi |
|
|
658 | opts="${opts} -u ${euid}" |
| 507 | einfo " - Userid: ${euid}" |
659 | einfo " - Userid: ${euid}" |
| 508 | |
660 | |
| 509 | # handle shell |
661 | # handle shell |
| 510 | local eshell="$1"; shift |
662 | local eshell="$1"; shift |
| 511 | if [ ! -z "${eshell}" ] ; then |
663 | if [ ! -z "${eshell}" ] && [ "${eshell}" != "-1" ] |
|
|
664 | then |
| 512 | if [ ! -e ${eshell} ] ; then |
665 | if [ ! -e "${eshell}" ] |
|
|
666 | then |
| 513 | eerror "A shell was specified but it does not exist !" |
667 | eerror "A shell was specified but it does not exist !" |
| 514 | die "${eshell} does not exist" |
668 | die "${eshell} does not exist" |
| 515 | fi |
669 | fi |
| 516 | else |
670 | else |
|
|
671 | if [ "${USERLAND}" == "BSD" ] |
|
|
672 | then |
|
|
673 | eshell="/usr/bin/false" |
|
|
674 | else |
| 517 | eshell=/bin/false |
675 | eshell="/bin/false" |
|
|
676 | fi |
| 518 | fi |
677 | fi |
| 519 | einfo " - Shell: ${eshell}" |
678 | einfo " - Shell: ${eshell}" |
| 520 | opts="${opts} -s ${eshell}" |
679 | opts="${opts} -s ${eshell}" |
| 521 | |
680 | |
| 522 | # handle homedir |
681 | # handle homedir |
| 523 | local ehome="$1"; shift |
682 | local ehome="$1"; shift |
| 524 | if [ -z "${ehome}" ] ; then |
683 | if [ -z "${ehome}" ] && [ "${eshell}" != "-1" ] |
|
|
684 | then |
| 525 | ehome=/dev/null |
685 | ehome="/dev/null" |
| 526 | fi |
686 | fi |
| 527 | einfo " - Home: ${ehome}" |
687 | einfo " - Home: ${ehome}" |
| 528 | opts="${opts} -d ${ehome}" |
688 | opts="${opts} -d ${ehome}" |
| 529 | |
689 | |
| 530 | # handle groups |
690 | # handle groups |
| 531 | local egroups="$1"; shift |
691 | local egroups="$1"; shift |
| 532 | if [ ! -z "${egroups}" ] ; then |
692 | if [ ! -z "${egroups}" ] |
| 533 | local realgroup |
693 | then |
| 534 | local oldifs="${IFS}" |
694 | local oldifs="${IFS}" |
|
|
695 | local defgroup="" exgroups="" |
|
|
696 | |
| 535 | export IFS="," |
697 | export IFS="," |
| 536 | for g in ${egroups} ; do |
698 | for g in ${egroups} |
| 537 | chgrp ${g} ${tmpfile} >& /dev/null |
699 | do |
| 538 | realgroup="`ls -l ${tmpfile} | awk '{print $4}'`" |
700 | export IFS="${oldifs}" |
| 539 | if [ "${g}" != "${realgroup}" ] ; then |
701 | if [ -z "`egetent group \"${g}\"`" ] |
|
|
702 | then |
| 540 | eerror "You must add ${g} to the system first" |
703 | eerror "You must add group ${g} to the system first" |
| 541 | die "${g} is not a valid GID" |
704 | die "${g} is not a valid GID" |
| 542 | fi |
705 | fi |
|
|
706 | if [ -z "${defgroup}" ] |
|
|
707 | then |
|
|
708 | defgroup="${g}" |
|
|
709 | else |
|
|
710 | exgroups="${exgroups},${g}" |
|
|
711 | fi |
|
|
712 | export IFS="," |
| 543 | done |
713 | done |
| 544 | export IFS="${oldifs}" |
714 | export IFS="${oldifs}" |
|
|
715 | |
| 545 | opts="${opts} -g ${egroups}" |
716 | opts="${opts} -g ${defgroup}" |
|
|
717 | if [ ! -z "${exgroups}" ] |
|
|
718 | then |
|
|
719 | opts="${opts} -G ${exgroups:1}" |
|
|
720 | fi |
| 546 | else |
721 | else |
| 547 | egroups="(none)" |
722 | egroups="(none)" |
| 548 | fi |
723 | fi |
| 549 | einfo " - Groups: ${egroups}" |
724 | einfo " - Groups: ${egroups}" |
| 550 | |
725 | |
| 551 | # handle extra and add the user |
726 | # handle extra and add the user |
| 552 | local eextra="$@" |
727 | local eextra="$@" |
| 553 | local oldsandbox=${SANDBOX_ON} |
728 | local oldsandbox="${SANDBOX_ON}" |
| 554 | export SANDBOX_ON="0" |
729 | export SANDBOX_ON="0" |
|
|
730 | if useq ppc-macos |
|
|
731 | then |
|
|
732 | ### Make the user |
| 555 | if [ -z "${eextra}" ] ; then |
733 | if [ -z "${eextra}" ] |
| 556 | useradd ${opts} ${euser} \ |
734 | then |
|
|
735 | dscl . create /users/${euser} uid ${euid} |
|
|
736 | dscl . create /users/${euser} shell ${eshell} |
|
|
737 | dscl . create /users/${euser} home ${ehome} |
|
|
738 | dscl . create /users/${euser} realname "added by portage for ${PN}" |
|
|
739 | ### Add the user to the groups specified |
|
|
740 | local oldifs="${IFS}" |
|
|
741 | export IFS="," |
|
|
742 | for g in ${egroups} |
|
|
743 | do |
|
|
744 | dscl . merge /groups/${g} users ${euser} |
|
|
745 | done |
|
|
746 | export IFS="${oldifs}" |
|
|
747 | else |
|
|
748 | einfo "Extra options are not supported on macos yet" |
|
|
749 | einfo "Please report the ebuild along with the info below" |
|
|
750 | einfo "eextra: ${eextra}" |
|
|
751 | die "Required function missing" |
|
|
752 | fi |
|
|
753 | elif use x86-fbsd ; then |
|
|
754 | if [ -z "${eextra}" ] |
|
|
755 | then |
|
|
756 | pw useradd ${euser} ${opts} \ |
| 557 | -c "added by portage for ${PN}" \ |
757 | -c "added by portage for ${PN}" \ |
| 558 | || die "enewuser failed" |
758 | die "enewuser failed" |
| 559 | else |
759 | else |
| 560 | einfo " - Extra: ${eextra}" |
760 | einfo " - Extra: ${eextra}" |
|
|
761 | pw useradd ${euser} ${opts} \ |
|
|
762 | -c ${eextra} || die "enewuser failed" |
|
|
763 | fi |
|
|
764 | else |
|
|
765 | if [ -z "${eextra}" ] |
|
|
766 | then |
|
|
767 | useradd ${opts} ${euser} \ |
|
|
768 | -c "added by portage for ${PN}" \ |
|
|
769 | || die "enewuser failed" |
|
|
770 | else |
|
|
771 | einfo " - Extra: ${eextra}" |
| 561 | useradd ${opts} ${euser} ${eextra} \ |
772 | useradd ${opts} ${euser} ${eextra} \ |
| 562 | || die "enewuser failed" |
773 | || die "enewuser failed" |
|
|
774 | fi |
| 563 | fi |
775 | fi |
| 564 | export SANDBOX_ON="${oldsandbox}" |
776 | export SANDBOX_ON="${oldsandbox}" |
| 565 | |
777 | |
| 566 | if [ ! -e ${ehome} ] && [ ! -e ${D}/${ehome} ] ; then |
778 | if [ ! -e "${ehome}" ] && [ ! -e "${D}/${ehome}" ] |
|
|
779 | then |
| 567 | einfo " - Creating ${ehome} in ${D}" |
780 | einfo " - Creating ${ehome} in ${D}" |
| 568 | dodir ${ehome} |
781 | dodir ${ehome} |
| 569 | fowners ${euser} ${ehome} |
782 | fowners ${euser} ${ehome} |
| 570 | fperms 755 ${ehome} |
783 | fperms 755 ${ehome} |
| 571 | fi |
784 | fi |
| … | |
… | |
| 581 | # gid: next available (see groupadd(8)) |
794 | # gid: next available (see groupadd(8)) |
| 582 | # extra: none |
795 | # extra: none |
| 583 | enewgroup() { |
796 | enewgroup() { |
| 584 | # get the group |
797 | # get the group |
| 585 | local egroup="$1"; shift |
798 | local egroup="$1"; shift |
| 586 | if [ -z "${egroup}" ] ; then |
799 | if [ -z "${egroup}" ] |
|
|
800 | then |
| 587 | eerror "No group specified !" |
801 | eerror "No group specified !" |
| 588 | die "Cannot call enewgroup without a group" |
802 | die "Cannot call enewgroup without a group" |
| 589 | fi |
803 | fi |
| 590 | |
804 | |
| 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 |
805 | # see if group already exists |
| 598 | if [ "${egroup}" == "${realgroup}" ] ; then |
806 | if [ "${egroup}" == "`egetent group \"${egroup}\" | cut -d: -f1`" ] |
|
|
807 | then |
| 599 | return 0 |
808 | return 0 |
| 600 | fi |
809 | fi |
| 601 | einfo "Adding group '${egroup}' to your system ..." |
810 | einfo "Adding group '${egroup}' to your system ..." |
| 602 | |
811 | |
| 603 | # options to pass to useradd |
812 | # options to pass to useradd |
| 604 | local opts="" |
813 | local opts= |
| 605 | |
814 | |
| 606 | # handle gid |
815 | # handle gid |
| 607 | local egid="$1"; shift |
816 | local egid="$1"; shift |
| 608 | if [ ! -z "${egid}" ] ; then |
817 | if [ ! -z "${egid}" ] |
|
|
818 | then |
| 609 | if [ ${egid} -gt 0 ] ; then |
819 | if [ "${egid}" -gt 0 ] |
|
|
820 | then |
|
|
821 | if [ -z "`egetent group ${egid}`" ] |
|
|
822 | then |
|
|
823 | if useq ppc-macos ; then |
|
|
824 | opts="${opts} ${egid}" |
|
|
825 | else |
| 610 | opts="${opts} -g ${egid}" |
826 | opts="${opts} -g ${egid}" |
|
|
827 | fi |
|
|
828 | else |
|
|
829 | egid="next available; requested gid taken" |
|
|
830 | fi |
| 611 | else |
831 | else |
| 612 | eerror "Groupid given but is not greater than 0 !" |
832 | eerror "Groupid given but is not greater than 0 !" |
| 613 | die "${egid} is not a valid GID" |
833 | die "${egid} is not a valid GID" |
| 614 | fi |
834 | fi |
| 615 | else |
835 | else |
| … | |
… | |
| 620 | # handle extra |
840 | # handle extra |
| 621 | local eextra="$@" |
841 | local eextra="$@" |
| 622 | opts="${opts} ${eextra}" |
842 | opts="${opts} ${eextra}" |
| 623 | |
843 | |
| 624 | # add the group |
844 | # add the group |
| 625 | local oldsandbox=${SANDBOX_ON} |
845 | local oldsandbox="${SANDBOX_ON}" |
| 626 | export SANDBOX_ON="0" |
846 | export SANDBOX_ON="0" |
|
|
847 | if useq ppc-macos ; then |
|
|
848 | if [ ! -z "${eextra}" ]; |
|
|
849 | then |
|
|
850 | einfo "Extra options are not supported on macos yet" |
|
|
851 | einfo "Please report the ebuild along with the info below" |
|
|
852 | einfo "eextra: ${eextra}" |
|
|
853 | die "Required function missing" |
|
|
854 | fi |
|
|
855 | |
|
|
856 | # If we need the next available |
|
|
857 | case ${egid} in |
|
|
858 | *[!0-9]*) # Non numeric |
|
|
859 | for egid in `jot 898 101`; do |
|
|
860 | [ -z "`egetent group ${egid}`" ] && break |
|
|
861 | done |
|
|
862 | esac |
|
|
863 | dscl . create /groups/${egroup} gid ${egid} |
|
|
864 | dscl . create /groups/${egroup} passwd '*' |
|
|
865 | elif use x86-fbsd ; then |
|
|
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 | pw groupadd ${egroup} -g ${egid} || die "enewgroup failed" |
|
|
873 | else |
| 627 | groupadd ${opts} ${egroup} || die "enewgroup failed" |
874 | groupadd ${opts} ${egroup} || die "enewgroup failed" |
|
|
875 | fi |
| 628 | export SANDBOX_ON="${oldsandbox}" |
876 | export SANDBOX_ON="${oldsandbox}" |
| 629 | } |
877 | } |
| 630 | |
878 | |
| 631 | # Simple script to replace 'dos2unix' binaries |
879 | # Simple script to replace 'dos2unix' binaries |
| 632 | # vapier@gentoo.org |
880 | # vapier@gentoo.org |
| 633 | # |
881 | # |
| 634 | # edos2unix(file, <more files>...) |
882 | # edos2unix(file, <more files> ...) |
| 635 | edos2unix() { |
883 | edos2unix() { |
| 636 | for f in $@ ; do |
884 | for f in "$@" |
|
|
885 | do |
| 637 | cp ${f} ${T}/edos2unix |
886 | cp "${f}" ${T}/edos2unix |
| 638 | sed 's/\r$//' ${T}/edos2unix > ${f} |
887 | sed 's/\r$//' ${T}/edos2unix > "${f}" |
| 639 | done |
888 | done |
| 640 | } |
889 | } |
|
|
890 | |
|
|
891 | |
|
|
892 | ############################################################## |
|
|
893 | # START: Handle .desktop files and menu entries # |
|
|
894 | # maybe this should be separated into a new eclass some time # |
|
|
895 | # lanius@gentoo.org # |
|
|
896 | ############################################################## |
| 641 | |
897 | |
| 642 | # Make a desktop file ! |
898 | # Make a desktop file ! |
| 643 | # Great for making those icons in kde/gnome startmenu ! |
899 | # Great for making those icons in kde/gnome startmenu ! |
| 644 | # Amaze your friends ! Get the women ! Join today ! |
900 | # 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 | # |
901 | # |
| 649 | # make_desktop_entry(<binary>, [name], [icon], [type], [path]) |
902 | # make_desktop_entry(<binary>, [name], [icon], [type], [path]) |
| 650 | # |
903 | # |
| 651 | # binary: what binary does the app run with ? |
904 | # binary: what binary does the app run with ? |
| 652 | # name: the name that will show up in the menu |
905 | # name: the name that will show up in the menu |
| 653 | # icon: give your little like a pretty little icon ... |
906 | # icon: give your little like a pretty little icon ... |
| 654 | # this can be relative (to /usr/share/pixmaps) or |
907 | # this can be relative (to /usr/share/pixmaps) or |
| 655 | # a full path to an icon |
908 | # a full path to an icon |
| 656 | # type: what kind of application is this ? for categories: |
909 | # type: what kind of application is this ? for categories: |
| 657 | # http://www.freedesktop.org/standards/menu/draft/menu-spec/menu-spec.html |
910 | # http://www.freedesktop.org/standards/menu-spec/ |
| 658 | # path: if your app needs to startup in a specific dir |
911 | # path: if your app needs to startup in a specific dir |
| 659 | make_desktop_entry() { |
912 | make_desktop_entry() { |
| 660 | [ -z "$1" ] && eerror "You must specify the executable" && return 1 |
913 | [ -z "$1" ] && eerror "make_desktop_entry: You must specify the executable" && return 1 |
| 661 | |
914 | |
| 662 | local exec=${1} |
915 | local exec="${1}" |
| 663 | local name=${2:-${PN}} |
916 | local name="${2:-${PN}}" |
| 664 | local icon=${3:-${PN}.png} |
917 | local icon="${3:-${PN}.png}" |
| 665 | local type=${4} |
918 | local type="${4}" |
|
|
919 | local subdir="${6}" |
| 666 | local path=${5:-${GAMES_PREFIX}} |
920 | local path="${5:-${GAMES_BINDIR}}" |
| 667 | if [ -z "${type}" ] ; then |
921 | if [ -z "${type}" ] |
|
|
922 | then |
| 668 | case ${CATEGORY} in |
923 | case ${CATEGORY} in |
| 669 | app-emulation) type=Emulator ;; |
924 | "app-emulation") |
| 670 | app-games) type=Game ;; |
925 | type=Emulator |
| 671 | *) type="" ;; |
926 | subdir="Emulation" |
|
|
927 | ;; |
|
|
928 | "games-"*) |
|
|
929 | type=Game |
|
|
930 | subdir="Games" |
|
|
931 | ;; |
|
|
932 | "net-"*) |
|
|
933 | type=Network |
|
|
934 | subdir="${type}" |
|
|
935 | ;; |
|
|
936 | *) |
|
|
937 | type= |
|
|
938 | subdir= |
|
|
939 | ;; |
| 672 | esac |
940 | esac |
| 673 | fi |
941 | fi |
| 674 | local desktop=${T}/${exec}.desktop |
942 | local desktop="${T}/${exec}.desktop" |
| 675 | |
943 | |
| 676 | echo "[Desktop Entry] |
944 | echo "[Desktop Entry] |
| 677 | Encoding=UTF-8 |
945 | Encoding=UTF-8 |
| 678 | Version=0.9.2 |
946 | Version=0.9.2 |
| 679 | Name=${name} |
947 | Name=${name} |
| 680 | Type=Application |
948 | Type=Application |
| 681 | Comment=${DESCRIPTION} |
949 | Comment=${DESCRIPTION} |
| 682 | Exec=${exec} |
950 | Exec=${exec} |
| 683 | Path=${path} |
951 | Path=${path} |
| 684 | Icon=${icon} |
952 | Icon=${icon} |
| 685 | Categories=Application;${type};" > ${desktop} |
953 | Categories=Application;${type};" > "${desktop}" |
| 686 | |
954 | |
| 687 | if [ -d /usr/share/applications ] ; then |
|
|
| 688 | insinto /usr/share/applications |
955 | insinto /usr/share/applications |
| 689 | doins ${desktop} |
956 | 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 | |
957 | |
| 709 | return 0 |
958 | return 0 |
| 710 | } |
959 | } |
| 711 | |
960 | |
| 712 | # new convenience patch wrapper function to eventually replace epatch(), |
961 | # Make a GDM/KDM Session file |
| 713 | # $PATCHES, $PATCHES1, src_unpack:patch, src_unpack:autopatch and |
962 | # |
| 714 | # /usr/bin/patch |
963 | # make_desktop_entry(<title>, <command>) |
| 715 | # Features: |
964 | # title: File to execute to start the Window Manager |
| 716 | # - bulk patch handling similar to epatch()'s |
965 | # command: Name of the Window Manager |
| 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 | |
966 | |
| 724 | # accepts zero or more parameters specifying patchfiles and/or patchdirs |
967 | make_session_desktop() { |
| 725 | |
968 | |
| 726 | # known issues: |
969 | [ -z "$1" ] && eerror "make_session_desktop: You must specify the title" && return 1 |
| 727 | # - only supports unified style patches (does anyone _really_ use anything |
970 | [ -z "$2" ] && eerror "make_session_desktop: You must specify the command" && return 1 |
| 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 | |
971 | |
| 738 | debug-print-function $FUNCNAME $* |
972 | local title="${1}" |
|
|
973 | local command="${2}" |
|
|
974 | local desktop="${T}/${wm}.desktop" |
| 739 | |
975 | |
| 740 | local list="" |
976 | echo "[Desktop Entry] |
| 741 | local list2="" |
977 | Encoding=UTF-8 |
| 742 | declare -i plevel |
978 | Name=${title} |
|
|
979 | Comment=This session logs you into ${title} |
|
|
980 | Exec=${command} |
|
|
981 | TryExec=${command} |
|
|
982 | Type=Application" > "${desktop}" |
| 743 | |
983 | |
| 744 | # parse patch sources |
984 | insinto /usr/share/xsessions |
| 745 | for x in $*; do |
985 | doins "${desktop}" |
| 746 | debug-print "$FUNCNAME: parsing parameter $x" |
986 | |
|
|
987 | return 0 |
|
|
988 | } |
|
|
989 | |
|
|
990 | domenu() { |
|
|
991 | local i |
|
|
992 | local j |
|
|
993 | insinto /usr/share/applications |
|
|
994 | for i in ${@} |
|
|
995 | do |
| 747 | if [ -f "$x" ]; then |
996 | if [ -f "${i}" ]; |
| 748 | list="$list $x" |
997 | then |
|
|
998 | doins ${i} |
| 749 | elif [ -d "$x" ]; then |
999 | elif [ -d "${i}" ]; |
| 750 | # handles patchdirs like epatch() for now: no recursion. |
1000 | then |
| 751 | # patches are sorted by filename, so with an xy_foo naming scheme you'll get the right order. |
1001 | for j in ${i}/*.desktop |
| 752 | # only patches with _$ARCH_ or _all_ in their filenames are applied. |
1002 | do |
| 753 | for file in `ls -A $x`; do |
1003 | doins ${j} |
| 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 |
1004 | done |
| 759 | list="`echo $list2 | sort` $list" |
|
|
| 760 | else |
|
|
| 761 | die "Couldn't find $x" |
|
|
| 762 | fi |
1005 | fi |
| 763 | done |
1006 | done |
|
|
1007 | } |
| 764 | |
1008 | |
| 765 | debug-print "$FUNCNAME: final list of patches: $list" |
1009 | doicon() { |
| 766 | |
1010 | local i |
| 767 | for x in $list; do |
1011 | local j |
| 768 | debug-print "$FUNCNAME: processing $x" |
1012 | insinto /usr/share/pixmaps |
| 769 | # deal with compressed files. /usr/bin/file is in the system profile, or should be. |
1013 | for i in ${@} |
| 770 | case "`/usr/bin/file -b $x`" in |
1014 | do |
| 771 | *gzip*) patchfile="${T}/current.patch"; ungzip -c "$x" > "${patchfile}";; |
1015 | if [ -f "${i}" ]; |
| 772 | *bzip2*) patchfile="${T}/current.patch"; bunzip2 -c "$x" > "${patchfile}";; |
1016 | then |
| 773 | *text*) patchfile="$x";; |
1017 | doins ${i} |
| 774 | *) die "Could not determine filetype of patch $x";; |
1018 | elif [ -d "${i}" ]; |
| 775 | esac |
1019 | then |
| 776 | debug-print "$FUNCNAME: patchfile=$patchfile" |
1020 | for j in ${i}/*.png |
| 777 | |
1021 | do |
| 778 | # determine patchlevel. supports p0 and higher with either $S or $WORKDIR as base. |
1022 | doins ${j} |
| 779 | target="`/bin/grep -m 1 '^+++ ' $patchfile`" |
|
|
| 780 | debug-print "$FUNCNAME: raw target=$target" |
|
|
| 781 | # strip target down to the path/filename, remove leading +++ |
|
|
| 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 | |
|
|
| 788 | # look for target |
|
|
| 789 | for basedir in "$S" "$WORKDIR" "${PWD}"; do |
|
|
| 790 | debug-print "$FUNCNAME: looking in basedir=$basedir" |
|
|
| 791 | cd "$basedir" |
|
|
| 792 | |
|
|
| 793 | # try stripping leading directories |
|
|
| 794 | target2="$target" |
|
|
| 795 | plevel=0 |
|
|
| 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 |
1023 | done |
| 803 | test -f "$target2" && break |
1024 | fi |
| 804 | |
|
|
| 805 | # try stripping filename - needed to support patches creating new files |
|
|
| 806 | target2="${target%/*}" |
|
|
| 807 | plevel=0 |
|
|
| 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 | |
|
|
| 817 | done |
|
|
| 818 | |
|
|
| 819 | test -f "${basedir}/${target2}" || test -d "${basedir}/${target2}" || die "Could not determine patchlevel for $x" |
|
|
| 820 | debug-print "$FUNCNAME: determined plevel=$plevel" |
|
|
| 821 | # do the patching |
|
|
| 822 | ebegin "Applying patch ${x##*/}..." |
|
|
| 823 | /usr/bin/patch -p$plevel < "$patchfile" > /dev/null || die "Failed to apply patch $x" |
|
|
| 824 | eend $? |
|
|
| 825 | |
|
|
| 826 | done |
1025 | done |
|
|
1026 | } |
| 827 | |
1027 | |
|
|
1028 | ############################################################## |
|
|
1029 | # END: Handle .desktop files and menu entries # |
|
|
1030 | ############################################################## |
|
|
1031 | |
|
|
1032 | |
|
|
1033 | # for internal use only (unpack_pdv and unpack_makeself) |
|
|
1034 | find_unpackable_file() { |
|
|
1035 | local src="$1" |
|
|
1036 | if [ -z "${src}" ] |
|
|
1037 | then |
|
|
1038 | src="${DISTDIR}/${A}" |
|
|
1039 | else |
|
|
1040 | if [ -e "${DISTDIR}/${src}" ] |
|
|
1041 | then |
|
|
1042 | src="${DISTDIR}/${src}" |
|
|
1043 | elif [ -e "${PWD}/${src}" ] |
|
|
1044 | then |
|
|
1045 | src="${PWD}/${src}" |
|
|
1046 | elif [ -e "${src}" ] |
|
|
1047 | then |
|
|
1048 | src="${src}" |
|
|
1049 | fi |
|
|
1050 | fi |
|
|
1051 | [ ! -e "${src}" ] && die "Could not find requested archive ${src}" |
|
|
1052 | echo "${src}" |
|
|
1053 | } |
|
|
1054 | |
|
|
1055 | # Unpack those pesky pdv generated files ... |
|
|
1056 | # They're self-unpacking programs with the binary package stuffed in |
|
|
1057 | # the middle of the archive. Valve seems to use it a lot ... too bad |
|
|
1058 | # it seems to like to segfault a lot :(. So lets take it apart ourselves. |
|
|
1059 | # |
|
|
1060 | # Usage: unpack_pdv [file to unpack] [size of off_t] |
|
|
1061 | # - you have to specify the off_t size ... i have no idea how to extract that |
|
|
1062 | # information out of the binary executable myself. basically you pass in |
|
|
1063 | # the size of the off_t type (in bytes) on the machine that built the pdv |
|
|
1064 | # archive. one way to determine this is by running the following commands: |
|
|
1065 | # strings <pdv archive> | grep lseek |
|
|
1066 | # strace -elseek <pdv archive> |
|
|
1067 | # basically look for the first lseek command (we do the strings/grep because |
|
|
1068 | # sometimes the function call is _llseek or something) and steal the 2nd |
|
|
1069 | # parameter. here is an example: |
|
|
1070 | # root@vapier 0 pdv_unpack # strings hldsupdatetool.bin | grep lseek |
|
|
1071 | # lseek |
|
|
1072 | # root@vapier 0 pdv_unpack # strace -elseek ./hldsupdatetool.bin |
|
|
1073 | # lseek(3, -4, SEEK_END) = 2981250 |
|
|
1074 | # thus we would pass in the value of '4' as the second parameter. |
|
|
1075 | unpack_pdv() { |
|
|
1076 | local src="`find_unpackable_file $1`" |
|
|
1077 | local sizeoff_t="$2" |
|
|
1078 | |
|
|
1079 | [ -z "${sizeoff_t}" ] && die "No idea what off_t size was used for this pdv :(" |
|
|
1080 | |
|
|
1081 | local shrtsrc="`basename ${src}`" |
|
|
1082 | echo ">>> Unpacking ${shrtsrc} to ${PWD}" |
|
|
1083 | local metaskip=`tail -c ${sizeoff_t} ${src} | hexdump -e \"%i\"` |
|
|
1084 | local tailskip=`tail -c $((${sizeoff_t}*2)) ${src} | head -c ${sizeoff_t} | hexdump -e \"%i\"` |
|
|
1085 | |
|
|
1086 | # grab metadata for debug reasons |
|
|
1087 | local metafile="$(emktemp)" |
|
|
1088 | tail -c +$((${metaskip}+1)) ${src} > ${metafile} |
|
|
1089 | |
|
|
1090 | # rip out the final file name from the metadata |
|
|
1091 | local datafile="`tail -c +$((${metaskip}+1)) ${src} | strings | head -n 1`" |
|
|
1092 | datafile="`basename ${datafile}`" |
|
|
1093 | |
|
|
1094 | # now lets uncompress/untar the file if need be |
|
|
1095 | local tmpfile="$(emktemp)" |
|
|
1096 | tail -c +$((${tailskip}+1)) ${src} 2>/dev/null | head -c 512 > ${tmpfile} |
|
|
1097 | |
|
|
1098 | local iscompressed="`file -b ${tmpfile}`" |
|
|
1099 | if [ "${iscompressed:0:8}" == "compress" ] ; then |
|
|
1100 | iscompressed=1 |
|
|
1101 | mv ${tmpfile}{,.Z} |
|
|
1102 | gunzip ${tmpfile} |
|
|
1103 | else |
|
|
1104 | iscompressed=0 |
|
|
1105 | fi |
|
|
1106 | local istar="`file -b ${tmpfile}`" |
|
|
1107 | if [ "${istar:0:9}" == "POSIX tar" ] ; then |
|
|
1108 | istar=1 |
|
|
1109 | else |
|
|
1110 | istar=0 |
|
|
1111 | fi |
|
|
1112 | |
|
|
1113 | #for some reason gzip dies with this ... dd cant provide buffer fast enough ? |
|
|
1114 | #dd if=${src} ibs=${metaskip} count=1 \ |
|
|
1115 | # | dd ibs=${tailskip} skip=1 \ |
|
|
1116 | # | gzip -dc \ |
|
|
1117 | # > ${datafile} |
|
|
1118 | if [ ${iscompressed} -eq 1 ] ; then |
|
|
1119 | if [ ${istar} -eq 1 ] ; then |
|
|
1120 | tail -c +$((${tailskip}+1)) ${src} 2>/dev/null \ |
|
|
1121 | | head -c $((${metaskip}-${tailskip})) \ |
|
|
1122 | | tar -xzf - |
|
|
1123 | else |
|
|
1124 | tail -c +$((${tailskip}+1)) ${src} 2>/dev/null \ |
|
|
1125 | | head -c $((${metaskip}-${tailskip})) \ |
|
|
1126 | | gzip -dc \ |
|
|
1127 | > ${datafile} |
|
|
1128 | fi |
|
|
1129 | else |
|
|
1130 | if [ ${istar} -eq 1 ] ; then |
|
|
1131 | tail -c +$((${tailskip}+1)) ${src} 2>/dev/null \ |
|
|
1132 | | head -c $((${metaskip}-${tailskip})) \ |
|
|
1133 | | tar --no-same-owner -xf - |
|
|
1134 | else |
|
|
1135 | tail -c +$((${tailskip}+1)) ${src} 2>/dev/null \ |
|
|
1136 | | head -c $((${metaskip}-${tailskip})) \ |
|
|
1137 | > ${datafile} |
|
|
1138 | fi |
|
|
1139 | fi |
|
|
1140 | true |
|
|
1141 | #[ -s "${datafile}" ] || die "failure unpacking pdv ('${metaskip}' '${tailskip}' '${datafile}')" |
|
|
1142 | #assert "failure unpacking pdv ('${metaskip}' '${tailskip}' '${datafile}')" |
| 828 | } |
1143 | } |
| 829 | |
1144 | |
| 830 | # Unpack those pesky makeself generated files ... |
1145 | # Unpack those pesky makeself generated files ... |
| 831 | # They're shell scripts with the binary package tagged onto |
1146 | # They're shell scripts with the binary package tagged onto |
| 832 | # the end of the archive. Loki utilized the format as does |
1147 | # the end of the archive. Loki utilized the format as does |
| 833 | # many other game companies. |
1148 | # many other game companies. |
| 834 | # |
1149 | # |
| 835 | # Usage: unpack_makeself [file to unpack] [offset] |
1150 | # Usage: unpack_makeself [file to unpack] [offset] [tail|dd] |
| 836 | # - If the file is not specified then unpack will utilize ${A}. |
1151 | # - If the file is not specified then unpack will utilize ${A}. |
| 837 | # - If the offset is not specified then we will attempt to extract |
1152 | # - If the offset is not specified then we will attempt to extract |
| 838 | # the proper offset from the script itself. |
1153 | # the proper offset from the script itself. |
| 839 | unpack_makeself() { |
1154 | unpack_makeself() { |
| 840 | local src=$1 |
1155 | local src="$(find_unpackable_file "$1")" |
| 841 | local skip=$2 |
1156 | local skip="$2" |
|
|
1157 | local exe="$3" |
| 842 | |
1158 | |
| 843 | [ -z "${src}" ] && src=${A} |
|
|
| 844 | [ -e ./${src} ] \ |
|
|
| 845 | && src=${PWD}/${src} \ |
|
|
| 846 | || src=${DISTDIR}/${src} |
|
|
| 847 | local shrtsrc=`basename ${src}` |
1159 | local shrtsrc="$(basename "${src}")" |
| 848 | echo ">>> Unpacking ${shrtsrc} to ${PWD}" |
1160 | echo ">>> Unpacking ${shrtsrc} to ${PWD}" |
| 849 | if [ -z "${skip}" ] ; then |
1161 | if [ -z "${skip}" ] |
|
|
1162 | then |
| 850 | local ver="`grep -a '#.*Makeself' ${src} | awk '{print $NF}'`" |
1163 | local ver="`grep -a '#.*Makeself' ${src} | awk '{print $NF}'`" |
| 851 | local skip=0 |
1164 | local skip=0 |
|
|
1165 | exe=tail |
| 852 | case ${ver} in |
1166 | case ${ver} in |
| 853 | 1.5.*) # tested 1.5.{3,4,5} ... guessing 1.5.x series is same |
1167 | 1.5.*) # tested 1.5.{3,4,5} ... guessing 1.5.x series is same |
| 854 | skip=`grep -a ^skip= ${src} | cut -d= -f2` |
1168 | skip=$(grep -a ^skip= "${src}" | cut -d= -f2) |
| 855 | ;; |
1169 | ;; |
| 856 | 2.0|2.0.1) |
1170 | 2.0|2.0.1) |
| 857 | skip=`grep -a ^$'\t'tail ${src} | awk '{print $2}' | cut -b2-` |
1171 | skip=$(grep -a ^$'\t'tail "${src}" | awk '{print $2}' | cut -b2-) |
| 858 | ;; |
1172 | ;; |
| 859 | 2.1.1) |
1173 | 2.1.1) |
| 860 | skip=`grep -a ^offset= ${src} | awk '{print $2}' | cut -b2-` |
1174 | skip=$(grep -a ^offset= "${src}" | awk '{print $2}' | cut -b2-) |
| 861 | let skip="skip + 1" |
1175 | let skip="skip + 1" |
|
|
1176 | ;; |
|
|
1177 | 2.1.2) |
|
|
1178 | skip=$(grep -a ^offset= "${src}" | awk '{print $3}' | head -n 1) |
|
|
1179 | let skip="skip + 1" |
|
|
1180 | ;; |
|
|
1181 | 2.1.3) |
|
|
1182 | skip=`grep -a ^offset= "${src}" | awk '{print $3}'` |
|
|
1183 | let skip="skip + 1" |
|
|
1184 | ;; |
|
|
1185 | 2.1.4) |
|
|
1186 | skip=$(grep -a offset=.*head.*wc "${src}" | awk '{print $3}' | head -n 1) |
|
|
1187 | skip=$(head -n ${skip} "${src}" | wc -c) |
|
|
1188 | exe="dd" |
| 862 | ;; |
1189 | ;; |
| 863 | *) |
1190 | *) |
| 864 | eerror "I'm sorry, but I was unable to support the Makeself file." |
1191 | eerror "I'm sorry, but I was unable to support the Makeself file." |
| 865 | eerror "The version I detected was '${ver}'." |
1192 | eerror "The version I detected was '${ver}'." |
| 866 | eerror "Please file a bug about the file ${shrtsrc} at" |
1193 | eerror "Please file a bug about the file ${shrtsrc} at" |
| … | |
… | |
| 868 | die "makeself version '${ver}' not supported" |
1195 | die "makeself version '${ver}' not supported" |
| 869 | ;; |
1196 | ;; |
| 870 | esac |
1197 | esac |
| 871 | debug-print "Detected Makeself version ${ver} ... using ${skip} as offset" |
1198 | debug-print "Detected Makeself version ${ver} ... using ${skip} as offset" |
| 872 | fi |
1199 | fi |
|
|
1200 | case ${exe} in |
|
|
1201 | tail) exe="tail -n +${skip} '${src}'";; |
|
|
1202 | dd) exe="dd ibs=${skip} skip=1 obs=1024 conv=sync if='${src}'";; |
|
|
1203 | *) die "makeself cant handle exe '${exe}'" |
|
|
1204 | esac |
| 873 | |
1205 | |
| 874 | # we do this because otherwise a failure in gzip will cause 0 bytes to be sent |
1206 | # 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 |
1207 | local tmpfile="$(emktemp)" |
| 876 | local out="`tail +${skip} ${src} | gzip -cd | tar -x --no-same-owner -v -f -`" |
1208 | eval ${exe} 2>/dev/null | head -c 512 > "${tmpfile}" |
|
|
1209 | local filetype="$(file -b "${tmpfile}")" |
|
|
1210 | case ${filetype} in |
|
|
1211 | *tar\ archive) |
|
|
1212 | eval ${exe} | tar --no-same-owner -xf - |
|
|
1213 | ;; |
|
|
1214 | bzip2*) |
|
|
1215 | eval ${exe} | bzip2 -dc | tar --no-same-owner -xf - |
|
|
1216 | ;; |
|
|
1217 | gzip*) |
|
|
1218 | eval ${exe} | tar --no-same-owner -xzf - |
|
|
1219 | ;; |
|
|
1220 | compress*) |
|
|
1221 | eval ${exe} | gunzip | tar --no-same-owner -xf - |
|
|
1222 | ;; |
|
|
1223 | *) |
|
|
1224 | eerror "Unknown filetype \"${filetype}\" ?" |
|
|
1225 | false |
|
|
1226 | ;; |
|
|
1227 | esac |
| 877 | [ -z "${out}" ] && die "failure unpacking makeself ${shrtsrc} ('${ver}' +${skip})" |
1228 | assert "failure unpacking (${filetype}) makeself ${shrtsrc} ('${ver}' +${skip})" |
| 878 | } |
1229 | } |
|
|
1230 | |
|
|
1231 | # Display a license for user to accept. |
|
|
1232 | # |
|
|
1233 | # Usage: check_license [license] |
|
|
1234 | # - If the file is not specified then ${LICENSE} is used. |
|
|
1235 | check_license() { |
|
|
1236 | local lic=$1 |
|
|
1237 | if [ -z "${lic}" ] ; then |
|
|
1238 | lic="${PORTDIR}/licenses/${LICENSE}" |
|
|
1239 | else |
|
|
1240 | if [ -e "${PORTDIR}/licenses/${src}" ] ; then |
|
|
1241 | lic="${PORTDIR}/licenses/${src}" |
|
|
1242 | elif [ -e "${PWD}/${src}" ] ; then |
|
|
1243 | lic="${PWD}/${src}" |
|
|
1244 | elif [ -e "${src}" ] ; then |
|
|
1245 | lic="${src}" |
|
|
1246 | fi |
|
|
1247 | fi |
|
|
1248 | [ ! -f "${lic}" ] && die "Could not find requested license ${src}" |
|
|
1249 | local l="`basename ${lic}`" |
|
|
1250 | |
|
|
1251 | # here is where we check for the licenses the user already |
|
|
1252 | # accepted ... if we don't find a match, we make the user accept |
|
|
1253 | local shopts=$- |
|
|
1254 | local alic |
|
|
1255 | set -o noglob #so that bash doesn't expand "*" |
|
|
1256 | for alic in ${ACCEPT_LICENSE} ; do |
|
|
1257 | if [[ ${alic} == * || ${alic} == ${l} ]]; then |
|
|
1258 | set +o noglob; set -${shopts} #reset old shell opts |
|
|
1259 | return 0 |
|
|
1260 | fi |
|
|
1261 | done |
|
|
1262 | set +o noglob; set -$shopts #reset old shell opts |
|
|
1263 | |
|
|
1264 | local licmsg="$(emktemp)" |
|
|
1265 | cat << EOF > ${licmsg} |
|
|
1266 | ********************************************************** |
|
|
1267 | The following license outlines the terms of use of this |
|
|
1268 | package. You MUST accept this license for installation to |
|
|
1269 | continue. When you are done viewing, hit 'q'. If you |
|
|
1270 | CTRL+C out of this, the install will not run! |
|
|
1271 | ********************************************************** |
|
|
1272 | |
|
|
1273 | EOF |
|
|
1274 | cat ${lic} >> ${licmsg} |
|
|
1275 | ${PAGER:-less} ${licmsg} || die "Could not execute pager (${PAGER}) to accept ${lic}" |
|
|
1276 | einfon "Do you accept the terms of this license (${l})? [yes/no] " |
|
|
1277 | read alic |
|
|
1278 | case ${alic} in |
|
|
1279 | yes|Yes|y|Y) |
|
|
1280 | return 0 |
|
|
1281 | ;; |
|
|
1282 | *) |
|
|
1283 | echo;echo;echo |
|
|
1284 | eerror "You MUST accept the license to continue! Exiting!" |
|
|
1285 | die "Failed to accept license" |
|
|
1286 | ;; |
|
|
1287 | esac |
|
|
1288 | } |
|
|
1289 | |
|
|
1290 | # Aquire cd(s) for those lovely cd-based emerges. Yes, this violates |
|
|
1291 | # the whole 'non-interactive' policy, but damnit I want CD support ! |
|
|
1292 | # |
|
|
1293 | # with these cdrom functions we handle all the user interaction and |
|
|
1294 | # standardize everything. all you have to do is call cdrom_get_cds() |
|
|
1295 | # and when the function returns, you can assume that the cd has been |
|
|
1296 | # found at CDROM_ROOT. |
|
|
1297 | # |
|
|
1298 | # normally the cdrom functions will refer to the cds as 'cd #1', 'cd #2', |
|
|
1299 | # etc... if you want to give the cds better names, then just export |
|
|
1300 | # the CDROM_NAME_X variables before calling cdrom_get_cds(). |
|
|
1301 | # |
|
|
1302 | # for those multi cd ebuilds, see the cdrom_load_next_cd() below. |
|
|
1303 | # |
|
|
1304 | # Usage: cdrom_get_cds <file on cd1> [file on cd2] [file on cd3] [...] |
|
|
1305 | # - this will attempt to locate a cd based upon a file that is on |
|
|
1306 | # the cd ... the more files you give this function, the more cds |
|
|
1307 | # the cdrom functions will handle |
|
|
1308 | cdrom_get_cds() { |
|
|
1309 | # first we figure out how many cds we're dealing with by |
|
|
1310 | # the # of files they gave us |
|
|
1311 | local cdcnt=0 |
|
|
1312 | local f= |
|
|
1313 | for f in "$@" ; do |
|
|
1314 | cdcnt=$((cdcnt + 1)) |
|
|
1315 | export CDROM_CHECK_${cdcnt}="$f" |
|
|
1316 | done |
|
|
1317 | export CDROM_TOTAL_CDS=${cdcnt} |
|
|
1318 | export CDROM_CURRENT_CD=1 |
|
|
1319 | |
|
|
1320 | # now we see if the user gave use CD_ROOT ... |
|
|
1321 | # if they did, let's just believe them that it's correct |
|
|
1322 | if [[ ! -z ${CD_ROOT} ]] ; then |
|
|
1323 | export CDROM_ROOT=${CD_ROOT} |
|
|
1324 | einfo "Found CD #${CDROM_CURRENT_CD} root at ${CDROM_ROOT}" |
|
|
1325 | return |
|
|
1326 | fi |
|
|
1327 | # do the same for CD_ROOT_X |
|
|
1328 | if [[ ! -z ${CD_ROOT_1} ]] ; then |
|
|
1329 | local var= |
|
|
1330 | cdcnt=0 |
|
|
1331 | while [[ ${cdcnt} -lt ${CDROM_TOTAL_CDS} ]] ; do |
|
|
1332 | cdcnt=$((cdcnt + 1)) |
|
|
1333 | var="CD_ROOT_${cdcnt}" |
|
|
1334 | if [[ -z ${!var} ]] ; then |
|
|
1335 | eerror "You must either use just the CD_ROOT" |
|
|
1336 | eerror "or specify ALL the CD_ROOT_X variables." |
|
|
1337 | eerror "In this case, you will need ${CDROM_TOTAL_CDS} CD_ROOT_X variables." |
|
|
1338 | die "could not locate CD_ROOT_${cdcnt}" |
|
|
1339 | fi |
|
|
1340 | export CDROM_ROOTS_${cdcnt}="${!var}" |
|
|
1341 | done |
|
|
1342 | export CDROM_ROOT=${CDROM_ROOTS_1} |
|
|
1343 | einfo "Found CD #${CDROM_CURRENT_CD} root at ${CDROM_ROOT}" |
|
|
1344 | return |
|
|
1345 | fi |
|
|
1346 | |
|
|
1347 | if [[ ${CDROM_TOTAL_CDS} -eq 1 ]] ; then |
|
|
1348 | einfon "This ebuild will need the " |
|
|
1349 | if [[ -z ${CDROM_NAME} ]] ; then |
|
|
1350 | echo "cdrom for ${PN}." |
|
|
1351 | else |
|
|
1352 | echo "${CDROM_NAME}." |
|
|
1353 | fi |
|
|
1354 | echo |
|
|
1355 | einfo "If you do not have the CD, but have the data files" |
|
|
1356 | einfo "mounted somewhere on your filesystem, just export" |
|
|
1357 | einfo "the variable CD_ROOT so that it points to the" |
|
|
1358 | einfo "directory containing the files." |
|
|
1359 | echo |
|
|
1360 | einfo "For example:" |
|
|
1361 | einfo "export CD_ROOT=/mnt/cdrom" |
|
|
1362 | echo |
|
|
1363 | else |
|
|
1364 | einfo "This package will need access to ${CDROM_TOTAL_CDS} cds." |
|
|
1365 | cdcnt=0 |
|
|
1366 | while [[ ${cdcnt} -lt ${CDROM_TOTAL_CDS} ]] ; do |
|
|
1367 | cdcnt=$((cdcnt + 1)) |
|
|
1368 | var="CDROM_NAME_${cdcnt}" |
|
|
1369 | [[ ! -z ${!var} ]] && einfo " CD ${cdcnt}: ${!var}" |
|
|
1370 | done |
|
|
1371 | echo |
|
|
1372 | einfo "If you do not have the CDs, but have the data files" |
|
|
1373 | einfo "mounted somewhere on your filesystem, just export" |
|
|
1374 | einfo "the following variables so they point to the right place:" |
|
|
1375 | einfon "" |
|
|
1376 | cdcnt=0 |
|
|
1377 | while [[ ${cdcnt} -lt ${CDROM_TOTAL_CDS} ]] ; do |
|
|
1378 | cdcnt=$((cdcnt + 1)) |
|
|
1379 | echo -n " CD_ROOT_${cdcnt}" |
|
|
1380 | done |
|
|
1381 | echo |
|
|
1382 | einfo "Or, if you have all the files in the same place, or" |
|
|
1383 | einfo "you only have one cdrom, you can export CD_ROOT" |
|
|
1384 | einfo "and that place will be used as the same data source" |
|
|
1385 | einfo "for all the CDs." |
|
|
1386 | echo |
|
|
1387 | einfo "For example:" |
|
|
1388 | einfo "export CD_ROOT_1=/mnt/cdrom" |
|
|
1389 | echo |
|
|
1390 | fi |
|
|
1391 | export CDROM_CURRENT_CD=0 |
|
|
1392 | cdrom_load_next_cd |
|
|
1393 | } |
|
|
1394 | |
|
|
1395 | # this is only used when you need access to more than one cd. |
|
|
1396 | # when you have finished using the first cd, just call this function. |
|
|
1397 | # when it returns, CDROM_ROOT will be pointing to the second cd. |
|
|
1398 | # remember, you can only go forward in the cd chain, you can't go back. |
|
|
1399 | cdrom_load_next_cd() { |
|
|
1400 | export CDROM_CURRENT_CD=$((CDROM_CURRENT_CD + 1)) |
|
|
1401 | local var= |
|
|
1402 | |
|
|
1403 | if [[ ! -z ${CD_ROOT} ]] ; then |
|
|
1404 | einfo "Using same root as before for CD #${CDROM_CURRENT_CD}" |
|
|
1405 | return |
|
|
1406 | fi |
|
|
1407 | |
|
|
1408 | unset CDROM_ROOT |
|
|
1409 | var=CDROM_ROOTS_${CDROM_CURRENT_CD} |
|
|
1410 | if [[ -z ${!var} ]] ; then |
|
|
1411 | var="CDROM_CHECK_${CDROM_CURRENT_CD}" |
|
|
1412 | cdrom_locate_file_on_cd ${!var} |
|
|
1413 | else |
|
|
1414 | export CDROM_ROOT=${!var} |
|
|
1415 | fi |
|
|
1416 | |
|
|
1417 | einfo "Found CD #${CDROM_CURRENT_CD} root at ${CDROM_ROOT}" |
|
|
1418 | } |
|
|
1419 | |
|
|
1420 | # this is used internally by the cdrom_get_cds() and cdrom_load_next_cd() |
|
|
1421 | # functions. this should *never* be called from an ebuild. |
|
|
1422 | # all it does is try to locate a give file on a cd ... if the cd isn't |
|
|
1423 | # found, then a message asking for the user to insert the cdrom will be |
|
|
1424 | # displayed and we'll hang out here until: |
|
|
1425 | # (1) the file is found on a mounted cdrom |
|
|
1426 | # (2) the user hits CTRL+C |
|
|
1427 | cdrom_locate_file_on_cd() { |
|
|
1428 | while [[ -z ${CDROM_ROOT} ]] ; do |
|
|
1429 | local dir="$(dirname ${@})" |
|
|
1430 | local file="$(basename ${@})" |
|
|
1431 | local mline="" |
|
|
1432 | local showedmsg=0 |
|
|
1433 | |
|
|
1434 | for mline in $(mount | egrep -e '(iso|cdrom)' | awk '{print $3}') ; do |
|
|
1435 | [[ -d ${mline}/${dir} ]] || continue |
|
|
1436 | [[ ! -z $(find ${mline}/${dir} -iname ${file} -maxdepth 1) ]] \ |
|
|
1437 | && export CDROM_ROOT=${mline} |
|
|
1438 | done |
|
|
1439 | |
|
|
1440 | if [[ -z ${CDROM_ROOT} ]] ; then |
|
|
1441 | echo |
|
|
1442 | if [[ ${showedmsg} -eq 0 ]] ; then |
|
|
1443 | if [[ ${CDROM_TOTAL_CDS} -eq 1 ]] ; then |
|
|
1444 | if [[ -z ${CDROM_NAME} ]] ; then |
|
|
1445 | einfo "Please insert the cdrom for ${PN} now !" |
|
|
1446 | else |
|
|
1447 | einfo "Please insert the ${CDROM_NAME} cdrom now !" |
|
|
1448 | fi |
|
|
1449 | else |
|
|
1450 | if [[ -z ${CDROM_NAME_1} ]] ; then |
|
|
1451 | einfo "Please insert cd #${CDROM_CURRENT_CD} for ${PN} now !" |
|
|
1452 | else |
|
|
1453 | local var="CDROM_NAME_${CDROM_CURRENT_CD}" |
|
|
1454 | einfo "Please insert+mount the ${!var} cdrom now !" |
|
|
1455 | fi |
|
|
1456 | fi |
|
|
1457 | showedmsg=1 |
|
|
1458 | fi |
|
|
1459 | einfo "Press return to scan for the cd again" |
|
|
1460 | einfo "or hit CTRL+C to abort the emerge." |
|
|
1461 | read |
|
|
1462 | fi |
|
|
1463 | done |
|
|
1464 | } |
|
|
1465 | |
|
|
1466 | # Make sure that LINGUAS only contains languages that |
|
|
1467 | # a package can support |
|
|
1468 | # |
|
|
1469 | # usage: strip-linguas <allow LINGUAS> |
|
|
1470 | # strip-linguas -i <directories of .po files> |
|
|
1471 | # strip-linguas -u <directories of .po files> |
|
|
1472 | # |
|
|
1473 | # The first form allows you to specify a list of LINGUAS. |
|
|
1474 | # The -i builds a list of po files found in all the |
|
|
1475 | # directories and uses the intersection of the lists. |
|
|
1476 | # The -u builds a list of po files found in all the |
|
|
1477 | # directories and uses the union of the lists. |
|
|
1478 | strip-linguas() { |
|
|
1479 | local ls newls |
|
|
1480 | if [ "$1" == "-i" ] || [ "$1" == "-u" ] ; then |
|
|
1481 | local op="$1"; shift |
|
|
1482 | ls=" $(find "$1" -name '*.po' -printf '%f ') "; shift |
|
|
1483 | local d f |
|
|
1484 | for d in "$@" ; do |
|
|
1485 | if [ "${op}" == "-u" ] ; then |
|
|
1486 | newls="${ls}" |
|
|
1487 | else |
|
|
1488 | newls="" |
|
|
1489 | fi |
|
|
1490 | for f in $(find "$d" -name '*.po' -printf '%f ') ; do |
|
|
1491 | if [ "${op}" == "-i" ] ; then |
|
|
1492 | [ "${ls/ ${f} /}" != "${ls}" ] && newls="${newls} ${f}" |
|
|
1493 | else |
|
|
1494 | [ "${ls/ ${f} /}" == "${ls}" ] && newls="${newls} ${f}" |
|
|
1495 | fi |
|
|
1496 | done |
|
|
1497 | ls="${newls}" |
|
|
1498 | done |
|
|
1499 | ls="${ls//.po}" |
|
|
1500 | else |
|
|
1501 | ls="$@" |
|
|
1502 | fi |
|
|
1503 | |
|
|
1504 | ls=" ${ls} " |
|
|
1505 | newls="" |
|
|
1506 | for f in ${LINGUAS} ; do |
|
|
1507 | if [ "${ls/ ${f} /}" != "${ls}" ] ; then |
|
|
1508 | newls="${newls} ${f}" |
|
|
1509 | else |
|
|
1510 | ewarn "Sorry, but ${PN} does not support the ${f} LINGUA" |
|
|
1511 | fi |
|
|
1512 | done |
|
|
1513 | if [ -z "${newls}" ] ; then |
|
|
1514 | unset LINGUAS |
|
|
1515 | else |
|
|
1516 | export LINGUAS="${newls}" |
|
|
1517 | fi |
|
|
1518 | } |
|
|
1519 | |
|
|
1520 | # moved from kernel.eclass since they are generally useful outside of |
|
|
1521 | # kernel.eclass -iggy (20041002) |
|
|
1522 | |
|
|
1523 | # the following functions are useful in kernel module ebuilds, etc. |
|
|
1524 | # for an example see ivtv or drbd ebuilds |
|
|
1525 | |
|
|
1526 | # set's ARCH to match what the kernel expects |
|
|
1527 | set_arch_to_kernel() { |
|
|
1528 | i=10 |
|
|
1529 | while ((i--)) ; do |
|
|
1530 | ewarn "PLEASE UPDATE TO YOUR PACKAGE TO USE linux-info.eclass" |
|
|
1531 | done |
|
|
1532 | export EUTILS_ECLASS_PORTAGE_ARCH="${ARCH}" |
|
|
1533 | case ${ARCH} in |
|
|
1534 | x86) export ARCH="i386";; |
|
|
1535 | amd64) export ARCH="x86_64";; |
|
|
1536 | hppa) export ARCH="parisc";; |
|
|
1537 | mips) export ARCH="mips";; |
|
|
1538 | 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! |
|
|
1539 | *) export ARCH="${ARCH}";; |
|
|
1540 | esac |
|
|
1541 | } |
|
|
1542 | |
|
|
1543 | # set's ARCH back to what portage expects |
|
|
1544 | set_arch_to_portage() { |
|
|
1545 | i=10 |
|
|
1546 | while ((i--)) ; do |
|
|
1547 | ewarn "PLEASE UPDATE TO YOUR PACKAGE TO USE linux-info.eclass" |
|
|
1548 | done |
|
|
1549 | export ARCH="${EUTILS_ECLASS_PORTAGE_ARCH}" |
|
|
1550 | } |
|
|
1551 | |
|
|
1552 | # Jeremy Huddleston <eradicator@gentoo.org>: |
|
|
1553 | # preserve_old_lib /path/to/libblah.so.0 |
|
|
1554 | # preserve_old_lib_notify /path/to/libblah.so.0 |
|
|
1555 | # |
|
|
1556 | # These functions are useful when a lib in your package changes --soname. Such |
|
|
1557 | # an example might be from libogg.so.0 to libogg.so.1. Removing libogg.so.0 |
|
|
1558 | # would break packages that link against it. Most people get around this |
|
|
1559 | # by using the portage SLOT mechanism, but that is not always a relevant |
|
|
1560 | # solution, so instead you can add the following to your ebuilds: |
|
|
1561 | # |
|
|
1562 | # src_install() { |
|
|
1563 | # ... |
|
|
1564 | # preserve_old_lib /usr/$(get_libdir)/libogg.so.0 |
|
|
1565 | # ... |
|
|
1566 | # } |
|
|
1567 | # |
|
|
1568 | # pkg_postinst() { |
|
|
1569 | # ... |
|
|
1570 | # preserve_old_lib_notify /usr/$(get_libdir)/libogg.so.0 |
|
|
1571 | # ... |
|
|
1572 | # } |
|
|
1573 | |
|
|
1574 | preserve_old_lib() { |
|
|
1575 | LIB=$1 |
|
|
1576 | |
|
|
1577 | if [ -n "${LIB}" -a -f "${ROOT}${LIB}" ]; then |
|
|
1578 | SONAME=`basename ${LIB}` |
|
|
1579 | DIRNAME=`dirname ${LIB}` |
|
|
1580 | |
|
|
1581 | dodir ${DIRNAME} |
|
|
1582 | cp ${ROOT}${LIB} ${D}${DIRNAME} |
|
|
1583 | touch ${D}${LIB} |
|
|
1584 | fi |
|
|
1585 | } |
|
|
1586 | |
|
|
1587 | preserve_old_lib_notify() { |
|
|
1588 | LIB=$1 |
|
|
1589 | |
|
|
1590 | if [ -n "${LIB}" -a -f "${ROOT}${LIB}" ]; then |
|
|
1591 | SONAME=`basename ${LIB}` |
|
|
1592 | |
|
|
1593 | einfo "An old version of an installed library was detected on your system." |
|
|
1594 | einfo "In order to avoid breaking packages that link against is, this older version" |
|
|
1595 | einfo "is not being removed. In order to make full use of this newer version," |
|
|
1596 | einfo "you will need to execute the following command:" |
|
|
1597 | einfo " revdep-rebuild --soname ${SONAME}" |
|
|
1598 | einfo |
|
|
1599 | einfo "After doing that, you can safely remove ${LIB}" |
|
|
1600 | einfo "Note: 'emerge gentoolkit' to get revdep-rebuild" |
|
|
1601 | fi |
|
|
1602 | } |
|
|
1603 | |
|
|
1604 | # Hack for people to figure out if a package was built with |
|
|
1605 | # certain USE flags |
|
|
1606 | # |
|
|
1607 | # Usage: built_with_use [-a|-o] <DEPEND ATOM> <List of USE flags> |
|
|
1608 | # ex: built_with_use xchat gtk2 |
|
|
1609 | # |
|
|
1610 | # Flags: -a all USE flags should be utilized |
|
|
1611 | # -o at least one USE flag should be utilized |
|
|
1612 | # Note: the default flag is '-a' |
|
|
1613 | built_with_use() { |
|
|
1614 | local opt=$1 |
|
|
1615 | [[ ${opt:0:1} = "-" ]] && shift || opt="-a" |
|
|
1616 | |
|
|
1617 | local PKG=$(best_version $1) |
|
|
1618 | shift |
|
|
1619 | |
|
|
1620 | local USEFILE="${ROOT}/var/db/pkg/${PKG}/USE" |
|
|
1621 | [[ ! -e ${USEFILE} ]] && return 1 |
|
|
1622 | |
|
|
1623 | local USE_BUILT=$(<${USEFILE}) |
|
|
1624 | while [[ $# -gt 0 ]] ; do |
|
|
1625 | if [[ ${opt} = "-o" ]] ; then |
|
|
1626 | has $1 ${USE_BUILT} && return 0 |
|
|
1627 | else |
|
|
1628 | has $1 ${USE_BUILT} || return 1 |
|
|
1629 | fi |
|
|
1630 | shift |
|
|
1631 | done |
|
|
1632 | [[ ${opt} = "-a" ]] |
|
|
1633 | } |
|
|
1634 | |
|
|
1635 | # Many configure scripts wrongly bail when a C++ compiler |
|
|
1636 | # could not be detected. #73450 |
|
|
1637 | epunt_cxx() { |
|
|
1638 | local dir=$1 |
|
|
1639 | [[ -z ${dir} ]] && dir=${S} |
|
|
1640 | ebegin "Removing useless C++ checks" |
|
|
1641 | local f |
|
|
1642 | for f in $(find ${dir} -name configure) ; do |
|
|
1643 | patch -p0 "${f}" "${PORTDIR}/eclass/ELT-patches/nocxx/nocxx.patch" > /dev/null |
|
|
1644 | done |
|
|
1645 | eend 0 |
|
|
1646 | } |
|
|
1647 | |
|
|
1648 | # dopamd [ file ] [ new file ] |
|
|
1649 | # |
|
|
1650 | # Install pam auth config file in /etc/pam.d |
|
|
1651 | # |
|
|
1652 | # The first argument, 'file' is required. Install as 'new file', if |
|
|
1653 | # specified. |
|
|
1654 | |
|
|
1655 | dopamd() { |
|
|
1656 | local pamd="$1" newpamd="${2:-$1}" |
|
|
1657 | [[ -z "$1" ]] && die "dopamd requires at least one argument." |
|
|
1658 | |
|
|
1659 | use pam || return 0 |
|
|
1660 | |
|
|
1661 | insinto /etc/pam.d |
|
|
1662 | # these are the default doins options, but be explicit just in case |
|
|
1663 | insopts -m 0644 -o root -g root |
|
|
1664 | newins ${pamd} ${newpamd} || die "failed to install ${newpamd}" |
|
|
1665 | } |