Advertisement
Guest User

Untitled

a guest
Nov 19th, 2014
188
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.27 KB | None | 0 0
  1. #!/bin/sh
  2. #
  3. # ut2004 startup script
  4. #
  5.  
  6. # Function to find the real directory a program resides in.
  7. # Feb. 17, 2000 - Sam Lantinga, Loki Entertainment Software
  8. FindPath()
  9. {
  10. fullpath="`echo $1 | grep /`"
  11. if [ "$fullpath" = "" ]; then
  12. oIFS="$IFS"
  13. IFS=:
  14. for path in $PATH
  15. do if [ -x "$path/$1" ]; then
  16. if [ "$path" = "" ]; then
  17. path="."
  18. fi
  19. fullpath="$path/$1"
  20. break
  21. fi
  22. done
  23. IFS="$oIFS"
  24. fi
  25. if [ "$fullpath" = "" ]; then
  26. fullpath="$1"
  27. fi
  28.  
  29. # Is the sed/ls magic portable?
  30. if [ -L "$fullpath" ]; then
  31. #fullpath="`ls -l "$fullpath" | awk '{print $11}'`"
  32. fullpath=`ls -l "$fullpath" |sed -e 's/.* -> //' |sed -e 's/\*//'`
  33. fi
  34. dirname $fullpath
  35. }
  36.  
  37. # Set the home if not already set.
  38. if [ "${UT2004_DATA_PATH}" = "" ]; then
  39. UT2004_DATA_PATH="`FindPath $0`/System"
  40. fi
  41.  
  42. LD_LIBRARY_PATH=.:${UT2004_DATA_PATH}:${LD_LIBRARY_PATH}
  43. export LD_LIBRARY_PATH
  44.  
  45. # Let's boogie!
  46. if [ -x "${UT2004_DATA_PATH}/ut2004-bin" ]
  47. then
  48. cd "${UT2004_DATA_PATH}/"
  49. exec "./ut2004-bin" $*
  50. fi
  51. echo "Couldn't run UT2004 (ut2004-bin). Is UT2004_DATA_PATH set?"
  52. exit 1
  53.  
  54. # end of ut2004 ...
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement