home *** CD-ROM | disk | FTP | other *** search
/ Amiga ISO Collection / AmigaUtilCD1.iso / Archiver / PHN-L101.LHA / LZXGui / Install < prev    next >
Encoding:
Text File  |  1995-08-20  |  8.5 KB  |  502 lines

  1. ;$VER Install-LZXGui.script V1.1 (15.8.1995)
  2. ;copyright © 1995 Olaf Gramkow (tHE aLIEN/pHANTASM)
  3. ;All rights reserved
  4.  
  5. (set progname "LZXGui")
  6. (set version "V1.01")
  7.  
  8. (complete 0)
  9.  
  10. ; --- English (default) strings ---
  11.  
  12. (set #introduction
  13.     (cat
  14.         "\n"
  15.         ("%s - Gui for LZX\n" progname)
  16.         "\n"
  17.         ("%s ©1995 tHE aLIEN/pHANTASM\n" progname)
  18.         "\n"
  19.         ("%s is Shareware. If you use it\n" progname)
  20.         "you have to register yourself!\n"
  21.         "Please have a look in the help-file.\n"
  22.         "Thank you.\n"
  23.     )
  24. )
  25.  
  26. (set #badkick "\n Sorry, this package requires OS V2.0 or better.\n")
  27.  
  28. (set #LZXGuiInstallieren
  29.     (cat
  30.         ("Where should I install %s %s?\n" progname version)
  31.         "An own directory will not be created."
  32.     )
  33. )
  34.  
  35. (set #LZXGuiInstallierenHelp
  36.     (cat
  37.         ("Here you can choose where I should install %s %s?\n" progname version)
  38.         "An own directory will not be created."
  39.     )
  40. )
  41.  
  42. (set #HotHelpInstall
  43.     (cat
  44.         "Where should I install the HotHelp-Files?\n"
  45.         "An own directory will be created."
  46.     )
  47. )
  48.  
  49. (set #HotHelpInstallHelp
  50.     (cat
  51.         "Here you can choose where I should install the HotHelp-Files.\n"
  52.         "An own directory will be created.\n\n"
  53.     )
  54. )
  55.  
  56. (set #CopyTEXToolsLibrary "Copy TEXTools.library to libs:")
  57.  
  58. (set #CopyTEXToolsLibraryHelp
  59.     (cat
  60.         "Here you can choose, if the TEXTools.library should be installed. "
  61.         "The TEXTools.library will be copied to libs:.\n"
  62.     )
  63. )
  64.  
  65. (set #CopyTEXStandardLibrary "Copy TEXStandard.library to libs:")
  66.  
  67. (set #CopyTEXStandardLibraryHelp
  68.     (cat
  69.         "Here you can choose, if the TEXStandard.library should be installed. "
  70.         "The TEXStandard.library will be copied to libs:.\n"
  71.     )
  72. )
  73.  
  74. (set #CopyHotHelpLibrary "Copy HotHelp.library to libs:")
  75.  
  76. (set #CopyHotHelpLibraryHelp
  77.     (cat
  78.         "Here you can choose, if the HotHelp.library should be installed. "
  79.         "The HotHelp.library will be copied to libs:.\n"
  80.     )
  81. )
  82.  
  83. (set #StartupText "\n\nThe following assign will be created:\n\n")
  84.  
  85. (set #LZXGuiAskOptions
  86.     ("Select what you want to install from %s %s." progname version)
  87. )
  88.  
  89. (set #LZXGuiAskOptionsHelp
  90.     (cat
  91.         ("Here you select the parts of %s %s you want to install.\n\n" progname version)
  92.         @askoptions-help
  93.     )
  94. )
  95.  
  96. (set #BitPosition0 "LZXGui Help")
  97.  
  98. (set #BitPosition1 "LZXGui Brainfile")
  99.  
  100. (set #BitPosition2 "LZXGui Catalog")
  101.  
  102. ; --- German strings ---
  103.  
  104. (if (= @language "deutsch")
  105.     (
  106.         (set #introduction
  107.             (cat
  108.                 "\n"
  109.                 ("%s - Gui für LZX\n" progname)
  110.                 "\n"
  111.                 ("%s ©1995 tHE aLIEN/pHANTASM\n" progname)
  112.                 "\n"
  113.                 ("%s ist Shareware. Wenn Sie es\n" progname)
  114.                 "benutzen, müssen Sie sich registrieren\n"
  115.                 "lassen! Bitte schauen Sie in die.\n"
  116.                 "Anleitung. Vielen Dank.\n"
  117.             )
  118.         )
  119.  
  120.         (set #badkick "\n Tut mir leid, dieses Paket benötigt mind. OS V2.0.\n")
  121.  
  122.         (set #LZXGuiInstallieren
  123.             (cat
  124.                 ("Wo soll %s %s installiert werden?\n" progname version)
  125.                 "Es wird keine eigene Schublade erstellt."
  126.             )
  127.         )
  128.  
  129.         (set #LZXGuiInstallierenHelp
  130.             (cat
  131.                 ("Hier können Sie wählen wo %s %s installiert werden soll.\n" progname version)
  132.                 "Es wird keine eigene Schublade erstellt.\n\n"
  133.             )
  134.         )
  135.  
  136.         (set #HotHelpInstall
  137.             (cat
  138.                 "Wo sollen die HotHelp-Dateien installiert werden?\n"
  139.                 "Es wird eine eigene Schublade angelegt."
  140.             )
  141.         )
  142.  
  143.         (set #HotHelpInstallHelp
  144.             (cat
  145.                 "Hier können Sie wählen, wo die HotHelp-Dateien installiert werden sollen.\n"
  146.                 "Es wird eine eigene Schublade angelegt.\n\n"
  147.             )
  148.         )
  149.  
  150.         (set #CopyTEXToolsLibrary "Kopiere die TEXTools.library nach libs:")
  151.  
  152.         (set #CopyTEXToolsLibraryHelp
  153.             (cat
  154.                 "Hier können Sie wählen, ob die TEXTools.library installiert werden soll. "
  155.                 "Die TEXTools.library wird nach libs: kopiert.\n"
  156.             )
  157.         )
  158.  
  159.         (set #CopyTEXStandardLibrary "Kopiere die TEXStandard.library nach libs:")
  160.  
  161.         (set #CopyTEXStandardLibraryHelp
  162.             (cat
  163.                 "Hier können Sie wählen, ob die TEXStandard.library installiert werden soll. "
  164.                 "Die TEXStandard.library wird nach libs: kopiert.\n"
  165.             )
  166.         )
  167.  
  168.         (set #CopyHotHelpLibrary "Kopiere die HotHelp.library nach libs:")
  169.  
  170.         (set #CopyHotHelpLibraryHelp
  171.             (cat
  172.                 "Hier können Sie wählen, ob die HotHelp.library installiert werden soll. "
  173.                 "Die HotHelp.library wird nach libs: kopiert.\n"
  174.             )
  175.         )
  176.  
  177.         (set #StartupText "\n\nDas folgende Assign wird angelegt:\n\n")
  178.  
  179.         (set #LZXGuiAskOptions
  180.             (cat
  181.                 ("Wählen Sie die Punkte vom %s %s Paket aus, " progname version)
  182.                 "die Sie installieren möchten."
  183.             )
  184.         )
  185.  
  186.         (set #LZXGuiAskOptionsHelp
  187.             (cat
  188.                 ("Hier können Sie wählen welche Teile vom %s %s Paket " progname version)
  189.                 "installiert werden sollen.\n\n"
  190.                 @askoptions-help
  191.             )
  192.         )
  193.  
  194.         (set #BitPosition0 "LZXGui Hilfe")
  195.  
  196.         (set #BitPosition1 "LZXGui Brainfile")
  197.  
  198.         (set #BitPosition2 "LZXGui Catalog")
  199.     )
  200. )
  201.  
  202. ; are we running under OS2.0+ ROM?
  203.  
  204. (if (< (/ (getversion) 65536) 36)
  205.     (
  206.         (message #badkick)
  207.         (exit
  208.             (quiet)
  209.         )
  210.     )
  211. )
  212.  
  213. (complete 0)
  214.  
  215. (message #introduction)
  216.  
  217. (welcome)
  218.  
  219. (set @default-dest "")
  220.  
  221. ; set default language selection (catalogs) to 'none'
  222.  
  223. (set catalogs 0)
  224.  
  225. (if (not (exists "c:LZX" (noreq)))
  226.     (copyfiles
  227.         (source "lzx")
  228.         (dest "c:")
  229.     )
  230. )
  231.  
  232. ; what should we install
  233.  
  234. (set parts
  235.     (askoptions
  236.         (prompt #LZXGuiAskOptions)
  237.         (help #LZXGuiAskOptionsHelp)
  238.         (choices
  239.             ;bit position 0
  240.             #BitPosition0
  241.             ;bit position 1
  242.             #BitPosition1
  243.             ;bit position 2
  244.             #BitPosition2
  245.         )
  246.     )
  247. )
  248.  
  249. (complete 10)
  250.  
  251. (set lzxguidest
  252.     (askdir
  253.         (prompt    #LZXGuiInstallieren)
  254.         (help
  255.             #LZXGuiInstallierenHelp
  256.             @askdir-help
  257.         )
  258.         (default "sys:")
  259.     )
  260. )
  261.  
  262. (copyfiles
  263.     (source "Main")
  264.     (dest lzxguidest)
  265.     (all)
  266. )
  267.  
  268. (complete 19)
  269.  
  270. (if    (exists "s:LZXGui.prefs" (noreq))
  271.     (
  272.         (if (exists "c:Delete" (noreq))
  273.             (
  274.                 (run "c:Delete s:LZXGui.prefs")
  275.             )
  276.         )
  277.     )
  278. )
  279.  
  280. (complete 20)
  281.  
  282. (if (IN parts 0) ;bit position 0
  283.     (
  284.         (if (not (exists "HotHelp:" (noreq)))
  285.             (
  286.                 (set hothelpdest
  287.                     (tackon
  288.                         (askdir
  289.                             (prompt #HotHelpInstall)
  290.                             (help
  291.                                 #HotHelpInstallHelp
  292.                                 @askdir-help
  293.                             )
  294.                             (default "sys:")
  295.                         )
  296.                         "HotHelp"
  297.                     )
  298.                 )
  299.  
  300.                 (makedir hothelpdest)
  301.  
  302.                 (complete 25)
  303.  
  304.                 (copyfiles
  305.                     (source "HotHelp")
  306.                     (dest hothelpdest)
  307.                     (all)
  308.                 )
  309.  
  310.                 (copyfiles
  311.                     (source "l/HotHelpHandler")
  312.                     (dest "L:")
  313.                 )
  314.             )
  315.         )
  316.     )
  317. )
  318.  
  319. (complete 40)
  320.  
  321. (if (IN parts 1) ;bit position 1
  322.     (
  323.         (copyfiles
  324.             (source "s")
  325.             (dest "s:")
  326.             (all)
  327.         )
  328.     )
  329. )
  330.  
  331. (complete 45)
  332.  
  333. (if (IN parts 0) ;bit position 0
  334.     (
  335.         (if (= @language "deutsch")
  336.             (
  337.                 (copyfiles
  338.                     (source "Reader/Deutsch")
  339.                     (dest lzxguidest)
  340.                     (all)
  341.                 )
  342.  
  343.                 (if (exists "HotHelp:Projekte" (noreq))
  344.                     (copyfiles
  345.                         (source "Help/Deutsch")
  346.                         (dest "HotHelp:Projekte")
  347.                         (all)
  348.                     )
  349.                     (
  350.                         (set hothelpprojekte
  351.                             (tackon
  352.                                 ("%s" hothelpdest)
  353.                                 "Projekte"
  354.                             )
  355.                         )
  356.                         (copyfiles
  357.                             (source "Help/Deutsch")
  358.                             (dest hothelpprojekte)
  359.                             (all)
  360.                         )
  361.                     )
  362.                 )
  363.             )
  364.             (
  365.                 (copyfiles
  366.                     (source "Reader/English")
  367.                     (dest lzxguidest)
  368.                     (all)
  369.                 )
  370.  
  371.                 (if (exists "HotHelp:Projekte" (noreq))
  372.                     (copyfiles
  373.                         (source "Help/English")
  374.                         (dest "HotHelp:Projekte")
  375.                         (all)
  376.                     )
  377.                     (
  378.                         (set hothelpprojekte
  379.                             (tackon
  380.                                 ("%s" hothelpdest)
  381.                                 "Projekte"
  382.                             )
  383.                         )
  384.                         (copyfiles
  385.                             (source "Help/English")
  386.                             (dest hothelpprojekte)
  387.                             (all)
  388.                         )
  389.                     )
  390.                 )
  391.             )
  392.         )
  393.     )
  394. )
  395.  
  396. (complete 60)
  397.  
  398. (if (> (/ (getversion) 65536) 37)
  399.     (
  400.         (if (exists "Locale:Catalogs" (noreq))
  401.             (
  402.                 (if (IN parts 0) ;bit position 0
  403.                     (
  404.                         (copyfiles
  405.                             (source "HotHelpCatalog")
  406.                             (dest "Locale:Catalogs")
  407.                             (all)
  408.                         )
  409.                     )
  410.                 )
  411.  
  412.                 (complete 65)
  413.  
  414.                 (if (IN parts 2) ;bit position 2
  415.                     (
  416.                         (copyfiles
  417.                             (source "Catalogs")
  418.                             (dest "Locale:Catalogs")
  419.                             (all)
  420.                         )
  421.                     )
  422.                 )
  423.             )
  424.         )
  425.     )
  426. )
  427.  
  428. (complete 70)
  429.  
  430. (copylib
  431.     (prompt #CopyTEXToolsLibrary)
  432.     (help
  433.         #CopyTEXToolsLibraryHelp
  434.         @copylib-help
  435.     )
  436.     (source "libs/TEXTools.library")
  437.     (dest "libs:")
  438.     (confirm)
  439. )
  440.  
  441. (complete 80)
  442.  
  443. (copylib
  444.     (prompt #CopyTEXStandardLibrary)
  445.     (help
  446.         #CopyTEXStandardLibraryHelp
  447.         @copylib-help
  448.     )
  449.     (source "libs/TEXStandard.library")
  450.     (dest "libs:")
  451.     (confirm)
  452. )
  453.  
  454. (complete 90)
  455.  
  456. (if (IN parts 0) ;bit position 0
  457.     (
  458.         (copylib
  459.             (prompt #CopyHotHelpLibrary)
  460.             (help
  461.                 #CopyHotHelpLibraryHelp
  462.                 @copylib-help
  463.             )
  464.             (source "libs/HotHelp.library")
  465.             (dest "libs:")
  466.             (confirm)
  467.         )
  468.     )
  469. )
  470.  
  471. (complete 98)
  472.  
  473. ; Assigns
  474.  
  475. (if (IN parts 0) ;bit position 0
  476.     (
  477.         (if (not (exists "HotHelp:" (noreq)))
  478.             (
  479.                 (set assignhothelp
  480.                     ("assign HotHelp: %s" hothelpdest)
  481.                 )
  482.  
  483.                 (makeassign "HotHelp:" hothelpdest)
  484.  
  485.                 (startup
  486.                     progname
  487.                     (prompt
  488.                         #StartupText
  489.                         ("%s\n" assignhothelp)
  490.                     )
  491.                     (help @startup-help)
  492.                     (command
  493.                         ("%s\n" assignhothelp)
  494.                     )
  495.                 )
  496.             )
  497.         )
  498.     )
  499. )
  500.  
  501. (complete 100)
  502.