home *** CD-ROM | disk | FTP | other *** search
/ Oracle Video Server 3.0.3.1 / OVS_3031_NT.iso / nt_x86 / pkg / sqlplus.pkg < prev    next >
Encoding:
Text File  |  1997-08-20  |  3.1 KB  |  66 lines

  1. /*****************************************************************************
  2.   Copyright (c) Oracle Corporation 1995.  All Rights Reserved
  3.  
  4.   NAME
  5.     sqlplus.pkg
  6.  
  7.   DESCRIPTION
  8.     Package file for Windows 95 SQL*Plus product
  9.  
  10.   OWNER
  11.     David Tom
  12.  
  13.   MODIFIED    DD-MMM-YY  Reason
  14.     mmckerle     AUG-97  Modified for 7.3.4 Production Release
  15.     rxfernan     MAY-97  Oracle 8.0.3 Production Release
  16.     dtom      01-AUG-95  Created
  17. *****************************************************************************/
  18.  
  19. {
  20.    #########################################################################
  21.    # Both the package install and the Custom install with packages will use
  22.    # the same .PKG, .MAP, .INS, and .VRF scripts.  Their behaviour will be
  23.    # slightly different.  The package install will (in general) not show
  24.    # any additional dialogs.  The custom install will.  The "products" list
  25.    # determines which products will be visible in the custom dialogs.  The
  26.    # "dflt_products" list is used to indicate products which products are
  27.    # are highlighted in the custom dialogs.
  28.    ###########################################################################
  29.  
  30.    products      = list();
  31.    dflt_products = list();
  32.  
  33.    # Note:  1) RSF gets force installed by the RDBMS.
  34.    #        2) Release Notes get installed by everything.
  35.    #        3) Protocol Adapters will be auto-detected by SQL*Net Client, and are
  36.    #              explicitly listed in the packages.
  37.    #        4) The following are hidden products (in the .PRD file), and will only get
  38.    #              installed if they are force installed by another product:
  39.    #                 a) Trace Collection services
  40.    #  These products will not be explicitly added to the product lists.
  41.  
  42.    { add(products     , w32plus33  ); } ['UNBOUND_VARIABLE: continue();]
  43.    { add(dflt_products, w32plus33  ); } ['UNBOUND_VARIABLE: continue();]
  44.  
  45.    { add(products     , w32netclt23   ); } ['UNBOUND_VARIABLE: continue();]
  46.    { add(dflt_products, w32netclt23   ); } ['UNBOUND_VARIABLE: continue();]
  47.  
  48.    { add(products     , w32doc73   ); } ['UNBOUND_VARIABLE: continue();]
  49.    { add(dflt_products, w32doc73   ); } ['UNBOUND_VARIABLE: continue();]
  50.  
  51.   /*---installer can only be installed from distribution media---------*/
  52.   { if (distribution)
  53.     {
  54.       { add(products     , ntinstall ); } ['UNBOUND_VARIABLE: continue();]
  55.       { add(dflt_products, ntinstall ); } ['UNBOUND_VARIABLE: continue();]
  56.     }
  57.   }
  58.   [ 'UNBOUND_VARIABLE: continue(); ]
  59.  
  60.  
  61.   selection_title  = nls("selection_title",  "%%prod_label%%");
  62.   selection_prompt = nls("selection_prompt", "Select the components you want to install:");
  63.   selection_help   = nls("selection_help",   "The default components of the %%prod_label%% will be installed.  Items that you do not wish to install may be de-selected.%carriage_return%%carriage_return%Items may be selected or de-selected by holding the CTRL key and clicking on the item with the mouse or by moving the cursor to the item and using the space bar to select or de-select the item.");
  64.  
  65. }
  66.