| 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.143 2005/01/26 16:19:12 ka0ttic Exp $ |
3 | # $Header: /var/cvsroot/gentoo-x86/eclass/eutils.eclass,v 1.168 2005/04/29 03:59:15 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. |
| … | |
… | |
| 65 | gen_usr_ldscript() { |
65 | gen_usr_ldscript() { |
| 66 | local libdir="$(get_libdir)" |
66 | local libdir="$(get_libdir)" |
| 67 | # Just make sure it exists |
67 | # Just make sure it exists |
| 68 | dodir /usr/${libdir} |
68 | dodir /usr/${libdir} |
| 69 | |
69 | |
|
|
70 | for lib in "${@}" ; do |
| 70 | cat > "${D}/usr/${libdir}/${1}" << END_LDSCRIPT |
71 | cat > "${D}/usr/${libdir}/${lib}" <<-END_LDSCRIPT |
| 71 | /* GNU ld script |
72 | /* GNU ld script |
| 72 | Because Gentoo have critical dynamic libraries |
73 | Since Gentoo has critical dynamic libraries |
| 73 | in /lib, and the static versions in /usr/lib, we |
74 | in /lib, and the static versions in /usr/lib, |
| 74 | need to have a "fake" dynamic lib in /usr/lib, |
75 | we need to have a "fake" dynamic lib in /usr/lib, |
| 75 | otherwise we run into linking problems. |
76 | otherwise we run into linking problems. |
| 76 | See bug #4411 on http://bugs.gentoo.org/ for |
77 | |
| 77 | more info. */ |
78 | See bug http://bugs.gentoo.org/4411 for more info. |
|
|
79 | */ |
| 78 | GROUP ( /${libdir}/${1} ) |
80 | GROUP ( /${libdir}/${lib} ) |
| 79 | END_LDSCRIPT |
81 | END_LDSCRIPT |
| 80 | fperms a+x "/usr/${libdir}/${1}" |
82 | fperms a+x "/usr/${libdir}/${lib}" |
|
|
83 | done |
| 81 | } |
84 | } |
| 82 | |
85 | |
| 83 | # 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 $* |
|
|
87 | # - only to be used by epatch() |
| 84 | # |
88 | # |
| 85 | # <azarah@gentoo.org> (11 Nov 2002) |
89 | # <azarah@gentoo.org> (11 Nov 2002) |
| 86 | # |
90 | # |
| 87 | draw_line() { |
91 | draw_line() { |
| 88 | local i=0 |
92 | local i=0 |
| … | |
… | |
| 170 | local x="" |
174 | local x="" |
| 171 | |
175 | |
| 172 | if [ "$#" -gt 1 ] |
176 | if [ "$#" -gt 1 ] |
| 173 | then |
177 | then |
| 174 | local m="" |
178 | local m="" |
| 175 | einfo "${#} patches to apply ..." |
|
|
| 176 | for m in "$@" ; do |
179 | for m in "$@" ; do |
| 177 | epatch "${m}" |
180 | epatch "${m}" |
| 178 | done |
181 | done |
| 179 | return 0 |
182 | return 0 |
| 180 | fi |
183 | fi |
| … | |
… | |
| 248 | ([ "${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}" ] || \ |
| 249 | [ "${EPATCH_FORCE}" = "yes" ]) |
252 | [ "${EPATCH_FORCE}" = "yes" ]) |
| 250 | then |
253 | then |
| 251 | local count=0 |
254 | local count=0 |
| 252 | local popts="${EPATCH_OPTS}" |
255 | local popts="${EPATCH_OPTS}" |
|
|
256 | local patchname=${x##*/} |
| 253 | |
257 | |
| 254 | if [ -n "${EPATCH_EXCLUDE}" ] |
258 | if [ -n "${EPATCH_EXCLUDE}" ] |
| 255 | then |
259 | then |
| 256 | if [ "`eval echo \$\{EPATCH_EXCLUDE/${x##*/}\}`" != "${EPATCH_EXCLUDE}" ] |
260 | if [ "${EPATCH_EXCLUDE/${patchname}}" != "${EPATCH_EXCLUDE}" ] |
| 257 | then |
261 | then |
| 258 | continue |
262 | continue |
| 259 | fi |
263 | fi |
| 260 | fi |
264 | fi |
| 261 | |
265 | |
| … | |
… | |
| 263 | then |
267 | then |
| 264 | if [ -n "${EPATCH_SINGLE_MSG}" ] |
268 | if [ -n "${EPATCH_SINGLE_MSG}" ] |
| 265 | then |
269 | then |
| 266 | einfo "${EPATCH_SINGLE_MSG}" |
270 | einfo "${EPATCH_SINGLE_MSG}" |
| 267 | else |
271 | else |
| 268 | einfo "Applying ${x##*/} ..." |
272 | einfo "Applying ${patchname} ..." |
| 269 | fi |
273 | fi |
| 270 | else |
274 | else |
| 271 | einfo " ${x##*/} ..." |
275 | einfo " ${patchname} ..." |
| 272 | fi |
276 | fi |
| 273 | |
277 | |
| 274 | echo "***** ${x##*/} *****" > ${STDERR_TARGET%/*}/${x##*/}-${STDERR_TARGET##*/} |
278 | echo "***** ${patchname} *****" > ${STDERR_TARGET%/*}/${patchname}-${STDERR_TARGET##*/} |
| 275 | echo >> ${STDERR_TARGET%/*}/${x##*/}-${STDERR_TARGET##*/} |
279 | echo >> ${STDERR_TARGET%/*}/${patchname}-${STDERR_TARGET##*/} |
| 276 | |
280 | |
| 277 | # Allow for prefix to differ ... im lazy, so shoot me :/ |
281 | # Allow for prefix to differ ... im lazy, so shoot me :/ |
| 278 | while [ "${count}" -lt 5 ] |
282 | while [ "${count}" -lt 5 ] |
| 279 | do |
283 | do |
| 280 | # Generate some useful debug info ... |
284 | # Generate some useful debug info ... |
| 281 | draw_line "***** ${x##*/} *****" >> ${STDERR_TARGET%/*}/${x##*/}-${STDERR_TARGET##*/} |
285 | draw_line "***** ${patchname} *****" >> ${STDERR_TARGET%/*}/${patchname}-${STDERR_TARGET##*/} |
| 282 | echo >> ${STDERR_TARGET%/*}/${x##*/}-${STDERR_TARGET##*/} |
286 | echo >> ${STDERR_TARGET%/*}/${patchname}-${STDERR_TARGET##*/} |
| 283 | |
287 | |
| 284 | if [ "${PATCH_SUFFIX}" != "patch" ] |
288 | if [ "${PATCH_SUFFIX}" != "patch" ] |
| 285 | then |
289 | then |
| 286 | echo -n "PIPE_COMMAND: " >> ${STDERR_TARGET%/*}/${x##*/}-${STDERR_TARGET##*/} |
290 | echo -n "PIPE_COMMAND: " >> ${STDERR_TARGET%/*}/${patchname}-${STDERR_TARGET##*/} |
| 287 | echo "${PIPE_CMD} ${x} > ${PATCH_TARGET}" >> ${STDERR_TARGET%/*}/${x##*/}-${STDERR_TARGET##*/} |
291 | echo "${PIPE_CMD} ${x} > ${PATCH_TARGET}" >> ${STDERR_TARGET%/*}/${patchname}-${STDERR_TARGET##*/} |
| 288 | else |
292 | else |
| 289 | PATCH_TARGET="${x}" |
293 | PATCH_TARGET="${x}" |
| 290 | fi |
294 | fi |
| 291 | |
295 | |
| 292 | echo -n "PATCH COMMAND: " >> ${STDERR_TARGET%/*}/${x##*/}-${STDERR_TARGET##*/} |
296 | echo -n "PATCH COMMAND: " >> ${STDERR_TARGET%/*}/${patchname}-${STDERR_TARGET##*/} |
| 293 | 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##*/} |
| 294 | |
298 | |
| 295 | echo >> ${STDERR_TARGET%/*}/${x##*/}-${STDERR_TARGET##*/} |
299 | echo >> ${STDERR_TARGET%/*}/${patchname}-${STDERR_TARGET##*/} |
| 296 | draw_line "***** ${x##*/} *****" >> ${STDERR_TARGET%/*}/${x##*/}-${STDERR_TARGET##*/} |
300 | draw_line "***** ${patchname} *****" >> ${STDERR_TARGET%/*}/${patchname}-${STDERR_TARGET##*/} |
| 297 | |
301 | |
| 298 | if [ "${PATCH_SUFFIX}" != "patch" ] |
302 | if [ "${PATCH_SUFFIX}" != "patch" ] |
| 299 | then |
303 | then |
| 300 | 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 |
| 301 | then |
305 | then |
| 302 | echo |
306 | echo |
| 303 | eerror "Could not extract patch!" |
307 | eerror "Could not extract patch!" |
| 304 | #die "Could not extract patch!" |
308 | #die "Could not extract patch!" |
| 305 | count=5 |
309 | count=5 |
| 306 | break |
310 | break |
| 307 | fi |
311 | fi |
| 308 | fi |
312 | fi |
| 309 | |
313 | |
| 310 | 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 |
| 311 | then |
315 | then |
| 312 | draw_line "***** ${x##*/} *****" > ${STDERR_TARGET%/*}/${x##*/}-${STDERR_TARGET##*/}.real |
316 | draw_line "***** ${patchname} *****" > ${STDERR_TARGET%/*}/${patchname}-${STDERR_TARGET##*/}.real |
| 313 | echo >> ${STDERR_TARGET%/*}/${x##*/}-${STDERR_TARGET##*/}.real |
317 | echo >> ${STDERR_TARGET%/*}/${patchname}-${STDERR_TARGET##*/}.real |
| 314 | echo "ACTUALLY APPLYING ${x##*/} ..." >> ${STDERR_TARGET%/*}/${x##*/}-${STDERR_TARGET##*/}.real |
318 | echo "ACTUALLY APPLYING ${patchname} ..." >> ${STDERR_TARGET%/*}/${patchname}-${STDERR_TARGET##*/}.real |
| 315 | echo >> ${STDERR_TARGET%/*}/${x##*/}-${STDERR_TARGET##*/}.real |
319 | echo >> ${STDERR_TARGET%/*}/${patchname}-${STDERR_TARGET##*/}.real |
| 316 | draw_line "***** ${x##*/} *****" >> ${STDERR_TARGET%/*}/${x##*/}-${STDERR_TARGET##*/}.real |
320 | draw_line "***** ${patchname} *****" >> ${STDERR_TARGET%/*}/${patchname}-${STDERR_TARGET##*/}.real |
| 317 | |
321 | |
| 318 | 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 |
| 319 | |
323 | |
| 320 | if [ "$?" -ne 0 ] |
324 | if [ "$?" -ne 0 ] |
| 321 | then |
325 | then |
| 322 | 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##*/} |
| 323 | echo |
327 | echo |
| 324 | eerror "A dry-run of patch command succeeded, but actually" |
328 | eerror "A dry-run of patch command succeeded, but actually" |
| 325 | eerror "applying the patch failed!" |
329 | eerror "applying the patch failed!" |
| 326 | #die "Real world sux compared to the dreamworld!" |
330 | #die "Real world sux compared to the dreamworld!" |
| 327 | count=5 |
331 | count=5 |
| 328 | fi |
332 | fi |
| 329 | |
333 | |
| 330 | rm -f ${STDERR_TARGET%/*}/${x##*/}-${STDERR_TARGET##*/}.real |
334 | rm -f ${STDERR_TARGET%/*}/${patchname}-${STDERR_TARGET##*/}.real |
| 331 | |
335 | |
| 332 | break |
336 | break |
| 333 | fi |
337 | fi |
| 334 | |
338 | |
| 335 | count=$((count + 1)) |
339 | count=$((count + 1)) |
| … | |
… | |
| 341 | fi |
345 | fi |
| 342 | |
346 | |
| 343 | if [ "${count}" -eq 5 ] |
347 | if [ "${count}" -eq 5 ] |
| 344 | then |
348 | then |
| 345 | echo |
349 | echo |
| 346 | eerror "Failed Patch: ${x##*/}!" |
350 | eerror "Failed Patch: ${patchname} !" |
|
|
351 | eerror " ( ${PATCH_TARGET} )" |
| 347 | eerror |
352 | eerror |
| 348 | eerror "Include in your bugreport the contents of:" |
353 | eerror "Include in your bugreport the contents of:" |
| 349 | eerror |
354 | eerror |
| 350 | eerror " ${STDERR_TARGET%/*}/${x##*/}-${STDERR_TARGET##*/}" |
355 | eerror " ${STDERR_TARGET%/*}/${patchname}-${STDERR_TARGET##*/}" |
| 351 | echo |
356 | echo |
| 352 | die "Failed Patch: ${x##*/}!" |
357 | die "Failed Patch: ${patchname}!" |
| 353 | fi |
358 | fi |
| 354 | |
359 | |
| 355 | rm -f ${STDERR_TARGET%/*}/${x##*/}-${STDERR_TARGET##*/} |
360 | rm -f ${STDERR_TARGET%/*}/${patchname}-${STDERR_TARGET##*/} |
| 356 | |
361 | |
| 357 | eend 0 |
362 | eend 0 |
| 358 | fi |
363 | fi |
| 359 | done |
364 | done |
| 360 | if [ "${SINGLE_PATCH}" = "no" ] |
365 | if [ "${SINGLE_PATCH}" = "no" ] |
| … | |
… | |
| 864 | # name: the name that will show up in the menu |
869 | # name: the name that will show up in the menu |
| 865 | # icon: give your little like a pretty little icon ... |
870 | # icon: give your little like a pretty little icon ... |
| 866 | # this can be relative (to /usr/share/pixmaps) or |
871 | # this can be relative (to /usr/share/pixmaps) or |
| 867 | # a full path to an icon |
872 | # a full path to an icon |
| 868 | # type: what kind of application is this ? for categories: |
873 | # type: what kind of application is this ? for categories: |
| 869 | # http://www.freedesktop.org/standards/menu-spec/ |
874 | # http://www.freedesktop.org/wiki/Standards_2fmenu_2dspec |
| 870 | # path: if your app needs to startup in a specific dir |
875 | # path: if your app needs to startup in a specific dir |
| 871 | make_desktop_entry() { |
876 | make_desktop_entry() { |
| 872 | [ -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 |
| 873 | |
878 | |
| 874 | local exec="${1}" |
879 | local exec=${1} |
| 875 | local name="${2:-${PN}}" |
880 | local name=${2:-${PN}} |
| 876 | local icon="${3:-${PN}.png}" |
881 | local icon=${3:-${PN}.png} |
| 877 | local type="${4}" |
882 | local type=${4} |
| 878 | local subdir="${6}" |
883 | local path=${5} |
| 879 | local path="${5:-${GAMES_BINDIR}}" |
884 | |
| 880 | if [ -z "${type}" ] |
885 | if [[ -z ${type} ]] ; then |
| 881 | then |
886 | local catmaj=${CATEGORY%%-*} |
| 882 | case ${CATEGORY} in |
887 | local catmin=${CATEGORY##*-} |
| 883 | "app-emulation") |
888 | case ${catmaj} in |
| 884 | type=Emulator |
889 | app) |
| 885 | 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 |
| 886 | ;; |
903 | ;; |
| 887 | "games-"*) |
904 | |
| 888 | type=Game |
905 | dev) |
| 889 | subdir="Games" |
906 | type="Development" |
| 890 | ;; |
907 | ;; |
| 891 | "net-"*) |
908 | |
| 892 | type=Network |
909 | games) |
| 893 | 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}" |
| 894 | ;; |
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 | |
| 895 | *) |
981 | *) |
| 896 | type= |
982 | type= |
| 897 | subdir= |
|
|
| 898 | ;; |
983 | ;; |
| 899 | esac |
984 | esac |
| 900 | fi |
985 | fi |
|
|
986 | |
| 901 | local desktop="${T}/${exec}.desktop" |
987 | local desktop=${T}/${exec%% *}-${P}.desktop |
| 902 | |
988 | |
| 903 | echo "[Desktop Entry] |
989 | echo "[Desktop Entry] |
| 904 | Encoding=UTF-8 |
990 | Encoding=UTF-8 |
| 905 | Version=0.9.2 |
991 | Version=0.9.2 |
| 906 | Name=${name} |
992 | Name=${name} |
| … | |
… | |
| 922 | # make_desktop_entry(<title>, <command>) |
1008 | # make_desktop_entry(<title>, <command>) |
| 923 | # title: File to execute to start the Window Manager |
1009 | # title: File to execute to start the Window Manager |
| 924 | # command: Name of the Window Manager |
1010 | # command: Name of the Window Manager |
| 925 | |
1011 | |
| 926 | make_session_desktop() { |
1012 | make_session_desktop() { |
| 927 | |
|
|
| 928 | [ -z "$1" ] && eerror "make_session_desktop: You must specify the title" && return 1 |
1013 | [[ -z $1 ]] && eerror "make_session_desktop: You must specify the title" && return 1 |
| 929 | [ -z "$2" ] && eerror "make_session_desktop: You must specify the command" && return 1 |
1014 | [[ -z $2 ]] && eerror "make_session_desktop: You must specify the command" && return 1 |
| 930 | |
1015 | |
| 931 | local title="${1}" |
1016 | local title=$1 |
| 932 | local command="${2}" |
1017 | local command=$2 |
| 933 | local desktop="${T}/${wm}.desktop" |
1018 | local desktop=${T}/${wm}.desktop |
| 934 | |
1019 | |
| 935 | echo "[Desktop Entry] |
1020 | echo "[Desktop Entry] |
| 936 | Encoding=UTF-8 |
1021 | Encoding=UTF-8 |
| 937 | Name=${title} |
1022 | Name=${title} |
| 938 | Comment=This session logs you into ${title} |
1023 | Comment=This session logs you into ${title} |
| … | |
… | |
| 940 | TryExec=${command} |
1025 | TryExec=${command} |
| 941 | Type=Application" > "${desktop}" |
1026 | Type=Application" > "${desktop}" |
| 942 | |
1027 | |
| 943 | insinto /usr/share/xsessions |
1028 | insinto /usr/share/xsessions |
| 944 | doins "${desktop}" |
1029 | doins "${desktop}" |
| 945 | |
|
|
| 946 | return 0 |
|
|
| 947 | } |
1030 | } |
| 948 | |
1031 | |
| 949 | domenu() { |
1032 | domenu() { |
| 950 | local i |
1033 | local i j |
| 951 | local j |
|
|
| 952 | insinto /usr/share/applications |
1034 | insinto /usr/share/applications |
| 953 | for i in ${@} |
1035 | for i in "$@" ; do |
| 954 | do |
|
|
| 955 | if [ -f "${i}" ]; |
1036 | if [[ -f ${i} ]] ; then |
| 956 | then |
|
|
| 957 | doins ${i} |
1037 | doins "${i}" |
| 958 | elif [ -d "${i}" ]; |
1038 | elif [[ -d ${i} ]] ; then |
| 959 | then |
|
|
| 960 | for j in ${i}/*.desktop |
1039 | for j in "${i}"/*.desktop ; do |
| 961 | do |
|
|
| 962 | doins ${j} |
1040 | doins "${j}" |
| 963 | done |
1041 | done |
| 964 | fi |
1042 | fi |
| 965 | done |
1043 | done |
| 966 | } |
1044 | } |
|
|
1045 | newmenu() { |
|
|
1046 | insinto /usr/share/applications |
|
|
1047 | newins "$1" "$2" |
|
|
1048 | } |
| 967 | |
1049 | |
| 968 | doicon() { |
1050 | doicon() { |
| 969 | local i |
1051 | local i j |
| 970 | local j |
|
|
| 971 | insinto /usr/share/pixmaps |
1052 | insinto /usr/share/pixmaps |
| 972 | for i in ${@} |
1053 | for i in "$@" ; do |
| 973 | do |
|
|
| 974 | if [ -f "${i}" ]; |
1054 | if [[ -f ${i} ]] ; then |
| 975 | then |
|
|
| 976 | doins ${i} |
1055 | doins "${i}" |
| 977 | elif [ -d "${i}" ]; |
1056 | elif [[ -d ${i} ]] ; then |
| 978 | then |
|
|
| 979 | for j in ${i}/*.png |
1057 | for j in "${i}"/*.png ; do |
| 980 | do |
|
|
| 981 | doins ${j} |
1058 | doins "${j}" |
| 982 | done |
1059 | done |
| 983 | fi |
1060 | fi |
| 984 | done |
1061 | done |
|
|
1062 | } |
|
|
1063 | newicon() { |
|
|
1064 | insinto /usr/share/pixmaps |
|
|
1065 | newins "$1" "$2" |
| 985 | } |
1066 | } |
| 986 | |
1067 | |
| 987 | ############################################################## |
1068 | ############################################################## |
| 988 | # END: Handle .desktop files and menu entries # |
1069 | # END: Handle .desktop files and menu entries # |
| 989 | ############################################################## |
1070 | ############################################################## |
| … | |
… | |
| 1434 | # directories and uses the intersection of the lists. |
1515 | # directories and uses the intersection of the lists. |
| 1435 | # The -u builds a list of po files found in all the |
1516 | # The -u builds a list of po files found in all the |
| 1436 | # directories and uses the union of the lists. |
1517 | # directories and uses the union of the lists. |
| 1437 | strip-linguas() { |
1518 | strip-linguas() { |
| 1438 | local ls newls |
1519 | local ls newls |
| 1439 | if [ "$1" == "-i" ] || [ "$1" == "-u" ] ; then |
1520 | if [[ $1 == "-i" ]] || [[ $1 == "-u" ]] ; then |
| 1440 | local op="$1"; shift |
1521 | local op=$1; shift |
| 1441 | ls=" $(find "$1" -name '*.po' -printf '%f ') "; shift |
1522 | ls=" $(find "$1" -name '*.po' -printf '%f ') "; shift |
| 1442 | local d f |
1523 | local d f |
| 1443 | for d in "$@" ; do |
1524 | for d in "$@" ; do |
| 1444 | if [ "${op}" == "-u" ] ; then |
1525 | if [[ ${op} == "-u" ]] ; then |
| 1445 | newls="${ls}" |
1526 | newls=${ls} |
| 1446 | else |
1527 | else |
| 1447 | newls="" |
1528 | newls="" |
| 1448 | fi |
1529 | fi |
| 1449 | for f in $(find "$d" -name '*.po' -printf '%f ') ; do |
1530 | for f in $(find "$d" -name '*.po' -printf '%f ') ; do |
| 1450 | if [ "${op}" == "-i" ] ; then |
1531 | if [[ ${op} == "-i" ]] ; then |
| 1451 | [ "${ls/ ${f} /}" != "${ls}" ] && newls="${newls} ${f}" |
1532 | [[ ${ls/ ${f} /} != ${ls} ]] && newls="${newls} ${f}" |
| 1452 | else |
1533 | else |
| 1453 | [ "${ls/ ${f} /}" == "${ls}" ] && newls="${newls} ${f}" |
1534 | [[ ${ls/ ${f} /} == ${ls} ]] && newls="${newls} ${f}" |
| 1454 | fi |
1535 | fi |
| 1455 | done |
1536 | done |
| 1456 | ls="${newls}" |
1537 | ls=${newls} |
| 1457 | done |
1538 | done |
| 1458 | ls="${ls//.po}" |
1539 | ls=${ls//.po} |
| 1459 | else |
1540 | else |
| 1460 | ls="$@" |
1541 | ls=$@ |
| 1461 | fi |
1542 | fi |
| 1462 | |
1543 | |
| 1463 | ls=" ${ls} " |
1544 | ls=" ${ls} " |
| 1464 | newls="" |
1545 | newls="" |
| 1465 | for f in ${LINGUAS} ; do |
1546 | for f in ${LINGUAS} ; do |
| 1466 | if [ "${ls/ ${f} /}" != "${ls}" ] ; then |
1547 | if [[ ${ls/ ${f} /} != ${ls} ]] ; then |
| 1467 | newls="${newls} ${f}" |
1548 | newls="${newls} ${f}" |
| 1468 | else |
1549 | else |
| 1469 | ewarn "Sorry, but ${PN} does not support the ${f} LINGUA" |
1550 | ewarn "Sorry, but ${PN} does not support the ${f} LINGUA" |
| 1470 | fi |
1551 | fi |
| 1471 | done |
1552 | done |
| 1472 | if [ -z "${newls}" ] ; then |
1553 | if [[ -z ${newls} ]] ; then |
| 1473 | unset LINGUAS |
1554 | export LINGUAS="" |
| 1474 | else |
1555 | else |
| 1475 | export LINGUAS="${newls}" |
1556 | export LINGUAS=${newls:1} |
| 1476 | fi |
1557 | fi |
| 1477 | } |
1558 | } |
| 1478 | |
1559 | |
| 1479 | # moved from kernel.eclass since they are generally useful outside of |
1560 | # moved from kernel.eclass since they are generally useful outside of |
| 1480 | # kernel.eclass -iggy (20041002) |
1561 | # kernel.eclass -iggy (20041002) |
| … | |
… | |
| 1602 | patch -p0 "${f}" "${PORTDIR}/eclass/ELT-patches/nocxx/nocxx.patch" > /dev/null |
1683 | patch -p0 "${f}" "${PORTDIR}/eclass/ELT-patches/nocxx/nocxx.patch" > /dev/null |
| 1603 | done |
1684 | done |
| 1604 | eend 0 |
1685 | eend 0 |
| 1605 | } |
1686 | } |
| 1606 | |
1687 | |
| 1607 | # dopamd [ file ] [ new file ] |
1688 | # dopamd <file> [more files] |
| 1608 | # |
1689 | # |
| 1609 | # Install pam auth config file in /etc/pam.d |
1690 | # Install pam auth config file in /etc/pam.d |
| 1610 | # |
|
|
| 1611 | # The first argument, 'file' is required. Install as 'new file', if |
|
|
| 1612 | # specified. |
|
|
| 1613 | |
|
|
| 1614 | dopamd() { |
1691 | dopamd() { |
| 1615 | local pamd="$1" newpamd="${2:-$1}" |
|
|
| 1616 | [[ -z "$1" ]] && die "dopamd requires at least one argument." |
1692 | [[ -z $1 ]] && die "dopamd requires at least one argument" |
| 1617 | |
1693 | |
| 1618 | use pam || return 0 |
1694 | use pam || return 0 |
| 1619 | |
1695 | |
| 1620 | insinto /etc/pam.d |
1696 | insinto /etc/pam.d |
| 1621 | # these are the default doins options, but be explicit just in case |
1697 | doins "$@" || die "failed to install $@" |
| 1622 | insopts -m 0644 -o root -g root |
|
|
| 1623 | newins ${pamd} ${newpamd} || die "failed to install ${newpamd}" |
|
|
| 1624 | } |
1698 | } |
|
|
1699 | # newpamd <old name> <new name> |
|
|
1700 | # |
|
|
1701 | # Install pam file <old name> as <new name> in /etc/pam.d |
|
|
1702 | newpamd() { |
|
|
1703 | [[ $# -ne 2 ]] && die "newpamd requires two arguements" |
|
|
1704 | |
|
|
1705 | use pam || return 0 |
|
|
1706 | |
|
|
1707 | insinto /etc/pam.d |
|
|
1708 | newins "$1" "$2" || die "failed to install $1 as $2" |
|
|
1709 | } |
|
|
1710 | |
|
|
1711 | # make a wrapper script ... |
|
|
1712 | # NOTE: this was originally games_make_wrapper, but I noticed other places where |
|
|
1713 | # this could be used, so I have moved it here and made it not games-specific |
|
|
1714 | # -- wolf31o2 |
|
|
1715 | # $1 == wrapper name |
|
|
1716 | # $2 == binary to run |
|
|
1717 | # $3 == directory to chdir before running binary |
|
|
1718 | # $4 == extra LD_LIBRARY_PATH's (make it : delimited) |
|
|
1719 | # $5 == path for wrapper |
|
|
1720 | make_wrapper() { |
|
|
1721 | local wrapper=$1 bin=$2 chdir=$3 libdir=$4 path=$5 |
|
|
1722 | local tmpwrapper=$(emktemp) |
|
|
1723 | cat << EOF > "${tmpwrapper}" |
|
|
1724 | #!/bin/sh |
|
|
1725 | cd "${chdir}" |
|
|
1726 | export LD_LIBRARY_PATH="\${LD_LIBRARY_PATH}:${libdir}" |
|
|
1727 | exec ${bin} "\$@" |
|
|
1728 | EOF |
|
|
1729 | chmod go+rx "${tmpwrapper}" |
|
|
1730 | if [ -n "${5}" ] |
|
|
1731 | then |
|
|
1732 | exeinto ${5} |
|
|
1733 | newexe "${tmpwrapper}" "${wrapper}" |
|
|
1734 | else |
|
|
1735 | newbin "${tmpwrapper}" "${wrapper}" |
|
|
1736 | fi |
|
|
1737 | } |