| 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.165 2005/04/12 01:01:23 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 | inherit multilib |
| 12 | ECLASS=eutils |
13 | ECLASS=eutils |
| 13 | INHERITED="$INHERITED $ECLASS" |
14 | INHERITED="$INHERITED $ECLASS" |
| 14 | |
15 | |
| 15 | DEPEND="!bootstrap? ( sys-devel/patch )" |
16 | DEPEND="!bootstrap? ( sys-devel/patch )" |
| 16 | |
17 | |
| … | |
… | |
| 41 | sleep 1 |
42 | sleep 1 |
| 42 | done |
43 | done |
| 43 | fi |
44 | fi |
| 44 | } |
45 | } |
| 45 | |
46 | |
| 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 |
47 | # This function generate linker scripts in /usr/lib for dynamic |
| 110 | # libs in /lib. This is to fix linking problems when you have |
48 | # 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 |
49 | # 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 |
50 | # 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 |
51 | # instead of the .so in /lib due to gcc/libtool tweaking ld's |
| … | |
… | |
| 127 | gen_usr_ldscript() { |
65 | gen_usr_ldscript() { |
| 128 | local libdir="$(get_libdir)" |
66 | local libdir="$(get_libdir)" |
| 129 | # Just make sure it exists |
67 | # Just make sure it exists |
| 130 | dodir /usr/${libdir} |
68 | dodir /usr/${libdir} |
| 131 | |
69 | |
|
|
70 | for lib in "${@}" ; do |
| 132 | cat > "${D}/usr/${libdir}/${1}" << END_LDSCRIPT |
71 | cat > "${D}/usr/${libdir}/${lib}" <<-END_LDSCRIPT |
| 133 | /* GNU ld script |
72 | /* GNU ld script |
| 134 | Because Gentoo have critical dynamic libraries |
73 | Since Gentoo has critical dynamic libraries |
| 135 | in /lib, and the static versions in /usr/lib, we |
74 | in /lib, and the static versions in /usr/lib, |
| 136 | need to have a "fake" dynamic lib in /usr/lib, |
75 | we need to have a "fake" dynamic lib in /usr/lib, |
| 137 | otherwise we run into linking problems. |
76 | otherwise we run into linking problems. |
| 138 | See bug #4411 on http://bugs.gentoo.org/ for |
77 | |
| 139 | more info. */ |
78 | See bug http://bugs.gentoo.org/4411 for more info. |
|
|
79 | */ |
| 140 | GROUP ( /${libdir}/${1} ) |
80 | GROUP ( /${libdir}/${lib} ) |
| 141 | END_LDSCRIPT |
81 | END_LDSCRIPT |
| 142 | fperms a+x "/usr/${libdir}/${1}" |
82 | fperms a+x "/usr/${libdir}/${lib}" |
|
|
83 | done |
| 143 | } |
84 | } |
| 144 | |
85 | |
| 145 | # Simple function to draw a line consisting of '=' the same length as $* |
86 | # Simple function to draw a line consisting of '=' the same length as $* |
| 146 | # |
87 | # |
| 147 | # <azarah@gentoo.org> (11 Nov 2002) |
88 | # <azarah@gentoo.org> (11 Nov 2002) |
| … | |
… | |
| 267 | |
208 | |
| 268 | echo |
209 | echo |
| 269 | eerror "Cannot find \$EPATCH_SOURCE! Value for \$EPATCH_SOURCE is:" |
210 | eerror "Cannot find \$EPATCH_SOURCE! Value for \$EPATCH_SOURCE is:" |
| 270 | eerror |
211 | eerror |
| 271 | eerror " ${EPATCH_SOURCE}" |
212 | eerror " ${EPATCH_SOURCE}" |
|
|
213 | eerror " ( ${EPATCH_SOURCE##*/} )" |
| 272 | echo |
214 | echo |
| 273 | die "Cannot find \$EPATCH_SOURCE!" |
215 | die "Cannot find \$EPATCH_SOURCE!" |
| 274 | fi |
216 | fi |
| 275 | |
217 | |
| 276 | local EPATCH_SOURCE="${EPATCH_SOURCE}/*.${EPATCH_SUFFIX}" |
218 | local EPATCH_SOURCE="${EPATCH_SOURCE}/*.${EPATCH_SUFFIX}" |
| … | |
… | |
| 309 | ([ "${SINGLE_PATCH}" = "yes" -o "${x/_all_}" != "${x}" -o "`eval echo \$\{x/_${ARCH}_\}`" != "${x}" ] || \ |
251 | ([ "${SINGLE_PATCH}" = "yes" -o "${x/_all_}" != "${x}" -o "`eval echo \$\{x/_${ARCH}_\}`" != "${x}" ] || \ |
| 310 | [ "${EPATCH_FORCE}" = "yes" ]) |
252 | [ "${EPATCH_FORCE}" = "yes" ]) |
| 311 | then |
253 | then |
| 312 | local count=0 |
254 | local count=0 |
| 313 | local popts="${EPATCH_OPTS}" |
255 | local popts="${EPATCH_OPTS}" |
|
|
256 | local patchname=${x##*/} |
| 314 | |
257 | |
| 315 | if [ -n "${EPATCH_EXCLUDE}" ] |
258 | if [ -n "${EPATCH_EXCLUDE}" ] |
| 316 | then |
259 | then |
| 317 | if [ "`eval echo \$\{EPATCH_EXCLUDE/${x##*/}\}`" != "${EPATCH_EXCLUDE}" ] |
260 | if [ "${EPATCH_EXCLUDE/${patchname}}" != "${EPATCH_EXCLUDE}" ] |
| 318 | then |
261 | then |
| 319 | continue |
262 | continue |
| 320 | fi |
263 | fi |
| 321 | fi |
264 | fi |
| 322 | |
265 | |
| … | |
… | |
| 324 | then |
267 | then |
| 325 | if [ -n "${EPATCH_SINGLE_MSG}" ] |
268 | if [ -n "${EPATCH_SINGLE_MSG}" ] |
| 326 | then |
269 | then |
| 327 | einfo "${EPATCH_SINGLE_MSG}" |
270 | einfo "${EPATCH_SINGLE_MSG}" |
| 328 | else |
271 | else |
| 329 | einfo "Applying ${x##*/} ..." |
272 | einfo "Applying ${patchname} ..." |
| 330 | fi |
273 | fi |
| 331 | else |
274 | else |
| 332 | einfo " ${x##*/} ..." |
275 | einfo " ${patchname} ..." |
| 333 | fi |
276 | fi |
| 334 | |
277 | |
| 335 | echo "***** ${x##*/} *****" > ${STDERR_TARGET%/*}/${x##*/}-${STDERR_TARGET##*/} |
278 | echo "***** ${patchname} *****" > ${STDERR_TARGET%/*}/${patchname}-${STDERR_TARGET##*/} |
| 336 | echo >> ${STDERR_TARGET%/*}/${x##*/}-${STDERR_TARGET##*/} |
279 | echo >> ${STDERR_TARGET%/*}/${patchname}-${STDERR_TARGET##*/} |
| 337 | |
280 | |
| 338 | # Allow for prefix to differ ... im lazy, so shoot me :/ |
281 | # Allow for prefix to differ ... im lazy, so shoot me :/ |
| 339 | while [ "${count}" -lt 5 ] |
282 | while [ "${count}" -lt 5 ] |
| 340 | do |
283 | do |
| 341 | # Generate some useful debug info ... |
284 | # Generate some useful debug info ... |
| 342 | draw_line "***** ${x##*/} *****" >> ${STDERR_TARGET%/*}/${x##*/}-${STDERR_TARGET##*/} |
285 | draw_line "***** ${patchname} *****" >> ${STDERR_TARGET%/*}/${patchname}-${STDERR_TARGET##*/} |
| 343 | echo >> ${STDERR_TARGET%/*}/${x##*/}-${STDERR_TARGET##*/} |
286 | echo >> ${STDERR_TARGET%/*}/${patchname}-${STDERR_TARGET##*/} |
| 344 | |
287 | |
| 345 | if [ "${PATCH_SUFFIX}" != "patch" ] |
288 | if [ "${PATCH_SUFFIX}" != "patch" ] |
| 346 | then |
289 | then |
| 347 | echo -n "PIPE_COMMAND: " >> ${STDERR_TARGET%/*}/${x##*/}-${STDERR_TARGET##*/} |
290 | echo -n "PIPE_COMMAND: " >> ${STDERR_TARGET%/*}/${patchname}-${STDERR_TARGET##*/} |
| 348 | echo "${PIPE_CMD} ${x} > ${PATCH_TARGET}" >> ${STDERR_TARGET%/*}/${x##*/}-${STDERR_TARGET##*/} |
291 | echo "${PIPE_CMD} ${x} > ${PATCH_TARGET}" >> ${STDERR_TARGET%/*}/${patchname}-${STDERR_TARGET##*/} |
| 349 | else |
292 | else |
| 350 | PATCH_TARGET="${x}" |
293 | PATCH_TARGET="${x}" |
| 351 | fi |
294 | fi |
| 352 | |
295 | |
| 353 | echo -n "PATCH COMMAND: " >> ${STDERR_TARGET%/*}/${x##*/}-${STDERR_TARGET##*/} |
296 | echo -n "PATCH COMMAND: " >> ${STDERR_TARGET%/*}/${patchname}-${STDERR_TARGET##*/} |
| 354 | echo "patch -p${count} ${popts} < ${PATCH_TARGET}" >> ${STDERR_TARGET%/*}/${x##*/}-${STDERR_TARGET##*/} |
297 | echo "patch -p${count} ${popts} < ${PATCH_TARGET}" >> ${STDERR_TARGET%/*}/${patchname}-${STDERR_TARGET##*/} |
| 355 | |
298 | |
| 356 | echo >> ${STDERR_TARGET%/*}/${x##*/}-${STDERR_TARGET##*/} |
299 | echo >> ${STDERR_TARGET%/*}/${patchname}-${STDERR_TARGET##*/} |
| 357 | draw_line "***** ${x##*/} *****" >> ${STDERR_TARGET%/*}/${x##*/}-${STDERR_TARGET##*/} |
300 | draw_line "***** ${patchname} *****" >> ${STDERR_TARGET%/*}/${patchname}-${STDERR_TARGET##*/} |
| 358 | |
301 | |
| 359 | if [ "${PATCH_SUFFIX}" != "patch" ] |
302 | if [ "${PATCH_SUFFIX}" != "patch" ] |
| 360 | then |
303 | then |
| 361 | if ! (${PIPE_CMD} ${x} > ${PATCH_TARGET}) >> ${STDERR_TARGET%/*}/${x##*/}-${STDERR_TARGET##*/} 2>&1 |
304 | if ! (${PIPE_CMD} ${x} > ${PATCH_TARGET}) >> ${STDERR_TARGET%/*}/${patchname}-${STDERR_TARGET##*/} 2>&1 |
| 362 | then |
305 | then |
| 363 | echo |
306 | echo |
| 364 | eerror "Could not extract patch!" |
307 | eerror "Could not extract patch!" |
| 365 | #die "Could not extract patch!" |
308 | #die "Could not extract patch!" |
| 366 | count=5 |
309 | count=5 |
| 367 | break |
310 | break |
| 368 | fi |
311 | fi |
| 369 | fi |
312 | fi |
| 370 | |
313 | |
| 371 | if (cat ${PATCH_TARGET} | patch -p${count} ${popts} --dry-run -f) >> ${STDERR_TARGET%/*}/${x##*/}-${STDERR_TARGET##*/} 2>&1 |
314 | if (cat ${PATCH_TARGET} | patch -p${count} ${popts} --dry-run -f) >> ${STDERR_TARGET%/*}/${patchname}-${STDERR_TARGET##*/} 2>&1 |
| 372 | then |
315 | then |
| 373 | draw_line "***** ${x##*/} *****" > ${STDERR_TARGET%/*}/${x##*/}-${STDERR_TARGET##*/}.real |
316 | draw_line "***** ${patchname} *****" > ${STDERR_TARGET%/*}/${patchname}-${STDERR_TARGET##*/}.real |
| 374 | echo >> ${STDERR_TARGET%/*}/${x##*/}-${STDERR_TARGET##*/}.real |
317 | echo >> ${STDERR_TARGET%/*}/${patchname}-${STDERR_TARGET##*/}.real |
| 375 | echo "ACTUALLY APPLYING ${x##*/} ..." >> ${STDERR_TARGET%/*}/${x##*/}-${STDERR_TARGET##*/}.real |
318 | echo "ACTUALLY APPLYING ${patchname} ..." >> ${STDERR_TARGET%/*}/${patchname}-${STDERR_TARGET##*/}.real |
| 376 | echo >> ${STDERR_TARGET%/*}/${x##*/}-${STDERR_TARGET##*/}.real |
319 | echo >> ${STDERR_TARGET%/*}/${patchname}-${STDERR_TARGET##*/}.real |
| 377 | draw_line "***** ${x##*/} *****" >> ${STDERR_TARGET%/*}/${x##*/}-${STDERR_TARGET##*/}.real |
320 | draw_line "***** ${patchname} *****" >> ${STDERR_TARGET%/*}/${patchname}-${STDERR_TARGET##*/}.real |
| 378 | |
321 | |
| 379 | cat ${PATCH_TARGET} | patch -p${count} ${popts} >> ${STDERR_TARGET%/*}/${x##*/}-${STDERR_TARGET##*/}.real 2>&1 |
322 | cat ${PATCH_TARGET} | patch -p${count} ${popts} >> ${STDERR_TARGET%/*}/${patchname}-${STDERR_TARGET##*/}.real 2>&1 |
| 380 | |
323 | |
| 381 | if [ "$?" -ne 0 ] |
324 | if [ "$?" -ne 0 ] |
| 382 | then |
325 | then |
| 383 | cat ${STDERR_TARGET%/*}/${x##*/}-${STDERR_TARGET##*/}.real >> ${STDERR_TARGET%/*}/${x##*/}-${STDERR_TARGET##*/} |
326 | cat ${STDERR_TARGET%/*}/${patchname}-${STDERR_TARGET##*/}.real >> ${STDERR_TARGET%/*}/${patchname}-${STDERR_TARGET##*/} |
| 384 | echo |
327 | echo |
| 385 | eerror "A dry-run of patch command succeeded, but actually" |
328 | eerror "A dry-run of patch command succeeded, but actually" |
| 386 | eerror "applying the patch failed!" |
329 | eerror "applying the patch failed!" |
| 387 | #die "Real world sux compared to the dreamworld!" |
330 | #die "Real world sux compared to the dreamworld!" |
| 388 | count=5 |
331 | count=5 |
| 389 | fi |
332 | fi |
| 390 | |
333 | |
| 391 | rm -f ${STDERR_TARGET%/*}/${x##*/}-${STDERR_TARGET##*/}.real |
334 | rm -f ${STDERR_TARGET%/*}/${patchname}-${STDERR_TARGET##*/}.real |
| 392 | |
335 | |
| 393 | break |
336 | break |
| 394 | fi |
337 | fi |
| 395 | |
338 | |
| 396 | count=$((count + 1)) |
339 | count=$((count + 1)) |
| … | |
… | |
| 402 | fi |
345 | fi |
| 403 | |
346 | |
| 404 | if [ "${count}" -eq 5 ] |
347 | if [ "${count}" -eq 5 ] |
| 405 | then |
348 | then |
| 406 | echo |
349 | echo |
| 407 | eerror "Failed Patch: ${x##*/}!" |
350 | eerror "Failed Patch: ${patchname} !" |
|
|
351 | eerror " ( ${PATCH_TARGET} )" |
| 408 | eerror |
352 | eerror |
| 409 | eerror "Include in your bugreport the contents of:" |
353 | eerror "Include in your bugreport the contents of:" |
| 410 | eerror |
354 | eerror |
| 411 | eerror " ${STDERR_TARGET%/*}/${x##*/}-${STDERR_TARGET##*/}" |
355 | eerror " ${STDERR_TARGET%/*}/${patchname}-${STDERR_TARGET##*/}" |
| 412 | echo |
356 | echo |
| 413 | die "Failed Patch: ${x##*/}!" |
357 | die "Failed Patch: ${patchname}!" |
| 414 | fi |
358 | fi |
| 415 | |
359 | |
| 416 | rm -f ${STDERR_TARGET%/*}/${x##*/}-${STDERR_TARGET##*/} |
360 | rm -f ${STDERR_TARGET%/*}/${patchname}-${STDERR_TARGET##*/} |
| 417 | |
361 | |
| 418 | eend 0 |
362 | eend 0 |
| 419 | fi |
363 | fi |
| 420 | done |
364 | done |
| 421 | if [ "${SINGLE_PATCH}" = "no" ] |
365 | if [ "${SINGLE_PATCH}" = "no" ] |
| … | |
… | |
| 906 | cp "${f}" ${T}/edos2unix |
850 | cp "${f}" ${T}/edos2unix |
| 907 | sed 's/\r$//' ${T}/edos2unix > "${f}" |
851 | sed 's/\r$//' ${T}/edos2unix > "${f}" |
| 908 | done |
852 | done |
| 909 | } |
853 | } |
| 910 | |
854 | |
|
|
855 | |
|
|
856 | ############################################################## |
|
|
857 | # START: Handle .desktop files and menu entries # |
|
|
858 | # maybe this should be separated into a new eclass some time # |
|
|
859 | # lanius@gentoo.org # |
|
|
860 | ############################################################## |
|
|
861 | |
| 911 | # Make a desktop file ! |
862 | # Make a desktop file ! |
| 912 | # Great for making those icons in kde/gnome startmenu ! |
863 | # Great for making those icons in kde/gnome startmenu ! |
| 913 | # Amaze your friends ! Get the women ! Join today ! |
864 | # Amaze your friends ! Get the women ! Join today ! |
| 914 | # |
865 | # |
| 915 | # make_desktop_entry(<binary>, [name], [icon], [type], [path]) |
866 | # make_desktop_entry(<binary>, [name], [icon], [type], [path]) |
| … | |
… | |
| 918 | # name: the name that will show up in the menu |
869 | # name: the name that will show up in the menu |
| 919 | # icon: give your little like a pretty little icon ... |
870 | # icon: give your little like a pretty little icon ... |
| 920 | # this can be relative (to /usr/share/pixmaps) or |
871 | # this can be relative (to /usr/share/pixmaps) or |
| 921 | # a full path to an icon |
872 | # a full path to an icon |
| 922 | # type: what kind of application is this ? for categories: |
873 | # type: what kind of application is this ? for categories: |
| 923 | # http://www.freedesktop.org/standards/menu-spec/ |
874 | # http://www.freedesktop.org/wiki/Standards_2fmenu_2dspec |
| 924 | # path: if your app needs to startup in a specific dir |
875 | # path: if your app needs to startup in a specific dir |
| 925 | make_desktop_entry() { |
876 | make_desktop_entry() { |
| 926 | [ -z "$1" ] && eerror "make_desktop_entry: You must specify the executable" && return 1 |
877 | [[ -z $1 ]] && eerror "make_desktop_entry: You must specify the executable" && return 1 |
| 927 | |
878 | |
| 928 | local exec="${1}" |
879 | local exec=${1} |
| 929 | local name="${2:-${PN}}" |
880 | local name=${2:-${PN}} |
| 930 | local icon="${3:-${PN}.png}" |
881 | local icon=${3:-${PN}.png} |
| 931 | local type="${4}" |
882 | local type=${4} |
| 932 | local subdir="${6}" |
883 | local path=${5} |
| 933 | local path="${5:-${GAMES_BINDIR}}" |
884 | |
| 934 | if [ -z "${type}" ] |
885 | if [[ -z ${type} ]] ; then |
| 935 | then |
886 | local catmaj=${CATEGORY%%-*} |
| 936 | case ${CATEGORY} in |
887 | local catmin=${CATEGORY##*-} |
| 937 | "app-emulation") |
888 | case ${catmaj} in |
| 938 | type=Emulator |
889 | app) |
| 939 | subdir="Emulation" |
890 | case ${catmin} in |
|
|
891 | admin) type=System;; |
|
|
892 | cdr) type=DiscBurning;; |
|
|
893 | dicts) type=Dictionary;; |
|
|
894 | editors) type=TextEditor;; |
|
|
895 | emacs) type=TextEditor;; |
|
|
896 | emulation) type=Emulator;; |
|
|
897 | laptop) type=HardwareSettings;; |
|
|
898 | office) type=Office;; |
|
|
899 | vim) type=TextEditor;; |
|
|
900 | xemacs) type=TextEditor;; |
|
|
901 | *) type=;; |
|
|
902 | esac |
| 940 | ;; |
903 | ;; |
| 941 | "games-"*) |
904 | |
| 942 | type=Game |
905 | dev) |
| 943 | subdir="Games" |
906 | type="Development" |
| 944 | ;; |
907 | ;; |
| 945 | "net-"*) |
908 | |
| 946 | type=Network |
909 | games) |
| 947 | subdir="${type}" |
910 | [[ -z ${path} ]] && path=${GAMES_BINDIR} |
|
|
911 | |
|
|
912 | case ${catmin} in |
|
|
913 | action) type=ActionGame;; |
|
|
914 | arcade) type=ArcadeGame;; |
|
|
915 | board) type=BoardGame;; |
|
|
916 | kid) type=KidsGame;; |
|
|
917 | emulation) type=Emulator;; |
|
|
918 | puzzle) type=LogicGame;; |
|
|
919 | rpg) type=RolePlaying;; |
|
|
920 | roguelike) type=RolePlaying;; |
|
|
921 | simulation) type=Simulation;; |
|
|
922 | sports) type=SportsGame;; |
|
|
923 | strategy) type=StrategyGame;; |
|
|
924 | *) type=;; |
|
|
925 | esac |
|
|
926 | type="Game;${type}" |
| 948 | ;; |
927 | ;; |
|
|
928 | |
|
|
929 | mail) |
|
|
930 | type="Network;Email" |
|
|
931 | ;; |
|
|
932 | |
|
|
933 | media) |
|
|
934 | case ${catmin} in |
|
|
935 | gfx) type=Graphics;; |
|
|
936 | radio) type=Tuner;; |
|
|
937 | sound) type=Audio;; |
|
|
938 | tv) type=TV;; |
|
|
939 | video) type=Video;; |
|
|
940 | *) type=;; |
|
|
941 | esac |
|
|
942 | type="AudioVideo;${type}" |
|
|
943 | ;; |
|
|
944 | |
|
|
945 | net) |
|
|
946 | case ${catmin} in |
|
|
947 | dialup) type=Dialup;; |
|
|
948 | ftp) type=FileTransfer;; |
|
|
949 | im) type=InstantMessaging;; |
|
|
950 | irc) type=IRCClient;; |
|
|
951 | mail) type=Email;; |
|
|
952 | news) type=News;; |
|
|
953 | nntp) type=News;; |
|
|
954 | p2p) type=FileTransfer;; |
|
|
955 | *) type=;; |
|
|
956 | esac |
|
|
957 | type="Network;${type}" |
|
|
958 | ;; |
|
|
959 | |
|
|
960 | sci) |
|
|
961 | case ${catmin} in |
|
|
962 | astro*) type=Astronomoy;; |
|
|
963 | bio*) type=Biology;; |
|
|
964 | calc*) type=Calculator;; |
|
|
965 | chem*) type=Chemistry;; |
|
|
966 | geo*) type=Geology;; |
|
|
967 | math*) type=Math;; |
|
|
968 | *) type=;; |
|
|
969 | esac |
|
|
970 | type="Science;${type}" |
|
|
971 | ;; |
|
|
972 | |
|
|
973 | www) |
|
|
974 | case ${catmin} in |
|
|
975 | client) type=WebBrowser;; |
|
|
976 | *) type=;; |
|
|
977 | esac |
|
|
978 | type="Network" |
|
|
979 | ;; |
|
|
980 | |
| 949 | *) |
981 | *) |
| 950 | type= |
982 | type= |
| 951 | subdir= |
|
|
| 952 | ;; |
983 | ;; |
| 953 | esac |
984 | esac |
| 954 | fi |
985 | fi |
|
|
986 | |
| 955 | local desktop="${T}/${exec}.desktop" |
987 | local desktop=${T}/${exec%% *}-${P}.desktop |
| 956 | |
988 | |
| 957 | echo "[Desktop Entry] |
989 | echo "[Desktop Entry] |
| 958 | Encoding=UTF-8 |
990 | Encoding=UTF-8 |
| 959 | Version=0.9.2 |
991 | Version=0.9.2 |
| 960 | Name=${name} |
992 | Name=${name} |
| … | |
… | |
| 968 | insinto /usr/share/applications |
1000 | insinto /usr/share/applications |
| 969 | doins "${desktop}" |
1001 | doins "${desktop}" |
| 970 | |
1002 | |
| 971 | return 0 |
1003 | return 0 |
| 972 | } |
1004 | } |
|
|
1005 | |
|
|
1006 | # Make a GDM/KDM Session file |
|
|
1007 | # |
|
|
1008 | # make_desktop_entry(<title>, <command>) |
|
|
1009 | # title: File to execute to start the Window Manager |
|
|
1010 | # command: Name of the Window Manager |
|
|
1011 | |
|
|
1012 | make_session_desktop() { |
|
|
1013 | |
|
|
1014 | [ -z "$1" ] && eerror "make_session_desktop: You must specify the title" && return 1 |
|
|
1015 | [ -z "$2" ] && eerror "make_session_desktop: You must specify the command" && return 1 |
|
|
1016 | |
|
|
1017 | local title="${1}" |
|
|
1018 | local command="${2}" |
|
|
1019 | local desktop="${T}/${wm}.desktop" |
|
|
1020 | |
|
|
1021 | echo "[Desktop Entry] |
|
|
1022 | Encoding=UTF-8 |
|
|
1023 | Name=${title} |
|
|
1024 | Comment=This session logs you into ${title} |
|
|
1025 | Exec=${command} |
|
|
1026 | TryExec=${command} |
|
|
1027 | Type=Application" > "${desktop}" |
|
|
1028 | |
|
|
1029 | insinto /usr/share/xsessions |
|
|
1030 | doins "${desktop}" |
|
|
1031 | |
|
|
1032 | return 0 |
|
|
1033 | } |
|
|
1034 | |
|
|
1035 | domenu() { |
|
|
1036 | local i |
|
|
1037 | local j |
|
|
1038 | insinto /usr/share/applications |
|
|
1039 | for i in ${@} |
|
|
1040 | do |
|
|
1041 | if [ -f "${i}" ]; |
|
|
1042 | then |
|
|
1043 | doins ${i} |
|
|
1044 | elif [ -d "${i}" ]; |
|
|
1045 | then |
|
|
1046 | for j in ${i}/*.desktop |
|
|
1047 | do |
|
|
1048 | doins ${j} |
|
|
1049 | done |
|
|
1050 | fi |
|
|
1051 | done |
|
|
1052 | } |
|
|
1053 | |
|
|
1054 | doicon() { |
|
|
1055 | local i |
|
|
1056 | local j |
|
|
1057 | insinto /usr/share/pixmaps |
|
|
1058 | for i in ${@} |
|
|
1059 | do |
|
|
1060 | if [ -f "${i}" ]; |
|
|
1061 | then |
|
|
1062 | doins ${i} |
|
|
1063 | elif [ -d "${i}" ]; |
|
|
1064 | then |
|
|
1065 | for j in ${i}/*.png |
|
|
1066 | do |
|
|
1067 | doins ${j} |
|
|
1068 | done |
|
|
1069 | fi |
|
|
1070 | done |
|
|
1071 | } |
|
|
1072 | |
|
|
1073 | ############################################################## |
|
|
1074 | # END: Handle .desktop files and menu entries # |
|
|
1075 | ############################################################## |
|
|
1076 | |
| 973 | |
1077 | |
| 974 | # for internal use only (unpack_pdv and unpack_makeself) |
1078 | # for internal use only (unpack_pdv and unpack_makeself) |
| 975 | find_unpackable_file() { |
1079 | find_unpackable_file() { |
| 976 | local src="$1" |
1080 | local src="$1" |
| 977 | if [ -z "${src}" ] |
1081 | if [ -z "${src}" ] |
| … | |
… | |
| 1258 | export CDROM_TOTAL_CDS=${cdcnt} |
1362 | export CDROM_TOTAL_CDS=${cdcnt} |
| 1259 | export CDROM_CURRENT_CD=1 |
1363 | export CDROM_CURRENT_CD=1 |
| 1260 | |
1364 | |
| 1261 | # now we see if the user gave use CD_ROOT ... |
1365 | # now we see if the user gave use CD_ROOT ... |
| 1262 | # if they did, let's just believe them that it's correct |
1366 | # if they did, let's just believe them that it's correct |
| 1263 | if [ ! -z "${CD_ROOT}" ] ; then |
1367 | if [[ ! -z ${CD_ROOT} ]] ; then |
| 1264 | export CDROM_ROOT="${CD_ROOT}" |
1368 | export CDROM_ROOT=${CD_ROOT} |
| 1265 | einfo "Found CD #${CDROM_CURRENT_CD} root at ${CDROM_ROOT}" |
1369 | einfo "Found CD #${CDROM_CURRENT_CD} root at ${CDROM_ROOT}" |
| 1266 | return |
1370 | return |
| 1267 | fi |
1371 | fi |
| 1268 | # do the same for CD_ROOT_X |
1372 | # do the same for CD_ROOT_X |
| 1269 | if [ ! -z "${CD_ROOT_1}" ] ; then |
1373 | if [[ ! -z ${CD_ROOT_1} ]] ; then |
| 1270 | local var= |
1374 | local var= |
| 1271 | cdcnt=0 |
1375 | cdcnt=0 |
| 1272 | while [ ${cdcnt} -lt ${CDROM_TOTAL_CDS} ] ; do |
1376 | while [[ ${cdcnt} -lt ${CDROM_TOTAL_CDS} ]] ; do |
| 1273 | cdcnt=$((cdcnt + 1)) |
1377 | cdcnt=$((cdcnt + 1)) |
| 1274 | var="CD_ROOT_${cdcnt}" |
1378 | var="CD_ROOT_${cdcnt}" |
| 1275 | if [ -z "${!var}" ] ; then |
1379 | if [[ -z ${!var} ]] ; then |
| 1276 | eerror "You must either use just the CD_ROOT" |
1380 | eerror "You must either use just the CD_ROOT" |
| 1277 | eerror "or specify ALL the CD_ROOT_X variables." |
1381 | eerror "or specify ALL the CD_ROOT_X variables." |
| 1278 | eerror "In this case, you will need ${CDROM_TOTAL_CDS} CD_ROOT_X variables." |
1382 | eerror "In this case, you will need ${CDROM_TOTAL_CDS} CD_ROOT_X variables." |
| 1279 | die "could not locate CD_ROOT_${cdcnt}" |
1383 | die "could not locate CD_ROOT_${cdcnt}" |
| 1280 | fi |
1384 | fi |
| … | |
… | |
| 1283 | export CDROM_ROOT=${CDROM_ROOTS_1} |
1387 | export CDROM_ROOT=${CDROM_ROOTS_1} |
| 1284 | einfo "Found CD #${CDROM_CURRENT_CD} root at ${CDROM_ROOT}" |
1388 | einfo "Found CD #${CDROM_CURRENT_CD} root at ${CDROM_ROOT}" |
| 1285 | return |
1389 | return |
| 1286 | fi |
1390 | fi |
| 1287 | |
1391 | |
| 1288 | if [ ${CDROM_TOTAL_CDS} -eq 1 ] ; then |
1392 | if [[ ${CDROM_TOTAL_CDS} -eq 1 ]] ; then |
| 1289 | einfon "This ebuild will need the " |
1393 | einfon "This ebuild will need the " |
| 1290 | if [ -z "${CDROM_NAME}" ] ; then |
1394 | if [[ -z ${CDROM_NAME} ]] ; then |
| 1291 | echo "cdrom for ${PN}." |
1395 | echo "cdrom for ${PN}." |
| 1292 | else |
1396 | else |
| 1293 | echo "${CDROM_NAME}." |
1397 | echo "${CDROM_NAME}." |
| 1294 | fi |
1398 | fi |
| 1295 | echo |
1399 | echo |
| 1296 | einfo "If you do not have the CD, but have the data files" |
1400 | einfo "If you do not have the CD, but have the data files" |
| 1297 | einfo "mounted somewhere on your filesystem, just export" |
1401 | einfo "mounted somewhere on your filesystem, just export" |
| 1298 | einfo "the variable CD_ROOT so that it points to the" |
1402 | einfo "the variable CD_ROOT so that it points to the" |
| 1299 | einfo "directory containing the files." |
1403 | einfo "directory containing the files." |
| 1300 | echo |
1404 | echo |
|
|
1405 | einfo "For example:" |
|
|
1406 | einfo "export CD_ROOT=/mnt/cdrom" |
|
|
1407 | echo |
| 1301 | else |
1408 | else |
| 1302 | einfo "This package will need access to ${CDROM_TOTAL_CDS} cds." |
1409 | einfo "This package will need access to ${CDROM_TOTAL_CDS} cds." |
| 1303 | cdcnt=0 |
1410 | cdcnt=0 |
| 1304 | while [ ${cdcnt} -lt ${CDROM_TOTAL_CDS} ] ; do |
1411 | while [[ ${cdcnt} -lt ${CDROM_TOTAL_CDS} ]] ; do |
| 1305 | cdcnt=$((cdcnt + 1)) |
1412 | cdcnt=$((cdcnt + 1)) |
| 1306 | var="CDROM_NAME_${cdcnt}" |
1413 | var="CDROM_NAME_${cdcnt}" |
| 1307 | [ ! -z "${!var}" ] && einfo " CD ${cdcnt}: ${!var}" |
1414 | [[ ! -z ${!var} ]] && einfo " CD ${cdcnt}: ${!var}" |
| 1308 | done |
1415 | done |
| 1309 | echo |
1416 | echo |
| 1310 | einfo "If you do not have the CDs, but have the data files" |
1417 | einfo "If you do not have the CDs, but have the data files" |
| 1311 | einfo "mounted somewhere on your filesystem, just export" |
1418 | einfo "mounted somewhere on your filesystem, just export" |
| 1312 | einfo "the following variables so they point to the right place:" |
1419 | einfo "the following variables so they point to the right place:" |
| 1313 | einfon "" |
1420 | einfon "" |
| 1314 | cdcnt=0 |
1421 | cdcnt=0 |
| 1315 | while [ ${cdcnt} -lt ${CDROM_TOTAL_CDS} ] ; do |
1422 | while [[ ${cdcnt} -lt ${CDROM_TOTAL_CDS} ]] ; do |
| 1316 | cdcnt=$((cdcnt + 1)) |
1423 | cdcnt=$((cdcnt + 1)) |
| 1317 | echo -n " CD_ROOT_${cdcnt}" |
1424 | echo -n " CD_ROOT_${cdcnt}" |
| 1318 | done |
1425 | done |
| 1319 | echo |
1426 | echo |
| 1320 | einfo "Or, if you have all the files in the same place, or" |
1427 | 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" |
1428 | einfo "you only have one cdrom, you can export CD_ROOT" |
| 1322 | einfo "and that place will be used as the same data source" |
1429 | einfo "and that place will be used as the same data source" |
| 1323 | einfo "for all the CDs." |
1430 | einfo "for all the CDs." |
| 1324 | echo |
1431 | echo |
|
|
1432 | einfo "For example:" |
|
|
1433 | einfo "export CD_ROOT_1=/mnt/cdrom" |
|
|
1434 | echo |
| 1325 | fi |
1435 | fi |
| 1326 | export CDROM_CURRENT_CD=0 |
1436 | export CDROM_CURRENT_CD=0 |
| 1327 | cdrom_load_next_cd |
1437 | cdrom_load_next_cd |
| 1328 | } |
1438 | } |
| 1329 | |
1439 | |
| … | |
… | |
| 1333 | # remember, you can only go forward in the cd chain, you can't go back. |
1443 | # remember, you can only go forward in the cd chain, you can't go back. |
| 1334 | cdrom_load_next_cd() { |
1444 | cdrom_load_next_cd() { |
| 1335 | export CDROM_CURRENT_CD=$((CDROM_CURRENT_CD + 1)) |
1445 | export CDROM_CURRENT_CD=$((CDROM_CURRENT_CD + 1)) |
| 1336 | local var= |
1446 | local var= |
| 1337 | |
1447 | |
| 1338 | if [ ! -z "${CD_ROOT}" ] ; then |
1448 | if [[ ! -z ${CD_ROOT} ]] ; then |
| 1339 | einfo "Using same root as before for CD #${CDROM_CURRENT_CD}" |
1449 | einfo "Using same root as before for CD #${CDROM_CURRENT_CD}" |
| 1340 | return |
1450 | return |
| 1341 | fi |
1451 | fi |
| 1342 | |
1452 | |
| 1343 | unset CDROM_ROOT |
1453 | unset CDROM_ROOT |
| 1344 | var=CDROM_ROOTS_${CDROM_CURRENT_CD} |
1454 | var=CDROM_ROOTS_${CDROM_CURRENT_CD} |
| 1345 | if [ -z "${!var}" ] ; then |
1455 | if [[ -z ${!var} ]] ; then |
| 1346 | var="CDROM_CHECK_${CDROM_CURRENT_CD}" |
1456 | var="CDROM_CHECK_${CDROM_CURRENT_CD}" |
| 1347 | cdrom_locate_file_on_cd ${!var} |
1457 | cdrom_locate_file_on_cd ${!var} |
| 1348 | else |
1458 | else |
| 1349 | export CDROM_ROOT="${!var}" |
1459 | export CDROM_ROOT=${!var} |
| 1350 | fi |
1460 | fi |
| 1351 | |
1461 | |
| 1352 | einfo "Found CD #${CDROM_CURRENT_CD} root at ${CDROM_ROOT}" |
1462 | einfo "Found CD #${CDROM_CURRENT_CD} root at ${CDROM_ROOT}" |
| 1353 | } |
1463 | } |
| 1354 | |
1464 | |
| … | |
… | |
| 1358 | # found, then a message asking for the user to insert the cdrom will be |
1468 | # found, then a message asking for the user to insert the cdrom will be |
| 1359 | # displayed and we'll hang out here until: |
1469 | # displayed and we'll hang out here until: |
| 1360 | # (1) the file is found on a mounted cdrom |
1470 | # (1) the file is found on a mounted cdrom |
| 1361 | # (2) the user hits CTRL+C |
1471 | # (2) the user hits CTRL+C |
| 1362 | cdrom_locate_file_on_cd() { |
1472 | cdrom_locate_file_on_cd() { |
| 1363 | while [ -z "${CDROM_ROOT}" ] ; do |
1473 | while [[ -z ${CDROM_ROOT} ]] ; do |
| 1364 | local dir="$(dirname ${@})" |
1474 | local dir="$(dirname ${@})" |
| 1365 | local file="$(basename ${@})" |
1475 | local file="$(basename ${@})" |
| 1366 | local mline="" |
1476 | local mline="" |
| 1367 | local showedmsg=0 |
1477 | local showedmsg=0 |
| 1368 | |
1478 | |
| 1369 | for mline in `mount | egrep -e '(iso|cdrom)' | awk '{print $3}'` ; do |
1479 | for mline in $(mount | egrep -e '(iso|cdrom)' | awk '{print $3}') ; do |
| 1370 | [ -d "${mline}/${dir}" ] || continue |
1480 | [[ -d ${mline}/${dir} ]] || continue |
| 1371 | [ ! -z "$(find ${mline}/${dir} -iname ${file} -maxdepth 1)" ] \ |
1481 | [[ ! -z $(find ${mline}/${dir} -iname ${file} -maxdepth 1) ]] \ |
| 1372 | && export CDROM_ROOT=${mline} |
1482 | && export CDROM_ROOT=${mline} |
| 1373 | done |
1483 | done |
| 1374 | |
1484 | |
| 1375 | if [ -z "${CDROM_ROOT}" ] ; then |
1485 | if [[ -z ${CDROM_ROOT} ]] ; then |
| 1376 | echo |
1486 | echo |
| 1377 | if [ ${showedmsg} -eq 0 ] ; then |
1487 | if [[ ${showedmsg} -eq 0 ]] ; then |
| 1378 | if [ ${CDROM_TOTAL_CDS} -eq 1 ] ; then |
1488 | if [[ ${CDROM_TOTAL_CDS} -eq 1 ]] ; then |
| 1379 | if [ -z "${CDROM_NAME}" ] ; then |
1489 | if [[ -z ${CDROM_NAME} ]] ; then |
| 1380 | einfo "Please insert the cdrom for ${PN} now !" |
1490 | einfo "Please insert the cdrom for ${PN} now !" |
| 1381 | else |
1491 | else |
| 1382 | einfo "Please insert the ${CDROM_NAME} cdrom now !" |
1492 | einfo "Please insert the ${CDROM_NAME} cdrom now !" |
| 1383 | fi |
1493 | fi |
| 1384 | else |
1494 | else |
| 1385 | if [ -z "${CDROM_NAME_1}" ] ; then |
1495 | if [[ -z ${CDROM_NAME_1} ]] ; then |
| 1386 | einfo "Please insert cd #${CDROM_CURRENT_CD} for ${PN} now !" |
1496 | einfo "Please insert cd #${CDROM_CURRENT_CD} for ${PN} now !" |
| 1387 | else |
1497 | else |
| 1388 | local var="CDROM_NAME_${CDROM_CURRENT_CD}" |
1498 | local var="CDROM_NAME_${CDROM_CURRENT_CD}" |
| 1389 | einfo "Please insert+mount the ${!var} cdrom now !" |
1499 | einfo "Please insert+mount the ${!var} cdrom now !" |
| 1390 | fi |
1500 | fi |
| … | |
… | |
| 1410 | # directories and uses the intersection of the lists. |
1520 | # directories and uses the intersection of the lists. |
| 1411 | # The -u builds a list of po files found in all the |
1521 | # The -u builds a list of po files found in all the |
| 1412 | # directories and uses the union of the lists. |
1522 | # directories and uses the union of the lists. |
| 1413 | strip-linguas() { |
1523 | strip-linguas() { |
| 1414 | local ls newls |
1524 | local ls newls |
| 1415 | if [ "$1" == "-i" ] || [ "$1" == "-u" ] ; then |
1525 | if [[ $1 == "-i" ]] || [[ $1 == "-u" ]] ; then |
| 1416 | local op="$1"; shift |
1526 | local op=$1; shift |
| 1417 | ls=" $(find "$1" -name '*.po' -printf '%f ') "; shift |
1527 | ls=" $(find "$1" -name '*.po' -printf '%f ') "; shift |
| 1418 | local d f |
1528 | local d f |
| 1419 | for d in "$@" ; do |
1529 | for d in "$@" ; do |
| 1420 | if [ "${op}" == "-u" ] ; then |
1530 | if [[ ${op} == "-u" ]] ; then |
| 1421 | newls="${ls}" |
1531 | newls=${ls} |
| 1422 | else |
1532 | else |
| 1423 | newls="" |
1533 | newls="" |
| 1424 | fi |
1534 | fi |
| 1425 | for f in $(find "$d" -name '*.po' -printf '%f ') ; do |
1535 | for f in $(find "$d" -name '*.po' -printf '%f ') ; do |
| 1426 | if [ "${op}" == "-i" ] ; then |
1536 | if [[ ${op} == "-i" ]] ; then |
| 1427 | [ "${ls/ ${f} /}" != "${ls}" ] && newls="${newls} ${f}" |
1537 | [[ ${ls/ ${f} /} != ${ls} ]] && newls="${newls} ${f}" |
| 1428 | else |
1538 | else |
| 1429 | [ "${ls/ ${f} /}" == "${ls}" ] && newls="${newls} ${f}" |
1539 | [[ ${ls/ ${f} /} == ${ls} ]] && newls="${newls} ${f}" |
| 1430 | fi |
1540 | fi |
| 1431 | done |
1541 | done |
| 1432 | ls="${newls}" |
1542 | ls=${newls} |
| 1433 | done |
1543 | done |
| 1434 | ls="${ls//.po}" |
1544 | ls=${ls//.po} |
| 1435 | else |
1545 | else |
| 1436 | ls="$@" |
1546 | ls=$@ |
| 1437 | fi |
1547 | fi |
| 1438 | |
1548 | |
| 1439 | ls=" ${ls} " |
1549 | ls=" ${ls} " |
| 1440 | newls="" |
1550 | newls="" |
| 1441 | for f in ${LINGUAS} ; do |
1551 | for f in ${LINGUAS} ; do |
| 1442 | if [ "${ls/ ${f} /}" != "${ls}" ] ; then |
1552 | if [[ ${ls/ ${f} /} != ${ls} ]] ; then |
| 1443 | newls="${newls} ${f}" |
1553 | newls="${newls} ${f}" |
| 1444 | else |
1554 | else |
| 1445 | ewarn "Sorry, but ${PN} does not support the ${f} LINGUA" |
1555 | ewarn "Sorry, but ${PN} does not support the ${f} LINGUA" |
| 1446 | fi |
1556 | fi |
| 1447 | done |
1557 | done |
| 1448 | if [ -z "${newls}" ] ; then |
1558 | if [[ -z ${newls} ]] ; then |
| 1449 | unset LINGUAS |
1559 | unset LINGUAS |
| 1450 | else |
1560 | else |
| 1451 | export LINGUAS="${newls}" |
1561 | export LINGUAS=${newls:1} |
| 1452 | fi |
1562 | fi |
| 1453 | } |
1563 | } |
| 1454 | |
1564 | |
| 1455 | # moved from kernel.eclass since they are generally useful outside of |
1565 | # moved from kernel.eclass since they are generally useful outside of |
| 1456 | # kernel.eclass -iggy (20041002) |
1566 | # kernel.eclass -iggy (20041002) |
| … | |
… | |
| 1458 | # the following functions are useful in kernel module ebuilds, etc. |
1568 | # the following functions are useful in kernel module ebuilds, etc. |
| 1459 | # for an example see ivtv or drbd ebuilds |
1569 | # for an example see ivtv or drbd ebuilds |
| 1460 | |
1570 | |
| 1461 | # set's ARCH to match what the kernel expects |
1571 | # set's ARCH to match what the kernel expects |
| 1462 | set_arch_to_kernel() { |
1572 | set_arch_to_kernel() { |
|
|
1573 | i=10 |
|
|
1574 | while ((i--)) ; do |
|
|
1575 | ewarn "PLEASE UPDATE TO YOUR PACKAGE TO USE linux-info.eclass" |
|
|
1576 | done |
| 1463 | export EUTILS_ECLASS_PORTAGE_ARCH="${ARCH}" |
1577 | export EUTILS_ECLASS_PORTAGE_ARCH="${ARCH}" |
| 1464 | case ${ARCH} in |
1578 | case ${ARCH} in |
| 1465 | x86) export ARCH="i386";; |
1579 | x86) export ARCH="i386";; |
| 1466 | amd64) export ARCH="x86_64";; |
1580 | amd64) export ARCH="x86_64";; |
| 1467 | hppa) export ARCH="parisc";; |
1581 | hppa) export ARCH="parisc";; |
| 1468 | mips) export ARCH="mips";; |
1582 | mips) export ARCH="mips";; |
|
|
1583 | 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}";; |
1584 | *) export ARCH="${ARCH}";; |
| 1470 | esac |
1585 | esac |
| 1471 | } |
1586 | } |
| 1472 | |
1587 | |
| 1473 | # set's ARCH back to what portage expects |
1588 | # set's ARCH back to what portage expects |
| 1474 | set_arch_to_portage() { |
1589 | set_arch_to_portage() { |
|
|
1590 | i=10 |
|
|
1591 | while ((i--)) ; do |
|
|
1592 | ewarn "PLEASE UPDATE TO YOUR PACKAGE TO USE linux-info.eclass" |
|
|
1593 | done |
| 1475 | export ARCH="${EUTILS_ECLASS_PORTAGE_ARCH}" |
1594 | export ARCH="${EUTILS_ECLASS_PORTAGE_ARCH}" |
| 1476 | } |
1595 | } |
| 1477 | |
1596 | |
| 1478 | # Jeremy Huddleston <eradicator@gentoo.org>: |
1597 | # Jeremy Huddleston <eradicator@gentoo.org>: |
| 1479 | # preserve_old_lib /path/to/libblah.so.0 |
1598 | # preserve_old_lib /path/to/libblah.so.0 |
| … | |
… | |
| 1509 | touch ${D}${LIB} |
1628 | touch ${D}${LIB} |
| 1510 | fi |
1629 | fi |
| 1511 | } |
1630 | } |
| 1512 | |
1631 | |
| 1513 | preserve_old_lib_notify() { |
1632 | preserve_old_lib_notify() { |
| 1514 | LIB=$1 |
1633 | LIB=$1 |
| 1515 | |
1634 | |
| 1516 | if [ -n "${LIB}" -a -f "${ROOT}${LIB}" ]; then |
1635 | if [ -n "${LIB}" -a -f "${ROOT}${LIB}" ]; then |
| 1517 | SONAME=`basename ${LIB}` |
1636 | SONAME=`basename ${LIB}` |
| 1518 | |
1637 | |
| 1519 | einfo "An old version of an installed library was detected on your system." |
1638 | einfo "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" |
1639 | einfo "In order to avoid breaking packages that link against is, this older version" |
| 1521 | einfo "is not being removed. In order to make full use of this newer version," |
1640 | einfo "is not being removed. In order to make full use of this newer version," |
| 1522 | einfo "you will need to execute the following command:" |
1641 | einfo "you will need to execute the following command:" |
| 1523 | einfo " revdep-rebuild --soname ${SONAME}" |
1642 | einfo " revdep-rebuild --soname ${SONAME}" |
| 1524 | einfo |
1643 | einfo |
| 1525 | einfo "After doing that, you can safely remove ${LIB}" |
1644 | einfo "After doing that, you can safely remove ${LIB}" |
| 1526 | einfo "Note: 'emerge gentoolkit' to get revdep-rebuild" |
1645 | einfo "Note: 'emerge gentoolkit' to get revdep-rebuild" |
| 1527 | fi |
1646 | fi |
| 1528 | } |
1647 | } |
| 1529 | |
1648 | |
| 1530 | # Hack for people to figure out if a package was built with |
1649 | # Hack for people to figure out if a package was built with |
| 1531 | # certain USE flags |
1650 | # certain USE flags |
| 1532 | # |
1651 | # |
| 1533 | # Usage: built_with_use <DEPEND ATOM> <List of USE flags> |
1652 | # Usage: built_with_use [-a|-o] <DEPEND ATOM> <List of USE flags> |
| 1534 | # ex: built_with_use xchat gtk2 |
1653 | # ex: built_with_use xchat gtk2 |
|
|
1654 | # |
|
|
1655 | # Flags: -a all USE flags should be utilized |
|
|
1656 | # -o at least one USE flag should be utilized |
|
|
1657 | # Note: the default flag is '-a' |
| 1535 | built_with_use() { |
1658 | built_with_use() { |
|
|
1659 | local opt=$1 |
|
|
1660 | [[ ${opt:0:1} = "-" ]] && shift || opt="-a" |
|
|
1661 | |
| 1536 | local PKG=$(portageq best_version ${ROOT} $1) |
1662 | local PKG=$(best_version $1) |
|
|
1663 | shift |
|
|
1664 | |
| 1537 | local USEFILE="${ROOT}/var/db/pkg/${PKG}/USE" |
1665 | local USEFILE="${ROOT}/var/db/pkg/${PKG}/USE" |
| 1538 | [[ ! -e ${USEFILE} ]] && return 1 |
1666 | [[ ! -e ${USEFILE} ]] && return 1 |
| 1539 | |
1667 | |
| 1540 | local USE_BUILT=$(<${USEFILE}) |
1668 | local USE_BUILT=$(<${USEFILE}) |
| 1541 | |
|
|
| 1542 | shift |
|
|
| 1543 | while [ $# -gt 0 ] ; do |
1669 | while [[ $# -gt 0 ]] ; do |
|
|
1670 | if [[ ${opt} = "-o" ]] ; then |
|
|
1671 | has $1 ${USE_BUILT} && return 0 |
|
|
1672 | else |
| 1544 | has $1 ${USE_BUILT} || return 1 |
1673 | has $1 ${USE_BUILT} || return 1 |
|
|
1674 | fi |
| 1545 | shift |
1675 | shift |
| 1546 | done |
1676 | done |
| 1547 | return 0 |
1677 | [[ ${opt} = "-a" ]] |
| 1548 | } |
1678 | } |
| 1549 | |
1679 | |
| 1550 | # Many configure scripts wrongly bail when a C++ compiler |
1680 | # Many configure scripts wrongly bail when a C++ compiler |
| 1551 | # could not be detected. #73450 |
1681 | # could not be detected. #73450 |
| 1552 | epunt_cxx() { |
1682 | epunt_cxx() { |
| 1553 | local dir=$1 |
1683 | local dir=$1 |
| 1554 | [[ -z ${dir} ]] && dir=${S} |
1684 | [[ -z ${dir} ]] && dir=${S} |
| 1555 | ebegin "Removing useless C++ checks" |
1685 | ebegin "Removing useless C++ checks" |
| … | |
… | |
| 1558 | patch -p0 "${f}" "${PORTDIR}/eclass/ELT-patches/nocxx/nocxx.patch" > /dev/null |
1688 | patch -p0 "${f}" "${PORTDIR}/eclass/ELT-patches/nocxx/nocxx.patch" > /dev/null |
| 1559 | done |
1689 | done |
| 1560 | eend 0 |
1690 | eend 0 |
| 1561 | } |
1691 | } |
| 1562 | |
1692 | |
| 1563 | # get_abi_var <VAR> [<ABI>] |
1693 | # dopamd <file> [more files] |
| 1564 | # returns the value of ${<VAR>_<ABI>} which should be set in make.defaults |
|
|
| 1565 | # |
1694 | # |
| 1566 | # This code is for testing purposes only with the sparc64-multilib ${PROFILE_ARCH} |
1695 | # 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 |
1696 | dopamd() { |
| 1568 | # it is subject to removal if a better way is worked out. |
1697 | [[ -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 | |
1698 | |
| 1596 | get_abi_CFLAGS() { get_abi_var CFLAGS $1; } |
1699 | 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 | |
1700 | |
|
|
1701 | insinto /etc/pam.d |
|
|
1702 | doins "$@" || die "failed to install $@" |
|
|
1703 | } |
|
|
1704 | # newpamd <old name> <new name> |
|
|
1705 | # |
|
|
1706 | # Install pam file <old name> as <new name> in /etc/pam.d |
|
|
1707 | newpamd() { |
|
|
1708 | [[ $# -ne 2 ]] && die "newpamd requires two arguements" |
|
|
1709 | |
|
|
1710 | use pam || return 0 |
|
|
1711 | |
|
|
1712 | insinto /etc/pam.d |
|
|
1713 | newins "$1" "$2" || die "failed to install $1 as $2" |
|
|
1714 | } |
|
|
1715 | |
|
|
1716 | # make a wrapper script ... |
|
|
1717 | # NOTE: this was originally games_make_wrapper, but I noticed other places where |
|
|
1718 | # this could be used, so I have moved it here and made it not games-specific |
|
|
1719 | # -- wolf31o2 |
|
|
1720 | # $1 == wrapper name |
|
|
1721 | # $2 == binary to run |
|
|
1722 | # $3 == directory to chdir before running binary |
|
|
1723 | # $4 == extra LD_LIBRARY_PATH's (make it : delimited) |
|
|
1724 | # $5 == path for wrapper |
|
|
1725 | make_wrapper() { |
|
|
1726 | local wrapper=$1 bin=$2 chdir=$3 libdir=$4 path=$5 |
|
|
1727 | local tmpwrapper=$(emktemp) |
|
|
1728 | cat << EOF > "${tmpwrapper}" |
|
|
1729 | #!/bin/sh |
|
|
1730 | cd "${chdir}" |
|
|
1731 | export LD_LIBRARY_PATH="\${LD_LIBRARY_PATH}:${libdir}" |
|
|
1732 | exec ${bin} "\$@" |
|
|
1733 | EOF |
|
|
1734 | chmod go+rx "${tmpwrapper}" |
|
|
1735 | if [ -n "${5}" ] |
|
|
1736 | then |
|
|
1737 | exeinto ${5} |
|
|
1738 | newexe "${tmpwrapper}" "${wrapper}" |
|
|
1739 | else |
|
|
1740 | newbin "${tmpwrapper}" "${wrapper}" |
|
|
1741 | fi |
|
|
1742 | } |