home *** CD-ROM | disk | FTP | other *** search
/ Amiga ISO Collection / AmigaUtilCD2.iso / WordProcessors / PGS30H_1.DMS / in.adf / Install-PageStream3 < prev    next >
Encoding:
Text File  |  1995-07-02  |  42.8 KB  |  1,027 lines

  1. ;PAGESTREAM 3.0f INSTALLATION SCRIPT
  2. ;COPYRIGHT ©1995 SOFT-LOGIK PUBLISHING CORPORATION
  3.  
  4. ;ENSURE AT LEAST AMIGADOS 2
  5. (if
  6.     (NOT (>= (/ (getversion) 65536) 37))
  7.     (abort "PageStream3 requires AmigaDOS version 2.04 or higher. If you have AmigaDOS 1.3 or earlier you must purchase an upgrade to AmigaDOS before using PageStream3.")
  8. )
  9. (set ASLflag 0)
  10. (set temp (getversion "libs:asl.library"))
  11. (set asl.ver (/ temp 65536))
  12. (set asl.rev (- temp (* asl.ver 65536)))
  13. (IF (< asl.ver 38) (set ASLflag 1))
  14.  
  15. ;SEE WHAT THE USER WANTS TO INSTALL
  16. (set ALLflag 0)
  17. (set MINflag 1)
  18. (set CUSflag 2)
  19. (set DELflag 3)
  20.  
  21. (set install_mode
  22.     (askchoice
  23.         (prompt
  24.             "\nSelect an installation option:\n")
  25.         (choices "Complete installation (11.2MB)" "Minimum installation (3.4MB)" "Custom installation" "Uninstall")
  26.         (default 0)
  27.         (help
  28.             "The default installation is to install everything. If you have extremely limited disk space, you can choose to install the minimum files required to use PageStream 3.0; however, this will prevent you from using all of PageStream's features or following the tutorial lessons, so you may wish to customize the installation to leave out only those files you know you do not need.\n\n"
  29.             "Choosing Minimum installation leaves out: Tutorial documents, tutorial graphics, tutorial text, PANTONE® color libraries, almost all PPD files, help system, clip art, and most fonts.\n\n"
  30.             "Choosing Uninstall will remove PageStream3 and all the files in its directory from your hard drive. Unless you have moved some of its files to another directory, this option will remove all traces of the program from your system. Note that any files you may have stored in its directory, such as graphics, fonts and documents, will also be deleted."
  31.         )
  32.     )
  33. )
  34.  
  35. ;CUSTOM INSTALLATION OPTIONS
  36. (set PGSflag 0)
  37. (set PGLflag 1)
  38. (set BMEflag 2)
  39. (set SUPflag 3)
  40. (set FILflag 4)
  41. (set TUTflag 5)
  42. (set CLPflag 6)
  43. (set FONflag 7)
  44. (set MACflag 8)
  45. (set HELflag 9)
  46. (set PRTflag 10)
  47. (set PPDflag 11)
  48.  
  49. (if (= install_mode CUSflag)
  50.     (set customopts
  51.         (askoptions
  52.             (prompt
  53.                 "PageStream3 Hard Drive Installation\n\n"
  54.                 "Please select which files you wish to install to your hard drive now.")
  55.             (choices "PageStream 1.1MB" "PageLiner 115K" "BME 90K" "Support Files 950K" "Filters 760K"
  56.                 "Tutorial Files 15K" "Clip Art 2.2MB" "Fonts 3.5MB" "Macros 55K" "Help System 1.2MB"
  57.                 "Printer Drivers 140K" "PPD Files 960K")
  58.             (default 4095)
  59.             (help
  60.                 "Choose which files you wish to install. Note that the Support files are required to run PageStream and BME.\n\n"
  61.                 "PageStream: the PageStream program file\n"
  62.                 "PageLiner : the PageLiner program file\n"
  63.                 "BME       : the BME program file\n"
  64.                 "Support   : libraries, font/spell engines, etc\n"
  65.                 "Filters   : import/export and effect filters\n"
  66.                 "Tutorials : lesson graphic, text and document files\n"
  67.                 "Clip Art  : included graphic files\n"
  68.                 "Fonts     : included fonts\n"
  69.                 "Macros    : included ARexx scripts and Flash macros\n"
  70.                 "Help      : help system (and AmigaGuide if required)\n"
  71.                 "Printers  : assorted printer drivers\n"
  72.                 "PPD       : PostScript Printer Description Files\n\n"
  73.             )
  74.         )
  75.     )
  76. )
  77. (if
  78.     (AND (= customopts 0) (= install_mode CUSflag))
  79.     (abort "Nothing to install!")
  80. )
  81.  
  82.  
  83. ;UNINSTALL OPTION
  84. (if (= install_mode DELflag)
  85.     (if
  86.         (askbool
  87.             (prompt
  88.                 "The Uninstall option deletes the entire PageStream3 directory and every file in it. If you have stored any files in it (graphics, documents, fonts, text, etc), they will be permanently deleted.\n\n"
  89.                 "Are you really sure you want to do this?\n\n"
  90.                 "USE WITH CAUTION!!! THIS CANNOT BE UNDONE!!!")
  91.             (help
  92.                 "This option should only be used if you want to remove all traces of PageStream3 from your computer's hard drive. It is equivalent to removing the assigns and then deleting the PageStream3 directory.\n\n"
  93.                 "USE WITH CAUTION!!! THIS CANNOT BE UNDONE!!!\n\n"
  94.                 "Note: This option cannot be used if you have added other assigns to the PageStream3 directory. i.e., if you have assigned Text: to PageStream3:Text, then you must manually remove the assign before this option can be used.")
  95.             (choices "Uninstall" "Cancel")
  96.             (default 0)
  97.         )
  98.         (
  99.             (set deletepath (expandpath "PageStream3:"))
  100.             (run "assign fonts: softlogik:fonts remove" (safe))
  101.             (makeassign "SoftLogik" (safe))   ; remove the SoftLogik assign
  102.             (makeassign "PageStream3" (safe)) ; remove the PageStream3 assign
  103.             (run (cat "delete " deletepath " all"))
  104.             (run (cat "delete " deletepath ".info"))
  105.             (user 1) ; change user to average so the startup screen won't appear
  106.             (startup "PageStream3"
  107.                 (prompt "")
  108.                 (help "")
  109.             )
  110.             (user 2) ; change user back to expert. What a silly installer language.
  111.             (message "Uninstall Complete!\n\nPageStream has been removed from your hard drive.")
  112.             (exit "Uninstall Complete!\n\nPageStream has been removed from your hard drive.\n\nSelect either Proceed or Abort to exit." (quiet))
  113.         )
  114.     )
  115. )
  116.  
  117.  
  118. ;SET TIMES TO INSTALL FILES, BASED ON FILE SIZE
  119. (set TIME 41)
  120. (set DONE 4100)
  121. (if (IN customopts PGSflag) (set time (+ time 1115)))
  122. (if (IN customopts PGLflag) (set time (+ time 112)))
  123. (if (IN customopts BMEflag) (set time (+ time 92)))
  124. (if (IN customopts SUPflag) (set time (+ time 972)))  ; lib:198 slf:8 col:98 spe:3 spell:144 mineng:184 otheng:37
  125. (if (IN customopts FILflag) (set time (+ time 775)))  ; eff:55, fil:720
  126. (if (IN customopts TUTflag) (set time (+ time 15)))  ; gr:6, text:9, doc:0
  127. (if (IN customopts CLPflag) (set time (+ time 2270)))
  128. (if (IN customopts FONflag) (set time (+ time 3628)))
  129. (if (IN customopts MACflag) (set time (+ time 55)))
  130. (if (IN customopts HELflag) (set time (+ time 1244)))
  131. (if (IN customopts PRTflag) (set time (+ time 141)))
  132. (if (IN customopts PPDflag) (set time (+ time 980)))  ; min:58, other:922
  133. (if (= install_mode ALLflag) (set time 11439))
  134. (if (= install_mode MINflag) (set time 3450))
  135.  
  136. ;IF PAGESTREAM IS NOT ASSIGNED, ASK THE USER TO SELECT THE DESTINATION
  137. (set PGSdest (getassign "PageStream3" "a"))
  138. (if (= PGSdest "")
  139.     (
  140.         (set PGSdest
  141.             (askdir
  142.                 (prompt
  143.                     "Select the directory in which you would\n "
  144.                     "like the PageStream3 drawer created. If you\n"
  145.                     "are upgrading from PageStream2, do not install\n"
  146.                     "PageStream3 in the PageStream2 drawer.\n")
  147.                 (help
  148.                     "A drawer named PageStream3 will be created\n"
  149.                     "here to store the program and its files.")
  150.                 (default @default-dest)
  151.             )
  152.         )
  153.  
  154.         ;CHECK IF THERE'S ENOUGH DISK SPACE TO INSTALL
  155.         (set space (getdiskspace PGSdest))
  156.         (set temp (* (- time 41) 1000))
  157.         (if
  158.             (< temp space)
  159.             (set temp (- temp space))
  160.             (if (= install_mode CUSflag)
  161.                 (abort "There is not enough disk space to install the files you have selected.")
  162.                 (abort "There is not enough disk space to install PageStream3.")
  163.             )
  164.         )
  165.  
  166.         (set PGSdest (tackon PGSdest "PageStream3"))
  167.  
  168.         ;CREATE THE PAGESTREAM3 DRAWER
  169.         (if (<> (exists PGSdest) 2) (makedir PGSdest (infos)))
  170.         (makeassign "PageStream3" PGSdest (safe))
  171.  
  172.         ;CREATE THE SOFTLOGIK DRAWER
  173.         (set SLdest "PageStream3:SoftLogik")
  174.         (if (<> (exists SLdest) 2) (makedir SLdest (infos)))
  175.         (makeassign "SoftLogik" SLdest (safe))
  176.  
  177.         ;CREATE THE SOFTLOGIK:FONTS DRAWER IF IT DOESN'T EXIST
  178.         (set FONdest (tackon SLdest "Fonts"))
  179.         (if (<> (exists FONdest) 2) (makedir FONdest (infos)))
  180.         (run "assign fonts: softlogik:fonts add" (safe))
  181.  
  182.         ;ADD THE ASSIGNS TO USER-STARTUP
  183.         (startup "PageStream3"
  184.             (prompt "Assigns for PageStream3: and SoftLogik: must be added to your user-startup file. Is this Ok?")
  185.             (help "The help system, included macros and default setup require the PageStream3: assign. The SoftLogik: assign is absolutely required for PageStream to be used. The Fonts: assign adds the SoftLogik:Fonts directory to your normal Fonts: assign so that PageStream's interface fonts will be available to AmigaDOS without having to be stored in Sys:Fonts. Skipping this step will lead to problems using PageStream3. ")
  186.             (command "Assign PageStream3: \"" PGSdest "\"\n")
  187.             (command "Assign SoftLogik: \"" SLdest "\"\n")
  188.             (command "Assign Fonts: \"" FONdest "\" ADD\n")
  189.         )
  190.     )
  191. )
  192.  
  193. ;We now have a valid destination, so tell Installer so the exit page will be correct
  194. (set @default-dest PGSdest)
  195.  
  196. ;ADD REXX TO USER-STARTUP?
  197. (if
  198.     (startup "ARexx"
  199.         (prompt "The ARexx script language is included with AmigaDOS, but it is not available unless you have chosen\nto start it. It is highly recommended that ARexx be started everytime you use PageStream3.\n\n"
  200.                 "If you would like ARexx started automatically and you have not already done so, click on Proceed to have it started from your User-Startup script. This requires that you have not moved the RexxMast program from your Sys:System directory. Click on Help for more information.")
  201.         (help "If you do not have ARexx started when you use PageStream3, you will miss out on some of its features. You will not be able to use many of the included Flash Macros, and parts of the help system will be unavailable to you. You don't have to be a programmer to enjoy the benefits that ARexx will give you in PageStream. Therefore, it is highly recommended that ARexx be loaded each time you boot your computer.\n\n"
  202.               "There are two ways to start ARexx automatically. You can copy Sys:System/RexxMast to your Sys:WBstartup directory, or RexxMast can be started from your User-Startup script. If you have done one of these already, skip this part. If not, this installer can add the appropriate command to your User-Startup script for you.")
  203.         (command "sys:system/rexxmast >NIL:")
  204.     )
  205.     (run "sys:system/rexxmast >NIL:")
  206. )
  207.  
  208. ;CHOOSE SCREEN MODE
  209. (if
  210.     (OR
  211.         (OR (= install_mode ALLflag) (= install_mode MINflag))
  212.         (OR (IN customopts PGSflag) (IN customopts BMEflag))
  213.     )
  214.     (
  215.         (set screen_mode
  216.             (askchoice
  217.                 (prompt
  218.                     "\nChoose one of the four basic screen modes now. If you don't want to choose one of these modes, choose Workbench, but click on Help for instructions.\n")
  219.                 (choices "NTSC:High Res Laced" "PAL:High Res Laced" "DBLNTSC:High Res No Flicker (AGA)" "DBLPAL:High Res No Flicker (AGA)" "Workbench")
  220.                 (default 0)
  221.                 (help
  222.                     "If you use an Amiga 1200 or 4000 and have a standard-size monitor (1080, 1084, 1940, 1942, 1950, 1960, etc), choose DBLNTSC (USA and Canada) or DBLPAL (most other countries); if you have an older Amiga, choose NTSC or PAL.\n\n"
  223.                     "PageStream3 runs on the Workbench by default. Most people use it on a separate screen, but if you Workbench is smaller than 640x400, you must run it on a separate screen.\n\n"
  224.                     "PageStream3 allows you to change the screen mode at any time with the Settings/Screen command, so you can just choose Workbench from the list of options and select a screen mode later. If you do this, you must remember to set the Display DPI (screen resolution). Refer to pages 483-484 of the manual for more information. Note that a standard PAL display is 65x70, not 75x75 as stated in the manual. A standard NTSC screen is 65x55."
  225.                 )
  226.             )
  227.         )
  228.     )
  229. )
  230.  
  231.  
  232. ;************
  233. ;** DISK 1 **
  234. ;************
  235.  
  236. ;COPY THE LHEX PROGRAM TO RAM:
  237. (message "If you haven't filled out your registration card yet, do it out now while PageStream is being installed.\n\nIf you are upgrading from a previous version, you will not have a new registration card in your upgrade package.\n\nClick on Proceed to begin installation. You will only be prompted to change disks from now on.")
  238. (copyfiles
  239.     (source "PageStream3Disk1:lhex")
  240.     (dest "ram:")
  241.     (nogauge)
  242. )
  243. (set progress (/ done time))
  244. (complete progress)
  245.  
  246. ;INSTALL PAGESTREAM OPTION
  247. (if
  248.     (OR
  249.         (OR (= install_mode ALLflag) (= install_mode MINflag))
  250.         (IN customopts PGSflag)
  251.     )
  252.     (
  253.         (copyfiles (source "PageStream3Disk1:PGS.lha") (dest "ram:"))
  254.         (working "Decompressing PageStream3...")
  255.         (run "ram:lhex >NIL: <NIL: -qfw=PageStream3: x ram:PGS.lha")
  256.         (delete "ram:PGS.LHA" (safe))
  257.         (set DONE (+ DONE 111500))
  258.         (set progress (/ done time))
  259.         (complete progress)
  260.     )
  261. )
  262.  
  263. ;INSTALL PAGELINER OPTION
  264. (if
  265.     (OR
  266.         (OR (= install_mode ALLflag) (= install_mode MINflag))
  267.         (IN customopts PGLflag)
  268.     )
  269.     (
  270.         (copyfiles (source "PageStream3Disk1:PL.lha") (dest "ram:"))
  271.         (working "Decompressing PageLiner...")
  272.         (run "ram:lhex >NIL: <NIL: -qfw=PageStream3: x ram:PL.lha")
  273.         (delete "ram:PL.LHA" (safe))
  274.         (set DONE (+ DONE 11200))
  275.         (set progress (/ done time))
  276.         (complete progress)
  277.     )
  278. )
  279.  
  280. ;INSTALL BME OPTION
  281. (if
  282.     (OR
  283.         (OR (= install_mode ALLflag) (= install_mode MINflag))
  284.         (IN customopts BMEflag)
  285.     )
  286.     (
  287.         (copyfiles (source "PageStream3Disk1:BME.lha") (dest "ram:"))
  288.         (working "Decompressing BME...")
  289.         (run "ram:lhex >NIL: <NIL: -qfw=PageStream3: x ram:BME.lha")
  290.         (delete "ram:BME.LHA" (safe))
  291.         (set DONE (+ DONE 9200))
  292.         (set progress (/ done time))
  293.         (complete progress)
  294.     )
  295. )
  296.  
  297. ;CREATE PREFERENCES FILES IF REQUIRED
  298. (if
  299.     (OR
  300.         (OR (= install_mode ALLflag) (= install_mode MINflag))
  301.         (OR (IN customopts PGSflag) (IN customopts BMEflag))
  302.     )
  303.     (
  304.         (set NTSCflag 0)
  305.         (set PALflag 1)
  306.         (set DNTSCflag 2)
  307.         (set DPALflag 3)
  308.         (set WBflag 4)
  309.         (set NTSC "NTSC:High Res Laced' -1 8\nDISPLAYDPI 65 55\n")
  310.         (set PAL "PAL:High Res Laced' -1 8\nDISPLAYDPI 65 70\n")
  311.         (set DNTSC "DBLNTSC:High Res Laced' -1 8\nDISPLAYDPI 65 55\n")
  312.         (set DPAL "DBLPAL:High Res Laced' -1 8\nDISPLAYDPI 65 70\n")
  313.         (set PREF "PREFERENCE FILE\nSCREEN Public -1 -1 2 '")
  314.         (if (= screen_mode NTSCflag) (set preffile (cat PREF NTSC)))
  315.         (if (= screen_mode PALflag) (set preffile (cat PREF PAL)))
  316.         (if (= screen_mode DNTSCflag) (set preffile (cat PREF DNTSC)))
  317.         (if (= screen_mode DPALflag) (set preffile (cat PREF DPAL)))
  318.         (if (= screen_mode WBflag) (set preffile "PREFERENCE FILE\n"))
  319.  
  320.         (if (OR (OR (= install_mode ALLflag) (= install_mode MINflag)) (IN customopts PGSflag))
  321.             (textfile
  322.                 (dest "PageStream3:PageStream3.prefs")
  323.                 (append preffile)
  324.                 (safe)
  325.             )
  326.         )
  327.         (if (OR (OR (= install_mode ALLflag) (= install_mode MINflag)) (IN customopts BMEflag))
  328.             (textfile
  329.                 (dest "PageStream3:BME.prefs")
  330.                 (append preffile)
  331.                 (safe)
  332.             )
  333.         )
  334.     )
  335. )
  336.  
  337. ;INSTALL LIBS
  338. (if
  339.     (OR
  340.         (OR (= install_mode ALLflag) (= install_mode MINflag))
  341.         (IN customopts SUPflag)
  342.     )
  343.     (
  344.         ;IF THE SOFTLOGIK:LIBS DIRECTORY DOESN'T EXIST, CREATE IT
  345.         (if (<> (exists "SoftLogik:Libs") 2) (makedir "SoftLogik:Libs" (infos)))
  346.         (copyfiles (source "PageStream3Disk1:Libs.lha") (dest "ram:"))
  347.         (working "Decompressing Libraries...")
  348.         (run "ram:lhex >NIL: <NIL: -qfw=SoftLogik:Libs x ram:Libs.lha")
  349.         (delete "ram:Libs.LHA" (safe))
  350.         (set DONE (+ DONE 19800))
  351.         (set progress (/ done time))
  352.         (complete progress)
  353.     )
  354. )
  355.  
  356. ;IF THE PAGESTREAM3:GRAPHICS DIRECTORY DOESN'T EXIST, CREATE IT (except if it's a custom installation without tutorial files or clip art)
  357. (IF
  358.     (OR
  359.         (OR (= install_mode ALLflag) (= install_mode MINflag))
  360.         (OR (IN customopts TUTflag) (IN customopts CLPflag))
  361.     )
  362.     (if (<> (exists "PageStream3:Graphics") 2) (makedir "PageStream3:Graphics" (infos)))
  363. )
  364.  
  365. ;IF THE PAGESTREAM3:DOCUMENTS DIRECTORY DOESN'T EXIST, CREATE IT (except if it's a custom installation without tutorial files)
  366. (IF
  367.     (OR
  368.         (OR (= install_mode ALLflag) (= install_mode MINflag))
  369.         (IN customopts TUTflag)
  370.     )
  371.     (if (<> (exists "PageStream3:Documents") 2) (makedir "PageStream3:Documents" (infos)))
  372. )
  373. ;INSTALL TUTORIAL DOCUMENTS
  374. ;(if
  375. ;    (OR (= install_mode ALLflag) (IN customopts TUTflag))
  376. ;    (
  377. ;        (copyfiles (source "PageStream3Disk1:Documents.lha") (dest "ram:"))
  378. ;        (working "Decompressing Tutorial Document Files...")
  379. ;        (run "ram:lhex >NIL: <NIL: -qfw=PageStream3:Documents x ram:Documents.lha")
  380. ;        (delete "ram:Documents.LHA" (safe))
  381. ;        (set DONE (+ DONE 7000))
  382. ;        (set progress (/ done time))
  383. ;        (complete progress)
  384. ;    )
  385. ;)
  386.  
  387. ;IF THE PAGESTREAM3:TEXT DIRECTORY DOESN'T EXIST, CREATE IT (except if it's a custom installation without tutorial files)
  388. (IF
  389.     (OR
  390.         (OR (= install_mode ALLflag) (= install_mode MINflag))
  391.         (IN customopts TUTflag)
  392.     )
  393.     (if (<> (exists "PageStream3:Text") 2) (makedir "PageStream3:Text" (infos)))
  394. )
  395.  
  396. ;IF THE PAGESTREAM3:MACROS DIRECTORY DOESN'T EXIST, CREATE IT (except if it's a custom installation without macro files)
  397. (IF
  398.     (OR
  399.         (OR (= install_mode ALLflag) (= install_mode MINflag))
  400.         (IN customopts MACflag)
  401.     )
  402.     (if (<> (exists "PageStream3:Macros") 2) (makedir "PageStream3:Macros" (infos)))
  403. )
  404. ;INSTALL MACROS
  405. (if
  406.     (OR (= install_mode ALLflag) (IN customopts MACflag))
  407.     (
  408.         (copyfiles (source "PageStream3Disk1:Macros.lha") (dest "ram:"))
  409.         (working "Decompressing ARexx Scripts and Flash Macro Files...")
  410.         (run "ram:lhex >NIL: <NIL: -qfw=PageStream3:Macros x ram:Macros.lha")
  411.         (delete "ram:Macros.LHA" (safe))
  412.         (set DONE (+ DONE 5500))
  413.         (set progress (/ done time))
  414.         (complete progress)
  415.     )
  416. )
  417.  
  418. ;IF THE PAGESTREAM3:FONTS DIRECTORY DOESN'T EXIST, CREATE IT (except if it's a custom installation without fonts)
  419. (IF
  420.     (OR
  421.         (OR (= install_mode ALLflag) (= install_mode MINflag))
  422.         (IN customopts FONflag)
  423.     )
  424.     (if (<> (exists "PageStream3:Fonts") 2) (makedir "PageStream3:Fonts" (infos)))
  425. )
  426.  
  427. ;INSTALL MIN FONT PREFS
  428. (if
  429.     (= install_mode MINflag)
  430.     (
  431.         (copyfiles (source "PageStream3Disk1:FPrefsMin.LHA") (dest "ram:"))
  432.         (run "ram:lhex >NIL: <NIL: -qfw=PageStream3: x ram:FPrefsMin.LHA")
  433.         (delete "ram:FPrefsMin.LHA" (safe))
  434.     )
  435. )
  436.  
  437. ;INSTALL FULL FONT PREFS
  438. ;note: this replaces the FPrefsAll.LHA file on disk 6 which is out of date. (Disk 6 was already duplicated. :)
  439. (if
  440.     (OR (= install_mode ALLflag) (IN customopts FONflag))
  441.     (
  442.         (copyfiles (source "PageStream3Disk1:FPrefsNew.LHA") (dest "ram:"))
  443.         (run "ram:lhex >NIL: <NIL: -qfw=PageStream3: x ram:FPrefsNew.LHA")
  444.         (delete "ram:FPrefsNew.LHA" (safe))
  445.     )
  446. )
  447.  
  448. ;INSTALL README
  449. (copyfiles (source "PageStream3Disk1:Read.LHA") (dest "ram:") (nogauge))
  450. (run "ram:lhex >NIL: <NIL: -qfw=PageStream3: x ram:Read.LHA")
  451. (delete "ram:Read.LHA" (safe))
  452.  
  453.  
  454.  
  455. ;************
  456. ;** DISK 2 **
  457. ;************
  458.  
  459. ;REQUEST DISK 2
  460. (if
  461.     (OR
  462.         (OR
  463.             (OR (= install_mode ALLflag) (= install_mode MINflag))
  464.             (OR (IN customopts HELflag) (IN customopts TUTflag))
  465.         )
  466.         (OR
  467.             (OR (IN customopts SUPflag) (IN customopts PRTflag))
  468.             (IN customopts PPDflag)
  469.         )
  470.     )
  471.     (askdisk
  472.         (prompt "\n\n\nPlease insert the disk labeled \"Disk2 Amiga v3.0\".")
  473.         (help
  474.             "You must insert this disk in a floppy drive to complete the installation. If you are missing this disk or if the installer does not accept the disk, contact Soft-Logik Publishing technical support for assistance.")
  475.         (dest "PageStream3Disk2")
  476.     )
  477. )
  478.  
  479. ;INSTALL IMPORT/EXPORT AND EFFECT FILTERS
  480. (if
  481.     (OR (= install_mode ALLflag) (IN customopts FILflag))
  482.     (
  483.         ;IF THE SOFTLOGIK:FILTERS AND EFFECTS DIRECTORIES DON'T EXIST, CREATE THEM
  484.         (if (<> (exists "SoftLogik:Filters") 2) (makedir "SoftLogik:Filters" (infos)))
  485.         (if (<> (exists "SoftLogik:Effects") 2) (makedir "SoftLogik:Effects" (infos)))
  486.         (copyfiles (source "PageStream3Disk2:Filters.lha") (dest "ram:"))
  487.         (working "Decompressing Import/Export Filters...")
  488.         (run "ram:lhex >NIL: <NIL: -qfw=SoftLogik:Filters x ram:Filters.lha")
  489.         (delete "ram:Filters.LHA" (safe))
  490.         (set DONE (+ DONE 72000))
  491.         (set progress (/ done time))
  492.         (complete progress)
  493.  
  494.         (copyfiles (source "PageStream3Disk2:Effects.lha") (dest "ram:"))
  495.         (working "Decompressing Effect Filters...")
  496.         (run "ram:lhex >NIL: <NIL: -qfw=SoftLogik:Effects x ram:Effects.lha")
  497.         (delete "ram:Effects.LHA" (safe))
  498.         (set DONE (+ DONE 5500))
  499.         (set progress (/ done time))
  500.         (complete progress)
  501.     )
  502. )
  503.  
  504. ;INSTALL MIN ENGINES
  505. (if
  506.     (OR
  507.         (OR (= install_mode ALLflag) (= install_mode MINflag))
  508.         (IN customopts SUPflag)
  509.     )
  510.     (
  511.         ;IF THE SOFTLOGIK:ENGINES DIRECTORY DOESN'T EXIST, CREATE IT
  512.         (if (<> (exists "SoftLogik:Engines") 2) (makedir "SoftLogik:Engines" (infos)))
  513.         (copyfiles (source "PageStream3Disk2:Engines.lha") (dest "ram:"))
  514.         (working "Decompressing Font and Text Code Engines...")
  515.         (run "ram:lhex >NIL: <NIL: -qfw=SoftLogik:Engines x ram:Engines.lha")
  516.         (delete "ram:Engines.LHA" (safe))
  517.         (set DONE (+ DONE 18400))
  518.         (set progress (/ done time))
  519.         (complete progress)
  520.     )
  521. )
  522.  
  523. ;INSTALL PRINTER DRIVERS
  524. (if
  525.     (OR
  526.         (OR (= install_mode ALLflag) (= install_mode MINflag))
  527.         (IN customopts PRTflag)
  528.     )
  529.     (
  530.         ;IF THE SOFTLOGIK:PRINTERS DIRECTORY DOESN'T EXIST, CREATE IT
  531.         (if (<> (exists "SoftLogik:Printers") 2) (makedir "SoftLogik:Printers" (infos)))
  532.         (copyfiles (source "PageStream3Disk2:Printers.lha") (dest "ram:"))
  533.         (working "Decompressing Printer Drivers...")
  534.         (run "ram:lhex >NIL: <NIL: -qfw=SoftLogik:Printers x ram:Printers.lha")
  535.         (delete "ram:Printers.LHA" (safe))
  536.         (copyfiles (source "PageStream3Disk2:PrintersOther.lha") (dest "ram:"))
  537.         (working "Decompressing Printer Drivers...")
  538.         (run "ram:lhex >NIL: <NIL: -qfw=SoftLogik:Printers x ram:PrintersOther.lha")
  539.         (delete "ram:PrintersOther.LHA" (safe))
  540.        (set DONE (+ DONE 14100))
  541.         (set progress (/ done time))
  542.         (complete progress)
  543.     )
  544. )
  545.  
  546. ;INSTALL MIN PPD FILES
  547. (if
  548.     (OR
  549.         (OR (= install_mode ALLflag) (= install_mode MINflag))
  550.         (IN customopts PPDflag)
  551.     )
  552.     (
  553.         ;IF THE SOFTLOGIK:PRINTERS DIRECTORY DOESN'T EXIST, CREATE IT
  554.         (if (<> (exists "SoftLogik:Printers") 2) (makedir "SoftLogik:Printers" (infos)))
  555.         ;IF THE SOFTLOGIK:PRINTERS/PPD DIRECTORY DOESN'T EXIST, CREATE IT
  556.         (if (<> (exists "SoftLogik:Printers/PPD") 2) (makedir "SoftLogik:Printers/PPD" (infos)))
  557.         (copyfiles (source "PageStream3Disk2:PPDmin.lha") (dest "ram:"))
  558.         (working "Decompressing PPD files...")
  559.         (run "ram:lhex >NIL: <NIL: -qfw=SoftLogik:Printers/PPD x ram:PPDmin.lha")
  560.         (delete "ram:PPDmin.LHA" (safe))
  561.         (set DONE (+ DONE 5800))
  562.         (set progress (/ done time))
  563.         (complete progress)
  564.     )
  565. )
  566.  
  567. ;INSTALL HELP OPTION
  568. (if
  569.     (OR (= install_mode ALLflag) (IN customopts HELflag))
  570.     (
  571.         ;IF THE PAGESTREAM3:HELP DIRECTORY DOESN'T EXIST, CREATE IT
  572.         (if (<> (exists "PageStream3:Help") 2) (makedir "PageStream3:Help" (infos)))
  573.         (copyfiles (source "PageStream3Disk2:Help.lha") (dest "ram:"))
  574.         (working "Decompressing Help files...")
  575.         (run "ram:lhex >NIL: <NIL: -qfw=PageStream3:Help x ram:Help.lha")
  576.         (delete "ram:Help.LHA" (safe))
  577.         (set DONE (+ DONE 124400))
  578.         (set progress (/ done time))
  579.         (complete progress)
  580.     )
  581. )
  582.  
  583. ;INSTALL TUTORIAL GRAPHICS
  584. (if
  585.     (OR (= install_mode ALLflag) (IN customopts TUTflag))
  586.     (
  587.         (copyfiles (source "PageStream3Disk2:Graphics.lha") (dest "ram:"))
  588.         (working "Decompressing Tutorial Graphic Files...")
  589.         (run "ram:lhex >NIL: <NIL: -qfw=PageStream3:Graphics x ram:Graphics.lha")
  590.         (delete "ram:Graphics.LHA" (safe))
  591.         (set DONE (+ DONE 600))
  592.         (set progress (/ done time))
  593.         (complete progress)
  594.     )
  595. )
  596.  
  597. ;INSTALL TUTORIAL TEXT
  598. (if
  599.     (OR (= install_mode ALLflag) (IN customopts TUTflag))
  600.     (
  601.         (copyfiles (source "PageStream3Disk2:Text.lha") (dest "ram:"))
  602.         (working "Decompressing Tutorial Text Files...")
  603.         (run "ram:lhex >NIL: <NIL: -qfw=PageStream3:Text x ram:Text.lha")
  604.         (delete "ram:Text.LHA" (safe))
  605.         (set DONE (+ DONE 900))
  606.         (set progress (/ done time))
  607.         (complete progress)
  608.     )
  609. )
  610.  
  611. ;COPY AMIGAGUIDE IF REQUIRED
  612. (if
  613.     (AND
  614.         (OR (= install_mode ALLflag) (IN customopts HELflag))
  615.         (AND
  616.             (<> (exists "Sys:Utilities/AmigaGuide") 1)
  617.             (< (/ (getversion) 65536) 39))
  618.     )
  619.     (
  620.         (copyfiles (source "PageStream3Disk2:Guide.lha") (dest "ram:"))
  621.         (working "Installing AmigaGuide® help system...\n\nDistributed under license from Commodore.")
  622.         (run "ram:lhex >NIL: <NIL: -qfw=ram: x ram:Guide.lha")
  623.         (copyfiles (source "ram:AmigaGuide") (dest "sys:utilities") (infos) (nogauge))
  624.         (copyfiles (source "ram:WDisplay") (dest "sys:utilities") (infos) (nogauge))
  625.         (copyfiles (source "ram:AmigaGuide.library") (dest "libs:") (nogauge))
  626.         (copyfiles (source "ram:Help.guide") (dest "s:") (nogauge))
  627.         (delete "ram:Guide.LHA" (safe))
  628.         (delete "ram:AmigaGuide" (safe))
  629.         (delete "ram:AmigaGuide.info" (safe))
  630.         (delete "ram:AmigaGuide.library" (safe))
  631.         (delete "ram:WDisplay" (safe))
  632.         (delete "ram:WDisplay.info" (safe))
  633.     )
  634. )
  635.  
  636.  
  637.  
  638. ;************
  639. ;** DISK 3 **
  640. ;************
  641.  
  642. ;REQUEST DISK 3
  643. (if
  644.     (OR
  645.         (OR
  646.             (OR (= install_mode ALLflag) (= install_mode MINflag)) (IN customopts PPDflag)
  647.         )
  648.         (OR (IN customopts CLPflag) (IN customopts SUPflag))
  649.     )
  650.     (askdisk
  651.         (prompt "\n\n\nPlease insert the disk labeled \"Disk3 Amiga v3.0\".")
  652.         (help
  653.             "You must insert this disk in a floppy drive to complete the installation. If you are missing this disk or if the installer does not accept the disk, contact Soft-Logik Publishing technical support for assistance.")
  654.         (dest "PageStream3Disk3")
  655.     )
  656. )
  657.  
  658. ;INSTALL OTHER PPD FILES
  659. (if
  660.     (OR (= install_mode ALLflag) (IN customopts PPDflag))
  661.     (
  662.         ;IF THE SOFTLOGIK:PRINTERS DIRECTORY DOESN'T EXIST, CREATE IT
  663.         (if (<> (exists "SoftLogik:Printers") 2) (makedir "SoftLogik:Printers" (infos)))
  664.         ;IF THE SOFTLOGIK:PRINTERS/PPD DIRECTORY DOESN'T EXIST, CREATE IT
  665.         (if (<> (exists "SoftLogik:Printers/PPD") 2) (makedir "SoftLogik:Printers/PPD" (infos)))
  666.         (copyfiles (source "PageStream3Disk3:PPDother.lha") (dest "ram:"))
  667.         (working "Decompressing PPD files...")
  668.         (run "ram:lhex >NIL: <NIL: -qfw=SoftLogik:Printers/PPD x ram:PPDother.lha")
  669.         (delete "ram:PPDother.LHA" (safe))
  670.         (set DONE (+ DONE 92200))
  671.         (set progress (/ done time))
  672.         (complete progress)
  673.     )
  674. )
  675.  
  676. ;INSTALL SPECIAL MODULES
  677. (if
  678.     (OR
  679.         (OR (= install_mode ALLflag) (= install_mode MINflag))
  680.         (IN customopts SUPflag)
  681.     )
  682.     (
  683.         ;IF THE SOFTLOGIK:SPECIAL DIRECTORY DOESN'T EXIST, CREATE IT
  684.         (if (<> (exists "SoftLogik:Special") 2) (makedir "SoftLogik:Special" (infos)))
  685.         (copyfiles (source "PageStream3Disk3:Special.lha") (dest "ram:"))
  686.         (working "Decompressing Miscellaneous Modules...")
  687.         (run "ram:lhex >NIL: <NIL: -qfw=SoftLogik:Special x ram:Special.lha")
  688.         (delete "ram:Special.LHA" (safe))
  689.         (set DONE (+ DONE 300))
  690.         (set progress (/ done time))
  691.         (complete progress)
  692.     )
  693. )
  694.  
  695. ;INSTALL SPELLING DICTIONARIES
  696. (if
  697.     (OR (= install_mode ALLflag) (IN customopts SUPflag))
  698.     (
  699.         ;IF THE SOFTLOGIK:ENGINES DIRECTORY DOESN'T EXIST, CREATE IT
  700.         (if (<> (exists "SoftLogik:Engines") 2) (makedir "SoftLogik:Engines" (infos)))
  701.         (copyfiles (source "PageStream3Disk3:Spell.lha") (dest "ram:"))
  702.         (working "Decompressing Spelling Engines...")
  703.         (run "ram:lhex >NIL: <NIL: -qfw=SoftLogik:Engines x ram:Spell.lha")
  704.         (delete "ram:Spell.LHA" (safe))
  705.         (set DONE (+ DONE 14400))
  706.         (set progress (/ done time))
  707.         (complete progress)
  708.     )
  709. )
  710.  
  711. ;INSTALL COLOR LIBRARIES
  712. (if
  713.     (OR (= install_mode ALLflag) (IN customopts SUPflag))
  714.     (
  715.         ;IF THE SOFTLOGIK:COLORS DIRECTORY DOESN'T EXIST, CREATE IT
  716.         (if (<> (exists "SoftLogik:Colors") 2) (makedir "SoftLogik:Colors" (infos)))
  717.         (copyfiles (source "PageStream3Disk3:Colors.lha") (dest "ram:"))
  718.         (working "Decompressing PANTONE® Color Libraries...")
  719.         (run "ram:lhex >NIL: <NIL: -qfw=SoftLogik:Colors x ram:Colors.lha")
  720.         (delete "ram:Colors.LHA" (safe))
  721.         (copyfiles (source "PageStream3Disk3:DefColor.lha") (dest "ram:") (nogauge))
  722.         (run "ram:lhex >NIL: <NIL: -qfw=PageStream3: x ram:DefColor.lha")
  723.         (delete "ram:DefColor.LHA" (safe))
  724.         (set DONE (+ DONE 9800))
  725.         (set progress (/ done time))
  726.         (complete progress)
  727.     )
  728. )
  729.  
  730. ;INSTALL CLIP ART FROM DISK 3 OPTION
  731. (if
  732.     (OR (= install_mode ALLflag) (IN customopts CLPflag))
  733.     (
  734.         (if (<> (exists "PageStream3:Graphics/Arro") 2) (makedir "PageStream3:Graphics/Arro" (infos)))
  735.         (copyfiles (source "PageStream3Disk3:Arro.lha") (dest "ram:"))
  736.         (working "Decompressing\nArro International\nclip art sample files...\n\nOrder Arroglyphs from ARRO International today!\nCall 201-746-9620.")
  737.         (run "ram:lhex >NIL: <NIL: -qfw=PageStream3:Graphics/Arro x ram:Arro.lha")
  738.         (delete "ram:Arro.LHA" (safe))
  739.         (set DONE (+ DONE 38800))
  740.         (set progress (/ done time))
  741.         (complete progress)
  742.  
  743.         (if (<> (exists "PageStream3:Graphics/Creative") 2) (makedir "PageStream3:Graphics/Creative" (infos)))
  744.         (copyfiles (source "PageStream3Disk3:Creative.lha") (dest "ram:"))
  745.         (working "Decompressing\nCreative Media Services\nclip art sample files...\n\nOrder Megatoons from Creative Media Services today!\nCall 1-800-358-2278 (510-843-3408).")
  746.         (run "ram:lhex >NIL: <NIL: -qfw=PageStream3:Graphics/Creative x ram:Creative.lha")
  747.         (delete "ram:Creative.LHA" (safe))
  748.         (set DONE (+ DONE 23300))
  749.         (set progress (/ done time))
  750.         (complete progress)
  751.  
  752.         (if (<> (exists "PageStream3:Graphics/MultiAd") 2) (makedir "PageStream3:Graphics/MultiAd" (infos)))
  753.         (copyfiles (source "PageStream3Disk3:Multi.lha") (dest "ram:"))
  754.         (working "Decompressing\nMulti-Ad Services\nclip art sample files...\n\nOrder ProArt from Multi-Ad Services Inc today!\nCall 1-800-447-1950 (309-692-1530).")
  755.         (run "ram:lhex >NIL: <NIL: -qfw=PageStream3:Graphics/MultiAd x ram:Multi.lha")
  756.         (delete "ram:Multi.LHA" (safe))
  757.         (set DONE (+ DONE 44500))
  758.         (set progress (/ done time))
  759.         (complete progress)
  760.     )
  761. )
  762.  
  763.  
  764. ;************
  765. ;** DISK 4 **
  766. ;************
  767.  
  768. ;REQUEST DISK 4
  769. (if
  770.     (OR
  771.         (OR (= install_mode ALLflag) (= install_mode MINflag))
  772.         (IN customopts FONflag)
  773.     )
  774.     (askdisk
  775.         (prompt "\n\n\nPlease insert the disk labeled \"Disk4 Amiga v3.0\".")
  776.         (help
  777.             "You must insert this disk in a floppy drive to complete the installation. If you are missing this disk or if the installer does not accept the disk, contact Soft-Logik Publishing technical support for assistance.")
  778.         (dest "PageStream3Disk4")
  779.     )
  780. )
  781.  
  782. ;INSTALL CG FONTS
  783. (if
  784.     (OR
  785.         (OR (= install_mode ALLflag) (= install_mode MINflag))
  786.         (IN customopts FONflag)
  787.     )
  788.     (
  789.         (if (<> (exists "PageStream3:Fonts/Intellifonts") 2) (makedir "PageStream3:Fonts/Intellifonts" (infos)))
  790.         (copyfiles (source "PageStream3Disk4:FontsCG.lha") (dest "ram:"))
  791.         (working "Decompressing\nAgfa® Compugraphic Intellifont\nFonts...")
  792.         (run "ram:lhex >NIL: <NIL: -qfw=PageStream3:Fonts/Intellifonts x ram:FontsCG.lha")
  793.         (delete "ram:FontsCG.LHA" (safe))
  794.         (set DONE (+ DONE 80200))
  795.         (set progress (/ done time))
  796.         (complete progress)
  797.     )
  798. )
  799.  
  800. ;INSTALL OTHER DISK 4 FONTS
  801. (if
  802.     (OR (= install_mode ALLflag) (IN customopts FONflag))
  803.     (
  804.         (if (<> (exists "PageStream3:Fonts/StudioFonts") 2) (makedir "PageStream3:Fonts/StudioFonts" (infos)))
  805.         (copyfiles (source "PageStream3Disk4:FontsST.lha") (dest "ram:"))
  806.         (working "Decompressing\nSoft-Logik Studio Fonts\nSample Fonts...\n\nOrder the full Serials Fonts collection of\n53 PostScript Type 1 fonts today!\nCall 1-800-829-8608 (314-894-8608).")
  807.         (run "ram:lhex >NIL: <NIL: -qfw=PageStream3:Fonts/StudioFonts x ram:FontsST.lha")
  808.         (delete "ram:FontsST.LHA" (safe))
  809.         (set DONE (+ DONE 10300))
  810.         (set progress (/ done time))
  811.         (complete progress)
  812.  
  813.         (if (<> (exists "PageStream3:Fonts/SerialsFonts") 2) (makedir "PageStream3:Fonts/SerialsFonts" (infos)))
  814.         (copyfiles (source "PageStream3Disk4:FontsS12.lha") (dest "ram:"))
  815.         (working "Decompressing\nSerials TypeCollection\nSample Fonts...\n\nOrder the full CD-ROM of\n1000 PostScript and TrueType fonts today!\nCall 1-800-829-8608 (314-894-8608).")
  816.         (run "ram:lhex >NIL: <NIL: -qfw=PageStream3:Fonts/SerialsFonts x ram:FontsS12.lha")
  817.         (delete "ram:FontsS12.LHA" (safe))
  818.         (set DONE (+ DONE 32900))
  819.         (set progress (/ done time))
  820.         (complete progress)
  821.     )
  822. )
  823.  
  824. ;INSTALL DISK 4 FONTS
  825. (if
  826.     (OR (= install_mode ALLflag) (IN customopts FONflag))
  827.     (
  828.         (copyfiles (source "PageStream3Disk4:FontsS11.lha") (dest "ram:"))
  829.         (working "Decompressing more\nSerials TypeCollection\nSample Fonts...\n\nOrder the full CD-ROM of\n1000 PostScript and TrueType fonts today!\nCall 1-800-829-8608 (314-894-8608).")
  830.         (run "ram:lhex >NIL: <NIL: -qfw=PageStream3:Fonts/SerialsFonts x ram:FontsS11.lha")
  831.         (delete "ram:FontsS11.LHA" (safe))
  832.         (set DONE (+ DONE 29600))
  833.         (set progress (/ done time))
  834.         (complete progress)
  835.  
  836.         (copyfiles (source "PageStream3Disk4:FontsS2.lha") (dest "ram:"))
  837.         (working "Decompressing more\nSerials TypeCollection\nSample Fonts...\n\nOrder the full CD-ROM of\n1000 PostScript and TrueType fonts today!\nCall 1-800-829-8608 (314-894-8608).")
  838.         (run "ram:lhex >NIL: <NIL: -qfw=PageStream3:Fonts/SerialsFonts x ram:FontsS2.lha")
  839.         (delete "ram:FontsS2.LHA" (safe))
  840.         (set DONE (+ DONE 24500))
  841.         (set progress (/ done time))
  842.         (complete progress)
  843.  
  844.         (copyfiles (source "PageStream3Disk4:FontsS3.lha") (dest "ram:"))
  845.         (working "Decompressing more\nSerials TypeCollection\nSample Fonts...\n\nOrder the full CD-ROM of 1000 PostScript and TrueType fonts today!\nCall 1-800-829-8608 (314-894-8608).")
  846.         (run "ram:lhex >NIL: <NIL: -qfw=PageStream3:Fonts/SerialsFonts x ram:FontsS3.lha")
  847.         (delete "ram:FontsS3.LHA" (safe))
  848.         (set DONE (+ DONE 20900))
  849.         (set progress (/ done time))
  850.         (complete progress)
  851.         (if (<> (exists "PageStream3:Fonts/IQEfonts") 2) (makedir "PageStream3:Fonts/IQEfonts" (infos)))
  852.         (copyfiles (source "PageStream3Disk4:FontsIQ.lha") (dest "ram:"))
  853.         (working "Decompressing\nIQ Engineering\nSample Fonts...\n\nOrder the full SuperType Master Library today!\nCall 1-800-765-3668.")
  854.         (run "ram:lhex >NIL: <NIL: -qfw=PageStream3:Fonts/IQEfonts x ram:FontsIQ.lha")
  855.         (delete "ram:FontsIQ.LHA" (safe))
  856.         (set DONE (+ DONE 15800))
  857.         (set progress (/ done time))
  858.         (complete progress)
  859.     )
  860. )
  861.  
  862. ;INSTALL CLIP ART FROM DISK 4 OPTION
  863. (if
  864.     (OR (= install_mode ALLflag) (= install_mode MINflag))
  865.     (
  866.         (if (<> (exists "PageStream3:Graphics/BBL") 2) (makedir "PageStream3:Graphics/BBL" (infos)))
  867.         (copyfiles (source "PageStream3Disk4:BBL.lha") (dest "ram:"))
  868.         (working "Decompressing\nBBL Typographic\nclip art sample files...\n\nOrder BBL Typographic Medieval & Renaissance clip art from Canned Art Connection today!\nCall 1-800-455-4278 (fax 616-673-1575).")
  869.         (run "ram:lhex >NIL: <NIL: -qfw=PageStream3:Graphics/BBL x ram:BBL.lha")
  870.         (delete "ram:BBL.LHA" (safe))
  871.         (set DONE (+ DONE 20000))
  872.         (set progress (/ done time))
  873.         (complete progress)
  874.  
  875. ;************
  876. ;** DISK 5 **
  877. ;************
  878.  
  879. ;REQUEST DISK 5
  880. (if
  881.     (OR
  882.         (OR (= install_mode ALLflag) (IN customopts CLPflag))
  883.         (OR (= ASLflag 1) (IN customopts FONflag))
  884.     )
  885.     (askdisk
  886.         (prompt "\n\n\nPlease insert the disk labeled \"Disk5 Amiga v3.0\".")
  887.         (help
  888.             "You must insert this disk in a floppy drive to complete the installation. If you are missing this disk or if the installer does not accept the disk, contact Soft-Logik Publishing technical support for assistance.")
  889.         (dest "PageStream3Disk5")
  890.     )
  891. )
  892.  
  893.  
  894.         (if (<> (exists "PageStream3:Graphics/ComputerArt") 2) (makedir "PageStream3:Graphics/ComputerArt" (infos)))
  895.         (copyfiles (source "PageStream3Disk5:Computer.lha") (dest "ram:"))
  896.         (working "Decompressing\nSoft-Logik Amiga Computer Art\nclip art sample files...\n\nOrder the full Amiga Computer Art collection of 75 Amiga illustrations today!\nCall 1-800-829-8608 (314-894-8608).")
  897.         (run "ram:lhex >NIL: <NIL: -qfw=PageStream3:Graphics/ComputerArt x ram:Computer.lha")
  898.         (delete "ram:Computer.LHA" (safe))
  899.         (set DONE (+ DONE 34300))
  900.         (set progress (/ done time))
  901.         (complete progress)
  902.     )
  903. )
  904.  
  905. ;UPDATE ASL.LIBRARY IF REQUIRED
  906. (if
  907.     (= ASLflag 1)
  908.     (
  909.         (working ("ASL.library version %ld.%ld" asl.ver asl.rev " detected. Updating to version 38.36...\n\nDistributed under license from Commodore."))
  910.         (copyfiles (source "PageStream3Disk5:ASLlib.lha") (dest "ram:") (nogauge))
  911.         (run "ram:lhex >NIL: <NIL: -qfw=Libs: x ram:ASLlib.lha")
  912.         (delete "ram:ASLlib.LHA" (safe))
  913.     )
  914. )
  915.  
  916. ;INSTALL CLIP ART FROM DISK 5 OPTION
  917. (if
  918.     (OR (= install_mode ALLflag) (IN customopts CLPflag))
  919.     (
  920.         (if (<> (exists "PageStream3:Graphics/WorldFlags") 2) (makedir "PageStream3:Graphics/WorldFlags" (infos)))
  921.         (copyfiles (source "PageStream3Disk5:Flags.lha") (dest "ram:"))
  922.         (working "Decompressing\nSoft-Logik World Flags\nclip art sample files...\n\nOrder the full 3D Flags of the World collection of 190 illustrations today!\nCall 1-800-829-8608 (314-894-8608).")
  923.         (run "ram:lhex >NIL: <NIL: -qfw=PageStream3:Graphics/WorldFlags x ram:Flags.lha")
  924.         (delete "ram:Flags.LHA" (safe))
  925.         (set DONE (+ DONE 20700))
  926.         (set progress (/ done time))
  927.         (complete progress)
  928.  
  929.         (if (<> (exists "PageStream3:Graphics/Icons") 2) (makedir "PageStream3:Graphics/Icons" (infos)))
  930.         (copyfiles (source "PageStream3Disk5:Icons.lha") (dest "ram:"))
  931.         (working "Decompressing\nSoft-Logik Page Icons\nclip art files...")
  932.         (run "ram:lhex >NIL: <NIL: -qfw=PageStream3:Graphics/Icons x ram:Icons.lha")
  933.         (delete "ram:Icons.LHA" (safe))
  934.         (set DONE (+ DONE 43500))
  935.         (set progress (/ done time))
  936.         (complete progress)
  937.     )
  938. )
  939.  
  940. ;INSTALL DISK 5 FONTS
  941. (if
  942.     (OR (= install_mode ALLflag) (IN customopts FONflag))
  943.     (
  944.         (copyfiles (source "PageStream3Disk5:FontsS0.lha") (dest "ram:"))
  945.         (working "Decompressing more\nSerials TypeCollection\nSample Fonts...\n\nOrder the full CD-ROM of\n1000 PostScript and TrueType fonts today!\nCall 1-800-829-8608 (314-894-8608).")
  946.         (run "ram:lhex >NIL: <NIL: -qfw=PageStream3:Fonts/SerialsFonts x ram:FontsS0.lha")
  947.         (delete "ram:FontsS0.LHA" (safe))
  948.         (set DONE (+ DONE 37300))
  949.         (set progress (/ done time))
  950.         (complete progress)
  951.  
  952.         (if (<> (exists "PageStream3:Fonts/SoftLogikFonts") 2) (makedir "PageStream3:Fonts/SoftLogikFonts" (infos)))
  953.         (copyfiles (source "PageStream3Disk5:FontsSL.lha") (dest "ram:"))
  954.         (working "Decompressing\nSoft-Logik Display Fonts...")
  955.         (run "ram:lhex >NIL: <NIL: -qfw=PageStream3:Fonts/SoftLogikFonts x ram:FontsSL.lha")
  956.         (delete "ram:FontsSL.LHA" (safe))
  957.         (set DONE (+ DONE 49300))
  958.         (set progress (/ done time))
  959.         (complete progress)
  960.  
  961.         (if (<> (exists "PageStream3:Fonts/StandardFonts") 2) (makedir "PageStream3:Fonts/StandardFonts" (infos)))
  962.         (copyfiles (source "PageStream3Disk5:Fonts35.lha") (dest "ram:"))
  963.         (working "Decompressing\nStandard PostScript® Font Equivalents...")
  964.         (run "ram:lhex >NIL: <NIL: -qfw=PageStream3:Fonts/StandardFonts x ram:Fonts35.lha")
  965.         (delete "ram:Fonts35.LHA" (safe))
  966.         (set DONE (+ DONE 43500))
  967.         (set progress (/ done time))
  968.         (complete progress)
  969.     )
  970. )
  971.  
  972. ;INSTALL INTERFACE FONTS
  973. (if
  974.     (OR
  975.         (OR (= install_mode ALLflag) (= install_mode MINflag))
  976.         (IN customopts SUPflag)
  977.     )
  978.     (
  979.         (copyfiles (source "PageStream3Disk5:SYSfonts.lha") (dest "ram:") (nogauge))
  980.         (run "ram:lhex >NIL: <NIL: -qfw=PageStream3: x ram:SYSfonts.lha")
  981.         (delete "ram:SYSfonts.LHA" (safe))
  982.         ;oops, some disk 5's have an extra softlogik.font file in the archive
  983.         (if (= (exists "PageStream3:SoftLogik.font") 1) (delete "PageStream3:SoftLogik.font" (safe)))
  984.         (set DONE (+ DONE 800))
  985.         (set progress (/ done time))
  986.         (complete progress)
  987.     )
  988. )
  989.  
  990. ;INSTALL OTHER ENGINES
  991. (if
  992.     (OR (= install_mode ALLflag) (IN customopts SUPflag))
  993.     (
  994.         ;IF THE SOFTLOGIK:ENGINES DIRECTORY DOESN'T EXIST, CREATE IT
  995.         (if (<> (exists "SoftLogik:Engines") 2) (makedir "SoftLogik:Engines" (infos)))
  996.         (copyfiles (source "PageStream3Disk5:EnginesOther.lha") (dest "ram:"))
  997.         (working "Decompressing Text Code and Language Engines...")
  998.         (run "ram:lhex >NIL: <NIL: -qfw=SoftLogik:Engines x ram:EnginesOther.lha")
  999.         (delete "ram:EnginesOther.LHA" (safe))
  1000.         (set DONE (+ DONE 3700))
  1001.         (set progress (/ done time))
  1002.         (complete progress)
  1003.     )
  1004. )
  1005.  
  1006. (message "\n\nYou MUST run PageStream3 after installation is complete and update a font path. Choose Settings/Fonts. Select the Fonts/StandardFonts path in the list and then click on the Update gadget. Click on the Save gadget to make the changes permanent.\n\nIf you do not do this, you will not be able to use the new fonts.")
  1007.  
  1008. ;************
  1009. ;* CLEAN UP *
  1010. ;************
  1011.  
  1012. ;REMOVE THE LHARC PROGRAM
  1013. (delete "ram:lhex" (safe))
  1014.  
  1015. ;DONE WITH THE INSTALL
  1016. (complete 100)
  1017.  
  1018. ;DISPLAY README (Try 3 different ways!)
  1019. (IF (> (run "Sys:Utilities/MultiView PageStream3:ReadMe.Now") 0)
  1020.     (IF (> (run "Sys:Utilities/AmigaGuide PageStream3:ReadMe.Now") 0)
  1021.         (run "More PageStream3:ReadMe.Now")
  1022.     )
  1023. )
  1024.  
  1025. ;GEE, THAT WAS FUN
  1026. (exit "If you haven't filled out your registration card yet, you should fill it out now so that you can receive your permanent password.\n\nIf you are upgrading from a previous version, you will not have a new registration card in your package because your permanent password is enclosed.")
  1027.