home *** CD-ROM | disk | FTP | other *** search
- ;=============================================================================
- ; $VER: Install_CygnusEd 1.1 (24.09.97)
- ;=============================================================================
-
- ;=============================================================================
- ; Procedures
- ;=============================================================================
- (procedure P_DeleteFile #file
- (
- (if (= (exists #file) 1)
- (
- (protect #file "+rwed")
- (delete #file)
- ))
-
- (if (= (exists (cat #file ".info")) 1)
- (
- (protect (cat #file ".info") "+rwed")
- (delete (cat #file ".info"))
- ))
- ))
-
- (procedure P_UnlockIcon #file
- (
- (if (<> (exists #file) 0)
- (
- (tooltype (dest #file) (noposition))
- ))
- ))
-
- (procedure P_CopyFile #file #to
- (
- (copyfiles
- (source #file)
- (dest #to)
- (infos)
- )
- (P_UnlockIcon (tackon #to (fileonly #file)))
- ))
-
- ;=============================================================================
- ; Start of installation script
- ;=============================================================================
- (complete 0)
-
- (if (< (/ @installer-version 65536) 43)
- (
- (abort (cat
- "This installation script requires the Installer tool V43"
- ))
- ))
-
- (if (< (getversion) (* 37 65536))
- (abort (cat
- "CygnusEd Professional Release 4 requires operating system "
- "version 2.04 or higher to work."
- ))
- )
-
- ;=============================================================================
- ; Ask for the installation directory
- ;=============================================================================
- (set #default-dest (askdir
- (prompt (cat
- "Please select where CygnusEd Professional should be installed. "
- "A drawer ``CygnusEd'' will be created there."
- ))
- (help @askdir-help)
- (default @default-dest)
- ))
- (set @default-dest (tackon #default-dest "CygnusEd"))
-
- (complete 5)
-
- ;=============================================================================
- ; Ask to remove all older files
- ;=============================================================================
- (set #remove-older (askbool
- (prompt (cat
- "Should any existing CygnusEd installation be deleted?\n\n"
- "If you choose ``Yes'', then the ``CygnusEd'', ``Ed'', ``MetaMac'' and "
- "``RecoverCEDFiles'' will be searched for and deleted from "
- "the drawers ``SYS:Utilities'', ``SYS:System'' and ``C:''.\n\nNote that "
- "any ``Ed'' program found in the ``C:'' drawer will not be removed."
- ))
- (default 1)
- (help (cat
- "You may wish to delete any older CygnusEd installation. "
- "This makes sure you will be using only the most recent program "
- "version. This cleanup operation will only delete the program "
- "files and leave your ARexx scripts untouched."
- ))
- ))
-
- (complete 10)
-
- (set #special-version 0)
- (if (not (patmatch "68000|68010" (database "cpu")))
- (
- (set #special-version (askbool
- (prompt (cat
- "Do you want to have a special CygnusEd version installed "
- "which is customized for your Amiga's CPU?"
- ))
- (default 1)
- (help (cat
- "A special version of the editor is provided which was "
- "created for use on Amigas equipped with an MC68020 CPU "
- "or a more recent model. This version can perform a little "
- "faster than the generic version and is also a bit smaller."
- ))
- ))
- ))
-
- (complete 15)
-
- ;=============================================================================
- ; Clean up any older installation
- ;=============================================================================
- (if #remove-older
- (
- (working "Deleting obsolete CygnusEd installation")
- (P_DeleteFile "SYS:Utilities/CED")
- (P_DeleteFile "SYS:Utilities/ED")
- (P_DeleteFile "SYS:Utilities/RecoverCEDFiles")
- (P_DeleteFile "SYS:Utilities/MetaMac")
-
- (P_DeleteFile "SYS:System/CED")
- (P_DeleteFile "SYS:System/ED")
- (P_DeleteFile "SYS:System/RecoverCEDFiles")
- (P_DeleteFile "SYS:System/MetaMac")
-
- (P_DeleteFile "C:CED")
- (P_DeleteFile "C:RecoverCEDFiles")
- (P_DeleteFile "C:MetaMac")
- ))
-
- (complete 20)
-
- ;=============================================================================
- ; Create the installation drawer unless it already exists
- ;=============================================================================
- (if (= (exists @default-dest) 0)
- (
- (makedir @default-dest (infos))
- ))
-
- (complete 25)
-
- ;=============================================================================
- ; Install CygnusEd, utilities and documentation
- ;=============================================================================
- (copyfiles
- (source "CygnusEd/CED.info")
- (dest @default-dest)
- )
- (P_UnlockIcon (tackon @default-dest "CED"))
- (if #special-version
- (set #special-version "CygnusEd/020/CED")
- (set #special-version "CygnusEd/CED")
- )
- (copyfiles
- (source #special-version)
- (dest @default-dest)
- )
-
- (complete 40)
-
- (P_CopyFile "CygnusEd/Ed" @default-dest)
- (protect (tackon @default-dest "Ed") "+p")
- (complete 45)
- (P_CopyFile "CygnusEd/MetaMac" @default-dest)
- (complete 50)
- (P_CopyFile "CygnusEd/RecoverCEDFiles" @default-dest)
- (complete 55)
- (P_CopyFile "CygnusEd/CygnusEd_Manual.guide" @default-dest)
- (complete 60)
-
- ;=============================================================================
- ; Install amigaguide.library (for the online documentation)
- ;=============================================================================
- (if (< (getversion) (* 39 65536))
- (
- (copylib
- (source "Libs/amigaguide.library")
- (dest "Libs:")
- )
- ))
- (complete 70)
-
- ;=============================================================================
- ; Install the ARexx scripts
- ;=============================================================================
- (if (not (= (getassign "REXX") ""))
- (
- (copyfiles
- (source "CygnusEd/CygnusEd_Scripts")
- (dest "REXX:")
- (pattern "#?.ced")
- (files)
- (optional nofail)
- )
- ))
- (complete 80)
-
- ;=============================================================================
- ; Install the catalogs
- ;=============================================================================
- (if (not (= (getassign "LOCALE") ""))
- (
- (copyfiles
- (source "CygnusEd/Catalogs")
- (dest "Locale:Catalogs")
- (all)
- )
- ))
- (complete 90)
-
- ;=============================================================================
- ; Add a path to the CygnusEd installation drawer
- ;=============================================================================
- (startup "CygnusEd"
- (prompt (cat
- "The drawer ``" @default-dest "'' will now be added to the "
- "Shell search path."
- ))
- (help (cat
- "In order to invoke CygnusEd from the Shell, a path must be "
- "added to the search list in your ``S:User-Startup'' file."
- ))
- (command (cat "Path \"" @default-dest "\" Add"))
- )
- (complete 100)
-