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