/* Copyright (c) Oracle Corporation 1994. All Rights Reserved */ /**************************************************************************** NAME graph30.ins - V3 installation script for Graphics 3.0 DESCRIPTION This script installs Graphics 3.0 package. MODIFIED MM/DD/YY Reason rbansal 03/27/96 Created from graph25.ins *****************************************************************************/ { if (doit) { /***************************** Set the VRF-INS script ratchet ******************************/ ins_ratchet = "3.0.2.10.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"); /*******************/ permit_retry_operations = TRUE; /************************ Set Environment Variables *************************/ if(modify_oracle_ini) { modify("GRAPHICS60", GRAPHICS60, ora_config, product_filename(current_product)); win32_register_key("$ORACLE","","GRAPHICS60",'REPLICATE); } win32_register_OCSM_group(deinst,'MINMODE); /********************************* 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); child_products_to_reference = all_child_products(current_product); EXECUTE_SCRIPT = "REFERENCE_COMPONENTS"; execute("%installer_home%%dir_separator%d2kr2ins.usr"); /********************************************************************/ /********************* Reference dependencies **********************/ ui_product(instantiate(display_product_label)); ui_action(instantiate(reference_dependencies)); while(not(empty(dependency_list))) { {reference(first(dependency_list), current_product);} ['UNREGISTERED_PRODUCT: continue();] dependency_list = rest(dependency_list); } /*********************/ permit_retry_operations = FALSE; } [ 'UNREGISTERED_PRODUCT: continue(); 'CANCEL: signal('FAILURE, instantiate(halt_installation)); ] }