/* Copyright (c) Oracle Corporation 1996. All Rights Reserved */ /***************************************************************************** NAME pb60.ins - V3 installation script for Oracle Procedure Builder DESCRIPTION This script installs Oracle Procedure Builder. MODIFIED MM/DD/YY Reason anmanian 01/25/99 Changes made to make language supplement files installable component. pgupta 10/01/97 Created ******************************************************************************/ { if (doit) { /***************************** Set the VRF-INS script ratchet ******************************/ ins_ratchet = "6.0.0.0.0"; execute("%installer_home%%dir_separator%%operating_system%.ins"); permit_retry_operations = TRUE; permit_ignore_operations = TRUE; permit_process_operations= TRUE; win32_register_OCSM_product(); /****************** Install the product *******************/ ui_product(instantiate(display_product_label)); ui_action(instantiate(install_files)); copy(deinst); /******************/ permit_retry_operations = FALSE; /****************************************** Install all the components of the PARENT *******************************************/ EXECUTE_SCRIPT = "INSTALL_COMPONENTS"; execute("%installer_home%%dir_separator%d2kr2ins.usr"); /******************* Install dependencies ********************/ EXECUTE_SCRIPT = "INSTALL_DEPENDENCIES"; execute("%installer_home%%dir_separator%d2kr2ins.usr"); ui_product(instantiate(display_product_label)); while(not(empty(install_dependency_list))) { current_dependency = first(install_dependency_list); install_dependency_list = rest(install_dependency_list); install(current_dependency); } /*******************/ permit_retry_operations = TRUE; /********************************* Register and Reference the product and remove delold. **********************************/ EXECUTE_SCRIPT = "REGISTER_REFERENCE_PRODUCT"; execute("%installer_home%%dir_separator%d2kr2ins.usr"); /******************************************************************** Reference all the components of the PARENT *********************************************************************/ child_products_to_reference = all_child_products(current_product); EXECUTE_SCRIPT = "REFERENCE_COMPONENTS"; execute("%installer_home%%dir_separator%d2kr2ins.usr"); /********************************************************************/ win32_register_OCSM_group(deinst,'MINMODE); /********************* Reference dependencies **********************/ ui_action(instantiate(reference_dependencies)); while(not(empty(dependency_list))) { current_dependency = first(dependency_list); dependency_list = rest(dependency_list); {reference(current_dependency, current_product);} ['UNREGISTERED_PRODUCT: continue();] } /*********************/ permit_retry_operations = FALSE; } [ 'UNREGISTERED_PRODUCT: continue(); 'CANCEL: signal('FAILURE, instantiate(halt_installation)); ] }