home *** CD-ROM | disk | FTP | other *** search
/ Amiga ISO Collection / AmigaUtilCD2.iso / Misc / EDGE1_704.DMS / in.adf / Install-Edge < prev    next >
Encoding:
Text File  |  1993-10-27  |  11.4 KB  |  526 lines

  1. ;********************************************************************
  2. ; $VER: Install-Edge V1.0 (Monday 25-Oct-93 11:41:35)
  3. ;       Inovatronics, Inc.
  4. ;       Suite 209b
  5. ;       8499 Greenville Ave
  6. ;       Dallas, Texas 75231
  7. ;       USA
  8. ;********************************************************************
  9.  
  10. ;********************************************************************
  11. ; The required variables
  12. ;********************************************************************
  13. (set true 1)
  14. (set false 0)
  15. (set not_here 0)
  16. (set is_a_file 1)
  17. (set is_a_dir 2)
  18. (set newline "\n")
  19. (set quote "\"")
  20. (set nothing "")
  21. (set testing true)
  22. (set testing false)
  23. (delopts "AskUser" "OkNoDelete" "Force")
  24. (set cpu (database "CPU"))
  25.  
  26. ;********************************************************************
  27. ; The common/general/english strings
  28. ;********************************************************************
  29. (set Intro_text
  30.     (cat
  31.         "Welcome to the Edge installer.  This installer uses the "
  32.         "Commodore Amiga Installer.  All of our products use this "
  33.         "installer and we would love to get any feedback that might "
  34.         "help improve the installation procedure." newline
  35.     )
  36. )
  37.  
  38. (set InstallTo_text
  39.     (cat
  40.         "Where would you like to install Edge's directory?  "
  41.         "You should select the directory that you want to contain the Edge directory."
  42.     )
  43. )
  44.  
  45. (set InsertMaster_text
  46.     (cat
  47.         "Please insert the \"Edge Program\" diskette."
  48.     )
  49. )
  50.  
  51. (set ReInstall_text
  52.     (cat
  53.         "Edge seems to already be installed.  Do you want to delete "
  54.         "the old installation and reinstall Edge?"
  55.         newline newline
  56.         "If you say NO we will try to keep your old configuration files."
  57.     )
  58. )
  59.  
  60. (set DeleteFiles_text
  61.     (cat
  62.         "One moment please, deleting file(s)"
  63.         newline
  64.         newline
  65.     )
  66. )
  67.  
  68. (set CreateDir_text
  69.     (cat
  70.         "One moment please, creating directory"
  71.         newline
  72.         newline
  73.     )
  74. )
  75.  
  76. (set Unarchiving_text
  77.     (cat
  78.         "One moment please, unarchiving"
  79.         newline
  80.         newline
  81.     )
  82. )
  83.  
  84. (set Unsnapshot_text
  85.     (cat
  86.         "One moment please, unsnapshotting"
  87.         newline
  88.         newline
  89.     )
  90. )
  91.  
  92. (set PathPrefix "Path=")
  93.  
  94. (set FilePrefix "File(s)=")
  95.  
  96. ;********************************************************************
  97. ; The error strings
  98. ;********************************************************************
  99. (set NoSupport_error
  100.     (cat
  101.         "We could not find these support files in Ram:.  "
  102.         "Please reboot and try to install again."
  103.         newline
  104.     )
  105. )
  106.  
  107. (set NoRexxMast_error
  108.     (cat
  109.         "We could not find the program RexxMast.  Because of this, we cannot "
  110.         "get your system to startup ARexx.  Please reconfigure your system "
  111.         "so that ARexx starts up when your machine does."
  112.         newline
  113.         newline
  114.         "EDGE cannot run without ARexx installed and running."
  115.         newline
  116.         newline
  117.     )
  118. )
  119.  
  120. (set NoWaitForPort_error
  121.     (cat
  122.         "We could not find the program WaitForPort.  This program is normally "
  123.         "in the Sys:RexxC directory.  Its absence may indicate that ARexx is "
  124.         "not installed on your machine.  Please contact your dealer about "
  125.         "installing ARexx."
  126.         newline
  127.         newline
  128.         "EDGE cannot run without ARexx installed and running."
  129.         newline
  130.         newline
  131.     )
  132. )
  133.  
  134. (set DirIsAFile_error
  135.     (cat
  136.         "Should be a directory but it is actually a file..."
  137.         newline
  138.     )
  139. )
  140.  
  141. (set DirNotMade_error
  142.     (cat
  143.         "We could not create the directory..."
  144.         newline
  145.     )
  146. )
  147.  
  148. ;********************************************************************
  149. ; The language specific strings, overlay the pre-defined strings
  150. ;********************************************************************
  151. (if (= @language "deutsch")
  152.     (
  153.         (set eddie "eddie")
  154.     )
  155. )
  156.  
  157. ;********************************************************************
  158. ; Some common procedures
  159. ;********************************************************************
  160. ; where do we install the edge directory
  161. (procedure find_home_dir
  162.     (
  163.         ; where are we to install?
  164.         (set home_dir
  165.             (askdir
  166.                 (prompt InstallTo_text)
  167.                 (help @askdir-help)
  168.                 (default @default-dest)
  169.                 (newpath)
  170.             )
  171.         )
  172.         
  173.         ; see if there is a edge file already here
  174.         (set edge_dir (tackon home_dir "Edge"))
  175.         (if (= (exists edge_dir) is_a_file)
  176.             (
  177.                 ; if we are actually pointing inside edge then fix the paths
  178.                 (set edge_dir home_dir)
  179.                 (set home_dir (pathonly home_dir))
  180.             )
  181.         )
  182.         (if (= (exists edge_dir) not_here)
  183.             (makedir edge_dir
  184.                 (infos)
  185.             )
  186.         )
  187.         
  188.         ; is edge already installed here?
  189.         (if (= (exists (tackon edge_dir "Edge")) is_a_file)
  190.             (set preinstalled true)
  191.             (set preinstalled false)
  192.         )
  193.     )
  194. )
  195.  
  196. ; unarchive an archive, destination=path/file, archive=path
  197. (procedure unarchive
  198.     (
  199.         ; get rid of the file(s)
  200.         (delete_pattern)
  201.         
  202.         ; create a batch file
  203.         (textfile
  204.             (dest "Ram:LHEX.script")
  205.             (append
  206.                 (cat
  207.                     "Cd " quote thepath quote newline
  208.                     "Stack 20480" newline
  209.                     "Ram:LHEX -qf x " quote archive quote newline
  210.                 )
  211.             )
  212.         )
  213.         
  214.         ; unarchive then
  215.         (working Unarchiving_Text FilePrefix quote archive quote newline PathPrefix quote thepath quote)
  216.         (execute "Ram:LHEX.script")
  217.     )
  218. )
  219.  
  220. ; unsnapshot a file, thepath/thefile
  221. (procedure unsnapshot
  222.     (
  223.         ; unsnapshot the stuff in the directory using the pattern
  224.         (working Unsnapshot_text PathPrefix quote thepath quote newline FilePrefix quote thefile quote)
  225.         (foreach thepath thefile
  226.             (
  227.                 ; delete the file then
  228.                 (set temp (tackon thepath @each-name))
  229.                 (if (= (exists temp) is_a_file)
  230.                     ; ok first things first
  231.                     (tooltype
  232.                         (dest (tackon thepath thefile))
  233.                         (noposition)
  234.                     )
  235.                 )
  236.             )
  237.         )
  238.     )
  239. )
  240.  
  241. ; insure a directory exists, destination=path
  242. (procedure insure_dir
  243.     (
  244.         (set thepath destination)
  245.         
  246.         ; if it is a file then abort
  247.         (if (= (exists thepath) is_a_file)
  248.             (abort DirIsAFile_error PathPrefix quote thedir quote)
  249.         )
  250.         
  251.         ; if it doesn't exist make it
  252.         (if (= (exists thepath) not_here)
  253.             (
  254.                 (working CreateDir_text PathPrefix quote thepath quote)
  255.                 (makedir thepath
  256.                     (infos)
  257.                 )
  258.             )
  259.         )
  260.         
  261.         ; verify it actually is a directory
  262.         (if (<> (exists thepath) is_a_dir)
  263.             (abort DirNotMade_error quote thedir quote)
  264.         )
  265.     )
  266. )
  267.  
  268. ; insure a directory exists and clear it of a pattern of files, destination=path/pattern
  269. (procedure delete_pattern
  270.     (
  271.         (set thefile (fileonly destination))
  272.         (set destination (pathonly destination))
  273.         (insure_dir)
  274.         
  275.         ; delete the stuff in the directory using the pattern
  276.         (working DeleteFiles_text PathPrefix quote thepath quote newline FilePrefix quote thefile quote)
  277.         (foreach thepath thefile
  278.             (
  279.                 ; delete the file then
  280.                 (set temp (tackon thepath @each-name))
  281.                 (if (= (exists temp) is_a_file)
  282.                     (
  283.                         ; ok first things first
  284.                         (delete temp)
  285.                         
  286.                         ; is there an icon for the file?
  287.                         (set temp (cat temp ".info"))
  288.                         (if (= (exists temp) is_a_file)
  289.                             (delete temp)
  290.                         )
  291.                     )
  292.                 )
  293.             )
  294.         )
  295.     )
  296. )
  297.  
  298. ; insure a directory exists and clear it of all files, destination=directory
  299. (procedure clear_dir
  300.     (
  301.         (set destination (tackon destination "#?"))
  302.         (delete_pattern)
  303.     )
  304. )
  305.  
  306. ; insure ARexx is installed and is running
  307. (procedure insure_arexx
  308.     (
  309.         ; is rexx running?
  310.         (set dosresult (run "WaitForPort -immediate REXX"))
  311.         
  312.         ; error 20 means that WaitForPort was not found
  313.         (if (= dosresult 20)
  314.             (abort NoWaitForPort_error)
  315.         )
  316.         
  317.         ; error 5 means that RexxMast is not running
  318.         (if (= dosresult 5)
  319.             (
  320.                 ; rexx host is not running, try to install it then
  321.                 (if (= (exists "Sys:System/RexxMast") is_a_file)
  322.                     (
  323.                         ; move it from system into wbstartup
  324.                         (rename "Sys:System/RexxMast" "Sys:WBStartup/RexxMast")
  325.                         (rename "Sys:System/RexxMast.info" "Sys:WBStartup/RexxMast.info")
  326.                         
  327.                         ; make sure its icon if fixed
  328.                         (tooltype
  329.                             (dest "Sys:WBStartup/RexxMast")
  330.                             (settooltype "DONOTWAIT" 1)
  331.                             (noposition)
  332.                         )
  333.                     )
  334.                     ; well its not where it supposed to be
  335.                     (abort NoRexxMast_error)
  336.                 )
  337.             )
  338.         )
  339.         
  340.         ; run the rexxmast program then
  341.         (run "run >Nil: <Nil: Sys:WBStartup/RexxMast")
  342.     )
  343. )
  344.  
  345. ;********************************************************************
  346. ; The error handler
  347. ;********************************************************************
  348. (onerror
  349.     (makeassign "Edge_Master" (safe))
  350.     (delete "Ram:LHEX" (safe))
  351.     (delete "Ram:LHEX.script" (safe))
  352. )
  353.  
  354. ;********************************************************************
  355. ; on with the show
  356. ;********************************************************************
  357.  
  358. ; introduce ourself
  359. (welcome intro_text)
  360.  
  361. ; force everybody to expert mode
  362. (user 2)
  363.  
  364. ; how far have we come?
  365. (complete 0)
  366.  
  367. ; make sure ARexx is installed and running
  368. (insure_arexx)
  369.  
  370. ; where do we install
  371. (find_home_dir)
  372.  
  373. ; do we do a complete reinstall?
  374. (if (= preinstalled true)
  375.     (set reinstall
  376.         (askbool
  377.             (prompt ReInstall_text)
  378.             (help @askbool-help)
  379.         )
  380.     )
  381.     (set reinstall true)
  382. )
  383.  
  384. ; back to novice mode
  385. (user 0)
  386.  
  387. ; make sure our installation disk is here
  388. (askdisk
  389.     (prompt InsertMaster_Text)
  390.     (help @askdisk-help)
  391.     (dest "EdgeInstall")
  392.     (newname "Edge_Master")
  393. )
  394.  
  395. ; copy LHEX to ram:
  396. (copyfiles
  397.     (source "Edge_Master:LHEX")
  398.     (dest "Ram:")
  399.     (files)
  400. )
  401.  
  402. ; verify we got LHEX into ram:
  403. (if (<> (exists "Ram:LHEX") is_a_file)
  404.     (abort NoSupport_error quote "LHEX" quote)
  405. )
  406.  
  407. ; what to do, that is the question
  408. (if (= reinstall true)
  409.     (
  410.         ; replace the old config stuff
  411.         (set destination (tackon edge_dir "Edge.#?"))
  412.         (set archive "Edge_Master:Edge_CFig.lha")
  413.         (unarchive)
  414.         
  415.         ; how far have we come?
  416.         (complete 5)
  417.  
  418.         ; replace the old dictionary
  419.         (set destination (tackon edge_dir "Dictionaries/C_dictionary"))
  420.         (set archive "Edge_Master:Edge_Dict.lha")
  421.         (unarchive)
  422.         
  423.         ; how far have we come?
  424.         (complete 10)
  425.  
  426.         ; replace the old templates
  427.         (set destination (tackon edge_dir "Templates/C_templates"))
  428.         (set archive "Edge_Master:Edge_Temp.lha")
  429.         (unarchive)
  430.     )
  431.     (
  432.         ; insure these directories exists
  433.         (set destination (tackon edge_dir "Dictionaries"))
  434.         (insure_dir)
  435.         
  436.         ; how far have we come?
  437.         (complete 8)
  438.         
  439.         (set destination (tackon edge_dir "Templates"))
  440.         (insure_dir)
  441.     )
  442. )
  443.  
  444. ; how far have we come?
  445. (complete 15)
  446.  
  447. ; delete edge and install new one
  448. (set destination (tackon edge_dir "Edge"))
  449. (if (>= cpu 68020)
  450.     (set archive "Edge_Master:Edge_C020.lha")
  451.     (set archive "Edge_Master:Edge_C000.lha")
  452. )
  453. (unarchive)
  454. (unsnapshot)
  455.  
  456. ; how far have we come?
  457. (complete 40)
  458.  
  459. ; copy over our new text table
  460. (set destination (tackon edge_dir "Edge.texts"))
  461. (set archive "Edge_Master:Edge_Text.lha")
  462. (unarchive)
  463.  
  464. ; how far have we come?
  465. (complete 45)
  466.  
  467. ; delete any existing macros
  468. (set destination (tackon edge_dir "Rexx/Menu_#?.edge"))
  469. (set archive "Edge_Master:Edge_Rexx.lha")
  470. (unarchive)
  471.  
  472. ; how far have we come?
  473. (complete 60)
  474.  
  475. ; delete the old help file
  476. (set destination (tackon edge_dir "Help/Edge.guide"))
  477. (set archive "Edge_Master:Edge_Help.lha")
  478. (unarchive)
  479.  
  480. ; how far have we come?
  481. (complete 85)
  482.  
  483. ; now how about the amigaguide stuff
  484. (if (= (exists "Libs:AmigaGuide.library") is_a_file)
  485.     (if (> 2228235 (getversion "Libs:AmigaGuide.library"))
  486.         (set do_guide true)
  487.     )
  488.     (set do_guide true)
  489. )
  490.  
  491. ; ok do we do guide stuff?
  492. (if (= do_guide true)
  493.     (
  494.         ; first do the library
  495.         (set destination "Libs:AmigaGuide.library")
  496.         (set archive "Edge_Master:AGuide_Lib.lha")
  497.         (unarchive)
  498.         
  499.         ; how far have we come?
  500.         (complete 90)
  501.  
  502.         ; second the guide tool
  503.         (set destination "Sys:Utilities/AmigaGuide")
  504.         (set archive "Edge_Master:AGuide_App.lha")
  505.         (unarchive)
  506.         
  507.         ; how far have we come?
  508.         (complete 95)
  509.  
  510.         ; lastly the amigaguide helpfile
  511.         (set destination "S:Help.guide")
  512.         (set archive "Edge_Master:AGuide_Hlp.lha")
  513.         (unarchive)
  514.     )
  515. )
  516.  
  517. ; how far have we come?
  518. (complete 100)
  519.  
  520. ; ok we are done then
  521. (makeassign "Edge_Master" (safe))
  522. (delete "Ram:LHEX" (safe))
  523. (delete "Ram:LHEX.script" (safe))
  524. (set @default-dest edge_dir)
  525. (exit Final_text)
  526.