/* Copyright (c) Oracle Corporation 1996. All Rights Reserved */ /***************************************************************************** NAME frun60.ins - V3 installation script for Oracle Forms 6.0 Runtime DESCRIPTION This script installs Oracle Forms 6.0 Runtime. MODIFIED MM/DD/YY REASON *****************************************************************************/ { if (doit) { /***************************** Set the VRF-INS script ratchet ******************************/ ins_ratchet = "6.0.8.13.0"; execute("%installer_home%%dir_separator%%operating_system%.ins"); permit_retry_operations = TRUE; permit_ignore_operations = TRUE; permit_process_operations= TRUE; /****************** Install the product *******************/ ui_product(instantiate(display_product_label)); ui_action(instantiate(install_files)); copy(deinst); /*************************************************** Display the "Developer provides" billboard if not already displayed, and if Developer release ****************************************************/ if(exists("%installer_home%%dir_separator%d2bb_04.bmp")) { if(DEVELOPER2000_RELEASE) { if(not(DEV2K_BB04)) { DEV2K_BB04 = TRUE; ui_graphics("%installer_home%%dir_separator%d2bb_04.bmp"); } } } /******************************************************/ /************************************************************/ ui_action(instantiate(install_dll)); copy(dll); /************************************************************ Delete the Old Program Group if present and Install the new Program Group *************************************************************/ if(exists("%ORACLE_HOME%/bin/ifrun60.exe")) { D2KIF60_GROUP = D2K60_GROUP_OLD; windows_delete_icons(exe); D2KIF60_GROUP = D2KIF60_GROUP_NEW; } /************************************************************/ ui_action(instantiate(install_exe)); copy(exe); ui_action(instantiate(install_files)); copy(res); /******************/ /********************************* Install FORMS Language Supplement **********************************/ if(child_in_control) { install_frun = TRUE; install(w32formsl60); } /********************************* Register and Reference the product and remove delold **********************************/ EXECUTE_SCRIPT = "REGISTER_REFERENCE_PRODUCT"; execute("%installer_home%%dir_separator%d2kr2ins.usr"); permit_retry_operations = FALSE; /************* Install Parent **************/ if(install_parent) /* Install parent first, if necessary */ install(product_parent(current_product)); /*************/ permit_retry_operations = TRUE; /*************************************************************** Registering map variables except Installer_home and oracle_home ****************************************************************/ win32_register_map_variable("FORMS60"); win32_register_map_variable("D2KIF60_GROUP"); /**************************** Registering map file groups *****************************/ win32_register_OCSM_group(deinst,'MINMODE); win32_register_OCSM_group(dll,'MEDMODE); win32_register_OCSM_group(exe,'MEDMODE); win32_register_OCSM_group(res,'MAXMODE); /***************************************/ /********************* Reference dependencies **********************/ ui_action(instantiate(reference_dependencies)); {reference(current_product,product_parent(current_product));} /* reference parent */ ['UNREGISTERED_PRODUCT: continue();] /*********************/ permit_retry_operations = FALSE; } /*END if doit*/ [ 'UNREGISTERED_PRODUCT: continue(); 'CANCEL: signal('FAILURE, instantiate(halt_installation)); ] } /*END frun50.ins*/