home *** CD-ROM | disk | FTP | other *** search
/ Amiga ISO Collection / AmigaUtilCD2.iso / WordProcessors / FW401G_1.DMS / in.adf / HDInstall < prev    next >
Encoding:
Text File  |  1995-08-07  |  18.4 KB  |  799 lines

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