home *** CD-ROM | disk | FTP | other *** search
Wrap
; $VER: Install-DocMa 1.1 (14.10.96) (set current_version "1.1") (set lng @language) (complete 0) ;============================================================================= ; Locale strings (set #intro_0 (cat "\n\Document Manager " current_version"\n========================\n© 1996, Marc Ewert")) ;============================================================================= ; german (if (= lng "deutsch") ( (set #intro "Willkommen zum DocMa Installationsprogramm.\n Hiermit können Sie DocMa auf Ihrem Amiga installieren.\nFalls Sie DocMa von Ihrem Amiga entfernen wollen, müssen Sie sich mindestens als Geübter Benutzer deklarieren") (set #destdir "Bitte wählen Sie ein Zielverzeichnis für DocMa aus. Ein Verzeichnis 'DocMa' wird dort angelegt. Falls dort bereits ein 'DocMa' Verzeichnis existiert, wird die Programmversion auf den neusten Stand gebracht.") (set #destexists_1 "\nIm gewählten Zielverzeichnis\n\n") (set #destexists_2 "\n\nexistiert bereits eine DocMa-Schublade. Wenn Sie fortfahren, wird die dort befindliche DocMa-Installation aktualisiert.") (set #copying "\nKopiere ") (set #localeask "Bitte wählen Sie den zu installierenden Sprachkatalog aus.") (set #finished "DocMa wurde erfolgreich installiert im Verzeichnis\n\n%s.\n\n Eventuell gesicherte Dateien finden Sie in DocMa/Backup.") (set #finished_1 "DocMa wurde in Ihrem Suchpfad eingefügt. Bitte starten Sie Ihren Rechner neu, damit diese Änderung in Kraft tritt.") (set #finished_removed "DocMa wurde erfolgreich entfernt.") (set #finished_notremoved "DocMa wurde nicht erfolgreich entfernt.") (set #cpuask "Bitte wählen Sie gewünschte Prozessorversion von DocMa aus.") (set #docsask "Bitte wählen Sie die Sprache für die Dokumentationen aus.") (set #startup "Es werden nun einige Ergänzungen an Ihrer 'User-Startup' vorgenommen. DocMa wird in Ihrem Suchpfad eingefügt:\n\n%s") (set #startup_2 "Die Änderungen an der 'User-Startup' Datei werden gelöscht.") (set #startup_ask "Möchten Sie, daß DocMa permanent in ihrem Suchpfad aufgenommen wird?") (set #remove_docma "Entferne das DocMa Verzeichnis. Leider bleibt eine leere Schublade übrig, wenn sich DocMa in Ihrem Suchpfad befand.") (set #install_ask "Was möchten Sie tun?") (set #install_install "DocMa installieren...") (set #install_remove "DocMa entfernen...") (set #sourcedir "Bitte geben Sie das Verzeichnis ein, in dem sich ihr DocMa Verzeichnis befindet.") (set #sourcenotexists "Das Verzeichnis '%s' existiert nicht!") (set #prefupdate_ask "Soll ich jetzt Ihr alte Konfigurations Datei auf den neusten Stand bringen?") (set #backup_ask "Soll '%s' gesichert werden?") (set #backup_msg "Sicher alte Dateien...") ) ;============================================================================= ; english ( (set #intro "Welcome to the DocMa installation program.\n Use this tool to install DocMa on your Amiga.\nIf you want to remove DocMa from your Amiga, you have at least to declare yourself as Intermediate User") (set #destdir "Please select a drawer for DocMa. A drawer 'DocMa' will be created there. If there is already a 'DocMa' drawer, the program version will be updated.") (set #destexists_1 "\nThe directory\n\n") (set #destexists_2 "\n\nalready contains a DocMa drawer. If you continue, the DocMa installation in this drawer is updated.") (set #copying "\nCopying ") (set #localeask "Please select which language catalogue should be installed.") (set #finished "DocMa was successfully installed in the drawer\n\n%s.\n\nYou can find possible backuped files in DocMa/Backup.") (set #finished_1 "DocMa was added to your search-path. Please reboot your Amiga, to let the changes take effect.") (set #finished_removed "DocMa was successfully removed.") (set #finished_notremoved "DocMa wasn`t successfully removed.") (set #cpuask "Please select the processor version for DocMa.") (set #docsask "Please select the language for the documentation.") (set #startup "Some lines will be added to your 'User-Startup' file. DocMa will be added to your search-path:\n\n%s") (set #startup_2 "The changes of the 'user-startup' file will be removed.") (set #startup_ask "Do you want DocMa to be permanently in your search-path?") (set #remove_docma "Delete the DocMa drawer. Unfortunately there will be an empty drawer left, if DocMa was in your search path.") (set #install_ask "What should be done?") (set #install_install "Install DocMa...") (set #install_remove "Remove DocMa...") (set #sourcedir "Please insert the drawer, where you have installed the DocMa drawer.") (set #sourcenotexists "The drawer '%s' doesn`t exist!") (set #prefupdate_ask "Should your old config file be updated?") (set #backup_ask "Should '%s' be backuped?") (set #backup_msg "Backup old files...") )) (procedure P_COPYDIR #sourcedir #destdir ( (copyfiles (prompt (cat #copying #sourcedir "...")) (help @copyfiles-help) (source #sourcedir) (dest #destdir) (optional "force" "askuser") (confirm "expert") (all) (infos) ) ) ) (procedure P_COPYFILE #srcname #dstdir ( (copyfiles (prompt #copying #srcname "...") (help @copyfiles-help) (source #srcname) (dest #dstdir) (optional "force" "askuser") (confirm "expert") (infos) ) ) ) (procedure P_GETLANGUAGE #text ( (if (= @language "deutsch") ( (set #def 0) ) ( (set #def 1) )) (if (= @user-level 0) ( (set #def #def) ) ( (askchoice (prompt #text) (choices "deutsch" "english") (help @askoptions-help) (default #def) ) )) ) ) (procedure P_BACKUP #source #dest ( (if (askbool (prompt (#backup_ask #source)) (default 1) (help @askbool-help)) ( (copyfiles (prompt #backup_msg) (source #source) (dest #dest) (confirm "expert") (help @copyfile-help) ) ) ) ) ) (set #startup_change FALSE) (set #mode_install 0) (set #mode_remove 1) ;============================================================================= ; Say hello (message #intro_0 "\n\n" #intro) ; what should be done (select (askchoice (prompt #install_ask) (choices #install_install #install_remove) (help @askoptions-help) (default #mode_install) ) ( ;============================================================================= ; INSTALL ;============================================================================= ;============================================================================= ; Select destination directory (set seldir 1) (set #default-dest (askdir (prompt #destdir) (default @default-dest) (help @askdir-help) ) ) (set #default-dest (expandpath #default-dest)) (set @default-dest (#default-dest)) ; for finish message (set destination (tackon #default-dest "DocMa")) (if (<> seldir 0) ( (if (<> (exists destination) 0) ( (message (cat #destexists_1 #default-dest #destexists_2)) ) ) ) ) ;============================================================================= ; Lets go, create destination directory, copy main files (complete 10) ; create destination directory (if (= (exists destination) 0) ( (makedir destination (help @makedir-help)))) ;DocMa drawer icon (if (exists "/DocMa11.info") (run (cat "copy /DocMa11.info \"" destination ".info\""))) (tooltype (dest destination) (noposition)) (copyfiles (prompt (cat #copying "readme files ...")) (source "") (pattern "(ReadMe|LiesMich| )") (dest destination) (infos) (confirm "expert") (help @copyfile-help) ) ;============================================================================= ; Choose CPU and copy DocMa (complete 15) (set choice (askchoice (prompt #cpuask) (default 0) (help @askoptions-help) (choices "68000" "68020" "68030" "68040") ) ) (if (= choice 0) (if (exists "c/docma.000") (run (cat "copy c/docma.000 \"" destination "/DocMa\"")))) (if (= choice 1) (if (exists "c/docma.020") (run (cat "copy c/docma.020 \"" destination "/DocMa\"")))) (if (= choice 2) (if (exists "c/docma.030") (run (cat "copy c/docma.030 \"" destination "/DocMa\"")))) (if (= choice 3) (if (exists "c/docma.040") (run (cat "copy c/docma.040 \"" destination "/DocMa\"")))) ; Copy DocMa.info (P_COPYFILE "Icons/DocMa.info" destination) (complete 20) ;============================================================================= ; Tools (P_COPYDIR "Tools" (tackon destination "Tools")) ; Copy Tools.info (P_COPYFILE "Tools.info" destination) (complete 30) ;============================================================================= ; Prefs (if (= (exists (tackon destination "DocMa.pref")) 0) ( (copyfiles (prompt (cat #copying "DocMa.prefs ...")) (source "DocMa.pref") (dest destination) (infos) (confirm "expert") (help @copyfile-help) ) ) ( (P_BACKUP "DocMa.pref" (tackon destination "Backup")) (if (askbool (prompt #prefupdate_ask) (default 1) (help @askbool-help)) ( (run (cat "Tools/UpdateConfig " "\""(tackon destination "DocMa.pref")"\"" " " "\""(tackon destination "DocMa.pref")"\"" ) ) ) ) ) ) (complete 40) ;============================================================================= ; Catalogs ; create Catalogs directory (if (= (exists (tackon destination "Catalogs")) 0) ( (makedir (tackon destination "Catalogs") (help @makedir-help))) ) ; Catalogs drawer icon (P_COPYFILE "Catalogs.info" destination) ; CD file (P_COPYFILE "Catalogs/DocMa.cd" (tackon destination "Catalogs")) (set choice (P_GETLANGUAGE #localeask) ) (if (= choice 0) (P_COPYDIR "Catalogs/Deutsch" (tackon destination "Catalogs/Deutsch"))) (complete 50) ;============================================================================= ; Icons (P_COPYDIR "Icons" (tackon destination "Icons")) ; Icons drawer icon (P_COPYFILE "Icons.info" destination) (complete 60) ;============================================================================= ; Images ; Images drawer icon (if (exists "Images.info") (run (cat "copy Images.info \"" (tackon destination "Images") ".info\"")) ) (P_COPYDIR "Images" (tackon destination "Images")) (complete 70) ;============================================================================= ; Docs Drawer (copyfiles (prompt "copying Docs...") (help @copyfiles-help) (source "Docs") (pattern "~(Deutsch#?|English#?)") (dest (tackon destination "Docs")) (optional "force" "askuser") (confirm "expert") (infos) ) ; Docs drawer icon (P_COPYFILE "Docs.info" destination) (set choice (P_GETLANGUAGE #docsask) ) (if (= choice 0) ( (P_COPYDIR "Docs/Deutsch" (tackon destination "Docs/Deutsch")) (P_COPYFILE "Docs/Deutsch.info" (tackon destination "Docs")) )) (if (= choice 1) ( (P_COPYDIR "Docs/English" (tackon destination "Docs/English")) (P_COPYFILE "Docs/English.info" (tackon destination "Docs")) )) (complete 80) ;============================================================================= ; Keyfile drawer ; create Keyfile directory (if (= (exists (tackon destination "Keyfile")) 0) ( (makedir (tackon destination "Keyfile") (help @makedir-help))) ) (complete 90) ;============================================================================= ; Startup Sequence (if (askbool (prompt #startup_ask) (default 1) (help @askbool-help)) ( (set #cmd (cat "if exists " destination "\n path " destination " add\nendif")) (set #startup_change TRUE) (startup "DocMa" (confirm "expert") (prompt (#startup #cmd)) (command #cmd) (help @startup-help) ) ) ) (complete 100) ;============================================================================= ; Finish Install (if (= #startup_change TRUE) ( (exit (#finished destination) "\n\n" #finished_1) ) ( (exit (#finished destination)) ) ) ) ( ;============================================================================= ; REMOVE ;============================================================================= ;============================================================================= ; Select source directory (set #removed FALSE) (set seldir 1) (set #default-source (askdir (prompt #sourcedir) (default @default-dest) (help @askdir-help) ) ) (set #default-source (expandpath #default-source)) (set #source (tackon #default-source "DocMa")) (if (<> seldir 0) ( (if (= (exists #source) 0) ( (message (#sourcenotexists #source)) ) ( ;(run (cat "path \"" #source " remove\"")) (delete #source (help @delete-help) (prompt #remove_docma) (all) (infos) (optional "force") (confirm "expert") ) (startup "DocMa" (confirm "expert") (prompt #startup_2) (command ";") (help @startup-help) ) (set #removed TRUE) ) ) ) ) ;============================================================================= ; Finish Remove (if (= #removed TRUE) ( (exit #finished_removed) ) ( (exit #finished_notremoved) ) ) ) ) ;select