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