home *** CD-ROM | disk | FTP | other *** search
/ Personal Computer World 2007 September / PCWSEP07.iso / Software / Linux / Linux Mint 3.0 Light / LinuxMint-3.0-Light.iso / casper / filesystem.squashfs / usr / bin / tomboy < prev    next >
Encoding:
Text File  |  2007-04-10  |  545 b   |  22 lines

  1. #!/bin/sh
  2.  
  3. if [ "x$PWD" = "x/build/buildd/tomboy-0.6.3/Tomboy" ] ; then
  4.     echo "*** Running uninstalled Tomboy.exe ***"
  5.  
  6.     export LD_LIBRARY_PATH="../libtomboy/.libs:$LD_LIBRARY_PATH"
  7.     export TOMBOY_WRAPPER_PATH="$PWD/tomboy"
  8.  
  9.     THIS_EXE="--debug ./Tomboy.exe"
  10. else
  11.     export LD_LIBRARY_PATH="/usr/lib/tomboy:$LD_LIBRARY_PATH"
  12.     export TOMBOY_WRAPPER_PATH="/usr/bin/tomboy"
  13.  
  14.     THIS_EXE="/usr/lib/tomboy/Tomboy.exe"
  15. fi
  16.  
  17. if [ -n "" ]; then
  18.     export MONO_GAC_PREFIX=":$MONO_GAC_PREFIX"
  19. fi
  20.  
  21. exec mono $MONO_EXTRA_ARGS $THIS_EXE "$@"
  22.