DraftSight launcher for linux 64bits systems

I modified a bit the DraftSight launcher so it behaves correctly on a 64bit system and adopts your current gtk theme. You must of course take care of having the correct gtk engines in /usr/lib32 (usually by simply installing ia32-libs-gtk).

#!/bin/shBINDIR="/opt/dassault-systemes/draftsight/bin"BASENAME="DraftSight"export GTK_PATH=/usr/lib32/gtk-2.0/export LD_LIBRARY_PATH=$LD_LIBRARY_PATH:"$BINDIR:$BINDIR/../lib"export QT_PLUGIN_PATH="$BINDIR:$BINDIR/../plugins"if [ -d /usr/lib32/gconv ]; then  export GCONV_PATH=/usr/lib32/gconvfiBINARY=$BINDIR/"$BASENAME.bin"cd "$BINDIR"if [ "$#" -gt 0 ]; then    "$BINARY" -style gtk "$@"else    "$BINARY" -style gtkfi