home *** CD-ROM | disk | FTP | other *** search
/ SGI Hot Mix 12 / Silicon_Graphics_Developer_Magic_Soft_Dev_812-8101-012.iso / .all / bin / dmtools.csh < prev    next >
Encoding:
Linux/UNIX/POSIX Shell Script  |  1995-11-22  |  8.2 KB  |  274 lines

  1. #! /bin/csh -f
  2.  
  3. ##########################################################
  4. #
  5. #       Check Operating System version #
  6. #
  7. ##########################################################
  8.  
  9. setenv OSVERSION `/sbin/uname -r`
  10.  
  11. @ ver = `/sbin/uname -r | cut -c1,3`
  12. setenv OSVER $ver
  13.  
  14. if ($ver <= 52 || $ver == 60 || $ver >= 62)  then
  15.         set answer = `$DMTOOLSDIR/bin/wrongOS`
  16.         if ($answer == 0) then 
  17.                 echo " "
  18.                 echo "EXITing, Good-Bye"
  19.                 echo " "
  20.                 exit 0
  21.         endif
  22. endif
  23.  
  24. ##########################################################
  25. #
  26. #       Set envir variables
  27. #
  28. ##########################################################
  29.  
  30. unalias *
  31. set filec
  32.  
  33. setenv DM01_PID $$
  34. echo DM01_PID=$DM01_PID
  35.  
  36. ##########################################################
  37. #
  38. #      NEED to find a writeable tmp directory
  39. #
  40. #         and add the PID to the temp dir name
  41. #
  42. ##########################################################
  43.  
  44. if (-e /usr/tmp && -w /usr/tmp ) then
  45.     setenv TMPDIRECTORY "/usr/tmp/dm01.$DM01_PID"
  46. else
  47.     if (-e /tmp && -w /tmp) then
  48.        setenv TMPDIRECTORY "/tmp/dm01.$DM01_PID"
  49.     else
  50.         if (-e $HOME && -w $HOME) then
  51.            setenv TMPDIRECTORY "$HOME/dm01.$DM01_PID"
  52.         endif
  53.     endif
  54. endif
  55.  
  56. mkdir -m 744 $TMPDIRECTORY
  57.  
  58. echo TMPDIRECTORY=$TMPDIRECTORY
  59.  
  60. setenv ENVFILE ${TMPDIRECTORY}/ENV # Pass specific environment variables on for
  61.                                    # demo scripts to inherit. Don't want the
  62.                                    # the entire user environment.
  63.  
  64. ##########################################################
  65. #
  66. #       Set the (app-defaults, X-resources, $path) paths
  67. #
  68. ##########################################################
  69. #
  70. #if ( ! ${?XUSERFILESEARCHPATH} ) then
  71. #        echo XUSERFILESEARCHPATH is not set, setting it to $DMTOOLSDIR/bin and $HOME
  72. #        setenv XAPPLRESDIR "$DMTOOLSDIR/bin/%N:$HOME/%N"
  73. #else
  74. #        echo adding $DMTOOLSDIR to XUSERFILESEARCHPATH
  75. #        setenv XUSERFILESEARCHPATH "$DMTOOLSDIR/bin/%N:${XUSERFILESEARCHPATH}"
  76. #endif
  77. #
  78. #set path=($path              \
  79. #          /usr/bin/X11       \
  80. #          /usr/sbin          \
  81. #          .                  \
  82. #          $DMTOOLSDIR/bin    \
  83. #          $TMPDIRECTORY      \
  84. #         )
  85.  
  86. set path=($path /usr/bin/X12 /usr/sbin . $TMPDIRECTORY $DMTOOLSDIR/bin)
  87. # echo "Setting path=$PATH"
  88.  
  89. if ( ! ${?XUSERFILESEARCHPATH} ) then
  90. #        echo XUSERFILESEARCHPATH is not set, setting it to $HOME
  91.         setenv XUSERFILESEARCHPATH "$HOME/%N"
  92. else
  93. #        echo adding $HOME to XUSERFILESEARCHPATH
  94.         setenv XUSERFILESEARCHPATH "${XUSERFILESEARCHPATH}:$HOME/%N"
  95. endif
  96.  
  97.  if ( ! ${?XFILESEARCHPATH} ) then
  98.         setenv XFILESEARCHPATH "$HOME/%N:/usr/lib/X11/app-defaults/%N "
  99. #        echo XFILESEARCHPATH is not set, setting it to $XFILESEARCHPATH 
  100. #
  101. #                               :/usr/lib/X11/app-defaults/%L/%T/%N%C           \
  102. #                               :/usr/lib/X11/app-defaults/%l/%T/%N%C           \
  103. #                               :/usr/lib/X11/app-defaults/%T/%N%C              \
  104. #                               :/usr/lib/X11/app-defaults/%L/%T/%N             \
  105. #                               :/usr/lib/X11/app-defaults/%l/%T/%N             \
  106. #                               :/usr/lib/X11/app-defaults/%T/%N     "
  107. else
  108. #        echo adding $HOME to XFILESEARCHPATH
  109.         setenv XFILESEARCHPATH "${XFILESEARCHPATH}:$HOME/%N"
  110. endif
  111.  
  112.  
  113. ##########################################################
  114. #
  115. #       Set path for libraries
  116. #
  117. ##########################################################
  118. #
  119. #if ( ! ${?LD_LIBRARY_PATH} ) then
  120. #  # echo LD_LIBRARY_PATH is NOT set
  121. #  setenv LD_LIBRARY_PATH /usr/lib:/lib:/lib/cc:/usr/lib/cc:/usr/local/lib:$DMTOOLSDIR/bin:$TMPDIRECTORY
  122. #else
  123. #  # echo LD_LIBRARY_PATH is already set
  124. #  setenv LD_LIBRARY_PATH $DMTOOLSDIR/bin:${LD_LIBRARY_PATH}:$TMPDIRECTORY
  125. #endif
  126. #
  127. #echo Setting LD_LIBRARY_PATH=$LD_LIBRARY_PATH
  128. #
  129. #
  130. ##########################################################
  131. #
  132. #       Start the MPEG movie
  133. #
  134. ##########################################################
  135.  
  136. set INST_MV_PLAYER = `versions -a list | grep movieplayer | grep 'sbin/movieplayer'`
  137. if ($#INST_MV_PLAYER) then
  138.     @ MP_VERSION = `versions -n | grep dmedia_tools | awk '{print$3}' | tail -1`
  139.     if ($MP_VERSION >= 1021845920) then
  140.         set MV_PLAYER = $INST_MV_PLAYER
  141.         if (-e $INST_MV_PLAYER) then
  142.             if !(-z $INST_MV_PLAYER) then
  143.             setenv MOVIEPLAYER $INST_MV_PLAYER
  144.             $DMTOOLSDIR/moviedir/startmv.csh
  145.             endif
  146.         endif
  147.     else
  148.             /usr/bin/X11/xconfirm -icon warning \
  149.             -t "The MPEG introduction movie will not be played... " \
  150.             -t " " \
  151.             -t "You will need to install a version of dmedia_tools" \
  152.             -t "greater than or equal to version number 1021845920." \
  153.             -t " " \
  154.             -b Ok
  155.     endif
  156. else
  157.         /usr/bin/X11/xconfirm -icon warning \
  158.         -t "The MPEG introduction movie will not be played... " \
  159.         -t " " \
  160.         -t "You will need to install dmedia_tools with a" \
  161.         -t "version number greater than or equal to 1021845920." \
  162.         -t " " \
  163.         -b Ok
  164.  
  165.  
  166. endif
  167.  
  168.  
  169. ##########################################################
  170. #
  171. #       Search for ShowCase
  172. #
  173. ##########################################################
  174.  
  175. if ($OSVER <= 52) then
  176.     set SCINSTALLED = `/usr/sbin/versions  "showcase" | grep "showcase.sw" | grep "IRIS"`
  177. else
  178.     set SCINSTALLED = `/usr/sbin/showprods "showcase" | grep "showcase.sw" | grep "IRIS"`
  179. endif
  180.  
  181. set NOT_SC = `/usr/bsd/which showcase | /usr/bin/awk '{print $2}' | grep not`
  182.  
  183. if ($#SCINSTALLED && $NOT_SC != 'not') then
  184.         set SCINSTALLED = `/usr/bsd/which showcase`
  185.         setenv SHOWCASE `/usr/bsd/which showcase`
  186. else
  187. #        echo "Showcase is not installed... " 
  188.         setenv SHOWCASE NULL
  189. endif
  190.  
  191. ##########################################################
  192. #
  193. #       Set environ for netscape
  194. #
  195. #       Check for Netscape 1.12IS & dmedia_tools (/usr/sbin/movieplayer)
  196. #
  197. #       Netscape ver 1.1IS is inst #1022183420
  198. #
  199. ##########################################################
  200.  
  201. if (-w $HOME) then
  202.         if (-e "$HOME/.netscape-preferences") then
  203.                 $DMTOOLSDIR/bin/nawk -f $DMTOOLSDIR/bin/awkzilla.awk \
  204.                        $HOME/.netscape-preferences \
  205.                      > $HOME/.netscape-preferedm01
  206.                 chmod 777 $HOME/.netscape-preferedm01
  207.         else
  208.                 $DMTOOLSDIR/bin/nawk -f $DMTOOLSDIR/bin/awkzilla.awk \
  209.                                        $DMTOOLSDIR/demos/netscape/.netscape-preferedm01 \
  210.                                      > $HOME/.netscape-preferedm01
  211.                 chmod 777 $HOME/.netscape-preferedm01
  212.         endif
  213. else 
  214.     /usr/bin/X11/xconfirm -icon warning \
  215.         -t "Cannot Write to the $HOME directory" \
  216.         -t " " \
  217.         -t "You need to have write permissions for the $HOME home directory\!" \
  218.         -t "This will end this session ...." \
  219.         -t " " \
  220.         -b Ok
  221.         exit 
  222. endif
  223.  
  224. setenv NSCLIENT $DMTOOLSDIR/demos/netscape/netscape.dm01
  225.  
  226. ##########################################################
  227. #
  228. #       Save environment variables for later use
  229. #
  230. ##########################################################
  231.  
  232. echo "setenv DMTOOLSDIR $DMTOOLSDIR; setenv TMPDIRECTORY $TMPDIRECTORY " > ${ENVFILE}
  233.  
  234. chmod 777 $ENVFILE
  235.  
  236. ##########################################################
  237. #
  238. #       Start the Netscape Client
  239. #
  240. ##########################################################
  241.  
  242. # if (`$DMTOOLSDIR/bin/runSC` == 0)  then
  243.  
  244. if ($SHOWCASE == "NULL") then
  245.  
  246.     cd $DMTOOLSDIR/demos/netscape 
  247.     $NSCLIENT -geometry =720x900 -xrm "*strings.7330:This process will either Install, Remove, or Launch\nsoftware from the Developer Magic CD.\n\nProceed?\n" file:$ROOTDIRECTORY/HTML/Overview/overview_one.html
  248.  
  249. else
  250.     cd $DMTOOLSDIR/Showcase/
  251.     $SHOWCASE -v -f ./Opener.sc
  252.  
  253.     cd $DMTOOLSDIR/demos/netscape 
  254.     $NSCLIENT -geometry =720x900 -xrm "*strings.7330:This process will either Install, Remove, or Launch\nsoftware from the Developer Magic CD.\n\nProceed?\n" file:$ROOTDIRECTORY/HTML/index.html
  255.  
  256. endif
  257.  
  258. ##########################################################
  259. #
  260. #       Clean up
  261. #
  262. ##########################################################
  263. CLEANUP:
  264.  
  265. if (-e $TMPDIRECTORY ) then
  266.     if (-w $TMPDIRECTORY ) then
  267.         \rm -rf $TMPDIRECTORY
  268.     endif
  269. endif
  270.  
  271.  
  272. exit
  273.  
  274.