home *** CD-ROM | disk | FTP | other *** search
/ Amiga ISO Collection / AmigaUtilCD2.iso / WordProcessors / FWUPDT30.DMS / in.adf / HDInstall < prev    next >
Encoding:
Text File  |  1994-10-04  |  18.4 KB  |  800 lines

  1. ;;
  2. ;;  $Filename: $
  3. ;;  $Id: HDInstall,v 1.2 1994/10/04 12:13:54 $
  4. ;;  $Date: 1994/10/04 12:13:54 $
  5. ;;  $Revision: 1.2 $
  6. ;;
  7.  
  8. (set is_update 0)
  9. (set @user-level 1)    ; force to use average mode
  10. (complete 0)
  11.  
  12. (set FW_dest
  13.     (askdir
  14.         (prompt "In welcher Disk/Schublade soll Final Writer erstellt werden?")
  15.         (help "Das Installationsprogramm erstellt die Schublade "
  16.             "\"FinalWriter_D\" in diesem Verzeichnis. Alle Dateien von "
  17.             "\"Final Writer\" werden in dieses Verzeichnis gestellt. \n\n"
  18.             "Tip für erfahrene Benutzer:\n"
  19.             "\"Final Writer\" kann auch in ein anderes Verzeichnis "
  20.             "verschoben werden, wenn die Unterverzeichnisse:\n"
  21.             "FWFiles, FWFonts, FWLibs, FWThes und FWSpell\n"
  22.             "ebenfalls an die neue Position des Programms verschoben "
  23.             "werden.")
  24.         (default @default-dest)
  25.     )
  26. )
  27.  
  28. ; Check if this is an update
  29. ; the FWLibs directory is a tell-tale sign
  30. ; that FW is already installed here
  31. (if (exists (tackon FW_dest "FWLibs"))
  32.     (set is_update 1)
  33.     (    (if (exists (tackon FW_dest "FinalWriter_D"))
  34.             (set is_update 1)
  35.             (makedir (tackon FW_dest "FinalWriter_D") (infos))
  36.         )
  37.         (set FW_dest (tackon FW_dest "FinalWriter_D"))
  38.     )
  39. )
  40.  
  41. (set @default-dest FW_dest)
  42. (set disk_space (getdiskspace FW_dest))
  43.  
  44.  
  45. ; If first time install ask user if he wants a complete
  46. ; or a minimal installation. The minimal installation
  47. ; will not install the eps clip art or the extra fonts.
  48. (if (NOT is_update)
  49.     (
  50.         (set install_all
  51.             (askbool
  52.                 (prompt "Wünschen Sie eine \"Vollständige\" oder "
  53.                     "\"minimale\"  Installation von Final Writer? Die "
  54.                     "vollständige Installation erfordert ca. 9,5 MByte "
  55.                     "freien Speicherplatz auf der Disk, die Minimal- "
  56.                     "Installation ca. 2,5 MByte.")
  57.  
  58.                 (help "Bei Auswahl von \"Vollständig\" werden alle "
  59.                         "Dateien des Diskettensatzes von Final Writer "
  60.                         "installiert. Dafür sind ca. 9,5 MByte freier "
  61.                         "Speicherplatz auf der Disk erforderlich. Bei "
  62.                         "Auswahl von \"Minimal\" werden die ARexx-"
  63.                         "Makros, EPS Clip Art und zusätzliche Schriftarten "
  64.                         "nicht installiert. Die Minimalinstallation erfordert "
  65.                         "ca. 2,5 MByte freien Speicherplatz auf der Disk.")
  66.  
  67.                 (choices "Vollständig" "Minimal")
  68.  
  69.                 (default 1)
  70.             )
  71.         )
  72.  
  73.         (if install_all
  74.             (set disk_space_needed 9794048)    ; 9.34 Megs
  75.             (set disk_space_needed 2810183)    ; 2.68 Megs
  76.         )
  77.     )
  78. )
  79.  
  80.  
  81. (if (AND (< disk_space disk_space_needed) (NOT is_update))
  82.     (
  83.         (set answer1
  84.             (askbool
  85.                 (prompt "Auf dem Laufwerk ist möglicherweise nicht "
  86.                     "genügend Platz für die Installation von "
  87.                     "\"Final Writer\".  Dennoch fortsetzen?")
  88.                 (help "Final Writer benötigt für die vollständige "
  89.                     "Installation ca. 9,5 MByte freien Speicherplatz auf "
  90.                     "der Disk, für die Minimalinstallation ca. 2,5 "
  91.                     "MByte. Wenn Final Writer auf dieser Partition "
  92.                     "bereits installiert ist, können Sie die Installation "
  93.                     "fortsetzen. Andernfalls drücken Sie ABBRUCH "
  94.                     "oder NEIN und schaffen danach entweder Platz "
  95.                     "auf dieser Partition oder wählen eine andere "
  96.                     "Partition für die Installation aus.")
  97.             )
  98.         )
  99.         (if (NOT answer1)
  100.             (abort "Installation von Final Writer abgebrochen. Zu wenig "
  101.                 "Speicherplatz auf dem Datenträger \""
  102.                     (getdevice @default-dest)
  103.                     "\"."
  104.             )
  105.         )
  106.     )
  107. )
  108.  
  109. ; Allow updating user to select what they want updated
  110. (if is_update
  111.     (set install_options
  112.         (askoptions
  113.             (prompt "Welche Komponenten sollen aktualisiert werden?")
  114.             (help @askoptions-help)
  115.             (choices
  116.                 "Final Writer - Programm"
  117.                 "ARexx-Makros"
  118.                 "Systemdatendateien"
  119.                 "Systembibliotheken"
  120.                 "Systemschriftarten"
  121.                 "Rechtschreibprüfung & Silbentrennung"
  122.                 "Thesaurus"
  123.                 "EPS Clip Art"
  124.                 "Zusätzliche Schriftarten")
  125.             (default 15)        ; default to Program, Macros, Files, Libs
  126.         )
  127.     )
  128.  
  129.     ; First time install
  130.     (if install_all
  131.         (set install_options 511)  ; hex 1FF - all nine options on
  132.         (set install_options 125)    ; hex 07D - Macros, EPS, and Extra fonts off
  133.     )
  134. )
  135.  
  136. ; Copy the extraction utility over and remember where it is
  137. (copyfiles
  138.     (source "Disk 1:lhex")
  139.     (dest FW_dest)
  140. )
  141. (set DeArcher (tackon FW_dest "lhex"))
  142. (set error 0)
  143.  
  144. ; Installing Files on Disk 1?
  145. (if (IN install_options 0 1 2 3)
  146.     (
  147.         ; Get Disk 1
  148.         (askdisk
  149.             (prompt "Bitte \"Diskette 1\" einlegen." )
  150.             (help    "Diskette 1 enthält das Programm Final Writer, Makros, "
  151.                      "Bibliotheken und die auf dem System zu installierenden "
  152.                     "Datendateien.")
  153.             (dest "Disk 1" )
  154.         )
  155.  
  156.         ; Copy the More program to the hard drive
  157.         ; so everyone is guaranteed to have it.
  158.         (if (NOT is_update)
  159.             (copyfiles
  160.                 (source "Disk 1:More")
  161.                 (dest FW_dest)
  162.             )
  163.         )
  164.  
  165.         ; If installing/updating the program
  166.         (if (IN install_options 0)
  167.             (
  168.                 ; Make installer cd into FW_dest when it executes the run statement
  169.                 (set @execute-dir FW_dest)
  170.  
  171.                 ; copy the Final Writer program over if the program
  172.                 ; icon doesn't exists copy it over too.
  173.                 ( if (exists (tackon FW_dest "FinalWriter.info"))
  174.                     ; This DOES NOT copy the icon, in case the user
  175.                     ; has modified the tool-types
  176.                     (
  177.                         (working "Programm Final Writer wird von "
  178.                                     "Diskette 1 installiert.")
  179.                         (set error
  180.                             (run
  181.                                 ("\"%s\" -f x \"Disk 1:FinalWriter.lha\" FinalWriter >NIL:" DeArcher)
  182.                             )
  183.                         )
  184.                     )
  185.                     ; This DOES copy the icon
  186.                     (
  187.                         (working "Programm und Piktogramm Final "
  188.                                     "Writer werden von Diskette 1 installiert." )
  189.                         (set error
  190.                             (run
  191.                                 ("\"%s\" -f x \"Disk 1:FinalWriter.lha\" >NIL:" DeArcher)
  192.                             )
  193.                         )
  194.                     )
  195.                 )
  196.             )
  197.         )
  198.  
  199.         (if error
  200.             (abort ("Fehler bei Installation des Programms FinalWriter."))
  201.         )
  202.  
  203.         (complete 4)
  204.  
  205.         ; Installing FWMacros
  206.         (if (IN install_options 1)
  207.             (
  208.                 ; If FWMacros doesn't exist, create it.
  209.                 (if (NOT (exists (tackon FW_dest "FWMacros")))
  210.                     (
  211.                     (makedir (tackon FW_dest "FWMacros") (infos))
  212.                     )
  213.                 )
  214.  
  215.                 ; Make installer cd into FWMacros when it executes the run statement
  216.                 (set @execute-dir (tackon FW_dest "FWMacros"))
  217.  
  218.                 ; Extract the macro files
  219.                 (working "ARexx-Makros werden von Diskette 1 installiert.")
  220.                 (set error
  221.                     (run
  222.                         ("\"%s\" -f x \"Disk 1:FWMacros.lha\" >NIL:" DeArcher)
  223.                     )
  224.                 )
  225.  
  226.                 ; Abort if any errors
  227.                 (if error
  228.                     (abort ("Fehler bei Installation der ARexx-Makros."))
  229.                 )
  230.             )
  231.         )
  232.  
  233.         (complete 7)
  234.  
  235.         ; Installing FWFiles
  236.         (if (IN install_options 2)
  237.             (
  238.                 ; If FWFiles doesn't exist, create it.
  239.                 (if (NOT (exists (tackon FW_dest "FWFiles")))
  240.                     (
  241.                     (makedir (tackon FW_dest "FWFiles") (infos))
  242.                     )
  243.                 )
  244.  
  245.                 ; Make installer cd into FWFiles when it executes the run statement
  246.                 (set @execute-dir (tackon FW_dest "FWFiles"))
  247.  
  248.                 ; Extract the files
  249.                 (working "Datendateien werden von Diskette 1 installiert.")
  250.                 (set error
  251.                     (run
  252.                         ("\"%s\" -f x \"Disk 1:FWFiles.lha\" >NIL:" DeArcher)
  253.                     )
  254.                 )
  255.  
  256.                 ; Abort if any errors
  257.                 (if error
  258.                     (abort ("Fehler bei Installation der Datendateien."))
  259.                 )
  260.  
  261.                 ; Previous versions of Final Writer have the hyphenation
  262.                 ; file, xxx.hyp, in FWFiles. With Final Writer Release 3
  263.                 ; the hyphenation file will reside in FWSpell instead.
  264.                 ; So, if we find the hyphenation file in FWFiles, then
  265.                 ; move it to FWSpell.
  266.                 (if (exists (tackon FW_dest "FWFiles/grm.hyp"))
  267.                     (
  268.                         (if (exists (tackon FW_dest "FWSpell"))
  269.                             (
  270.                                 (copyfiles
  271.                                     (source (tackon FW_dest "FWFiles/grm.hyp"))
  272.                                     (dest (tackon FW_dest "FWSpell"))
  273.                                 )
  274.  
  275.                                 (delete (tackon FW_dest "FWFiles/grm.hyp") )
  276.                             )
  277.                         )
  278.                     )
  279.                 )
  280.             )
  281.         )
  282.  
  283.         (complete 11)
  284.  
  285.         ; Installing FWLibs
  286.         (if (IN install_options 3)
  287.             (
  288.                 ; If FWLibs doesn't exist, create it.
  289.                 (if (NOT (exists (tackon FW_dest "FWLibs")))
  290.                     (
  291.                     (makedir (tackon FW_dest "FWLibs"))
  292.                     )
  293.                 )
  294.  
  295.                 ; Make installer cd into FWLibs when it executes the run statement
  296.                 (set @execute-dir (tackon FW_dest "FWLibs"))
  297.  
  298.                 (working "Bibliotheken werden von Diskette 1 installiert.")
  299.                 (set error
  300.                     (run
  301.                         ("\"%s\" -f x \"Disk 1:FWLibs.lha\" >NIL:" DeArcher)
  302.                     )
  303.                 )
  304.  
  305.                 ; Abort if any errors
  306.                 (if error
  307.                     (abort ("Fehler bei Installation der Bibliotheken."))
  308.                 )
  309.  
  310.                 (run ("Avail FLUSH"))
  311.             )
  312.         )
  313.     )
  314. )
  315.  
  316. (complete 14)
  317.  
  318. ; Installing System Data Files/Libraries/Fonts
  319. (if (IN install_options 4 5)
  320.     (
  321.         ; Get Disk 2
  322.         (askdisk
  323.             (prompt "Bitte \"Diskette 2\" einlegen.")
  324.             (help    "Diskette 2 enthält die auf dem System zu installierenden "
  325.                     "Systemschriftarten sowie die Dateien für Rechtschreibprüfung und "
  326.                       "Silbentrennung von Final Writer." )
  327.             (dest "Disk 2")
  328.         )
  329.  
  330.         ; Installing FWFonts
  331.         (if (IN install_options 4)
  332.             (
  333.                 ; If FWFonts doesn't exist, create it.
  334.                 (if (NOT (exists (tackon FW_dest "FWFonts")))
  335.                     (
  336.                     (makedir (tackon FW_dest "FWFonts") (infos))
  337.                     )
  338.                 )
  339.  
  340.                 ; Make installer cd into FWFonts when it executes the run statement
  341.                 (set @execute-dir (tackon FW_dest "FWFonts"))
  342.  
  343.                 (working "Systemschriftarten werden von Diskette 2 installiert.")
  344.                 (set error
  345.                     (run
  346.                         ("\"%s\" -f x \"Disk 2:FWFonts.lha\" >NIL:" DeArcher)
  347.                     )
  348.                 )
  349.  
  350.                 ; Abort if any errors
  351.                 (if error
  352.                     (abort ("Fehler bei Installation der Systemschriftarten."))
  353.                 )
  354.             )
  355.         )
  356.  
  357.         (complete 19)
  358.  
  359.         ; Instaling FWSpell
  360.         (if (IN install_options 5)
  361.             (
  362.                 ; If FWSpell doesn't exist, create it.
  363.                 (if (NOT (exists (tackon FW_dest "FWSpell")))
  364.                     (
  365.                     (makedir (tackon FW_dest "FWSpell"))
  366.                     )
  367.                 )
  368.  
  369.                 ; Preserve the user dictionary as userdict.grm.save
  370.                 (if (exists (tackon FW_dest "FWSpell/userdict.grm"))
  371.                     (
  372.                         (set restore_UD 1)
  373.                         (copyfiles
  374.                             (source (tackon FW_dest "FWSpell/userdict.grm"))
  375.                             (dest (tackon FW_dest "FWSpell"))
  376.                             (newname "userdict.grm.save")
  377.                         )
  378.                     )
  379.                     (set restore_UD 0)
  380.                 )
  381.  
  382.                 ; Make installer cd into FWSpell when it executes the run statement
  383.                 (set @execute-dir (tackon FW_dest "FWSpell"))
  384.  
  385.                 (working "Dateien für Rechtschreibprüfung & Silbentrennung werden "
  386.                             "von Diskette 2 installiert.")
  387.                 (set error
  388.                     (run
  389.                         ("\"%s\" -f x \"Disk 2:FWSpell.lha\" >NIL:" DeArcher)
  390.                     )
  391.                 )
  392.  
  393.                 (if restore_UD
  394.                     (
  395.                         (copyfiles
  396.                             (source (tackon FW_dest "FWSpell/userdict.grm.save"))
  397.                             (dest (tackon FW_dest "FWSpell"))
  398.                             (newname "userdict.grm")
  399.                         )
  400.                         (delete (tackon FW_dest "FWSpell/userdict.grm.save"))
  401.                     )
  402.                 )
  403.  
  404.                 ; Abort if any errors
  405.                 (if error
  406.                     (abort ("Fehler bei Installation der Dateien für die "
  407.                         "Rechtschreibprüfung."))
  408.                 )
  409.  
  410.                 ; Previous versions of Final Writer have the hyphenation
  411.                 ; file, xxx.hyp, in FWFiles. With Final Writer Release 3
  412.                 ; the hyphenation file will reside in FWSpell instead.
  413.                 ; So, if we find the hyphenation file in FWFiles, then
  414.                 ; move it to FWSpell.
  415.                 (if (exists (tackon FW_dest "FWFiles/grm.hyp"))
  416.                     (
  417.                         (if (exists (tackon FW_dest "FWSpell"))
  418.                             (
  419.                                 (copyfiles
  420.                                     (source (tackon FW_dest "FWFiles/grm.hyp"))
  421.                                     (dest (tackon FW_dest "FWSpell"))
  422.                                 )
  423.  
  424.                                 (delete (tackon FW_dest "FWFiles/grm.hyp") )
  425.                             )
  426.                         )
  427.                     )
  428.                 )
  429.             )
  430.         )
  431.     )
  432. )
  433.  
  434. (complete 29)
  435.  
  436. (if (IN install_options 6 7)
  437.     (
  438.         ; Get Disk 3
  439.         (askdisk
  440.             (prompt "Bitte \"Diskette 3\" einlegen.")
  441.             (help    "Diskette 3 enthält die auf dem System zu installierenden "
  442.                     "Thesaurusdateien von Final Writer und die EPS Clip Art.")
  443.             (dest "Disk 3")
  444.         )
  445.  
  446.         ; Instaling FWThes
  447.         (if (IN install_options 6)
  448.             (
  449.                 ; If FWThes doesn't exist, create it.
  450.                 (if (NOT (exists (tackon FW_dest "FWThes")))
  451.                     (
  452.                     (makedir (tackon FW_dest "FWThes"))
  453.                     )
  454.                 )
  455.  
  456.                 ; Make installer cd into FWThes when it executes the run statement
  457.                 (set @execute-dir (tackon FW_dest "FWThes"))
  458.  
  459.                 (working "Thesaurusdateien werden von Diskette 3 installiert.")
  460.                 (set error
  461.                     (run
  462.                         ("\"%s\" -f x \"Disk 3:FWThes.lha\" >NIL:" DeArcher)
  463.                     )
  464.                 )
  465.  
  466.                 ; Abort if any errors
  467.                 (if error
  468.                     (abort ("Fehler bei Installation der Thesaurusdateien."))
  469.                 )
  470.             )
  471.         )
  472.  
  473.         (complete 32)
  474.  
  475.         ; Installing EPS Clip Art <cc> <fed> <maps> <metro1>
  476.         (if (IN install_options 7)
  477.             (
  478.                 ; If FWClipArt doesn't exist, create it.
  479.                 (if (NOT (exists (tackon FW_dest "FWClipArt")))
  480.                     (
  481.                     (makedir (tackon FW_dest "FWClipArt"))
  482.                     )
  483.                 )
  484.  
  485.                 ; Make installer cd into FWClipArt when it executes the run statement
  486.                 (set @execute-dir (tackon FW_dest "FWClipArt"))
  487.  
  488.                 (working "EPS Clip Art wird von Diskette 3 installiert.")
  489.  
  490.                 (set error
  491.                     (run
  492.                         ("\"%s\" -f x \"Disk 3:cc.lha\" >NIL:" DeArcher)
  493.                     )
  494.                 )
  495.  
  496.                 ; Abort if any errors
  497.                 (if error
  498.                     (abort ("Fehler bei Installation der EPS Clip Art."))
  499.                 )
  500.  
  501.                 (complete 35)
  502.  
  503.                 (set error
  504.                     (run
  505.                         ("\"%s\" -f x \"Disk 3:fed.lha\" >NIL:" DeArcher)
  506.                     )
  507.                 )
  508.  
  509.                 ; Abort if any errors
  510.                 (if error
  511.                     (abort ("Fehler bei Installation der EPS Clip Art."))
  512.                 )
  513.  
  514.                 (complete 37)
  515.  
  516.                 (set error
  517.                     (run
  518.                         ("\"%s\" -f x \"Disk 3:maps.lha\" >NIL:" DeArcher)
  519.                     )
  520.                 )
  521.  
  522.                 ; Abort if any errors
  523.                 (if error
  524.                     (abort ("Fehler bei Installation der EPS Clip Art."))
  525.                 )
  526.  
  527.                 (complete 40)
  528.  
  529.                 (set error
  530.                     (run
  531.                         ("\"%s\" -f x \"Disk 3:metro1.lha\" >NIL:" DeArcher)
  532.                     )
  533.                 )
  534.  
  535.                 ; Abort if any errors
  536.                 (if error
  537.                     (abort ("Fehler bei Installation der EPS Clip Art."))
  538.                 )
  539.             )
  540.         )
  541.     )
  542. )
  543.  
  544. (complete 43)
  545.  
  546. (if (IN install_options 7)
  547.     (
  548.         ; ----------
  549.         ; Get Disk 4
  550.         ;
  551.         (askdisk
  552.             (prompt "Bitte \"Diskette 4\" einlegen.")
  553.             (help    "Diskette 4 enthält die auf dem System zu installierende EPS Clip Art.")
  554.             (dest "Disk 4")
  555.         )
  556.  
  557.         ; Installing EPS Clip Art <dms> <totem>
  558.  
  559.         ; If FWClipArt doesn't exist, create it.
  560.         (if (NOT (exists (tackon FW_dest "FWClipArt")))
  561.             (
  562.             (makedir (tackon FW_dest "FWClipArt"))
  563.             )
  564.         )
  565.  
  566.         ; Make installer cd into FWClipArt when it executes the run statement
  567.         (set @execute-dir (tackon FW_dest "FWClipArt"))
  568.  
  569.         (working "EPS Clip Art wird von Diskette 4 installiert.")
  570.         (set error
  571.             (run
  572.                 ("\"%s\" -f x \"Disk 4:dms.lha\" >NIL:" DeArcher)
  573.             )
  574.         )
  575.  
  576.         ; Abort if any errors
  577.         (if error
  578.             (abort ("Fehler bei Installation der EPS Clip Art."))
  579.         )
  580.  
  581.         (complete 50)
  582.  
  583.         (set error
  584.             (run
  585.                 ("\"%s\" -f x \"Disk 4:totem.lha\" >NIL:" DeArcher)
  586.             )
  587.         )
  588.  
  589.         ; Abort if any errors
  590.         (if error
  591.             (abort ("Fehler bei Installation der EPS Clip Art."))
  592.         )
  593.     )
  594. )
  595.  
  596. (complete 57)
  597.  
  598. (if (IN install_options 7 8)
  599.     (
  600.         ; ----------
  601.         ; Get Disk 5
  602.         ;
  603.         (askdisk
  604.             (prompt "Bitte \"Diskette 5\" einlegen.")
  605.             (help    "Diskette 5 enthält die auf dem System zu installierende EPS Clip Art "
  606.                      "sowie zusätzliche dekorative und Serif-Schriftarten.")
  607.             (dest "Disk 5")
  608.         )
  609.  
  610.         ; Instaling EPS Clip Art
  611.         (if (IN install_options 7)
  612.             (
  613.                 ; Make installer cd into FWClipArt/Metro when it executes the run statement
  614.                 (set @execute-dir (tackon FW_dest "FWClipArt/Metro"))
  615.  
  616.                 (working "EPS Clip Art wird von Diskette 5 installiert.")
  617.                 (set error
  618.                     (run
  619.                         ("\"%s\" -f x \"Disk 5:Metro2.lha\" >NIL:" DeArcher)
  620.                     )
  621.                 )
  622.  
  623.                 ; Abort if any errors
  624.                 (if error
  625.                     (abort ("Fehler bei Installation der Dekorativen "
  626.                             "Schriftarten."))
  627.                 )
  628.             )
  629.         )
  630.  
  631.         (complete 62)
  632.  
  633.         ; Instaling Decorative fonts
  634.         (if (IN install_options 8)
  635.             (
  636.                 ; If FWFonts/SWOLFonts/Deco doesn't exist, create it.
  637.                 (if (NOT (exists (tackon FW_dest "FWFonts/SWOLFonts/Deco")))
  638.                     (
  639.                     (makedir (tackon FW_dest "FWFonts/SWOLFonts/Deco") (infos))
  640.                     )
  641.                 )
  642.  
  643.                 ; Make installer cd into Deco when it executes the run statement
  644.                 (set @execute-dir (tackon FW_dest "FWFonts/SWOLFonts/Deco"))
  645.  
  646.                 (working "Dekorative Schriftarten werden von Diskette 5 installiert.")
  647.                 (set error
  648.                     (run
  649.                         ("\"%s\" -f x \"Disk 5:Deco.lha\" >NIL:" DeArcher)
  650.                     )
  651.                 )
  652.  
  653.                 ; Abort if any errors
  654.                 (if error
  655.                     (abort ("Fehler bei Installation der Dekorativen "
  656.                              "Schriftarten."))
  657.                 )
  658.             )
  659.         )
  660.  
  661.         (complete 66)
  662.  
  663.         ; Instaling Serif1 fonts
  664.         (if (IN install_options 8)
  665.             (
  666.                 ; If FWFonts/SWOLFonts/Serif doesn't exist, create it.
  667.                 (if (NOT (exists (tackon FW_dest "FWFonts/SWOLFonts/Serif")))
  668.                     (
  669.                     (makedir (tackon FW_dest "FWFonts/SWOLFonts/Serif") (infos))
  670.                     )
  671.                 )
  672.  
  673.                 ; Make installer cd into Serif when it executes the run statement
  674.                 (set @execute-dir (tackon FW_dest "FWFonts/SWOLFonts/Serif"))
  675.  
  676.                 (working "Serif-Schriftarten werden von Diskette 5 installiert.")
  677.                 (set error
  678.                     (run
  679.                         ("\"%s\" -f x \"Disk 5:Serif1.lha\" >NIL:" DeArcher)
  680.                     )
  681.                 )
  682.  
  683.                 ; Abort if any errors
  684.                 (if error
  685.                     (abort ("Fehler bei Installation der Serif1-Schriftarten."))
  686.                 )
  687.             )
  688.         )
  689.     )
  690. )
  691.  
  692. (complete 71)
  693.  
  694. (if (IN install_options 8)
  695.     (
  696.         ; ----------
  697.         ; Get Disk 6
  698.         ;
  699.         (askdisk
  700.             (prompt "Bitte \"Diskette 6\" einlegen.")
  701.             (help    "Diskette 6 enthält auf dem System zu installierende, zusätzliche "
  702.                     "Serif-Schriftarten.")
  703.             (dest "Disk 6")
  704.         )
  705.  
  706.         ; Instaling Serif2 fonts
  707.         (if (IN install_options 8)
  708.             (
  709.                 ; If FWFonts/SWOLFonts/Serif doesn't exist, create it.
  710.                 (if (NOT (exists (tackon FW_dest "FWFonts/SWOLFonts/Serif")))
  711.                     (
  712.                     (makedir (tackon FW_dest "FWFonts/SWOLFonts/Serif") (infos))
  713.                     )
  714.                 )
  715.  
  716.                 ; Make installer cd into Serif when it executes the run statement
  717.                 (set @execute-dir (tackon FW_dest "FWFonts/SWOLFonts/Serif"))
  718.  
  719.                 (working "Serif-Schriftarten werden von Diskette 6 installiert.")
  720.                 (set error
  721.                     (run
  722.                         ("\"%s\" -f x \"Disk 6:Serif2.lha\" >NIL:" DeArcher)
  723.                     )
  724.                 )
  725.  
  726.                 ; Abort if any errors
  727.                 (if error
  728.                     (abort ("Fehler bei Installation der Serif2-Schriftarten."))
  729.                 )
  730.             )
  731.         )
  732.     )
  733. )
  734.  
  735. (complete 86)
  736.  
  737. (if (IN install_options 8)
  738.     (
  739.         ; ----------
  740.         ; Get Disk 7
  741.         ;
  742.         (askdisk
  743.             (prompt "Bitte \"Diskette 7\" einlegen.")
  744.             (help    "Diskette 7 enthält auf dem System zu installierende, zusätzliche "
  745.                     "serifenlose Schriftarten.")
  746.             (dest "Disk 7")
  747.         )
  748.  
  749.         ; Instaling Sans serif fonts
  750.         (if (IN install_options 8)
  751.             (
  752.                 ; If FWFonts/SWOLFonts/Sans doesn't exist, create it.
  753.                 (if (NOT (exists (tackon FW_dest "FWFonts/SWOLFonts/Sans")))
  754.                     (
  755.                     (makedir (tackon FW_dest "FWFonts/SWOLFonts/Sans") (infos))
  756.                     )
  757.                 )
  758.  
  759.                 ; Make installer cd into Sans when it executes the run statement
  760.                 (set @execute-dir (tackon FW_dest "FWFonts/SWOLFonts/Sans"))
  761.  
  762.                 (working "Serifenlose Schriftarten werden von Diskette 7 installiert.")
  763.                 (set error
  764.                     (run
  765.                         ("\"%s\" -f x \"Disk 7:Sans.lha\" >NIL:" DeArcher)
  766.                     )
  767.                 )
  768.  
  769.                 ; Abort if any errors
  770.                 (if error
  771.                     (abort ("Fehler bei Installation der Serifenlosen "
  772.                              "Schriftarten."))
  773.                 )
  774.             )
  775.         )
  776.     )
  777. )
  778.  
  779. ; If FWDocs doesn't exist, create it.
  780. (if (NOT (exists (tackon FW_dest "FWDocs")))
  781.     (
  782.     (makedir (tackon FW_dest "FWDocs") (infos))
  783.     )
  784. )
  785.  
  786. ; If FWTextClips doesn't exist, create it.
  787. (if (NOT (exists (tackon FW_dest "FWTextClips")))
  788.     (
  789.     (makedir (tackon FW_dest "FWTextClips") (infos))
  790.     )
  791. )
  792.  
  793. (delete DeArcher)
  794.  
  795. (complete 100)
  796.  
  797. (exit)
  798.  
  799.  
  800.