home *** CD-ROM | disk | FTP | other *** search
/ The AGA Experience 2 / agavol2.iso / software / utilities / wb_tools / ro / install / ro-install < prev    next >
Text File  |  1996-02-03  |  7KB  |  366 lines

  1. ; $VER: RO-Install 1.20 (3.2.96)
  2. ; Original RO Installer script by Juergen Schubert <juergen@desert.sub.org>
  3. ; Rewritten by Oliver Rummeyer, inspired by MagicCX-Install ©1994 Kai Iske.
  4.  
  5. ;========================================================
  6. ; Set Strings
  7.  
  8. (set #nokick
  9. (cat "You must be using Kickstart 2.04 to use RO. Aborting!"
  10. ))
  11.  
  12. (set #nomui
  13. (cat "You need version 3.2 of MUI or better. Aborting!"
  14. ))
  15.  
  16. (set #startmsg
  17. (cat "\n\RO installation script.\n"
  18.      "This script installs RO on your Amiga.\n\n"
  19.      "Read the Documentation files for\n"
  20.      "more information on the distribution.\n"
  21.      "RO © 1994-1996 Oliver Rummeyer\n"
  22.      "All rights reserved."
  23. ))
  24.  
  25. (set #icons "Which type of icons would you like to install")
  26. (set #magicwbicons "MagicWB-Style Icons; 8 colors")
  27. (set #classicicons "Classic-WB-Style Icons; 4 colors")
  28. (set #noicons "No Icons")
  29.  
  30. (set #install "\n\nInstalling RO to\n\n")
  31. (set #drawer
  32. (cat "In which disk or drawer should RO be installed?\n"
  33.      "(A drawer \"RO\" will be created there)"
  34. ))
  35.  
  36. (set #update
  37. (cat "A drawer \"RO\" already exists in the specified disk "
  38.      "or drawer. Your prefs settings are NOT changed if you "
  39.      "continue the installation procedure. Check the documentation "
  40.      "as some additional configuration keywords might be "
  41.      "introduced by this update.\n\n"
  42.      "Should I continue the installation procedure?"
  43. ))
  44.  
  45. (set #lang "Which languages should be installed?")
  46. (set #own
  47. (cat    "\n\nIf you want to create own versions of\n"
  48.     "the catalogs please have a look at the\n"
  49.     "distributions Locale directory. You will\n"
  50.     "find the .ct and .cd files there."
  51. ))
  52.  
  53. (set #install-docs "Would you like to install RO's documentation?")
  54. (set #doc "Which documentation formats would you like to install?")
  55. (set #doclang "Which language do you prefer for the documentation?")
  56.  
  57. (set #install-rexx "Would you like to install the arexx examples?")
  58. (set #drawer-rexx "In which disk or drawer should the arexx examples be installed?")
  59.  
  60. (set #exitmsg
  61. (cat "Please support the shareware concept!\n\n"
  62.      "If you like RO, please send $20.- or DM 30.- to\n\n"
  63.      "Oliver Rummeyer\n"
  64.      "Hochbergstraße 49/1\n"
  65.      "D-88213 Ravensburg\n"
  66.      "Germany/Europe"
  67. ))
  68. ;========================================================
  69.  
  70. (if (< (/ (getversion) 65536) 37)
  71. (
  72.     (abort #nokick)
  73. ))
  74.  
  75. (if (= (exists "LIBS:muimaster.library" (noreq)) 1)
  76. (
  77.     (if (= (run "c:Version muimaster.library VERSION 13 REVISION 686") 5)
  78.     (
  79.         (abort #nomui)
  80.     ))
  81. )
  82. (
  83.     (abort #nomui)
  84. ))
  85.  
  86. ;=========================================================
  87.  
  88. (message #startmsg)
  89.  
  90. (complete 0)
  91.  
  92. ;=========================================================
  93.  
  94. (set IconType
  95.     (askchoice
  96.         (prompt #icons)
  97.         (help @askchoice-help)
  98.         (choices
  99.             #magicwbicons
  100.             #classicicons
  101.             #noicons
  102.         )
  103.         (default 0)
  104.     )
  105. )
  106.  
  107. (complete 15)
  108.  
  109. ;=========================================================
  110.  
  111. (set TargetDir
  112.     (askdir
  113.         (prompt #drawer)
  114.         (default "SYS:Tools")
  115.         (help @askdir-help)
  116.     )
  117. )
  118.  
  119. (set DestDir (tackon TargetDir "RO"))
  120. (set @default-dest DestDir)
  121.  
  122. (if (= (exists DestDir) 2)
  123.    (message #update)
  124. )
  125.  
  126. (complete 30)
  127.  
  128. ;=========================================================
  129.  
  130. (makedir DestDir
  131.     (prompt #install DestDir)
  132. )
  133.  
  134. (if (= IconType 0)
  135. (
  136.        (copyfiles
  137.            (source "")
  138.         (choices "/Icons/8col/RO.info" "/Icons/8col/ROPrefs.info" "/Icons/8col/RO.guide.info" "/Icons/8col/RegForm.info")
  139.            (dest DestDir)
  140.     )
  141.     (copyfiles
  142.         (source "/Icons/8col/Drawer.info")
  143.         (dest TargetDir)
  144.         (newname "RO.info")
  145.     )
  146. ))
  147.  
  148. (if (= IconType 1)
  149. (
  150.        (copyfiles
  151.            (source "")
  152.         (choices "/Icons/4col/RO.info" "/Icons/4col/ROPrefs.info" "/Icons/4col/RO.guide.info" "/Icons/4col/RegForm.info")
  153.            (dest DestDir)
  154.     )
  155.     (copyfiles
  156.         (source "/Icons/4col/Drawer.info")
  157.         (dest TargetDir)
  158.         (newname "RO.info")
  159.     )
  160. ))
  161.  
  162. (copyfiles
  163.     (help @copyfiles-help)
  164.     (source "/Binary/RO,binary")
  165.     (dest DestDir)
  166.     (newname "RO")
  167. )
  168.  
  169. (copyfiles
  170.     (help @copyfiles-help)
  171.     (source "/Binary/ROPrefs,binary")
  172.     (dest DestDir)
  173.     (newname "ROPrefs")
  174. )
  175.  
  176. (if (= (exists "ENV:RO") 0)
  177.     (makedir "ENV:RO")
  178. )
  179. (if (= (exists "ENVARC:RO") 0)
  180.     (makedir "ENVARC:RO")
  181. )
  182.  
  183. (if (= (exists "ENV:RO/RO.prefs") 0)
  184.     (copyfiles
  185.         (help @copyfiles-help)
  186.         (source "/Config/RO.prefs,default")
  187.         (dest "ENV:RO/")
  188.         (newname "RO.prefs")
  189.     )
  190. )
  191.  
  192. (if (= (exists "ENVARC:RO/RO.prefs") 0)
  193.     (copyfiles
  194.         (help @copyfiles-help)
  195.         (source "/Config/RO.prefs,default")
  196.         (dest "ENVARC:RO/")
  197.         (newname "RO.prefs")
  198.     )
  199. )
  200.  
  201. (complete 45)
  202.  
  203. ;========================================================
  204. ; Install Locale
  205.  
  206. (if (AND (NOT (= (getassign "Locale") "")) (exists "libs:locale.library"))
  207. (
  208.  
  209.     (set Lang
  210.         (askoptions
  211.             (prompt #lang)
  212.             (help @askoptions-help)
  213.             (choices "Deutsch" "Français" )
  214.             (default 0)
  215.         )
  216.     )
  217.  
  218.     (if (IN Lang 0)
  219.         (copyfiles
  220.             (source "")
  221.             (choices "/Locale/Catalogs/Deutsch/ro.catalog")
  222.             (dest "LOCALE:Catalogs/Deutsch")
  223.         )
  224.     )
  225.  
  226.     (if (IN Lang 1)
  227.         (copyfiles
  228.             (source "")
  229.             (choices "/Locale/Catalogs/Français/ro.catalog")
  230.             (dest "LOCALE:Catalogs/Français")
  231.         )
  232.     )
  233.  
  234.     (message #own)
  235. ))
  236.  
  237. (complete 60)
  238.  
  239. ;========================================================
  240. ; Install ARexx Scripts
  241.  
  242. (if (askbool (help @askbool-help) (prompt #install-rexx))
  243. (
  244.     (set RexxDir
  245.     (askdir
  246.         (prompt #drawer-rexx)
  247.         (default "REXX:")
  248.         (help @askdir-help)
  249.     ))
  250.  
  251.        (copyfiles
  252.            (source "")
  253.         (choices
  254.             "/ARexx/Action.RO"
  255.             "/ARexx/AddArc.RO"
  256.             "/ARexx/ArcHandler.RO"
  257.             "/ARexx/Iconify.RO"
  258.             "/ARexx/LoadDir.RO"
  259.             "/ARexx/LoadOther.RO"
  260.             "/ARexx/PlayModule.RO"
  261.         )
  262.            (dest RexxDir)
  263.     )
  264.  
  265. ))
  266.  
  267. (complete 75)
  268.  
  269. ;=========================================================
  270. ; Install Documentation
  271.  
  272. (if (askbool (help @askbool-help) (prompt #install-docs))
  273. (
  274.  
  275.     (set doctype
  276.         (askoptions
  277.             (prompt #doc)
  278.             (help @askoptions-help)
  279.             (choices
  280.                 "AmigaGuide ® V39"
  281.             )
  282.             (default 1)
  283.         )
  284.     )
  285.  
  286.     (if (<> doctype 0)
  287.     (
  288.  
  289.         (set doclang
  290.             (askchoice
  291.                 (prompt #doclang)
  292.                 (help @askchoice-help)
  293.                 (choices
  294.                     "English"
  295.                     "Deutsch"
  296.                     "Français"
  297.                 )
  298.                 (default 0)
  299.             )
  300.         )
  301.     ))
  302.  
  303.     (if (= doctype 1)
  304.     (
  305.  
  306.         (if (= doclang 0)
  307.         (
  308.             (copyfiles
  309.                 (source "/Docs/RO.guide,english")
  310.                 (dest DestDir)
  311.                 (newname "RO.guide")
  312.             )
  313.             (copyfiles
  314.                 (source "/Docs/RegForm,english")
  315.                 (dest DestDir)
  316.                 (newname "RegForm")
  317.             )
  318.         ))
  319.  
  320.         (if (= doclang 1)
  321.         (
  322.             (copyfiles
  323.                 (source "/Docs/RO.guide,deutsch")
  324.                 (dest DestDir)
  325.                 (newname "RO.guide")
  326.             )
  327.             (copyfiles
  328.                 (source "/Docs/RegForm,deutsch")
  329.                 (dest DestDir)
  330.                 (newname "RegForm")
  331.             )
  332.         ))
  333.  
  334.         (if (= doclang 2)
  335.         (
  336.             (copyfiles
  337.                 (source "/Docs/RO.guide,francais")
  338.                 (dest DestDir)
  339.                 (newname "RO.guide")
  340.             )
  341.             (copyfiles
  342.                 (source "/Docs/RegForm,francais")
  343.                 (dest DestDir)
  344.                 (newname "RegForm")
  345.             )
  346.         ))
  347.  
  348.     ))
  349.  
  350.     (if (= doctype 0)
  351.     (
  352.         (delete    (tackon DestDir "RO.guide.info"))
  353.         (delete    (tackon DestDir "RegForm.info"))
  354.     ))
  355.  
  356. )
  357. (
  358.     (delete    (tackon DestDir "RO.guide.info"))
  359.     (delete    (tackon DestDir "RegForm.info"))
  360. ))
  361.  
  362. (complete 100)
  363.  
  364. ;==========================================================
  365. (exit #exitmsg)
  366.