| 1 | # Copyright 1999-2004 Gentoo Foundation |
1 | # Copyright 1999-2005 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.128 2004/12/23 09:20:45 eradicator Exp $ |
3 | # $Header: /var/cvsroot/gentoo-x86/eclass/eutils.eclass,v 1.196 2005/09/06 01:59:22 vapier 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 | ECLASS=eutils |
12 | inherit multilib |
| 13 | INHERITED="$INHERITED $ECLASS" |
|
|
| 14 | |
13 | |
| 15 | DEPEND="!bootstrap? ( sys-devel/patch )" |
14 | DEPEND="!bootstrap? ( sys-devel/patch )" |
|
|
15 | # sys-apps/shadow is needed for useradd, etc, bug #94745. |
| 16 | |
16 | |
| 17 | DESCRIPTION="Based on the ${ECLASS} eclass" |
17 | DESCRIPTION="Based on the ${ECLASS} eclass" |
| 18 | |
18 | |
| 19 | # Wait for the supplied number of seconds. If no argument is supplied, defaults |
19 | # Wait for the supplied number of seconds. If no argument is supplied, defaults |
| 20 | # to five seconds. If the EPAUSE_IGNORE env var is set, don't wait. If we're not |
20 | # to five seconds. If the EPAUSE_IGNORE env var is set, don't wait. If we're not |
| … | |
… | |
| 41 | sleep 1 |
41 | sleep 1 |
| 42 | done |
42 | done |
| 43 | fi |
43 | fi |
| 44 | } |
44 | } |
| 45 | |
45 | |
| 46 | # This function simply returns the desired lib directory. With portage |
|
|
| 47 | # 2.0.51, we now have support for installing libraries to lib32/lib64 |
|
|
| 48 | # to accomidate the needs of multilib systems. It's no longer a good idea |
|
|
| 49 | # to assume all libraries will end up in lib. Replace any (sane) instances |
|
|
| 50 | # where lib is named directly with $(get_libdir) if possible. |
|
|
| 51 | # |
|
|
| 52 | # Travis Tilley <lv@gentoo.org> (24 Aug 2004) |
|
|
| 53 | # |
|
|
| 54 | # Jeremy Huddleston <eradicator@gentoo.org> (23 Dec 2004): |
|
|
| 55 | # Added support for ${ABI} and ${DEFAULT_ABI}. If they're both not set, |
|
|
| 56 | # fall back on old behavior. Any profile that has these set should also |
|
|
| 57 | # depend on a newer version of portage (not yet released) which uses these |
|
|
| 58 | # over CONF_LIBDIR in econf, dolib, etc... |
|
|
| 59 | # |
|
|
| 60 | # For now, this is restricted to the sparc64-multilib ${PROFILE_ARCH} as it |
|
|
| 61 | # is still in testing. |
|
|
| 62 | get_libdir() { |
|
|
| 63 | LIBDIR_TEST=$(type econf) |
|
|
| 64 | if [ ! -z "${CONF_LIBDIR_OVERRIDE}" ] ; then |
|
|
| 65 | # if there is an override, we want to use that... always. |
|
|
| 66 | CONF_LIBDIR="${CONF_LIBDIR_OVERRIDE}" |
|
|
| 67 | # We don't need to know the verison of portage. We only need to know |
|
|
| 68 | # if there is support for CONF_LIBDIR in econf and co. |
|
|
| 69 | # Danny van Dyk <kugelfang@gentoo.org> 2004/17/09 |
|
|
| 70 | #elif portageq has_version / '<sys-apps/portage-2.0.51_pre20' ; then |
|
|
| 71 | # # and if there isnt an override, and we're using a version of |
|
|
| 72 | # # portage without CONF_LIBDIR support, force the use of lib. dolib |
|
|
| 73 | # # and friends from portage 2.0.50 wont be too happy otherwise. |
|
|
| 74 | # CONF_LIBDIR="lib" |
|
|
| 75 | #fi |
|
|
| 76 | elif [ "${PROFILE_ARCH}" = "sparc64-multilib" ]; then # Using eradicator's LIBDIR_<abi> approach... |
|
|
| 77 | CONF_LIBDIR="$(get_abi_LIBDIR)" |
|
|
| 78 | elif [ "${LIBDIR_TEST/CONF_LIBDIR}" == "${LIBDIR_TEST}" ]; then # we don't have CONF_LIBDIR support |
|
|
| 79 | # will be <portage-2.0.51_pre20 |
|
|
| 80 | CONF_LIBDIR="lib" |
|
|
| 81 | fi |
|
|
| 82 | # and of course, default to lib if CONF_LIBDIR isnt set |
|
|
| 83 | echo ${CONF_LIBDIR:=lib} |
|
|
| 84 | unset LIBDIR_TEST |
|
|
| 85 | } |
|
|
| 86 | |
|
|
| 87 | get_multilibdir() { |
|
|
| 88 | [ "${PROFILE_ARCH}" = "sparc64-multilib" ] && die "get_multilibdir called, but it shouldn't be needed on sparc64-multilib" |
|
|
| 89 | echo ${CONF_MULTILIBDIR:=lib32} |
|
|
| 90 | } |
|
|
| 91 | |
|
|
| 92 | # Sometimes you need to override the value returned by get_libdir. A good |
|
|
| 93 | # example of this is xorg-x11, where lib32 isnt a supported configuration, |
|
|
| 94 | # and where lib64 -must- be used on amd64 (for applications that need lib |
|
|
| 95 | # to be 32bit, such as adobe acrobat). Note that this override also bypasses |
|
|
| 96 | # portage version sanity checking. |
|
|
| 97 | # get_libdir_override expects one argument, the result get_libdir should |
|
|
| 98 | # return: |
|
|
| 99 | # |
|
|
| 100 | # get_libdir_override lib64 |
|
|
| 101 | # |
|
|
| 102 | # Travis Tilley <lv@gentoo.org> (31 Aug 2004) |
|
|
| 103 | get_libdir_override() { |
|
|
| 104 | [ "${PROFILE_ARCH}" = "sparc64-multilib" ] && die "get_libdir_override called, but it shouldn't be needed on sparc64-multilib..." |
|
|
| 105 | CONF_LIBDIR="$1" |
|
|
| 106 | CONF_LIBDIR_OVERRIDE="$1" |
|
|
| 107 | } |
|
|
| 108 | |
|
|
| 109 | # This function generate linker scripts in /usr/lib for dynamic |
46 | # This function generate linker scripts in /usr/lib for dynamic |
| 110 | # libs in /lib. This is to fix linking problems when you have |
47 | # libs in /lib. This is to fix linking problems when you have |
| 111 | # the .so in /lib, and the .a in /usr/lib. What happens is that |
48 | # the .so in /lib, and the .a in /usr/lib. What happens is that |
| 112 | # in some cases when linking dynamic, the .a in /usr/lib is used |
49 | # in some cases when linking dynamic, the .a in /usr/lib is used |
| 113 | # instead of the .so in /lib due to gcc/libtool tweaking ld's |
50 | # instead of the .so in /lib due to gcc/libtool tweaking ld's |
| … | |
… | |
| 127 | gen_usr_ldscript() { |
64 | gen_usr_ldscript() { |
| 128 | local libdir="$(get_libdir)" |
65 | local libdir="$(get_libdir)" |
| 129 | # Just make sure it exists |
66 | # Just make sure it exists |
| 130 | dodir /usr/${libdir} |
67 | dodir /usr/${libdir} |
| 131 | |
68 | |
|
|
69 | for lib in "${@}" ; do |
| 132 | cat > "${D}/usr/${libdir}/${1}" << END_LDSCRIPT |
70 | cat > "${D}/usr/${libdir}/${lib}" <<-END_LDSCRIPT |
| 133 | /* GNU ld script |
71 | /* GNU ld script |
| 134 | Because Gentoo have critical dynamic libraries |
72 | Since Gentoo has critical dynamic libraries |
| 135 | in /lib, and the static versions in /usr/lib, we |
73 | in /lib, and the static versions in /usr/lib, |
| 136 | need to have a "fake" dynamic lib in /usr/lib, |
74 | we need to have a "fake" dynamic lib in /usr/lib, |
| 137 | otherwise we run into linking problems. |
75 | otherwise we run into linking problems. |
| 138 | See bug #4411 on http://bugs.gentoo.org/ for |
76 | |
| 139 | more info. */ |
77 | See bug http://bugs.gentoo.org/4411 for more info. |
|
|
78 | */ |
| 140 | GROUP ( /${libdir}/${1} ) |
79 | GROUP ( /${libdir}/${lib} ) |
| 141 | END_LDSCRIPT |
80 | END_LDSCRIPT |
| 142 | fperms a+x "/usr/${libdir}/${1}" |
81 | fperms a+x "/usr/${libdir}/${lib}" |
|
|
82 | done |
| 143 | } |
83 | } |
| 144 | |
84 | |
| 145 | # Simple function to draw a line consisting of '=' the same length as $* |
85 | # Simple function to draw a line consisting of '=' the same length as $* |
|
|
86 | # - only to be used by epatch() |
| 146 | # |
87 | # |
| 147 | # <azarah@gentoo.org> (11 Nov 2002) |
88 | # <azarah@gentoo.org> (11 Nov 2002) |
| 148 | # |
89 | # |
| 149 | draw_line() { |
90 | draw_line() { |
| 150 | local i=0 |
91 | local i=0 |
| … | |
… | |
| 176 | EPATCH_SOURCE="${WORKDIR}/patch" |
117 | EPATCH_SOURCE="${WORKDIR}/patch" |
| 177 | # Default extension for patches |
118 | # Default extension for patches |
| 178 | EPATCH_SUFFIX="patch.bz2" |
119 | EPATCH_SUFFIX="patch.bz2" |
| 179 | # Default options for patch |
120 | # Default options for patch |
| 180 | # Set -g0 to keep RCS, ClearCase, Perforce and SCCS happy. Bug #24571 |
121 | # Set -g0 to keep RCS, ClearCase, Perforce and SCCS happy. Bug #24571 |
| 181 | EPATCH_OPTS="-g0" |
122 | # Set --no-backup-if-mismatch so we don't leave '.orig' files behind. |
|
|
123 | EPATCH_OPTS="-g0 --no-backup-if-mismatch" |
| 182 | # List of patches not to apply. Not this is only file names, |
124 | # List of patches not to apply. Not this is only file names, |
| 183 | # and not the full path .. |
125 | # and not the full path .. |
| 184 | EPATCH_EXCLUDE="" |
126 | EPATCH_EXCLUDE="" |
| 185 | # Change the printed message for a single patch. |
127 | # Change the printed message for a single patch. |
| 186 | EPATCH_SINGLE_MSG="" |
128 | EPATCH_SINGLE_MSG="" |
|
|
129 | # Change the printed message for multiple patches. |
|
|
130 | EPATCH_MULTI_MSG="Applying various patches (bugfixes/updates) ..." |
| 187 | # Force applying bulk patches even if not following the style: |
131 | # Force applying bulk patches even if not following the style: |
| 188 | # |
132 | # |
| 189 | # ??_${ARCH}_foo.${EPATCH_SUFFIX} |
133 | # ??_${ARCH}_foo.${EPATCH_SUFFIX} |
| 190 | # |
134 | # |
| 191 | EPATCH_FORCE="no" |
135 | EPATCH_FORCE="no" |
| … | |
… | |
| 229 | local PATCH_TARGET="${T}/$$.patch" |
173 | local PATCH_TARGET="${T}/$$.patch" |
| 230 | local PATCH_SUFFIX="" |
174 | local PATCH_SUFFIX="" |
| 231 | local SINGLE_PATCH="no" |
175 | local SINGLE_PATCH="no" |
| 232 | local x="" |
176 | local x="" |
| 233 | |
177 | |
|
|
178 | unset P4CONFIG P4PORT P4USER # keep perforce at bay #56402 |
|
|
179 | |
| 234 | if [ "$#" -gt 1 ] |
180 | if [ "$#" -gt 1 ] |
| 235 | then |
181 | then |
| 236 | local m="" |
182 | local m="" |
| 237 | einfo "${#} patches to apply ..." |
|
|
| 238 | for m in "$@" ; do |
183 | for m in "$@" ; do |
| 239 | epatch "${m}" |
184 | epatch "${m}" |
| 240 | done |
185 | done |
| 241 | return 0 |
186 | return 0 |
| 242 | fi |
187 | fi |
| … | |
… | |
| 267 | |
212 | |
| 268 | echo |
213 | echo |
| 269 | eerror "Cannot find \$EPATCH_SOURCE! Value for \$EPATCH_SOURCE is:" |
214 | eerror "Cannot find \$EPATCH_SOURCE! Value for \$EPATCH_SOURCE is:" |
| 270 | eerror |
215 | eerror |
| 271 | eerror " ${EPATCH_SOURCE}" |
216 | eerror " ${EPATCH_SOURCE}" |
|
|
217 | eerror " ( ${EPATCH_SOURCE##*/} )" |
| 272 | echo |
218 | echo |
| 273 | die "Cannot find \$EPATCH_SOURCE!" |
219 | die "Cannot find \$EPATCH_SOURCE!" |
| 274 | fi |
220 | fi |
| 275 | |
221 | |
| 276 | local EPATCH_SOURCE="${EPATCH_SOURCE}/*.${EPATCH_SUFFIX}" |
222 | local EPATCH_SOURCE="${EPATCH_SOURCE}/*.${EPATCH_SUFFIX}" |
| … | |
… | |
| 295 | ;; |
241 | ;; |
| 296 | esac |
242 | esac |
| 297 | |
243 | |
| 298 | if [ "${SINGLE_PATCH}" = "no" ] |
244 | if [ "${SINGLE_PATCH}" = "no" ] |
| 299 | then |
245 | then |
| 300 | einfo "Applying various patches (bugfixes/updates) ..." |
246 | einfo "${EPATCH_MULTI_MSG}" |
| 301 | fi |
247 | fi |
| 302 | for x in ${EPATCH_SOURCE} |
248 | for x in ${EPATCH_SOURCE} |
| 303 | do |
249 | do |
| 304 | # New ARCH dependant patch naming scheme ... |
250 | # New ARCH dependant patch naming scheme ... |
| 305 | # |
251 | # |
| 306 | # ???_arch_foo.patch |
252 | # ???_arch_foo.patch |
| 307 | # |
253 | # |
| 308 | if [ -f ${x} ] && \ |
254 | if [ -f ${x} ] && \ |
| 309 | ([ "${SINGLE_PATCH}" = "yes" -o "${x/_all_}" != "${x}" -o "`eval echo \$\{x/_${ARCH}_\}`" != "${x}" ] || \ |
255 | ([ "${SINGLE_PATCH}" = "yes" -o "${x/_all_}" != "${x}" -o "${x/_${ARCH}_}" != "${x}" ] || \ |
| 310 | [ "${EPATCH_FORCE}" = "yes" ]) |
256 | [ "${EPATCH_FORCE}" = "yes" ]) |
| 311 | then |
257 | then |
| 312 | local count=0 |
258 | local count=0 |
| 313 | local popts="${EPATCH_OPTS}" |
259 | local popts="${EPATCH_OPTS}" |
|
|
260 | local patchname=${x##*/} |
| 314 | |
261 | |
| 315 | if [ -n "${EPATCH_EXCLUDE}" ] |
262 | if [ -n "${EPATCH_EXCLUDE}" ] |
| 316 | then |
263 | then |
| 317 | if [ "`eval echo \$\{EPATCH_EXCLUDE/${x##*/}\}`" != "${EPATCH_EXCLUDE}" ] |
264 | if [ "${EPATCH_EXCLUDE/${patchname}}" != "${EPATCH_EXCLUDE}" ] |
| 318 | then |
265 | then |
| 319 | continue |
266 | continue |
| 320 | fi |
267 | fi |
| 321 | fi |
268 | fi |
| 322 | |
269 | |
| … | |
… | |
| 324 | then |
271 | then |
| 325 | if [ -n "${EPATCH_SINGLE_MSG}" ] |
272 | if [ -n "${EPATCH_SINGLE_MSG}" ] |
| 326 | then |
273 | then |
| 327 | einfo "${EPATCH_SINGLE_MSG}" |
274 | einfo "${EPATCH_SINGLE_MSG}" |
| 328 | else |
275 | else |
| 329 | einfo "Applying ${x##*/} ..." |
276 | einfo "Applying ${patchname} ..." |
| 330 | fi |
277 | fi |
| 331 | else |
278 | else |
| 332 | einfo " ${x##*/} ..." |
279 | einfo " ${patchname} ..." |
| 333 | fi |
280 | fi |
| 334 | |
281 | |
| 335 | echo "***** ${x##*/} *****" > ${STDERR_TARGET%/*}/${x##*/}-${STDERR_TARGET##*/} |
282 | echo "***** ${patchname} *****" > ${STDERR_TARGET%/*}/${patchname}-${STDERR_TARGET##*/} |
| 336 | echo >> ${STDERR_TARGET%/*}/${x##*/}-${STDERR_TARGET##*/} |
283 | echo >> ${STDERR_TARGET%/*}/${patchname}-${STDERR_TARGET##*/} |
| 337 | |
284 | |
| 338 | # Allow for prefix to differ ... im lazy, so shoot me :/ |
285 | # Allow for prefix to differ ... im lazy, so shoot me :/ |
| 339 | while [ "${count}" -lt 5 ] |
286 | while [ "${count}" -lt 5 ] |
| 340 | do |
287 | do |
| 341 | # Generate some useful debug info ... |
288 | # Generate some useful debug info ... |
| 342 | draw_line "***** ${x##*/} *****" >> ${STDERR_TARGET%/*}/${x##*/}-${STDERR_TARGET##*/} |
289 | draw_line "***** ${patchname} *****" >> ${STDERR_TARGET%/*}/${patchname}-${STDERR_TARGET##*/} |
| 343 | echo >> ${STDERR_TARGET%/*}/${x##*/}-${STDERR_TARGET##*/} |
290 | echo >> ${STDERR_TARGET%/*}/${patchname}-${STDERR_TARGET##*/} |
| 344 | |
291 | |
| 345 | if [ "${PATCH_SUFFIX}" != "patch" ] |
292 | if [ "${PATCH_SUFFIX}" != "patch" ] |
| 346 | then |
293 | then |
| 347 | echo -n "PIPE_COMMAND: " >> ${STDERR_TARGET%/*}/${x##*/}-${STDERR_TARGET##*/} |
294 | echo -n "PIPE_COMMAND: " >> ${STDERR_TARGET%/*}/${patchname}-${STDERR_TARGET##*/} |
| 348 | echo "${PIPE_CMD} ${x} > ${PATCH_TARGET}" >> ${STDERR_TARGET%/*}/${x##*/}-${STDERR_TARGET##*/} |
295 | echo "${PIPE_CMD} ${x} > ${PATCH_TARGET}" >> ${STDERR_TARGET%/*}/${patchname}-${STDERR_TARGET##*/} |
| 349 | else |
296 | else |
| 350 | PATCH_TARGET="${x}" |
297 | PATCH_TARGET="${x}" |
| 351 | fi |
298 | fi |
| 352 | |
299 | |
| 353 | echo -n "PATCH COMMAND: " >> ${STDERR_TARGET%/*}/${x##*/}-${STDERR_TARGET##*/} |
300 | echo -n "PATCH COMMAND: " >> ${STDERR_TARGET%/*}/${patchname}-${STDERR_TARGET##*/} |
| 354 | echo "patch -p${count} ${popts} < ${PATCH_TARGET}" >> ${STDERR_TARGET%/*}/${x##*/}-${STDERR_TARGET##*/} |
301 | echo "patch -p${count} ${popts} < ${PATCH_TARGET}" >> ${STDERR_TARGET%/*}/${patchname}-${STDERR_TARGET##*/} |
| 355 | |
302 | |
| 356 | echo >> ${STDERR_TARGET%/*}/${x##*/}-${STDERR_TARGET##*/} |
303 | echo >> ${STDERR_TARGET%/*}/${patchname}-${STDERR_TARGET##*/} |
| 357 | draw_line "***** ${x##*/} *****" >> ${STDERR_TARGET%/*}/${x##*/}-${STDERR_TARGET##*/} |
304 | draw_line "***** ${patchname} *****" >> ${STDERR_TARGET%/*}/${patchname}-${STDERR_TARGET##*/} |
| 358 | |
305 | |
| 359 | if [ "${PATCH_SUFFIX}" != "patch" ] |
306 | if [ "${PATCH_SUFFIX}" != "patch" ] |
| 360 | then |
307 | then |
| 361 | if ! (${PIPE_CMD} ${x} > ${PATCH_TARGET}) >> ${STDERR_TARGET%/*}/${x##*/}-${STDERR_TARGET##*/} 2>&1 |
308 | if ! (${PIPE_CMD} ${x} > ${PATCH_TARGET}) >> ${STDERR_TARGET%/*}/${patchname}-${STDERR_TARGET##*/} 2>&1 |
| 362 | then |
309 | then |
| 363 | echo |
310 | echo |
| 364 | eerror "Could not extract patch!" |
311 | eerror "Could not extract patch!" |
| 365 | #die "Could not extract patch!" |
312 | #die "Could not extract patch!" |
| 366 | count=5 |
313 | count=5 |
| 367 | break |
314 | break |
| 368 | fi |
315 | fi |
| 369 | fi |
316 | fi |
| 370 | |
317 | |
| 371 | if (cat ${PATCH_TARGET} | patch -p${count} ${popts} --dry-run -f) >> ${STDERR_TARGET%/*}/${x##*/}-${STDERR_TARGET##*/} 2>&1 |
318 | if (cat ${PATCH_TARGET} | patch -p${count} ${popts} --dry-run -f) >> ${STDERR_TARGET%/*}/${patchname}-${STDERR_TARGET##*/} 2>&1 |
| 372 | then |
319 | then |
| 373 | draw_line "***** ${x##*/} *****" > ${STDERR_TARGET%/*}/${x##*/}-${STDERR_TARGET##*/}.real |
320 | draw_line "***** ${patchname} *****" > ${STDERR_TARGET%/*}/${patchname}-${STDERR_TARGET##*/}.real |
| 374 | echo >> ${STDERR_TARGET%/*}/${x##*/}-${STDERR_TARGET##*/}.real |
321 | echo >> ${STDERR_TARGET%/*}/${patchname}-${STDERR_TARGET##*/}.real |
| 375 | echo "ACTUALLY APPLYING ${x##*/} ..." >> ${STDERR_TARGET%/*}/${x##*/}-${STDERR_TARGET##*/}.real |
322 | echo "ACTUALLY APPLYING ${patchname} ..." >> ${STDERR_TARGET%/*}/${patchname}-${STDERR_TARGET##*/}.real |
| 376 | echo >> ${STDERR_TARGET%/*}/${x##*/}-${STDERR_TARGET##*/}.real |
323 | echo >> ${STDERR_TARGET%/*}/${patchname}-${STDERR_TARGET##*/}.real |
| 377 | draw_line "***** ${x##*/} *****" >> ${STDERR_TARGET%/*}/${x##*/}-${STDERR_TARGET##*/}.real |
324 | draw_line "***** ${patchname} *****" >> ${STDERR_TARGET%/*}/${patchname}-${STDERR_TARGET##*/}.real |
| 378 | |
325 | |
| 379 | cat ${PATCH_TARGET} | patch -p${count} ${popts} >> ${STDERR_TARGET%/*}/${x##*/}-${STDERR_TARGET##*/}.real 2>&1 |
326 | cat ${PATCH_TARGET} | patch -p${count} ${popts} >> ${STDERR_TARGET%/*}/${patchname}-${STDERR_TARGET##*/}.real 2>&1 |
| 380 | |
327 | |
| 381 | if [ "$?" -ne 0 ] |
328 | if [ "$?" -ne 0 ] |
| 382 | then |
329 | then |
| 383 | cat ${STDERR_TARGET%/*}/${x##*/}-${STDERR_TARGET##*/}.real >> ${STDERR_TARGET%/*}/${x##*/}-${STDERR_TARGET##*/} |
330 | cat ${STDERR_TARGET%/*}/${patchname}-${STDERR_TARGET##*/}.real >> ${STDERR_TARGET%/*}/${patchname}-${STDERR_TARGET##*/} |
| 384 | echo |
331 | echo |
| 385 | eerror "A dry-run of patch command succeeded, but actually" |
332 | eerror "A dry-run of patch command succeeded, but actually" |
| 386 | eerror "applying the patch failed!" |
333 | eerror "applying the patch failed!" |
| 387 | #die "Real world sux compared to the dreamworld!" |
334 | #die "Real world sux compared to the dreamworld!" |
| 388 | count=5 |
335 | count=5 |
| 389 | fi |
336 | fi |
| 390 | |
337 | |
| 391 | rm -f ${STDERR_TARGET%/*}/${x##*/}-${STDERR_TARGET##*/}.real |
338 | rm -f ${STDERR_TARGET%/*}/${patchname}-${STDERR_TARGET##*/}.real |
| 392 | |
339 | |
| 393 | break |
340 | break |
| 394 | fi |
341 | fi |
| 395 | |
342 | |
| 396 | count=$((count + 1)) |
343 | count=$((count + 1)) |
| … | |
… | |
| 402 | fi |
349 | fi |
| 403 | |
350 | |
| 404 | if [ "${count}" -eq 5 ] |
351 | if [ "${count}" -eq 5 ] |
| 405 | then |
352 | then |
| 406 | echo |
353 | echo |
| 407 | eerror "Failed Patch: ${x##*/}!" |
354 | eerror "Failed Patch: ${patchname} !" |
|
|
355 | eerror " ( ${PATCH_TARGET} )" |
| 408 | eerror |
356 | eerror |
| 409 | eerror "Include in your bugreport the contents of:" |
357 | eerror "Include in your bugreport the contents of:" |
| 410 | eerror |
358 | eerror |
| 411 | eerror " ${STDERR_TARGET%/*}/${x##*/}-${STDERR_TARGET##*/}" |
359 | eerror " ${STDERR_TARGET%/*}/${patchname}-${STDERR_TARGET##*/}" |
| 412 | echo |
360 | echo |
| 413 | die "Failed Patch: ${x##*/}!" |
361 | die "Failed Patch: ${patchname}!" |
| 414 | fi |
362 | fi |
| 415 | |
363 | |
| 416 | rm -f ${STDERR_TARGET%/*}/${x##*/}-${STDERR_TARGET##*/} |
364 | rm -f ${STDERR_TARGET%/*}/${patchname}-${STDERR_TARGET##*/} |
| 417 | |
365 | |
| 418 | eend 0 |
366 | eend 0 |
| 419 | fi |
367 | fi |
| 420 | done |
368 | done |
| 421 | if [ "${SINGLE_PATCH}" = "no" ] |
369 | if [ "${SINGLE_PATCH}" = "no" ] |
| 422 | then |
370 | then |
| 423 | einfo "Done with patching" |
371 | einfo "Done with patching" |
| 424 | fi |
372 | fi |
| 425 | } |
373 | } |
| 426 | |
374 | |
| 427 | # This function return true if we are using the NPTL pthreads |
|
|
| 428 | # implementation. |
|
|
| 429 | # |
|
|
| 430 | # <azarah@gentoo.org> (06 March 2003) |
|
|
| 431 | # |
|
|
| 432 | have_NPTL() { |
|
|
| 433 | cat > ${T}/test-nptl.c <<-"END" |
|
|
| 434 | #define _XOPEN_SOURCE |
|
|
| 435 | #include <unistd.h> |
|
|
| 436 | #include <stdio.h> |
|
|
| 437 | |
|
|
| 438 | int main() |
|
|
| 439 | { |
|
|
| 440 | char buf[255]; |
|
|
| 441 | char *str = buf; |
|
|
| 442 | |
|
|
| 443 | confstr(_CS_GNU_LIBPTHREAD_VERSION, str, 255); |
|
|
| 444 | if (NULL != str) { |
|
|
| 445 | printf("%s\n", str); |
|
|
| 446 | if (NULL != strstr(str, "NPTL")) |
|
|
| 447 | return 0; |
|
|
| 448 | } |
|
|
| 449 | |
|
|
| 450 | return 1; |
|
|
| 451 | } |
|
|
| 452 | END |
|
|
| 453 | |
|
|
| 454 | einfon "Checking for _CS_GNU_LIBPTHREAD_VERSION support in glibc ..." |
|
|
| 455 | if gcc -o ${T}/nptl ${T}/test-nptl.c &> /dev/null |
|
|
| 456 | then |
|
|
| 457 | echo "yes" |
|
|
| 458 | einfon "Checking what PTHREADS implementation we have ..." |
|
|
| 459 | if ${T}/nptl |
|
|
| 460 | then |
|
|
| 461 | return 0 |
|
|
| 462 | else |
|
|
| 463 | return 1 |
|
|
| 464 | fi |
|
|
| 465 | else |
|
|
| 466 | echo "no" |
|
|
| 467 | fi |
|
|
| 468 | |
|
|
| 469 | return 1 |
|
|
| 470 | } |
|
|
| 471 | |
|
|
| 472 | # This function check how many cpu's are present, and then set |
|
|
| 473 | # -j in MAKEOPTS accordingly. |
|
|
| 474 | # |
|
|
| 475 | # Thanks to nall <nall@gentoo.org> for this. |
|
|
| 476 | # |
|
|
| 477 | get_number_of_jobs() { |
|
|
| 478 | local jobs=0 |
|
|
| 479 | |
|
|
| 480 | if [ ! -r /proc/cpuinfo ] |
|
|
| 481 | then |
|
|
| 482 | return 1 |
|
|
| 483 | fi |
|
|
| 484 | |
|
|
| 485 | # This bit is from H?kan Wessberg <nacka-gentoo@refug.org>, bug #13565. |
|
|
| 486 | if [ "`egrep "^[[:space:]]*MAKEOPTS=" /etc/make.conf | wc -l`" -gt 0 ] |
|
|
| 487 | then |
|
|
| 488 | ADMINOPTS="`egrep "^[[:space:]]*MAKEOPTS=" /etc/make.conf | cut -d= -f2 | sed 's/\"//g'`" |
|
|
| 489 | ADMINPARAM="`echo ${ADMINOPTS} | gawk '{match($0, /-j *[0-9]*/, opt); print opt[0]}'`" |
|
|
| 490 | ADMINPARAM="${ADMINPARAM/-j}" |
|
|
| 491 | fi |
|
|
| 492 | |
|
|
| 493 | export MAKEOPTS="`echo ${MAKEOPTS} | sed -e 's:-j *[0-9]*::g'`" |
|
|
| 494 | |
|
|
| 495 | if [ "${ARCH}" = "amd64" -o "${ARCH}" = "x86" -o "${ARCH}" = "hppa" -o \ |
|
|
| 496 | "${ARCH}" = "arm" -o "${ARCH}" = "mips" -o "${ARCH}" = "ia64" ] |
|
|
| 497 | then |
|
|
| 498 | # these archs will always have "[Pp]rocessor" |
|
|
| 499 | jobs="$((`grep -c ^[Pp]rocessor /proc/cpuinfo` * 2))" |
|
|
| 500 | |
|
|
| 501 | elif [ "${ARCH}" = "sparc" -o "${ARCH}" = "sparc64" ] |
|
|
| 502 | then |
|
|
| 503 | # sparc always has "ncpus active" |
|
|
| 504 | jobs="$((`grep "^ncpus active" /proc/cpuinfo | sed -e "s/^.*: //"` * 2))" |
|
|
| 505 | |
|
|
| 506 | elif [ "${ARCH}" = "alpha" ] |
|
|
| 507 | then |
|
|
| 508 | # alpha has "cpus active", but only when compiled with SMP |
|
|
| 509 | if [ "`grep -c "^cpus active" /proc/cpuinfo`" -eq 1 ] |
|
|
| 510 | then |
|
|
| 511 | jobs="$((`grep "^cpus active" /proc/cpuinfo | sed -e "s/^.*: //"` * 2))" |
|
|
| 512 | else |
|
|
| 513 | jobs=2 |
|
|
| 514 | fi |
|
|
| 515 | |
|
|
| 516 | elif [ "${ARCH}" = "ppc" -o "${ARCH}" = "ppc64" ] |
|
|
| 517 | then |
|
|
| 518 | # ppc has "processor", but only when compiled with SMP |
|
|
| 519 | if [ "`grep -c "^processor" /proc/cpuinfo`" -eq 1 ] |
|
|
| 520 | then |
|
|
| 521 | jobs="$((`grep -c ^processor /proc/cpuinfo` * 2))" |
|
|
| 522 | else |
|
|
| 523 | jobs=2 |
|
|
| 524 | fi |
|
|
| 525 | elif [ "${ARCH}" = "s390" ] |
|
|
| 526 | then |
|
|
| 527 | # s390 has "# processors : " |
|
|
| 528 | jobs="$((`grep "^\# processors" /proc/cpuinfo | sed -e "s/^.*: //"` * 2))" |
|
|
| 529 | else |
|
|
| 530 | jobs="$((`grep -c ^cpu /proc/cpuinfo` * 2))" |
|
|
| 531 | die "Unknown ARCH -- ${ARCH}!" |
|
|
| 532 | fi |
|
|
| 533 | |
|
|
| 534 | # Make sure the number is valid ... |
|
|
| 535 | if [ "${jobs}" -lt 1 ] |
|
|
| 536 | then |
|
|
| 537 | jobs=1 |
|
|
| 538 | fi |
|
|
| 539 | |
|
|
| 540 | if [ -n "${ADMINPARAM}" ] |
|
|
| 541 | then |
|
|
| 542 | if [ "${jobs}" -gt "${ADMINPARAM}" ] |
|
|
| 543 | then |
|
|
| 544 | einfo "Setting make jobs to \"-j${ADMINPARAM}\" to ensure successful merge ..." |
|
|
| 545 | export MAKEOPTS="${MAKEOPTS} -j${ADMINPARAM}" |
|
|
| 546 | else |
|
|
| 547 | einfo "Setting make jobs to \"-j${jobs}\" to ensure successful merge ..." |
|
|
| 548 | export MAKEOPTS="${MAKEOPTS} -j${jobs}" |
|
|
| 549 | fi |
|
|
| 550 | fi |
|
|
| 551 | } |
|
|
| 552 | |
|
|
| 553 | # Cheap replacement for when debianutils (and thus mktemp) |
375 | # Cheap replacement for when debianutils (and thus mktemp) |
| 554 | # does not exist on the users system |
376 | # does not exist on the users system |
| 555 | # vapier@gentoo.org |
377 | # vapier@gentoo.org |
| 556 | # |
378 | # |
| 557 | # Takes just 1 optional parameter (the directory to create tmpfile in) |
379 | # Takes just 1 optional parameter (the directory to create tmpfile in) |
| 558 | emktemp() { |
380 | emktemp() { |
| 559 | local exe="touch" |
381 | local exe="touch" |
| 560 | [ "$1" == "-d" ] && exe="mkdir" && shift |
382 | [[ $1 == -d ]] && exe="mkdir" && shift |
| 561 | local topdir="$1" |
383 | local topdir=$1 |
| 562 | |
384 | |
| 563 | if [ -z "${topdir}" ] |
385 | if [[ -z ${topdir} ]] ; then |
| 564 | then |
|
|
| 565 | [ -z "${T}" ] \ |
386 | [[ -z ${T} ]] \ |
| 566 | && topdir="/tmp" \ |
387 | && topdir="/tmp" \ |
| 567 | || topdir="${T}" |
388 | || topdir=${T} |
| 568 | fi |
389 | fi |
| 569 | |
390 | |
| 570 | if [ -z "$(type -p mktemp)" ] |
391 | if [[ -z $(type -p mktemp) ]] ; then |
| 571 | then |
|
|
| 572 | local tmp=/ |
392 | local tmp=/ |
| 573 | while [ -e "${tmp}" ] ; do |
393 | while [[ -e ${tmp} ]] ; do |
| 574 | tmp="${topdir}/tmp.${RANDOM}.${RANDOM}.${RANDOM}" |
394 | tmp=${topdir}/tmp.${RANDOM}.${RANDOM}.${RANDOM} |
| 575 | done |
395 | done |
| 576 | ${exe} "${tmp}" |
396 | ${exe} "${tmp}" || ${exe} -p "${tmp}" |
| 577 | echo "${tmp}" |
397 | echo "${tmp}" |
| 578 | else |
398 | else |
| 579 | [ "${exe}" == "touch" ] \ |
399 | [[ ${exe} == "touch" ]] \ |
| 580 | && exe="-p" \ |
400 | && exe="-p" \ |
| 581 | || exe="-d" |
401 | || exe="-d" |
| 582 | mktemp ${exe} "${topdir}" |
402 | mktemp ${exe} "${topdir}" |
| 583 | fi |
403 | fi |
| 584 | } |
404 | } |
| … | |
… | |
| 588 | # Joe Jezak <josejx@gmail.com> and usata@gentoo.org |
408 | # Joe Jezak <josejx@gmail.com> and usata@gentoo.org |
| 589 | # FBSD stuff: Aaron Walker <ka0ttic@gentoo.org> |
409 | # FBSD stuff: Aaron Walker <ka0ttic@gentoo.org> |
| 590 | # |
410 | # |
| 591 | # egetent(database, key) |
411 | # egetent(database, key) |
| 592 | egetent() { |
412 | egetent() { |
| 593 | if useq ppc-macos ; then |
413 | if [[ "${USERLAND}" == "Darwin" ]] ; then |
| 594 | case "$2" in |
414 | case "$2" in |
| 595 | *[!0-9]*) # Non numeric |
415 | *[!0-9]*) # Non numeric |
| 596 | nidump $1 . | awk -F":" "{ if (\$1 ~ /^$2$/) {print \$0;exit;} }" |
416 | nidump $1 . | awk -F":" "{ if (\$1 ~ /^$2$/) {print \$0;exit;} }" |
| 597 | ;; |
417 | ;; |
| 598 | *) # Numeric |
418 | *) # Numeric |
| 599 | nidump $1 . | awk -F":" "{ if (\$3 == $2) {print \$0;exit;} }" |
419 | nidump $1 . | awk -F":" "{ if (\$3 == $2) {print \$0;exit;} }" |
| 600 | ;; |
420 | ;; |
| 601 | esac |
421 | esac |
| 602 | elif useq x86-fbsd ; then |
422 | elif [[ "${USERLAND}" == "BSD" ]] ; then |
| 603 | local action |
423 | local action |
| 604 | if [ "$1" == "passwd" ] |
424 | if [ "$1" == "passwd" ] |
| 605 | then |
425 | then |
| 606 | action="user" |
426 | action="user" |
| 607 | else |
427 | else |
| … | |
… | |
| 627 | # homedir: /dev/null |
447 | # homedir: /dev/null |
| 628 | # groups: none |
448 | # groups: none |
| 629 | # extra: comment of 'added by portage for ${PN}' |
449 | # extra: comment of 'added by portage for ${PN}' |
| 630 | enewuser() { |
450 | enewuser() { |
| 631 | # get the username |
451 | # get the username |
| 632 | local euser="$1"; shift |
452 | local euser=$1; shift |
| 633 | if [ -z "${euser}" ] |
453 | if [[ -z ${euser} ]] ; then |
| 634 | then |
|
|
| 635 | eerror "No username specified !" |
454 | eerror "No username specified !" |
| 636 | die "Cannot call enewuser without a username" |
455 | die "Cannot call enewuser without a username" |
| 637 | fi |
456 | fi |
| 638 | |
457 | |
| 639 | # lets see if the username already exists |
458 | # lets see if the username already exists |
| 640 | if [ "${euser}" == "`egetent passwd \"${euser}\" | cut -d: -f1`" ] |
459 | if [[ ${euser} == $(egetent passwd "${euser}" | cut -d: -f1) ]] ; then |
| 641 | then |
|
|
| 642 | return 0 |
460 | return 0 |
| 643 | fi |
461 | fi |
| 644 | einfo "Adding user '${euser}' to your system ..." |
462 | einfo "Adding user '${euser}' to your system ..." |
| 645 | |
463 | |
| 646 | # options to pass to useradd |
464 | # options to pass to useradd |
| 647 | local opts= |
465 | local opts= |
| 648 | |
466 | |
| 649 | # handle uid |
467 | # handle uid |
| 650 | local euid="$1"; shift |
468 | local euid=$1; shift |
| 651 | if [ ! -z "${euid}" ] && [ "${euid}" != "-1" ] |
469 | if [[ ! -z ${euid} ]] && [[ ${euid} != "-1" ]] ; then |
| 652 | then |
|
|
| 653 | if [ "${euid}" -gt 0 ] |
470 | if [[ ${euid} -gt 0 ]] ; then |
| 654 | then |
|
|
| 655 | if [ ! -z "`egetent passwd ${euid}`" ] |
471 | if [[ ! -z $(egetent passwd ${euid}) ]] ; then |
| 656 | then |
|
|
| 657 | euid="next" |
472 | euid="next" |
| 658 | fi |
473 | fi |
| 659 | else |
474 | else |
| 660 | eerror "Userid given but is not greater than 0 !" |
475 | eerror "Userid given but is not greater than 0 !" |
| 661 | die "${euid} is not a valid UID" |
476 | die "${euid} is not a valid UID" |
| 662 | fi |
477 | fi |
| 663 | else |
478 | else |
| 664 | euid="next" |
479 | euid="next" |
| 665 | fi |
480 | fi |
| 666 | if [ "${euid}" == "next" ] |
481 | if [[ ${euid} == "next" ]] ; then |
| 667 | then |
|
|
| 668 | local pwrange |
482 | local pwrange |
| 669 | if [ "${USERLAND}" == "BSD" ] ; then |
483 | if [[ ${USERLAND} == "BSD" ]] ; then |
| 670 | pwrange="`jot 898 101`" |
484 | pwrange=$(jot 898 101) |
| 671 | else |
485 | else |
| 672 | pwrange="`seq 101 999`" |
486 | pwrange=$(seq 101 999) |
| 673 | fi |
487 | fi |
| 674 | for euid in ${pwrange} ; do |
488 | for euid in ${pwrange} ; do |
| 675 | [ -z "`egetent passwd ${euid}`" ] && break |
489 | [[ -z $(egetent passwd ${euid}) ]] && break |
| 676 | done |
490 | done |
| 677 | fi |
491 | fi |
| 678 | opts="${opts} -u ${euid}" |
492 | opts="${opts} -u ${euid}" |
| 679 | einfo " - Userid: ${euid}" |
493 | einfo " - Userid: ${euid}" |
| 680 | |
494 | |
| 681 | # handle shell |
495 | # handle shell |
| 682 | local eshell="$1"; shift |
496 | local eshell=$1; shift |
| 683 | if [ ! -z "${eshell}" ] && [ "${eshell}" != "-1" ] |
497 | if [[ ! -z ${eshell} ]] && [[ ${eshell} != "-1" ]] ; then |
| 684 | then |
|
|
| 685 | if [ ! -e "${eshell}" ] |
498 | if [[ ! -e ${eshell} ]] ; then |
| 686 | then |
|
|
| 687 | eerror "A shell was specified but it does not exist !" |
499 | eerror "A shell was specified but it does not exist !" |
| 688 | die "${eshell} does not exist" |
500 | die "${eshell} does not exist" |
| 689 | fi |
501 | fi |
| 690 | else |
502 | else |
| 691 | if [ "${USERLAND}" == "BSD" ] |
503 | case ${USERLAND} in |
| 692 | then |
|
|
| 693 | eshell="/usr/bin/false" |
504 | Darwin) eshell="/usr/bin/false";; |
| 694 | else |
505 | BSD) eshell="/usr/sbin/nologin";; |
| 695 | eshell="/bin/false" |
506 | *) eshell="/bin/false";; |
| 696 | fi |
507 | esac |
| 697 | fi |
508 | fi |
| 698 | einfo " - Shell: ${eshell}" |
509 | einfo " - Shell: ${eshell}" |
| 699 | opts="${opts} -s ${eshell}" |
510 | opts="${opts} -s ${eshell}" |
| 700 | |
511 | |
| 701 | # handle homedir |
512 | # handle homedir |
| 702 | local ehome="$1"; shift |
513 | local ehome=$1; shift |
| 703 | if [ -z "${ehome}" ] && [ "${eshell}" != "-1" ] |
514 | if [[ -z ${ehome} ]] || [[ ${ehome} == "-1" ]] ; then |
| 704 | then |
|
|
| 705 | ehome="/dev/null" |
515 | ehome="/dev/null" |
| 706 | fi |
516 | fi |
| 707 | einfo " - Home: ${ehome}" |
517 | einfo " - Home: ${ehome}" |
| 708 | opts="${opts} -d ${ehome}" |
518 | opts="${opts} -d ${ehome}" |
| 709 | |
519 | |
| 710 | # handle groups |
520 | # handle groups |
| 711 | local egroups="$1"; shift |
521 | local egroups=$1; shift |
| 712 | if [ ! -z "${egroups}" ] |
522 | if [[ ! -z ${egroups} ]] ; then |
| 713 | then |
|
|
| 714 | local oldifs="${IFS}" |
523 | local oldifs=${IFS} |
| 715 | local defgroup="" exgroups="" |
524 | local defgroup="" exgroups="" |
| 716 | |
525 | |
| 717 | export IFS="," |
526 | export IFS="," |
| 718 | for g in ${egroups} |
527 | for g in ${egroups} ; do |
| 719 | do |
|
|
| 720 | export IFS="${oldifs}" |
528 | export IFS=${oldifs} |
| 721 | if [ -z "`egetent group \"${g}\"`" ] |
529 | if [[ -z $(egetent group "${g}") ]] ; then |
| 722 | then |
|
|
| 723 | eerror "You must add group ${g} to the system first" |
530 | eerror "You must add group ${g} to the system first" |
| 724 | die "${g} is not a valid GID" |
531 | die "${g} is not a valid GID" |
| 725 | fi |
532 | fi |
| 726 | if [ -z "${defgroup}" ] |
533 | if [[ -z ${defgroup} ]] ; then |
| 727 | then |
|
|
| 728 | defgroup="${g}" |
534 | defgroup=${g} |
| 729 | else |
535 | else |
| 730 | exgroups="${exgroups},${g}" |
536 | exgroups="${exgroups},${g}" |
| 731 | fi |
537 | fi |
| 732 | export IFS="," |
538 | export IFS="," |
| 733 | done |
539 | done |
| 734 | export IFS="${oldifs}" |
540 | export IFS=${oldifs} |
| 735 | |
541 | |
| 736 | opts="${opts} -g ${defgroup}" |
542 | opts="${opts} -g ${defgroup}" |
| 737 | if [ ! -z "${exgroups}" ] |
543 | if [[ ! -z ${exgroups} ]] ; then |
| 738 | then |
|
|
| 739 | opts="${opts} -G ${exgroups:1}" |
544 | opts="${opts} -G ${exgroups:1}" |
| 740 | fi |
545 | fi |
| 741 | else |
546 | else |
| 742 | egroups="(none)" |
547 | egroups="(none)" |
| 743 | fi |
548 | fi |
| 744 | einfo " - Groups: ${egroups}" |
549 | einfo " - Groups: ${egroups}" |
| 745 | |
550 | |
| 746 | # handle extra and add the user |
551 | # handle extra and add the user |
| 747 | local eextra="$@" |
|
|
| 748 | local oldsandbox="${SANDBOX_ON}" |
552 | local oldsandbox=${SANDBOX_ON} |
| 749 | export SANDBOX_ON="0" |
553 | export SANDBOX_ON="0" |
| 750 | if useq ppc-macos |
554 | case ${USERLAND} in |
| 751 | then |
555 | Darwin) |
| 752 | ### Make the user |
556 | ### Make the user |
| 753 | if [ -z "${eextra}" ] |
557 | if [[ -z $@ ]] ; then |
| 754 | then |
|
|
| 755 | dscl . create /users/${euser} uid ${euid} |
558 | dscl . create /users/${euser} uid ${euid} |
| 756 | dscl . create /users/${euser} shell ${eshell} |
559 | dscl . create /users/${euser} shell ${eshell} |
| 757 | dscl . create /users/${euser} home ${ehome} |
560 | dscl . create /users/${euser} home ${ehome} |
| 758 | dscl . create /users/${euser} realname "added by portage for ${PN}" |
561 | dscl . create /users/${euser} realname "added by portage for ${PN}" |
| 759 | ### Add the user to the groups specified |
562 | ### Add the user to the groups specified |
| 760 | local oldifs="${IFS}" |
563 | local oldifs=${IFS} |
| 761 | export IFS="," |
564 | export IFS="," |
| 762 | for g in ${egroups} |
565 | for g in ${egroups} ; do |
| 763 | do |
|
|
| 764 | dscl . merge /groups/${g} users ${euser} |
566 | dscl . merge /groups/${g} users ${euser} |
| 765 | done |
567 | done |
| 766 | export IFS="${oldifs}" |
568 | export IFS=${oldifs} |
| 767 | else |
569 | else |
| 768 | einfo "Extra options are not supported on macos yet" |
570 | einfo "Extra options are not supported on Darwin yet" |
| 769 | einfo "Please report the ebuild along with the info below" |
571 | einfo "Please report the ebuild along with the info below" |
| 770 | einfo "eextra: ${eextra}" |
572 | einfo "eextra: $@" |
| 771 | die "Required function missing" |
573 | die "Required function missing" |
| 772 | fi |
574 | fi |
| 773 | elif use x86-fbsd ; then |
575 | ;; |
| 774 | if [ -z "${eextra}" ] |
576 | BSD) |
| 775 | then |
577 | if [[ -z $@ ]] ; then |
| 776 | pw useradd ${euser} ${opts} \ |
578 | pw useradd ${euser} ${opts} \ |
| 777 | -c "added by portage for ${PN}" \ |
579 | -c "added by portage for ${PN}" \ |
| 778 | die "enewuser failed" |
580 | die "enewuser failed" |
| 779 | else |
581 | else |
| 780 | einfo " - Extra: ${eextra}" |
582 | einfo " - Extra: $@" |
| 781 | pw useradd ${euser} ${opts} \ |
583 | pw useradd ${euser} ${opts} \ |
| 782 | -c ${eextra} || die "enewuser failed" |
584 | "$@" || die "enewuser failed" |
| 783 | fi |
585 | fi |
| 784 | else |
586 | ;; |
| 785 | if [ -z "${eextra}" ] |
587 | *) |
| 786 | then |
588 | if [[ -z $@ ]] ; then |
| 787 | useradd ${opts} ${euser} \ |
589 | useradd ${opts} ${euser} \ |
| 788 | -c "added by portage for ${PN}" \ |
590 | -c "added by portage for ${PN}" \ |
| 789 | || die "enewuser failed" |
591 | || die "enewuser failed" |
| 790 | else |
592 | else |
| 791 | einfo " - Extra: ${eextra}" |
593 | einfo " - Extra: $@" |
| 792 | useradd ${opts} ${euser} ${eextra} \ |
594 | useradd ${opts} ${euser} "$@" \ |
| 793 | || die "enewuser failed" |
595 | || die "enewuser failed" |
| 794 | fi |
596 | fi |
|
|
597 | ;; |
|
|
598 | esac |
|
|
599 | |
|
|
600 | if [[ ! -e ${ROOT}/${ehome} ]] ; then |
|
|
601 | einfo " - Creating ${ehome} in ${ROOT}" |
|
|
602 | mkdir -p "${ROOT}/${ehome}" |
|
|
603 | chown ${euser} "${ROOT}/${ehome}" |
|
|
604 | chmod 755 "${ROOT}/${ehome}" |
| 795 | fi |
605 | fi |
|
|
606 | |
| 796 | export SANDBOX_ON="${oldsandbox}" |
607 | export SANDBOX_ON=${oldsandbox} |
| 797 | |
|
|
| 798 | if [ ! -e "${ehome}" ] && [ ! -e "${D}/${ehome}" ] |
|
|
| 799 | then |
|
|
| 800 | einfo " - Creating ${ehome} in ${D}" |
|
|
| 801 | dodir ${ehome} |
|
|
| 802 | fowners ${euser} ${ehome} |
|
|
| 803 | fperms 755 ${ehome} |
|
|
| 804 | fi |
|
|
| 805 | } |
608 | } |
| 806 | |
609 | |
| 807 | # Simplify/standardize adding groups to the system |
610 | # Simplify/standardize adding groups to the system |
| 808 | # vapier@gentoo.org |
611 | # vapier@gentoo.org |
| 809 | # |
612 | # |
| … | |
… | |
| 838 | then |
641 | then |
| 839 | if [ "${egid}" -gt 0 ] |
642 | if [ "${egid}" -gt 0 ] |
| 840 | then |
643 | then |
| 841 | if [ -z "`egetent group ${egid}`" ] |
644 | if [ -z "`egetent group ${egid}`" ] |
| 842 | then |
645 | then |
| 843 | if useq ppc-macos ; then |
646 | if [[ "${USERLAND}" == "Darwin" ]]; then |
| 844 | opts="${opts} ${egid}" |
647 | opts="${opts} ${egid}" |
| 845 | else |
648 | else |
| 846 | opts="${opts} -g ${egid}" |
649 | opts="${opts} -g ${egid}" |
| 847 | fi |
650 | fi |
| 848 | else |
651 | else |
| … | |
… | |
| 862 | opts="${opts} ${eextra}" |
665 | opts="${opts} ${eextra}" |
| 863 | |
666 | |
| 864 | # add the group |
667 | # add the group |
| 865 | local oldsandbox="${SANDBOX_ON}" |
668 | local oldsandbox="${SANDBOX_ON}" |
| 866 | export SANDBOX_ON="0" |
669 | export SANDBOX_ON="0" |
| 867 | if useq ppc-macos ; then |
670 | if [[ "${USERLAND}" == "Darwin" ]]; then |
| 868 | if [ ! -z "${eextra}" ]; |
671 | if [ ! -z "${eextra}" ]; |
| 869 | then |
672 | then |
| 870 | einfo "Extra options are not supported on macos yet" |
673 | einfo "Extra options are not supported on Darwin/OS X yet" |
| 871 | einfo "Please report the ebuild along with the info below" |
674 | einfo "Please report the ebuild along with the info below" |
| 872 | einfo "eextra: ${eextra}" |
675 | einfo "eextra: ${eextra}" |
| 873 | die "Required function missing" |
676 | die "Required function missing" |
| 874 | fi |
677 | fi |
| 875 | |
678 | |
| … | |
… | |
| 880 | [ -z "`egetent group ${egid}`" ] && break |
683 | [ -z "`egetent group ${egid}`" ] && break |
| 881 | done |
684 | done |
| 882 | esac |
685 | esac |
| 883 | dscl . create /groups/${egroup} gid ${egid} |
686 | dscl . create /groups/${egroup} gid ${egid} |
| 884 | dscl . create /groups/${egroup} passwd '*' |
687 | dscl . create /groups/${egroup} passwd '*' |
| 885 | elif use x86-fbsd ; then |
688 | elif [[ "${USERLAND}" == "BSD" ]] ; then |
| 886 | case ${egid} in |
689 | case ${egid} in |
| 887 | *[!0-9]*) # Non numeric |
690 | *[!0-9]*) # Non numeric |
| 888 | for egid in `jot 898 101`; do |
691 | for egid in `jot 898 101`; do |
| 889 | [ -z "`egetent group ${egid}`" ] && break |
692 | [ -z "`egetent group ${egid}`" ] && break |
| 890 | done |
693 | done |
| … | |
… | |
| 906 | cp "${f}" ${T}/edos2unix |
709 | cp "${f}" ${T}/edos2unix |
| 907 | sed 's/\r$//' ${T}/edos2unix > "${f}" |
710 | sed 's/\r$//' ${T}/edos2unix > "${f}" |
| 908 | done |
711 | done |
| 909 | } |
712 | } |
| 910 | |
713 | |
|
|
714 | |
|
|
715 | ############################################################## |
|
|
716 | # START: Handle .desktop files and menu entries # |
|
|
717 | # maybe this should be separated into a new eclass some time # |
|
|
718 | # lanius@gentoo.org # |
|
|
719 | ############################################################## |
|
|
720 | |
| 911 | # Make a desktop file ! |
721 | # Make a desktop file ! |
| 912 | # Great for making those icons in kde/gnome startmenu ! |
722 | # Great for making those icons in kde/gnome startmenu ! |
| 913 | # Amaze your friends ! Get the women ! Join today ! |
723 | # Amaze your friends ! Get the women ! Join today ! |
| 914 | # |
724 | # |
| 915 | # make_desktop_entry(<binary>, [name], [icon], [type], [path]) |
725 | # make_desktop_entry(<binary>, [name], [icon], [type], [path]) |
| … | |
… | |
| 918 | # name: the name that will show up in the menu |
728 | # name: the name that will show up in the menu |
| 919 | # icon: give your little like a pretty little icon ... |
729 | # icon: give your little like a pretty little icon ... |
| 920 | # this can be relative (to /usr/share/pixmaps) or |
730 | # this can be relative (to /usr/share/pixmaps) or |
| 921 | # a full path to an icon |
731 | # a full path to an icon |
| 922 | # type: what kind of application is this ? for categories: |
732 | # type: what kind of application is this ? for categories: |
| 923 | # http://www.freedesktop.org/standards/menu-spec/ |
733 | # http://www.freedesktop.org/Standards/desktop-entry-spec |
| 924 | # path: if your app needs to startup in a specific dir |
734 | # path: if your app needs to startup in a specific dir |
| 925 | make_desktop_entry() { |
735 | make_desktop_entry() { |
| 926 | [ -z "$1" ] && eerror "make_desktop_entry: You must specify the executable" && return 1 |
736 | [[ -z $1 ]] && eerror "make_desktop_entry: You must specify the executable" && return 1 |
| 927 | |
737 | |
| 928 | local exec="${1}" |
738 | local exec=${1} |
| 929 | local name="${2:-${PN}}" |
739 | local name=${2:-${PN}} |
| 930 | local icon="${3:-${PN}.png}" |
740 | local icon=${3:-${PN}.png} |
| 931 | local type="${4}" |
741 | local type=${4} |
| 932 | local subdir="${6}" |
742 | local path=${5} |
| 933 | local path="${5:-${GAMES_BINDIR}}" |
743 | |
| 934 | if [ -z "${type}" ] |
744 | if [[ -z ${type} ]] ; then |
| 935 | then |
745 | local catmaj=${CATEGORY%%-*} |
| 936 | case ${CATEGORY} in |
746 | local catmin=${CATEGORY##*-} |
| 937 | "app-emulation") |
747 | case ${catmaj} in |
| 938 | type=Emulator |
748 | app) |
| 939 | subdir="Emulation" |
749 | case ${catmin} in |
|
|
750 | admin) type=System;; |
|
|
751 | cdr) type=DiscBurning;; |
|
|
752 | dicts) type=Dictionary;; |
|
|
753 | editors) type=TextEditor;; |
|
|
754 | emacs) type=TextEditor;; |
|
|
755 | emulation) type=Emulator;; |
|
|
756 | laptop) type=HardwareSettings;; |
|
|
757 | office) type=Office;; |
|
|
758 | vim) type=TextEditor;; |
|
|
759 | xemacs) type=TextEditor;; |
|
|
760 | *) type=;; |
|
|
761 | esac |
| 940 | ;; |
762 | ;; |
| 941 | "games-"*) |
763 | |
| 942 | type=Game |
764 | dev) |
| 943 | subdir="Games" |
765 | type="Development" |
| 944 | ;; |
766 | ;; |
| 945 | "net-"*) |
767 | |
| 946 | type=Network |
768 | games) |
| 947 | subdir="${type}" |
769 | case ${catmin} in |
|
|
770 | action) type=ActionGame;; |
|
|
771 | arcade) type=ArcadeGame;; |
|
|
772 | board) type=BoardGame;; |
|
|
773 | kid) type=KidsGame;; |
|
|
774 | emulation) type=Emulator;; |
|
|
775 | puzzle) type=LogicGame;; |
|
|
776 | rpg) type=RolePlaying;; |
|
|
777 | roguelike) type=RolePlaying;; |
|
|
778 | simulation) type=Simulation;; |
|
|
779 | sports) type=SportsGame;; |
|
|
780 | strategy) type=StrategyGame;; |
|
|
781 | *) type=;; |
|
|
782 | esac |
|
|
783 | type="Game;${type}" |
| 948 | ;; |
784 | ;; |
|
|
785 | |
|
|
786 | mail) |
|
|
787 | type="Network;Email" |
|
|
788 | ;; |
|
|
789 | |
|
|
790 | media) |
|
|
791 | case ${catmin} in |
|
|
792 | gfx) type=Graphics;; |
|
|
793 | radio) type=Tuner;; |
|
|
794 | sound) type=Audio;; |
|
|
795 | tv) type=TV;; |
|
|
796 | video) type=Video;; |
|
|
797 | *) type=;; |
|
|
798 | esac |
|
|
799 | type="AudioVideo;${type}" |
|
|
800 | ;; |
|
|
801 | |
|
|
802 | net) |
|
|
803 | case ${catmin} in |
|
|
804 | dialup) type=Dialup;; |
|
|
805 | ftp) type=FileTransfer;; |
|
|
806 | im) type=InstantMessaging;; |
|
|
807 | irc) type=IRCClient;; |
|
|
808 | mail) type=Email;; |
|
|
809 | news) type=News;; |
|
|
810 | nntp) type=News;; |
|
|
811 | p2p) type=FileTransfer;; |
|
|
812 | *) type=;; |
|
|
813 | esac |
|
|
814 | type="Network;${type}" |
|
|
815 | ;; |
|
|
816 | |
|
|
817 | sci) |
|
|
818 | case ${catmin} in |
|
|
819 | astro*) type=Astronomoy;; |
|
|
820 | bio*) type=Biology;; |
|
|
821 | calc*) type=Calculator;; |
|
|
822 | chem*) type=Chemistry;; |
|
|
823 | geo*) type=Geology;; |
|
|
824 | math*) type=Math;; |
|
|
825 | *) type=;; |
|
|
826 | esac |
|
|
827 | type="Science;${type}" |
|
|
828 | ;; |
|
|
829 | |
|
|
830 | www) |
|
|
831 | case ${catmin} in |
|
|
832 | client) type=WebBrowser;; |
|
|
833 | *) type=;; |
|
|
834 | esac |
|
|
835 | type="Network" |
|
|
836 | ;; |
|
|
837 | |
| 949 | *) |
838 | *) |
| 950 | type= |
839 | type= |
| 951 | subdir= |
|
|
| 952 | ;; |
840 | ;; |
| 953 | esac |
841 | esac |
| 954 | fi |
842 | fi |
|
|
843 | if [ "${SLOT}" == "0" ] ; then |
|
|
844 | local desktop_name="${PN}" |
|
|
845 | else |
|
|
846 | local desktop_name="${PN}-${SLOT}" |
|
|
847 | fi |
| 955 | local desktop="${T}/${exec}.desktop" |
848 | local desktop=${T}/${exec%% *}-${desktop_name}.desktop |
| 956 | |
849 | |
| 957 | echo "[Desktop Entry] |
850 | echo "[Desktop Entry] |
| 958 | Encoding=UTF-8 |
851 | Encoding=UTF-8 |
| 959 | Version=0.9.2 |
852 | Version=0.9.2 |
| 960 | Name=${name} |
853 | Name=${name} |
| … | |
… | |
| 969 | doins "${desktop}" |
862 | doins "${desktop}" |
| 970 | |
863 | |
| 971 | return 0 |
864 | return 0 |
| 972 | } |
865 | } |
| 973 | |
866 | |
|
|
867 | # Make a GDM/KDM Session file |
|
|
868 | # |
|
|
869 | # make_desktop_entry(<title>, <command>) |
|
|
870 | # title: File to execute to start the Window Manager |
|
|
871 | # command: Name of the Window Manager |
|
|
872 | |
|
|
873 | make_session_desktop() { |
|
|
874 | [[ -z $1 ]] && eerror "make_session_desktop: You must specify the title" && return 1 |
|
|
875 | [[ -z $2 ]] && eerror "make_session_desktop: You must specify the command" && return 1 |
|
|
876 | |
|
|
877 | local title=$1 |
|
|
878 | local command=$2 |
|
|
879 | local desktop=${T}/${wm}.desktop |
|
|
880 | |
|
|
881 | echo "[Desktop Entry] |
|
|
882 | Encoding=UTF-8 |
|
|
883 | Name=${title} |
|
|
884 | Comment=This session logs you into ${title} |
|
|
885 | Exec=${command} |
|
|
886 | TryExec=${command} |
|
|
887 | Type=Application" > "${desktop}" |
|
|
888 | |
|
|
889 | insinto /usr/share/xsessions |
|
|
890 | doins "${desktop}" |
|
|
891 | } |
|
|
892 | |
|
|
893 | domenu() { |
|
|
894 | local i j |
|
|
895 | insinto /usr/share/applications |
|
|
896 | for i in "$@" ; do |
|
|
897 | if [[ -f ${i} ]] ; then |
|
|
898 | doins "${i}" |
|
|
899 | elif [[ -d ${i} ]] ; then |
|
|
900 | for j in "${i}"/*.desktop ; do |
|
|
901 | doins "${j}" |
|
|
902 | done |
|
|
903 | fi |
|
|
904 | done |
|
|
905 | } |
|
|
906 | newmenu() { |
|
|
907 | insinto /usr/share/applications |
|
|
908 | newins "$1" "$2" |
|
|
909 | } |
|
|
910 | |
|
|
911 | doicon() { |
|
|
912 | local i j |
|
|
913 | insinto /usr/share/pixmaps |
|
|
914 | for i in "$@" ; do |
|
|
915 | if [[ -f ${i} ]] ; then |
|
|
916 | doins "${i}" |
|
|
917 | elif [[ -d ${i} ]] ; then |
|
|
918 | for j in "${i}"/*.png ; do |
|
|
919 | doins "${j}" |
|
|
920 | done |
|
|
921 | fi |
|
|
922 | done |
|
|
923 | } |
|
|
924 | newicon() { |
|
|
925 | insinto /usr/share/pixmaps |
|
|
926 | newins "$1" "$2" |
|
|
927 | } |
|
|
928 | |
|
|
929 | ############################################################## |
|
|
930 | # END: Handle .desktop files and menu entries # |
|
|
931 | ############################################################## |
|
|
932 | |
|
|
933 | |
| 974 | # for internal use only (unpack_pdv and unpack_makeself) |
934 | # for internal use only (unpack_pdv and unpack_makeself) |
| 975 | find_unpackable_file() { |
935 | find_unpackable_file() { |
| 976 | local src="$1" |
936 | local src=$1 |
| 977 | if [ -z "${src}" ] |
937 | if [[ -z ${src} ]] ; then |
| 978 | then |
|
|
| 979 | src="${DISTDIR}/${A}" |
938 | src=${DISTDIR}/${A} |
| 980 | else |
939 | else |
| 981 | if [ -e "${DISTDIR}/${src}" ] |
940 | if [[ -e ${DISTDIR}/${src} ]] ; then |
| 982 | then |
|
|
| 983 | src="${DISTDIR}/${src}" |
941 | src=${DISTDIR}/${src} |
| 984 | elif [ -e "${PWD}/${src}" ] |
942 | elif [[ -e ${PWD}/${src} ]] ; then |
| 985 | then |
|
|
| 986 | src="${PWD}/${src}" |
943 | src=${PWD}/${src} |
| 987 | elif [ -e "${src}" ] |
944 | elif [[ -e ${src} ]] ; then |
| 988 | then |
|
|
| 989 | src="${src}" |
945 | src=${src} |
| 990 | fi |
|
|
| 991 | fi |
946 | fi |
| 992 | [ ! -e "${src}" ] && die "Could not find requested archive ${src}" |
947 | fi |
|
|
948 | [[ ! -e ${src} ]] && return 1 |
| 993 | echo "${src}" |
949 | echo "${src}" |
| 994 | } |
950 | } |
| 995 | |
951 | |
| 996 | # Unpack those pesky pdv generated files ... |
952 | # Unpack those pesky pdv generated files ... |
| 997 | # They're self-unpacking programs with the binary package stuffed in |
953 | # They're self-unpacking programs with the binary package stuffed in |
| … | |
… | |
| 1012 | # lseek |
968 | # lseek |
| 1013 | # root@vapier 0 pdv_unpack # strace -elseek ./hldsupdatetool.bin |
969 | # root@vapier 0 pdv_unpack # strace -elseek ./hldsupdatetool.bin |
| 1014 | # lseek(3, -4, SEEK_END) = 2981250 |
970 | # lseek(3, -4, SEEK_END) = 2981250 |
| 1015 | # thus we would pass in the value of '4' as the second parameter. |
971 | # thus we would pass in the value of '4' as the second parameter. |
| 1016 | unpack_pdv() { |
972 | unpack_pdv() { |
| 1017 | local src="`find_unpackable_file $1`" |
973 | local src=$(find_unpackable_file $1) |
| 1018 | local sizeoff_t="$2" |
974 | local sizeoff_t=$2 |
| 1019 | |
975 | |
|
|
976 | [[ -z ${src} ]] && die "Could not locate source for '$1'" |
| 1020 | [ -z "${sizeoff_t}" ] && die "No idea what off_t size was used for this pdv :(" |
977 | [[ -z ${sizeoff_t} ]] && die "No idea what off_t size was used for this pdv :(" |
| 1021 | |
978 | |
| 1022 | local shrtsrc="`basename ${src}`" |
979 | local shrtsrc="`basename ${src}`" |
| 1023 | echo ">>> Unpacking ${shrtsrc} to ${PWD}" |
980 | echo ">>> Unpacking ${shrtsrc} to ${PWD}" |
| 1024 | local metaskip=`tail -c ${sizeoff_t} ${src} | hexdump -e \"%i\"` |
981 | local metaskip=`tail -c ${sizeoff_t} ${src} | hexdump -e \"%i\"` |
| 1025 | local tailskip=`tail -c $((${sizeoff_t}*2)) ${src} | head -c ${sizeoff_t} | hexdump -e \"%i\"` |
982 | local tailskip=`tail -c $((${sizeoff_t}*2)) ${src} | head -c ${sizeoff_t} | hexdump -e \"%i\"` |
| … | |
… | |
| 1091 | # Usage: unpack_makeself [file to unpack] [offset] [tail|dd] |
1048 | # Usage: unpack_makeself [file to unpack] [offset] [tail|dd] |
| 1092 | # - If the file is not specified then unpack will utilize ${A}. |
1049 | # - If the file is not specified then unpack will utilize ${A}. |
| 1093 | # - If the offset is not specified then we will attempt to extract |
1050 | # - If the offset is not specified then we will attempt to extract |
| 1094 | # the proper offset from the script itself. |
1051 | # the proper offset from the script itself. |
| 1095 | unpack_makeself() { |
1052 | unpack_makeself() { |
| 1096 | local src="$(find_unpackable_file "$1")" |
1053 | local src=$(find_unpackable_file "$1") |
| 1097 | local skip="$2" |
1054 | local skip=$2 |
| 1098 | local exe="$3" |
1055 | local exe=$3 |
| 1099 | |
1056 | |
|
|
1057 | [[ -z ${src} ]] && die "Could not locate source for '$1'" |
|
|
1058 | |
| 1100 | local shrtsrc="$(basename "${src}")" |
1059 | local shrtsrc=$(basename "${src}") |
| 1101 | echo ">>> Unpacking ${shrtsrc} to ${PWD}" |
1060 | echo ">>> Unpacking ${shrtsrc} to ${PWD}" |
| 1102 | if [ -z "${skip}" ] |
1061 | if [ -z "${skip}" ] |
| 1103 | then |
1062 | then |
| 1104 | local ver="`grep -a '#.*Makeself' ${src} | awk '{print $NF}'`" |
1063 | local ver="`grep -a '#.*Makeself' ${src} | awk '{print $NF}'`" |
| 1105 | local skip=0 |
1064 | local skip=0 |
| … | |
… | |
| 1258 | export CDROM_TOTAL_CDS=${cdcnt} |
1217 | export CDROM_TOTAL_CDS=${cdcnt} |
| 1259 | export CDROM_CURRENT_CD=1 |
1218 | export CDROM_CURRENT_CD=1 |
| 1260 | |
1219 | |
| 1261 | # now we see if the user gave use CD_ROOT ... |
1220 | # now we see if the user gave use CD_ROOT ... |
| 1262 | # if they did, let's just believe them that it's correct |
1221 | # if they did, let's just believe them that it's correct |
| 1263 | if [ ! -z "${CD_ROOT}" ] ; then |
1222 | if [[ ! -z ${CD_ROOT} ]] ; then |
| 1264 | export CDROM_ROOT="${CD_ROOT}" |
1223 | export CDROM_ROOT=${CD_ROOT} |
| 1265 | einfo "Found CD #${CDROM_CURRENT_CD} root at ${CDROM_ROOT}" |
1224 | einfo "Found CD #${CDROM_CURRENT_CD} root at ${CDROM_ROOT}" |
| 1266 | return |
1225 | return |
| 1267 | fi |
1226 | fi |
| 1268 | # do the same for CD_ROOT_X |
1227 | # do the same for CD_ROOT_X |
| 1269 | if [ ! -z "${CD_ROOT_1}" ] ; then |
1228 | if [[ ! -z ${CD_ROOT_1} ]] ; then |
| 1270 | local var= |
1229 | local var= |
| 1271 | cdcnt=0 |
1230 | cdcnt=0 |
| 1272 | while [ ${cdcnt} -lt ${CDROM_TOTAL_CDS} ] ; do |
1231 | while [[ ${cdcnt} -lt ${CDROM_TOTAL_CDS} ]] ; do |
| 1273 | cdcnt=$((cdcnt + 1)) |
1232 | cdcnt=$((cdcnt + 1)) |
| 1274 | var="CD_ROOT_${cdcnt}" |
1233 | var="CD_ROOT_${cdcnt}" |
| 1275 | if [ -z "${!var}" ] ; then |
1234 | if [[ -z ${!var} ]] ; then |
| 1276 | eerror "You must either use just the CD_ROOT" |
1235 | eerror "You must either use just the CD_ROOT" |
| 1277 | eerror "or specify ALL the CD_ROOT_X variables." |
1236 | eerror "or specify ALL the CD_ROOT_X variables." |
| 1278 | eerror "In this case, you will need ${CDROM_TOTAL_CDS} CD_ROOT_X variables." |
1237 | eerror "In this case, you will need ${CDROM_TOTAL_CDS} CD_ROOT_X variables." |
| 1279 | die "could not locate CD_ROOT_${cdcnt}" |
1238 | die "could not locate CD_ROOT_${cdcnt}" |
| 1280 | fi |
1239 | fi |
| … | |
… | |
| 1283 | export CDROM_ROOT=${CDROM_ROOTS_1} |
1242 | export CDROM_ROOT=${CDROM_ROOTS_1} |
| 1284 | einfo "Found CD #${CDROM_CURRENT_CD} root at ${CDROM_ROOT}" |
1243 | einfo "Found CD #${CDROM_CURRENT_CD} root at ${CDROM_ROOT}" |
| 1285 | return |
1244 | return |
| 1286 | fi |
1245 | fi |
| 1287 | |
1246 | |
| 1288 | if [ ${CDROM_TOTAL_CDS} -eq 1 ] ; then |
1247 | if [[ ${CDROM_TOTAL_CDS} -eq 1 ]] ; then |
| 1289 | einfon "This ebuild will need the " |
1248 | einfon "This ebuild will need the " |
| 1290 | if [ -z "${CDROM_NAME}" ] ; then |
1249 | if [[ -z ${CDROM_NAME} ]] ; then |
| 1291 | echo "cdrom for ${PN}." |
1250 | echo "cdrom for ${PN}." |
| 1292 | else |
1251 | else |
| 1293 | echo "${CDROM_NAME}." |
1252 | echo "${CDROM_NAME}." |
| 1294 | fi |
1253 | fi |
| 1295 | echo |
1254 | echo |
| 1296 | einfo "If you do not have the CD, but have the data files" |
1255 | einfo "If you do not have the CD, but have the data files" |
| 1297 | einfo "mounted somewhere on your filesystem, just export" |
1256 | einfo "mounted somewhere on your filesystem, just export" |
| 1298 | einfo "the variable CD_ROOT so that it points to the" |
1257 | einfo "the variable CD_ROOT so that it points to the" |
| 1299 | einfo "directory containing the files." |
1258 | einfo "directory containing the files." |
| 1300 | echo |
1259 | echo |
|
|
1260 | einfo "For example:" |
|
|
1261 | einfo "export CD_ROOT=/mnt/cdrom" |
|
|
1262 | echo |
| 1301 | else |
1263 | else |
| 1302 | einfo "This package will need access to ${CDROM_TOTAL_CDS} cds." |
1264 | einfo "This package will need access to ${CDROM_TOTAL_CDS} cds." |
| 1303 | cdcnt=0 |
1265 | cdcnt=0 |
| 1304 | while [ ${cdcnt} -lt ${CDROM_TOTAL_CDS} ] ; do |
1266 | while [[ ${cdcnt} -lt ${CDROM_TOTAL_CDS} ]] ; do |
| 1305 | cdcnt=$((cdcnt + 1)) |
1267 | cdcnt=$((cdcnt + 1)) |
| 1306 | var="CDROM_NAME_${cdcnt}" |
1268 | var="CDROM_NAME_${cdcnt}" |
| 1307 | [ ! -z "${!var}" ] && einfo " CD ${cdcnt}: ${!var}" |
1269 | [[ ! -z ${!var} ]] && einfo " CD ${cdcnt}: ${!var}" |
| 1308 | done |
1270 | done |
| 1309 | echo |
1271 | echo |
| 1310 | einfo "If you do not have the CDs, but have the data files" |
1272 | einfo "If you do not have the CDs, but have the data files" |
| 1311 | einfo "mounted somewhere on your filesystem, just export" |
1273 | einfo "mounted somewhere on your filesystem, just export" |
| 1312 | einfo "the following variables so they point to the right place:" |
1274 | einfo "the following variables so they point to the right place:" |
| 1313 | einfon "" |
1275 | einfon "" |
| 1314 | cdcnt=0 |
1276 | cdcnt=0 |
| 1315 | while [ ${cdcnt} -lt ${CDROM_TOTAL_CDS} ] ; do |
1277 | while [[ ${cdcnt} -lt ${CDROM_TOTAL_CDS} ]] ; do |
| 1316 | cdcnt=$((cdcnt + 1)) |
1278 | cdcnt=$((cdcnt + 1)) |
| 1317 | echo -n " CD_ROOT_${cdcnt}" |
1279 | echo -n " CD_ROOT_${cdcnt}" |
| 1318 | done |
1280 | done |
| 1319 | echo |
1281 | echo |
| 1320 | einfo "Or, if you have all the files in the same place, or" |
1282 | einfo "Or, if you have all the files in the same place, or" |
| 1321 | einfo "you only have one cdrom, you can export CD_ROOT" |
1283 | einfo "you only have one cdrom, you can export CD_ROOT" |
| 1322 | einfo "and that place will be used as the same data source" |
1284 | einfo "and that place will be used as the same data source" |
| 1323 | einfo "for all the CDs." |
1285 | einfo "for all the CDs." |
| 1324 | echo |
1286 | echo |
|
|
1287 | einfo "For example:" |
|
|
1288 | einfo "export CD_ROOT_1=/mnt/cdrom" |
|
|
1289 | echo |
| 1325 | fi |
1290 | fi |
| 1326 | export CDROM_CURRENT_CD=0 |
1291 | export CDROM_CURRENT_CD=0 |
| 1327 | cdrom_load_next_cd |
1292 | cdrom_load_next_cd |
| 1328 | } |
1293 | } |
| 1329 | |
1294 | |
| … | |
… | |
| 1333 | # remember, you can only go forward in the cd chain, you can't go back. |
1298 | # remember, you can only go forward in the cd chain, you can't go back. |
| 1334 | cdrom_load_next_cd() { |
1299 | cdrom_load_next_cd() { |
| 1335 | export CDROM_CURRENT_CD=$((CDROM_CURRENT_CD + 1)) |
1300 | export CDROM_CURRENT_CD=$((CDROM_CURRENT_CD + 1)) |
| 1336 | local var= |
1301 | local var= |
| 1337 | |
1302 | |
| 1338 | if [ ! -z "${CD_ROOT}" ] ; then |
1303 | if [[ ! -z ${CD_ROOT} ]] ; then |
| 1339 | einfo "Using same root as before for CD #${CDROM_CURRENT_CD}" |
1304 | einfo "Using same root as before for CD #${CDROM_CURRENT_CD}" |
| 1340 | return |
1305 | return |
| 1341 | fi |
1306 | fi |
| 1342 | |
1307 | |
| 1343 | unset CDROM_ROOT |
1308 | unset CDROM_ROOT |
| 1344 | var=CDROM_ROOTS_${CDROM_CURRENT_CD} |
1309 | var=CDROM_ROOTS_${CDROM_CURRENT_CD} |
| 1345 | if [ -z "${!var}" ] ; then |
1310 | if [[ -z ${!var} ]] ; then |
| 1346 | var="CDROM_CHECK_${CDROM_CURRENT_CD}" |
1311 | var="CDROM_CHECK_${CDROM_CURRENT_CD}" |
| 1347 | cdrom_locate_file_on_cd ${!var} |
1312 | cdrom_locate_file_on_cd ${!var} |
| 1348 | else |
1313 | else |
| 1349 | export CDROM_ROOT="${!var}" |
1314 | export CDROM_ROOT=${!var} |
| 1350 | fi |
1315 | fi |
| 1351 | |
1316 | |
| 1352 | einfo "Found CD #${CDROM_CURRENT_CD} root at ${CDROM_ROOT}" |
1317 | einfo "Found CD #${CDROM_CURRENT_CD} root at ${CDROM_ROOT}" |
| 1353 | } |
1318 | } |
| 1354 | |
1319 | |
| … | |
… | |
| 1358 | # found, then a message asking for the user to insert the cdrom will be |
1323 | # found, then a message asking for the user to insert the cdrom will be |
| 1359 | # displayed and we'll hang out here until: |
1324 | # displayed and we'll hang out here until: |
| 1360 | # (1) the file is found on a mounted cdrom |
1325 | # (1) the file is found on a mounted cdrom |
| 1361 | # (2) the user hits CTRL+C |
1326 | # (2) the user hits CTRL+C |
| 1362 | cdrom_locate_file_on_cd() { |
1327 | cdrom_locate_file_on_cd() { |
| 1363 | while [ -z "${CDROM_ROOT}" ] ; do |
1328 | while [[ -z ${CDROM_ROOT} ]] ; do |
| 1364 | local dir="$(dirname ${@})" |
1329 | local dir=$(dirname "$*") |
| 1365 | local file="$(basename ${@})" |
1330 | local file=$(basename "$*") |
| 1366 | local mline="" |
1331 | local mline="" |
| 1367 | local showedmsg=0 |
1332 | local showedmsg=0 |
| 1368 | |
1333 | |
| 1369 | for mline in `mount | egrep -e '(iso|cdrom)' | awk '{print $3}'` ; do |
1334 | for mline in $(mount | egrep -e '(iso|cdrom)' | awk '{print $3}') ; do |
| 1370 | [ -d "${mline}/${dir}" ] || continue |
1335 | [[ -d ${mline}/${dir} ]] || continue |
| 1371 | [ ! -z "$(find ${mline}/${dir} -iname ${file} -maxdepth 1)" ] \ |
1336 | [[ ! -z $(find ${mline}/${dir} -maxdepth 1 -iname ${file}) ]] \ |
| 1372 | && export CDROM_ROOT=${mline} |
1337 | && export CDROM_ROOT=${mline} |
| 1373 | done |
1338 | done |
| 1374 | |
1339 | |
| 1375 | if [ -z "${CDROM_ROOT}" ] ; then |
1340 | if [[ -z ${CDROM_ROOT} ]] ; then |
| 1376 | echo |
1341 | echo |
| 1377 | if [ ${showedmsg} -eq 0 ] ; then |
1342 | if [[ ${showedmsg} -eq 0 ]] ; then |
| 1378 | if [ ${CDROM_TOTAL_CDS} -eq 1 ] ; then |
1343 | if [[ ${CDROM_TOTAL_CDS} -eq 1 ]] ; then |
| 1379 | if [ -z "${CDROM_NAME}" ] ; then |
1344 | if [[ -z ${CDROM_NAME} ]] ; then |
| 1380 | einfo "Please insert the cdrom for ${PN} now !" |
1345 | einfo "Please insert the cdrom for ${PN} now !" |
| 1381 | else |
1346 | else |
| 1382 | einfo "Please insert the ${CDROM_NAME} cdrom now !" |
1347 | einfo "Please insert the ${CDROM_NAME} cdrom now !" |
| 1383 | fi |
1348 | fi |
| 1384 | else |
1349 | else |
| 1385 | if [ -z "${CDROM_NAME_1}" ] ; then |
1350 | if [[ -z ${CDROM_NAME_1} ]] ; then |
| 1386 | einfo "Please insert cd #${CDROM_CURRENT_CD} for ${PN} now !" |
1351 | einfo "Please insert cd #${CDROM_CURRENT_CD} for ${PN} now !" |
| 1387 | else |
1352 | else |
| 1388 | local var="CDROM_NAME_${CDROM_CURRENT_CD}" |
1353 | local var="CDROM_NAME_${CDROM_CURRENT_CD}" |
| 1389 | einfo "Please insert+mount the ${!var} cdrom now !" |
1354 | einfo "Please insert+mount the ${!var} cdrom now !" |
| 1390 | fi |
1355 | fi |
| 1391 | fi |
1356 | fi |
| 1392 | showedmsg=1 |
1357 | showedmsg=1 |
| 1393 | fi |
1358 | fi |
| 1394 | einfo "Press return to scan for the cd again" |
1359 | einfo "Press return to scan for the cd again" |
| 1395 | einfo "or hit CTRL+C to abort the emerge." |
1360 | einfo "or hit CTRL+C to abort the emerge." |
|
|
1361 | echo |
|
|
1362 | einfo "If you are having trouble with the detection" |
|
|
1363 | einfo "of your CD, it is possible that you do not have" |
|
|
1364 | einfo "Joliet support enabled in your kernel. Please" |
|
|
1365 | einfo "check that CONFIG_JOLIET is enabled in your kernel." |
| 1396 | read |
1366 | read |
| 1397 | fi |
1367 | fi |
| 1398 | done |
1368 | done |
| 1399 | } |
1369 | } |
| 1400 | |
1370 | |
| … | |
… | |
| 1410 | # directories and uses the intersection of the lists. |
1380 | # directories and uses the intersection of the lists. |
| 1411 | # The -u builds a list of po files found in all the |
1381 | # The -u builds a list of po files found in all the |
| 1412 | # directories and uses the union of the lists. |
1382 | # directories and uses the union of the lists. |
| 1413 | strip-linguas() { |
1383 | strip-linguas() { |
| 1414 | local ls newls |
1384 | local ls newls |
| 1415 | if [ "$1" == "-i" ] || [ "$1" == "-u" ] ; then |
1385 | if [[ $1 == "-i" ]] || [[ $1 == "-u" ]] ; then |
| 1416 | local op="$1"; shift |
1386 | local op=$1; shift |
| 1417 | ls=" $(find "$1" -name '*.po' -printf '%f ') "; shift |
1387 | ls=" $(find "$1" -name '*.po' -printf '%f ') "; shift |
| 1418 | local d f |
1388 | local d f |
| 1419 | for d in "$@" ; do |
1389 | for d in "$@" ; do |
| 1420 | if [ "${op}" == "-u" ] ; then |
1390 | if [[ ${op} == "-u" ]] ; then |
| 1421 | newls="${ls}" |
1391 | newls=${ls} |
| 1422 | else |
1392 | else |
| 1423 | newls="" |
1393 | newls="" |
| 1424 | fi |
1394 | fi |
| 1425 | for f in $(find "$d" -name '*.po' -printf '%f ') ; do |
1395 | for f in $(find "$d" -name '*.po' -printf '%f ') ; do |
| 1426 | if [ "${op}" == "-i" ] ; then |
1396 | if [[ ${op} == "-i" ]] ; then |
| 1427 | [ "${ls/ ${f} /}" != "${ls}" ] && newls="${newls} ${f}" |
1397 | [[ ${ls/ ${f} /} != ${ls} ]] && newls="${newls} ${f}" |
| 1428 | else |
1398 | else |
| 1429 | [ "${ls/ ${f} /}" == "${ls}" ] && newls="${newls} ${f}" |
1399 | [[ ${ls/ ${f} /} == ${ls} ]] && newls="${newls} ${f}" |
| 1430 | fi |
1400 | fi |
| 1431 | done |
1401 | done |
| 1432 | ls="${newls}" |
1402 | ls=${newls} |
| 1433 | done |
1403 | done |
| 1434 | ls="${ls//.po}" |
1404 | ls=${ls//.po} |
| 1435 | else |
1405 | else |
| 1436 | ls="$@" |
1406 | ls=$@ |
| 1437 | fi |
1407 | fi |
| 1438 | |
1408 | |
| 1439 | ls=" ${ls} " |
1409 | ls=" ${ls} " |
| 1440 | newls="" |
1410 | newls="" |
| 1441 | for f in ${LINGUAS} ; do |
1411 | for f in ${LINGUAS} ; do |
| 1442 | if [ "${ls/ ${f} /}" != "${ls}" ] ; then |
1412 | if [[ ${ls/ ${f} /} != ${ls} ]] ; then |
| 1443 | newls="${newls} ${f}" |
1413 | newls="${newls} ${f}" |
| 1444 | else |
1414 | else |
| 1445 | ewarn "Sorry, but ${PN} does not support the ${f} LINGUA" |
1415 | ewarn "Sorry, but ${PN} does not support the ${f} LINGUA" |
| 1446 | fi |
1416 | fi |
| 1447 | done |
1417 | done |
| 1448 | if [ -z "${newls}" ] ; then |
1418 | if [[ -z ${newls} ]] ; then |
| 1449 | unset LINGUAS |
1419 | export LINGUAS="" |
| 1450 | else |
1420 | else |
| 1451 | export LINGUAS="${newls}" |
1421 | export LINGUAS=${newls:1} |
| 1452 | fi |
1422 | fi |
| 1453 | } |
1423 | } |
| 1454 | |
1424 | |
| 1455 | # moved from kernel.eclass since they are generally useful outside of |
1425 | # moved from kernel.eclass since they are generally useful outside of |
| 1456 | # kernel.eclass -iggy (20041002) |
1426 | # kernel.eclass -iggy (20041002) |
| … | |
… | |
| 1458 | # the following functions are useful in kernel module ebuilds, etc. |
1428 | # the following functions are useful in kernel module ebuilds, etc. |
| 1459 | # for an example see ivtv or drbd ebuilds |
1429 | # for an example see ivtv or drbd ebuilds |
| 1460 | |
1430 | |
| 1461 | # set's ARCH to match what the kernel expects |
1431 | # set's ARCH to match what the kernel expects |
| 1462 | set_arch_to_kernel() { |
1432 | set_arch_to_kernel() { |
|
|
1433 | i=10 |
|
|
1434 | while ((i--)) ; do |
|
|
1435 | ewarn "PLEASE UPDATE TO YOUR PACKAGE TO USE linux-info.eclass" |
|
|
1436 | done |
| 1463 | export EUTILS_ECLASS_PORTAGE_ARCH="${ARCH}" |
1437 | export EUTILS_ECLASS_PORTAGE_ARCH="${ARCH}" |
| 1464 | case ${ARCH} in |
1438 | case ${ARCH} in |
| 1465 | x86) export ARCH="i386";; |
1439 | x86) export ARCH="i386";; |
| 1466 | amd64) export ARCH="x86_64";; |
1440 | amd64) export ARCH="x86_64";; |
| 1467 | hppa) export ARCH="parisc";; |
1441 | hppa) export ARCH="parisc";; |
| 1468 | mips) export ARCH="mips";; |
1442 | mips) export ARCH="mips";; |
|
|
1443 | 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! |
| 1469 | *) export ARCH="${ARCH}";; |
1444 | *) export ARCH="${ARCH}";; |
| 1470 | esac |
1445 | esac |
| 1471 | } |
1446 | } |
| 1472 | |
1447 | |
| 1473 | # set's ARCH back to what portage expects |
1448 | # set's ARCH back to what portage expects |
| 1474 | set_arch_to_portage() { |
1449 | set_arch_to_portage() { |
|
|
1450 | i=10 |
|
|
1451 | while ((i--)) ; do |
|
|
1452 | ewarn "PLEASE UPDATE TO YOUR PACKAGE TO USE linux-info.eclass" |
|
|
1453 | done |
| 1475 | export ARCH="${EUTILS_ECLASS_PORTAGE_ARCH}" |
1454 | export ARCH="${EUTILS_ECLASS_PORTAGE_ARCH}" |
| 1476 | } |
1455 | } |
| 1477 | |
1456 | |
| 1478 | # Jeremy Huddleston <eradicator@gentoo.org>: |
1457 | # Jeremy Huddleston <eradicator@gentoo.org>: |
| 1479 | # preserve_old_lib /path/to/libblah.so.0 |
1458 | # preserve_old_lib /path/to/libblah.so.0 |
| … | |
… | |
| 1509 | touch ${D}${LIB} |
1488 | touch ${D}${LIB} |
| 1510 | fi |
1489 | fi |
| 1511 | } |
1490 | } |
| 1512 | |
1491 | |
| 1513 | preserve_old_lib_notify() { |
1492 | preserve_old_lib_notify() { |
| 1514 | LIB=$1 |
1493 | LIB=$1 |
| 1515 | |
1494 | |
| 1516 | if [ -n "${LIB}" -a -f "${ROOT}${LIB}" ]; then |
1495 | if [ -n "${LIB}" -a -f "${ROOT}${LIB}" ]; then |
| 1517 | SONAME=`basename ${LIB}` |
1496 | SONAME=`basename ${LIB}` |
| 1518 | |
1497 | |
| 1519 | einfo "An old version of an installed library was detected on your system." |
1498 | ewarn "An old version of an installed library was detected on your system." |
| 1520 | einfo "In order to avoid breaking packages that link against is, this older version" |
1499 | ewarn "In order to avoid breaking packages that link against it, this older version" |
| 1521 | einfo "is not being removed. In order to make full use of this newer version," |
1500 | ewarn "is not being removed. In order to make full use of this newer version," |
| 1522 | einfo "you will need to execute the following command:" |
1501 | ewarn "you will need to execute the following command:" |
| 1523 | einfo " revdep-rebuild --soname ${SONAME}" |
1502 | ewarn " revdep-rebuild --soname ${SONAME}" |
| 1524 | einfo |
1503 | ewarn |
| 1525 | einfo "After doing that, you can safely remove ${LIB}" |
1504 | ewarn "After doing that, you can safely remove ${LIB}" |
| 1526 | einfo "Note: 'emerge gentoolkit' to get revdep-rebuild" |
1505 | ewarn "Note: 'emerge gentoolkit' to get revdep-rebuild" |
| 1527 | fi |
1506 | fi |
| 1528 | } |
1507 | } |
| 1529 | |
1508 | |
| 1530 | # Hack for people to figure out if a package was built with |
1509 | # Hack for people to figure out if a package was built with |
| 1531 | # certain USE flags |
1510 | # certain USE flags |
| 1532 | # |
1511 | # |
| 1533 | # Usage: built_with_use <DEPEND ATOM> <List of USE flags> |
1512 | # Usage: built_with_use [-a|-o] <DEPEND ATOM> <List of USE flags> |
| 1534 | # ex: built_with_use xchat gtk2 |
1513 | # ex: built_with_use xchat gtk2 |
|
|
1514 | # |
|
|
1515 | # Flags: -a all USE flags should be utilized |
|
|
1516 | # -o at least one USE flag should be utilized |
|
|
1517 | # Note: the default flag is '-a' |
| 1535 | built_with_use() { |
1518 | built_with_use() { |
|
|
1519 | local opt=$1 |
|
|
1520 | [[ ${opt:0:1} = "-" ]] && shift || opt="-a" |
|
|
1521 | |
| 1536 | local PKG=$(portageq best_version ${ROOT} $1) |
1522 | local PKG=$(best_version $1) |
|
|
1523 | shift |
|
|
1524 | |
| 1537 | local USEFILE="${ROOT}/var/db/pkg/${PKG}/USE" |
1525 | local USEFILE="${ROOT}/var/db/pkg/${PKG}/USE" |
| 1538 | [[ ! -e ${USEFILE} ]] && return 1 |
1526 | [[ ! -e ${USEFILE} ]] && return 1 |
| 1539 | |
1527 | |
| 1540 | local USE_BUILT=$(<${USEFILE}) |
1528 | local USE_BUILT=$(<${USEFILE}) |
| 1541 | |
|
|
| 1542 | shift |
|
|
| 1543 | while [ $# -gt 0 ] ; do |
1529 | while [[ $# -gt 0 ]] ; do |
|
|
1530 | if [[ ${opt} = "-o" ]] ; then |
|
|
1531 | has $1 ${USE_BUILT} && return 0 |
|
|
1532 | else |
| 1544 | has $1 ${USE_BUILT} || return 1 |
1533 | has $1 ${USE_BUILT} || return 1 |
|
|
1534 | fi |
| 1545 | shift |
1535 | shift |
| 1546 | done |
1536 | done |
| 1547 | return 0 |
1537 | [[ ${opt} = "-a" ]] |
| 1548 | } |
1538 | } |
| 1549 | |
1539 | |
| 1550 | # Many configure scripts wrongly bail when a C++ compiler |
1540 | # Many configure scripts wrongly bail when a C++ compiler |
| 1551 | # could not be detected. #73450 |
1541 | # could not be detected. #73450 |
| 1552 | epunt_cxx() { |
1542 | epunt_cxx() { |
| 1553 | local dir=$1 |
1543 | local dir=$1 |
| 1554 | [[ -z ${dir} ]] && dir=${S} |
1544 | [[ -z ${dir} ]] && dir=${S} |
| 1555 | ebegin "Removing useless C++ checks" |
1545 | ebegin "Removing useless C++ checks" |
| … | |
… | |
| 1558 | patch -p0 "${f}" "${PORTDIR}/eclass/ELT-patches/nocxx/nocxx.patch" > /dev/null |
1548 | patch -p0 "${f}" "${PORTDIR}/eclass/ELT-patches/nocxx/nocxx.patch" > /dev/null |
| 1559 | done |
1549 | done |
| 1560 | eend 0 |
1550 | eend 0 |
| 1561 | } |
1551 | } |
| 1562 | |
1552 | |
| 1563 | # get_abi_var <VAR> [<ABI>] |
1553 | # dopamd <file> [more files] |
| 1564 | # returns the value of ${<VAR>_<ABI>} which should be set in make.defaults |
|
|
| 1565 | # |
1554 | # |
| 1566 | # This code is for testing purposes only with the sparc64-multilib ${PROFILE_ARCH} |
1555 | # Install pam auth config file in /etc/pam.d |
| 1567 | # and getting a more multilib-aware portage layout. It may end up being used, but for now |
1556 | dopamd() { |
| 1568 | # it is subject to removal if a better way is worked out. |
1557 | [[ -z $1 ]] && die "dopamd requires at least one argument" |
| 1569 | # |
|
|
| 1570 | # ex: |
|
|
| 1571 | # CFLAGS=$(get_abi_var CFLAGS sparc32) # CFLAGS=-m32 |
|
|
| 1572 | # |
|
|
| 1573 | # Note that the prefered method is to set CC="$(tc-getCC) $(get_abi_CFLAGS)" |
|
|
| 1574 | # This will hopefully be added to portage soon... |
|
|
| 1575 | # |
|
|
| 1576 | # If <ABI> is not specified, ${ABI} is used. |
|
|
| 1577 | # If <ABI> is not specified and ${ABI} is not defined, ${DEFAULT_ABI} is used. |
|
|
| 1578 | # If <ABI> is not specified and ${ABI} and ${DEFAULT_ABI} are not defined, we return an empty string. |
|
|
| 1579 | # |
|
|
| 1580 | # Jeremy Huddleston <eradicator@gentoo.org> |
|
|
| 1581 | get_abi_var() { |
|
|
| 1582 | local flag=$1 |
|
|
| 1583 | local abi |
|
|
| 1584 | if [ $# -gt 1 ]; then |
|
|
| 1585 | abi=$1 |
|
|
| 1586 | elif [ -n "${ABI}" ]; then |
|
|
| 1587 | abi=${ABI} |
|
|
| 1588 | elif [ -n "${DEFAULT_ABI}" ]; then |
|
|
| 1589 | abi=${DEFAULT_ABI} |
|
|
| 1590 | else |
|
|
| 1591 | return "" |
|
|
| 1592 | fi |
|
|
| 1593 | eval echo \${${flag}_${abi}} |
|
|
| 1594 | } |
|
|
| 1595 | |
1558 | |
| 1596 | get_abi_CFLAGS() { get_abi_var CFLAGS $1; } |
1559 | use pam || return 0 |
| 1597 | get_abi_CXXFLAGS() { get_abi_var CXXFLAGS $1; } |
|
|
| 1598 | get_abi_ASFLAGS() { get_abi_var ASFLAGS $1; } |
|
|
| 1599 | get_abi_LIBDIR() { get_abi_var LIBDIR $1; } |
|
|
| 1600 | |
1560 | |
|
|
1561 | INSDESTTREE=/etc/pam.d \ |
|
|
1562 | doins "$@" || die "failed to install $@" |
|
|
1563 | } |
|
|
1564 | # newpamd <old name> <new name> |
|
|
1565 | # |
|
|
1566 | # Install pam file <old name> as <new name> in /etc/pam.d |
|
|
1567 | newpamd() { |
|
|
1568 | [[ $# -ne 2 ]] && die "newpamd requires two arguements" |
|
|
1569 | |
|
|
1570 | use pam || return 0 |
|
|
1571 | |
|
|
1572 | INSDESTTREE=/etc/pam.d \ |
|
|
1573 | newins "$1" "$2" || die "failed to install $1 as $2" |
|
|
1574 | } |
|
|
1575 | |
|
|
1576 | # make a wrapper script ... |
|
|
1577 | # NOTE: this was originally games_make_wrapper, but I noticed other places where |
|
|
1578 | # this could be used, so I have moved it here and made it not games-specific |
|
|
1579 | # -- wolf31o2 |
|
|
1580 | # $1 == wrapper name |
|
|
1581 | # $2 == binary to run |
|
|
1582 | # $3 == directory to chdir before running binary |
|
|
1583 | # $4 == extra LD_LIBRARY_PATH's (make it : delimited) |
|
|
1584 | # $5 == path for wrapper |
|
|
1585 | make_wrapper() { |
|
|
1586 | local wrapper=$1 bin=$2 chdir=$3 libdir=$4 path=$5 |
|
|
1587 | local tmpwrapper=$(emktemp) |
|
|
1588 | cat << EOF > "${tmpwrapper}" |
|
|
1589 | #!/bin/sh |
|
|
1590 | cd "${chdir}" |
|
|
1591 | export LD_LIBRARY_PATH="\${LD_LIBRARY_PATH}:${libdir}" |
|
|
1592 | exec ${bin} "\$@" |
|
|
1593 | EOF |
|
|
1594 | chmod go+rx "${tmpwrapper}" |
|
|
1595 | if [ -n "${5}" ] |
|
|
1596 | then |
|
|
1597 | exeinto ${5} |
|
|
1598 | newexe "${tmpwrapper}" "${wrapper}" |
|
|
1599 | else |
|
|
1600 | newbin "${tmpwrapper}" "${wrapper}" |
|
|
1601 | fi |
|
|
1602 | } |