| 1 | # Copyright 1999-2002 Gentoo Technologies, Inc. |
1 | # Copyright 1999-2003 Gentoo Technologies, Inc. |
| 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.22 2003/02/28 09:15:04 vapier Exp $ |
|
|
4 | # |
| 3 | # Author: Martin Schlemmer <azarah@gentoo.org> |
5 | # Author: Martin Schlemmer <azarah@gentoo.org> |
| 4 | # $Header: /var/cvsroot/gentoo-x86/eclass/eutils.eclass,v 1.9 2002/12/01 15:48:27 azarah Exp $ |
6 | # |
| 5 | # This eclass is for general purpose functions that most ebuilds |
7 | # This eclass is for general purpose functions that most ebuilds |
| 6 | # have to implement themselves. |
8 | # have to implement themselves. |
| 7 | # |
9 | # |
| 8 | # NB: If you add anything, please comment it! |
10 | # NB: If you add anything, please comment it! |
| 9 | |
11 | |
| 10 | ECLASS=eutils |
12 | ECLASS=eutils |
| 11 | INHERITED="$INHERITED $ECLASS" |
13 | INHERITED="$INHERITED $ECLASS" |
| 12 | |
14 | |
| 13 | newdepend sys-devel/patch |
15 | newdepend "!bootstrap? ( sys-devel/patch )" |
| 14 | |
16 | |
| 15 | DESCRIPTION="Based on the ${ECLASS} eclass" |
17 | DESCRIPTION="Based on the ${ECLASS} eclass" |
| 16 | |
18 | |
| 17 | # This function generate linker scripts in /usr/lib for dynamic |
19 | # This function generate linker scripts in /usr/lib for dynamic |
| 18 | # libs in /lib. This is to fix linking problems when you have |
20 | # libs in /lib. This is to fix linking problems when you have |
| … | |
… | |
| 153 | then |
155 | then |
| 154 | local EPATCH_SOURCE="$1/*.${EPATCH_SUFFIX}" |
156 | local EPATCH_SOURCE="$1/*.${EPATCH_SUFFIX}" |
| 155 | else |
157 | else |
| 156 | if [ ! -d ${EPATCH_SOURCE} ] |
158 | if [ ! -d ${EPATCH_SOURCE} ] |
| 157 | then |
159 | then |
|
|
160 | if [ -n "$1" -a "${EPATCH_SOURCE}" = "${WORKDIR}/patch" ] |
|
|
161 | then |
|
|
162 | EPATCH_SOURCE="$1" |
|
|
163 | fi |
|
|
164 | |
| 158 | echo |
165 | echo |
| 159 | eerror "Cannot find \$EPATCH_SOURCE!" |
166 | eerror "Cannot find \$EPATCH_SOURCE! Value for \$EPATCH_SOURCE is:" |
|
|
167 | eerror |
|
|
168 | eerror " ${EPATCH_SOURCE}" |
| 160 | echo |
169 | echo |
| 161 | die "Cannot find \$EPATCH_SOURCE!" |
170 | die "Cannot find \$EPATCH_SOURCE!" |
| 162 | fi |
171 | fi |
| 163 | |
172 | |
| 164 | local EPATCH_SOURCE="${EPATCH_SOURCE}/*.${EPATCH_SUFFIX}" |
173 | local EPATCH_SOURCE="${EPATCH_SOURCE}/*.${EPATCH_SUFFIX}" |
| … | |
… | |
| 253 | count=5 |
262 | count=5 |
| 254 | break |
263 | break |
| 255 | fi |
264 | fi |
| 256 | fi |
265 | fi |
| 257 | |
266 | |
| 258 | if patch ${popts} --dry-run -f -p${count} < ${PATCH_TARGET} >> ${STDERR_TARGET%/*}/${x##*/}-${STDERR_TARGET##*/} 2>&1 |
267 | if (cat ${PATCH_TARGET} | patch ${popts} --dry-run -f -p${count}) >> ${STDERR_TARGET%/*}/${x##*/}-${STDERR_TARGET##*/} 2>&1 |
| 259 | then |
268 | then |
| 260 | draw_line "***** ${x##*/} *****" > ${STDERR_TARGET%/*}/${x##*/}-${STDERR_TARGET##*/}.real |
269 | draw_line "***** ${x##*/} *****" > ${STDERR_TARGET%/*}/${x##*/}-${STDERR_TARGET##*/}.real |
| 261 | echo >> ${STDERR_TARGET%/*}/${x##*/}-${STDERR_TARGET##*/}.real |
270 | echo >> ${STDERR_TARGET%/*}/${x##*/}-${STDERR_TARGET##*/}.real |
| 262 | echo "ACTUALLY APPLYING ${x##*/}..." >> ${STDERR_TARGET%/*}/${x##*/}-${STDERR_TARGET##*/}.real |
271 | echo "ACTUALLY APPLYING ${x##*/}..." >> ${STDERR_TARGET%/*}/${x##*/}-${STDERR_TARGET##*/}.real |
| 263 | echo >> ${STDERR_TARGET%/*}/${x##*/}-${STDERR_TARGET##*/}.real |
272 | echo >> ${STDERR_TARGET%/*}/${x##*/}-${STDERR_TARGET##*/}.real |
| 264 | draw_line "***** ${x##*/} *****" >> ${STDERR_TARGET%/*}/${x##*/}-${STDERR_TARGET##*/}.real |
273 | draw_line "***** ${x##*/} *****" >> ${STDERR_TARGET%/*}/${x##*/}-${STDERR_TARGET##*/}.real |
| 265 | |
274 | |
| 266 | patch ${popts} -p${count} < ${PATCH_TARGET} >> ${STDERR_TARGET%/*}/${x##*/}-${STDERR_TARGET##*/}.real 2>&1 |
275 | cat ${PATCH_TARGET} | patch ${popts} -p${count} >> ${STDERR_TARGET%/*}/${x##*/}-${STDERR_TARGET##*/}.real 2>&1 |
| 267 | |
276 | |
| 268 | if [ "$?" -ne 0 ] |
277 | if [ "$?" -ne 0 ] |
| 269 | then |
278 | then |
| 270 | cat ${STDERR_TARGET%/*}/${x##*/}-${STDERR_TARGET##*/}.real >> ${STDERR_TARGET%/*}/${x##*/}-${STDERR_TARGET##*/} |
279 | cat ${STDERR_TARGET%/*}/${x##*/}-${STDERR_TARGET##*/}.real >> ${STDERR_TARGET%/*}/${x##*/}-${STDERR_TARGET##*/} |
| 271 | echo |
280 | echo |
| … | |
… | |
| 309 | then |
318 | then |
| 310 | einfo "Done with patching" |
319 | einfo "Done with patching" |
| 311 | fi |
320 | fi |
| 312 | } |
321 | } |
| 313 | |
322 | |
|
|
323 | # This function check how many cpu's are present, and then set |
|
|
324 | # -j in MAKEOPTS accordingly. |
|
|
325 | # |
|
|
326 | # Thanks to nall <nall@gentoo.org> for this. |
|
|
327 | # |
|
|
328 | get_number_of_jobs() { |
|
|
329 | local jobs=0 |
|
|
330 | |
|
|
331 | if [ ! -r /proc/cpuinfo ] |
|
|
332 | then |
|
|
333 | return 1 |
|
|
334 | fi |
|
|
335 | |
|
|
336 | # This bit is from H?kan Wessberg <nacka-gentoo@refug.org>, bug #13565. |
|
|
337 | if [ "`egrep "^[[:space:]]*MAKEOPTS=" /etc/make.conf | wc -l`" -gt 0 ] |
|
|
338 | then |
|
|
339 | ADMINOPTS="`egrep "^[[:space:]]*MAKEOPTS=" /etc/make.conf | cut -d= -f2 | sed 's/\"//g'`" |
|
|
340 | ADMINPARAM="`echo ${ADMINOPTS} | gawk '{match($0, /-j *[0-9]*/, opt); print opt[0]}'`" |
|
|
341 | ADMINPARAM="${ADMINPARAM/-j}" |
|
|
342 | fi |
|
|
343 | |
|
|
344 | export MAKEOPTS="`echo ${MAKEOPTS} | sed -e 's:-j *[0-9]*::g'`" |
|
|
345 | |
|
|
346 | if [ "${ARCH}" = "x86" -o "${ARCH}" = "hppa" -o \ |
|
|
347 | "${ARCH}" = "arm" -o "${ARCH}" = "mips" ] |
|
|
348 | then |
|
|
349 | # these archs will always have "[Pp]rocessor" |
|
|
350 | jobs="$((`grep -c ^[Pp]rocessor /proc/cpuinfo` * 2))" |
|
|
351 | |
|
|
352 | elif [ "${ARCH}" = "sparc" -o "${ARCH}" = "sparc64" ] |
|
|
353 | then |
|
|
354 | # sparc always has "ncpus active" |
|
|
355 | jobs="$((`grep "^ncpus active" /proc/cpuinfo | sed -e "s/^.*: //"` * 2))" |
|
|
356 | |
|
|
357 | elif [ "${ARCH}" = "alpha" ] |
|
|
358 | then |
|
|
359 | # alpha has "cpus active", but only when compiled with SMP |
|
|
360 | if [ "`grep -c "^cpus active" /proc/cpuinfo`" -eq 1 ] |
|
|
361 | then |
|
|
362 | jobs="$((`grep "^cpus active" /proc/cpuinfo | sed -e "s/^.*: //"` * 2))" |
|
|
363 | else |
|
|
364 | jobs=2 |
|
|
365 | fi |
|
|
366 | |
|
|
367 | elif [ "${ARCH}" = "ppc" ] |
|
|
368 | then |
|
|
369 | # ppc has "processor", but only when compiled with SMP |
|
|
370 | if [ "`grep -c "^processor" /proc/cpuinfo`" -eq 1 ] |
|
|
371 | then |
|
|
372 | jobs="$((`grep -c ^processor /proc/cpuinfo` * 2))" |
|
|
373 | else |
|
|
374 | jobs=2 |
|
|
375 | fi |
|
|
376 | else |
|
|
377 | jobs="$((`grep -c ^cpu /proc/cpuinfo` * 2))" |
|
|
378 | die "Unknown ARCH -- ${ARCH}!" |
|
|
379 | fi |
|
|
380 | |
|
|
381 | # Make sure the number is valid ... |
|
|
382 | if [ "${jobs}" -lt 1 ] |
|
|
383 | then |
|
|
384 | jobs=1 |
|
|
385 | fi |
|
|
386 | |
|
|
387 | if [ -n "${ADMINPARAM}" ] |
|
|
388 | then |
|
|
389 | if [ "${jobs}" -gt "${ADMINPARAM}" ] |
|
|
390 | then |
|
|
391 | einfo "Setting make jobs to \"-j${ADMINPARAM}\" to ensure successful merge..." |
|
|
392 | export MAKEOPTS="${MAKEOPTS} -j${ADMINPARAM}" |
|
|
393 | else |
|
|
394 | einfo "Setting make jobs to \"-j${jobs}\" to ensure successful merge..." |
|
|
395 | export MAKEOPTS="${MAKEOPTS} -j${jobs}" |
|
|
396 | fi |
|
|
397 | fi |
|
|
398 | } |
|
|
399 | |