home *** CD-ROM | disk | FTP | other *** search
/ Amiga ISO Collection / AmigaUtilCD1.iso / Fax / GPFA.DMS / in.adf / Install-GPFax < prev    next >
Encoding:
Text File  |  1994-02-27  |  11.5 KB  |  507 lines

  1. ; Script to install GPFax Class 1 software
  2. ;
  3. ; GPFINSTALL_VERSION    $VER: install-GPFax C1 1 2.9.93
  4. ;
  5.  
  6.     ; set up a error cleanup routine
  7.  
  8.  
  9. ; predefined modem init strings for Class 1 modems
  10.  
  11. (set C1I_USR    "ATE0V1X4&D2S0=0&H2&B1")
  12. (set C1I_COMMA    "ATE0V1X4&D2*F2S0=0")
  13. (set C1I_AVTEK    "AT&F+C61E0B0X4&C1&D2&P1")
  14. (set C1I_ICE    C1I_AVTEK)
  15. (set C1I_224    "AT&FE0B0X4&C1&D2&P1")
  16. (set C1I_GEN    "AT&F&C1&D2S7=90")
  17. (set C1I_SUP      "AT&F2E0")
  18. (set C1I_144      C1I_GEN)
  19.  
  20. (set C1T_USR    "USRobotics")
  21. (set C1T_COMMA     "Comma or Spirit")
  22. (set C1T_AVTEK     "Avtek / NetComm Pocket")
  23. (set C1T_ICE     "AutoIce")
  24. (set C1T_224      "Rockwell 224 chipset")
  25. (set C1T_SUP      "Supra 144LC")
  26. (set C1T_144      "Generic 144LC")
  27. (set C1T_GEN      "Generic Class 1")
  28.  
  29. (set C1M_USR    "USR")
  30. (set C1M_COMMA     "COMMA")
  31. (set C1M_AVTEK     "AVTEK")
  32. (set C1M_ICE     "AC3")
  33. (set C1M_224      "G224")
  34. (set C1M_SUP      "SUPRA144LC")
  35. (set C1M_144      "144LC")
  36. (set C1M_GEN      "GENERICC1")
  37.  
  38.  
  39. ; predefined modem init strings for Class 2 modems
  40.  
  41. (set C2I_GEN    "AAT&FE0V1X4&K3&C1&D2S0=0")
  42. (set C2I_SUPRA    "AT&F2E0")
  43. (set C2I_ZYXEL    "AT&FE0")
  44. (set C2I_AVTEK    C2I_GEN)
  45. (set C2I_PP    C2I_GEN)
  46.  
  47. (set C2T_SUPRA     "Supra Class 2")
  48. (set C2T_ZYXEL    "ZyXEL")
  49. (set C2T_AVTEK    "Avtek CD930 or M7F")
  50. (set C2T_PP    "Pract.Periph. / MR&D")
  51. (set C2T_GEN      "Generic Class 2")
  52.  
  53. (set C2M_SUPRA    "SUPRA")
  54. (set C2M_GEN      "GENERICC2")
  55. (set C2M_ZYXEL    "ZYXEL")
  56. (set C2M_AVTEK    "AVTEK")
  57. (set C2M_PP    "PP")
  58.  
  59. (set CLASS1    "GPFax Class 1")
  60. (set CLASS2    "GPFax Class 2")
  61. (set CLASSX    "Unknown Test Modem")
  62.  
  63.  
  64.  
  65.  
  66. (procedure findclass
  67.     (textfile
  68.     (dest "RAM:tmp_cmd")
  69.     (append     "GPFax:checkclass\n")
  70.     )
  71.     (execute "RAM:tmp_cmd")
  72.     (set classtype (getenv "faxclass"))
  73. )
  74.  
  75.  
  76. (onerror
  77.     (makeassign "GPFax_Disk" (safe))    
  78. )
  79.  
  80.  
  81. (complete 0)
  82.  
  83.     ; just in case the installation was restarted
  84.  
  85. (makeassign "GPFax_Disk" (safe))        ; start fresh
  86.  
  87.     ; see if this is really an update
  88.  
  89.  
  90.  
  91. (set is_update 0)
  92. (set GPFax_dest (getassign "GPFax" "a"))
  93.  
  94.  
  95.     ; if update, be sure they want program in same place
  96.  
  97. (if GPFax_dest
  98.     (if (askbool
  99.             (prompt "Your current copy of GPFax appears to be located in the drawer named \""
  100.                     GPFax_dest
  101.                     "\". Do you want the update installed in that drawer?"
  102.             )
  103.             (help
  104.                 "The installer has determined that you may already have a "
  105.                 "copy of GPFax installed on your system. If this is wrong or "
  106.                 "you want the update installed elsewhere, select NO as an "
  107.                 "answer. Otherwise, select YES."
  108.             )
  109.             (default 1)
  110.         )
  111.  
  112.         (set is_update 1)        ; if user wants in same place
  113.  
  114.         (set GPFax_dest            ; if user wants in different place
  115.             (tackon
  116.                 (askdir
  117.                     (prompt "A In which disk or drawer should GPFax be installed?")
  118.                     (help @askdir-help)
  119.                     (default @default-dest)
  120.                 )
  121.                 "GPFax"
  122.             )
  123.         )
  124.     )
  125.  
  126.  
  127. ; else if not an update, get a location for program
  128.     (set GPFax_dest
  129.         (tackon
  130.             (askdir
  131.                 (prompt "B In which disk or drawer should GPFax be installed?")
  132.                 (help @askdir-help)
  133.                 (default @default-dest)
  134.             )
  135.             "GPFax"
  136.         )
  137.     )
  138. )
  139.  
  140. (set modemclass 2)
  141. (set classtype    0)
  142. (set screen 0)
  143. (set colours 0)
  144. (set whichmodem 0)
  145.  
  146. (until (= AllDone 5)
  147.     (set AllDone 10) ; reinit for loop
  148.     (set modemclass
  149.         (askchoice
  150.         (prompt "Which version of GPFax do you wish to install?.")
  151.         (choices CLASS1 CLASS2 CLASSX)
  152.         (help "\nSelect FAX Class for your modem.\n If unknown please READ the modem manual first!.\n")
  153.         (default modemclass)
  154.         )
  155.     )
  156.  
  157.  
  158.     (if    ( = modemclass 0)
  159.         (set classtype 1)
  160.         (set classtype 2) ;else
  161.     )
  162.     
  163.     (if    (= modemclass 2) ;CLASSX
  164.         (if     (askbool
  165.             (prompt "\nThe Installer will now attempt to check your modem.\n\n"
  166.                 "Please ensure that the modem is switched on and connected to your Amiga.\n\n"
  167.                 "NOTE: If your modem is not connected, abort this install, switch your computer off before you connect your modem to the serial port!")
  168.             (help "\nGPFax will attempt to determine the fax class by interrogating your modem.\n")
  169.             (choices "Yes Check" "No Reselect")
  170.             (default 1)
  171.             )
  172.             (
  173.                 (findclass)
  174.                 (if     (= classtype 0)
  175.                     (
  176.                         (set AllDone 1)
  177.                         (if    (askbool
  178.                             (prompt "\nERROR!\nEither your modem did not respond or it is not fax capable!")
  179.                             (help "\nIncorrect response from modem! Try again?\n")
  180.                             (choices "Reselect" "Reselect")
  181.                             (default 0)
  182.                             )
  183.                         )
  184.                     )
  185.                     (if     (askbool ;else type!=0
  186.                         (prompt "\nYour modem reports fax class = " classtype)
  187.                         (help "\nThis should report 1 for Class 1 modems or 2 for TR29.2 Class 2 modems\n")
  188.                         (choices "Ok Continue" "Reslect")
  189.                         (default 1)
  190.                         )
  191.                         (set AllDone 10)
  192.                         (set AllDone 1) ;else reselect
  193.                     )
  194.                 )
  195.             )
  196.             (set AllDone 1) ;else reselect
  197.          )
  198.     )
  199.     
  200.  
  201.     
  202.     (if    (= AllDone 10)
  203.         (
  204.             (if    ( = classtype 1)
  205.                 (
  206.                     (set whichmodem
  207.                         (askchoice
  208.                         (prompt "GPFax Class 1 software will run on most\nGeneric Class 1 fax modems.\n Please select your modem type.")
  209.                         (choices C1T_USR C1T_COMMA C1T_AVTEK C1T_ICE C1T_224 C1T_SUP C1T_144 C1T_GEN )
  210.                         (help "\nSelect the Brand of your modem.\n If not listed select "C1T_GEN"\n")
  211.                         (default whichmodem)
  212.                         )
  213.                     )
  214.                     (set modem (select whichmodem      C1M_USR C1M_COMMA C1M_AVTEK C1M_ICE C1M_224 C1M_SUP C1M_144 C1M_GEN ))
  215.                     (set init  (select whichmodem       C1I_USR C1I_COMMA C1I_AVTEK C1I_ICE C1I_224 C1I_SUP C1I_144 C1I_GEN ))
  216.                     (set modemname (select whichmodem C1T_USR C1T_COMMA C1T_AVTEK C1T_ICE C1T_224 C1T_SUP C1T_144 C1T_GEN ))
  217.                     (set classname "Class 1")
  218.  
  219.  
  220.                 )
  221.                 (if    ( = classtype 2) ;else
  222.                     (
  223.                         (set whichmodem
  224.                             (askchoice
  225.                             (prompt "GPFax Class 2 software will run on most\nGeneric Class 2 fax modems.\n Please select your modem type.")
  226.                             (choices C2T_SUPRA C2T_ZYXEL C2T_AVTEK C2T_PP C2T_GEN)
  227.                             (help "\nSelect the Brand of your modem.\n If not listed select "C2T_GEN".\n")
  228.                             (default whichmodem)
  229.                             )
  230.                         )
  231.                         (set modem (select whichmodem  C2M_SUPRA C2M_ZYXEL C2M_AVTEK C2M_PP C2M_GEN))
  232.                         (set init  (select whichmodem  C2I_SUPRA C2I_ZYXEL C2I_AVTEK C2I_PP C2I_GEN))
  233.                         (set modemname (select whichmodem C2T_SUPRA C2T_ZYXEL C2T_AVTEK C2T_PP C2T_GEN))
  234.                         (set classname "Class 2")
  235.  
  236.                     )
  237.                 )
  238.             )
  239.  
  240.  
  241.             (if     (askbool 
  242.                 (prompt "\nThe default Modem Init string\n for your " modemname " modem\n"
  243.                     "is \n" init "\n\n"
  244.                     "Do you wish to change this or use the default?")
  245.                 (help "\nIf in doubt use the default. If you wish you change the string, please consult intructions from your modem manufacturer")
  246.                 (choices "Accept Default" "Modify")
  247.                 (default 0)
  248.                 )
  249.                 (
  250.                     (set definit 0) ;default
  251.                 )
  252.                 (
  253.                     (set definit 1) ;modify
  254.                     (set init
  255.                         (askstring
  256.                             (prompt "Your selected modem type is "     (select whichmodem C1T_USR C1T_COMMA C1T_AVTEK C1T_ICE C1T_224 C1T_SUP C1T_144 C1T_GEN)
  257.                                 "\nPlease confirm the Modem Initialisation Commands.")
  258.                             (help "\nThis should be carefully selected according to the instructions from your modem manufacturer.")
  259.                             (default init)
  260.                         )
  261.                     )
  262.                 )
  263.             )
  264.         )
  265.  
  266.     )
  267.  
  268.     (if    (= AllDone 10)
  269.         (
  270.             (set screen
  271.                 (askchoice
  272.                 (prompt "Please select the Screen type for GPFax")
  273.                 (choices "Custom Screen" "WorkBench" )
  274.                 (help "\nGPFax can run on the Workbench Screen or on its own Custom Screen. This is controlled by the toolttype SCREEN= in the GPFax icon.\n")
  275.                 (default screen)
  276.                 )
  277.             )
  278.             (if    (= screen 0)
  279.                 (set colours
  280.                     (askchoice
  281.                     (prompt "On the Custom Screen, do you wish to use our Workbench2 style Colours or the current default Workbench Colours?")
  282.                     (choices "Use Custom Colours" "Use WorkBench Colours" )
  283.                     (help "\nOn a custom screen you can use the GPFax default colours or use the default colour set from Workbench.\nIf using a 2024 or moniterm monitor choose WB colours.\n")
  284.                     (default colours)
  285.                     )
  286.                 )
  287.                 (set colours 0) ;else
  288.  
  289.             )
  290.             
  291.             (if    ( = screen 0)
  292.                 (set cp (cat "\nColour Prefs : " (select colours  "GPFax Custom" "WB Colours" )))
  293.                 (set cp "\n")
  294.             )
  295.  
  296.             
  297.             (if    (askbool
  298.                     (prompt "Your have selected the following settings:-\n "
  299.                         "\nModem Class  : " classname
  300.                         "\nModem Type   : " modemname
  301.                         "\nInitString   : " init 
  302.                         "\nScreenType   : " (select screen "Customscreen" "Workbench" )
  303.                         cp
  304.                     )
  305.                     (help "\nIf details are not correct you may re-select any choice\n")
  306.                     (choices  "Re-Enter" "Correct") ;reverse choice to force accept
  307.                     (default 0)
  308.                 )
  309.                 (set AllDone 1) ;reenter
  310.                 (set AllDone 5) ; correct
  311.             )
  312.         )
  313.     )
  314.     
  315. )
  316.     
  317.         ; now lock on to volume 'GPFax'
  318.     
  319.     (askdisk
  320.     (prompt "Please insert \n the master program disk \n labeled \"GPFax\".")
  321.     (help    "The GPFax program and other options will be copied "
  322.             "from the \"GPFax\" into your system.")
  323.     (dest  "GPFax")
  324.     (newname "GPFax_Disk")
  325. )
  326.  
  327.     ; make GPFax drawer & icon if not there
  328.  
  329. (if (not is_update)
  330.     (makedir GPFax_dest (infos))
  331. )
  332.  
  333.     ; at this point we have a valid destination, so we tell installer where
  334.     ; the application will end up so the exit page will be correct -- also,
  335.     ; the installation log file (if any) will be copied to the destination
  336. (set @default-dest GPFax_dest)
  337.  
  338.  
  339. (set whichfiles 
  340.     (askoptions
  341.         (prompt "Please select the files to be copied")
  342.         (help    "This allows you to select only certain parts of the GPFax "
  343.             "system to be installed on your hard drive. For normal installation "
  344.             "select all the items")
  345.         (choices "GPFax program, printer driver & fonts"
  346.              "ViewFax program"
  347.              "Update Notes"
  348.              "Sample Fax files"
  349.              "ARexx Examples")
  350.             
  351.     )
  352. )
  353.  
  354.  
  355. (if    (in whichfiles 0)
  356.     (
  357.  
  358.  
  359.         (working "\n\nInstalling GPFax Class " classtype " program\n")
  360.         (textfile
  361.             (dest "RAM:install_cmd")
  362.             (append 
  363.             "GPFax_Disk:lha  x GPFax_Disk:z.lha " classtype " RAM:\n"
  364.             "copy RAM:" classtype "  \"" (tackon GPFax_dest "GPFax")"\"" "\n"
  365.             "delete RAM:"classtype "\n"
  366.             )
  367.         )
  368.         (execute "RAM:install_cmd")
  369.         (run "delete ram:#?_cmd")
  370.         
  371.         (copyfiles
  372.             (source "GPFax_Disk:GPFax.info")
  373.             (dest GPFax_dest)
  374.         )
  375.  
  376.         (copyfiles
  377.             (source "GPFax_Disk:devs/printers/gpfax.driver")
  378.             (dest "DEVS:printers")
  379.         )
  380.  
  381.         (copyfiles
  382.             (source "GPFax_Disk:fonts")
  383.             (dest "FONTS:")
  384.             (all)
  385.         )
  386.  
  387.         (copyfiles
  388.             (source "GPFax_Disk:DataMessage.txt")
  389.             (dest GPFax_dest)
  390.         )
  391.  
  392.     )
  393. )
  394.  
  395. (complete 50)
  396.  
  397. (if    (in whichfiles 1)
  398.     (copyfiles
  399.         (source "GPFax_Disk:ViewFax")
  400.         (dest GPFax_dest)
  401.         (infos)
  402.     )
  403. )
  404.  
  405. (complete 75)
  406.  
  407. (if    (in whichfiles 2)
  408.     (copyfiles
  409.         (source "GPFax_Disk:Updates")
  410.         (dest GPFax_dest)
  411.         (infos)
  412.     )
  413. )
  414.  
  415. (complete 80)
  416.  
  417.  
  418. (tooltype
  419.     (dest GPFax_dest)
  420.     (noposition)
  421. )
  422.  
  423.  
  424. (makedir (tackon GPFax_dest "FAX_OUT")    (infos))
  425.  
  426. (makedir (tackon GPFax_dest "FAX_IN")    (infos))
  427.  
  428.  
  429. (if    (in whichfiles 3)
  430.     (
  431.         (copyfiles
  432.             (source "GPFax_Disk:Fax_in")
  433.             (dest (tackon GPFax_dest "Fax_in"))
  434.             (all)
  435.             (infos)
  436.         )
  437.         (copyfiles
  438.             (source "GPFax_Disk:Fax_in")
  439.             (dest (tackon GPFax_dest "Fax_in"))
  440.             (all)
  441.             (infos)
  442.         )
  443.     )
  444. )
  445.  
  446. (if    (in whichfiles 4)
  447.     (
  448.         (copyfiles
  449.             (source "GPFax_Disk:Rexx_Samples")
  450.             (dest (tackon GPFax_dest "Rexx_Samples"))
  451.             (all)
  452.             (infos)
  453.         )
  454.     )
  455. )
  456.  
  457.  
  458. (tooltype
  459.     (dest (tackon GPFax_dest "GPFax"))
  460.     (if    definit
  461.         (settooltype "INITSTRING" init)
  462.     )
  463.     (settooltype "MODEMTYPE" modem)
  464.     (settooltype "SCREEN" (select screen "CUSTOMSCREEN" "WORKBENCH" ))
  465.     (if    colours
  466.         (settooltype "USEWBCOLOURS" "TRUE")
  467.         (settooltype "USEWBCOLOURS")
  468.     )
  469. )
  470.  
  471. (complete 95)
  472.  
  473. ;     modify S:User-Startup
  474.  
  475. (startup "GPFax"
  476.     (prompt
  477.         "Some instructions need to be added to the \"S:user-startup\" "
  478.         "so that your system will be properly configured to use GPFax.")
  479.     (help "Do this or GPFax won't work!!")
  480.     (command
  481.         "ASSIGN GPFax: \"" GPFax_dest "\"\n"
  482.     )
  483. )
  484.  
  485. ;     reinitialize assigns
  486.  
  487. (if (not @pretend)
  488.     (makeassign "GPFax" GPFax_dest)
  489.     
  490. )
  491.  
  492.  
  493.  
  494. (complete 100)
  495.  
  496.     ; cleanup
  497.  
  498. (makeassign "GPFax_Disk" (safe))
  499.  
  500.     ; this is not strictly necessary, but doesn't hurt -- there is always
  501.     ; a default (exit) at the end of any script
  502.  
  503. (exit)
  504.  
  505.  
  506.