[GRASS-SVN] r30066 - grass/branches/releasebranch_6_3/lib/init

svn_grass at osgeo.org svn_grass at osgeo.org
Sun Feb 10 14:30:14 EST 2008


Author: neteler
Date: 2008-02-10 14:30:14 -0500 (Sun, 10 Feb 2008)
New Revision: 30066

Modified:
   grass/branches/releasebranch_6_3/lib/init/grass-xterm-wrapper
Log:
Revert bogus Terminal.app changes; Add missing quotes around variable substitutions (merge form HEAD)

Modified: grass/branches/releasebranch_6_3/lib/init/grass-xterm-wrapper
===================================================================
--- grass/branches/releasebranch_6_3/lib/init/grass-xterm-wrapper	2008-02-10 19:21:39 UTC (rev 30065)
+++ grass/branches/releasebranch_6_3/lib/init/grass-xterm-wrapper	2008-02-10 19:30:14 UTC (rev 30066)
@@ -1,90 +1,9 @@
 #!/bin/sh
-# script to wrap xterm
-# handles OSX Terminal as a special emulated case
+# script to wrap xterm 
 
-SYSTEM=`uname -s`
-case $SYSTEM in
-Darwin*)
-	MACOSX=1
-	;;
-esac
-
 if [ -z "$GRASS_XTERM" ] ; then
-    if [ "$MACOSX" ] ; then
-        GRASS_XTERM=Terminal.app
-    else
-        GRASS_XTERM=xterm
-    fi
+   GRASS_XTERM=xterm
 fi
 
-case $GRASS_XTERM in
-*xterm)
-    # the basic way or on other platform than OSX - run command
-    exec $GRASS_XTERM "$@"
-    ;;
-*Terminal.app)
-    # manually transfer the necessary env vars
-    TMPSCRIPT="/tmp/grassxterm_$$"
-    touch "$TMPSCRIPT.sh"
-    chmod +x "$TMPSCRIPT.sh"
-    echo "#!/bin/sh" > "$TMPSCRIPT.sh"
-    
-    echo "DISPLAY=$DISPLAY" >> "$TMPSCRIPT.sh"
-    echo "PATH=\"$PATH\"" >> "$TMPSCRIPT.sh"
-    echo "GIS_LOCK=\"$GIS_LOCK\"" >> "$TMPSCRIPT.sh"
-    echo "GISRC=\"$GISRC\"" >> "$TMPSCRIPT.sh"
-    echo "GISBASE=\"$GISBASE\"" >> "$TMPSCRIPT.sh"
-    echo "GRASS_VERSION=\"$GRASS_VERSION\"" >> "$TMPSCRIPT.sh"
-    echo "GRASS_PAGER=$GRASS_PAGER" >> "$TMPSCRIPT.sh"
-    echo "DYLD_LIBRARY_PATH=\"$DYLD_LIBRARY_PATH\"" >> "$TMPSCRIPT.sh"
-    echo "GRASS_LD_LIBRARY_PATH=\"$GRASS_LD_LIBRARY_PATH\"" >> "$TMPSCRIPT.sh"
-    echo "GRASS_WISH=\"$GRASS_WISH\"" >> "$TMPSCRIPT.sh"
-    echo "GRASS_TCLSH=\"$GRASS_TCLSH\"" >> "$TMPSCRIPT.sh"
-    echo "GRASS_HTML_BROWSER=\"$GRASS_HTML_BROWSER\"" >> "$TMPSCRIPT.sh"
-    echo "GRASS_HTML_BROWSER_MACOSX=\"$GRASS_HTML_BROWSER_MACOSX\"" >> "$TMPSCRIPT.sh"
-    echo "export DISPLAY PATH GIS_LOCK GISRC GISBASE GRASS_VERSION GRASS_PAGER DYLD_LIBRARY_PATH GRASS_LD_LIBRARY_PATH GRASS_WISH GRASS_TCLSH GRASS_HTML_BROWSER GRASS_HTML_BROWSER_MACOSX" >> "$TMPSCRIPT.sh"
-    if [ "$GRASS_ADDON_PATH" ] ; then
-        echo "GRASS_ADDON_PATH=\"$GRASS_ADDON_PATH\"" >> "$TMPSCRIPT.sh"
-        echo "export GRASS_ADDON_PATH" >> "$TMPSCRIPT.sh"
-    fi
-    if [ "$TCL_LIBRARY" ] ; then
-        echo "TCL_LIBRARY=\"$TCL_LIBRARY\"" >> "$TMPSCRIPT.sh"
-        echo "export TCL_LIBRARY" >> "$TMPSCRIPT.sh"
-    fi
-    if [ "$TK_LIBRARY" ] ; then
-        echo "TK_LIBRARY=\"$TK_LIBRARY\"" >> "$TMPSCRIPT.sh"
-        echo "export TK_LIBRARY" >> "$TMPSCRIPT.sh"
-    fi
-
-    # get command, ignore all other xterm flags
-    while true ; do
-        if [ "$1" = "-e" ] ; then break ; fi
-        shift
-    done
-    shift
-    # and add it to end of script
-    echo "$@" >> "$TMPSCRIPT.sh"
-
-    # execute
-    # save current active app/window, return to it when script finishes.
-    osascript - <<EOF
---tell application "System Events"
---	set save_app to item 1 of (get name of processes whose frontmost is true)
---end tell
-tell application "Terminal"
-	activate
-	-- start new window with env/cmd script
-	do script "$TMPSCRIPT.sh; exit"
-	tell window 1
-		-- wait for it to finish
-		repeat while (processes is not equal to {})
-			delay 1
-		end repeat
-		close
-	end tell
-end tell
---tell application save_app to activate
-EOF
-    rm -f "$TMPSCRIPT.sh"
-    ;;
-esac
+# run command
+exec "$GRASS_XTERM" "$@"



More information about the grass-commit mailing list