#!/bin/sh
# install_pkg for aix

# Copyright (c) 2001-2004 Digi International Inc., All Rights Reserved
# 
# This software contains proprietary and confidential information of Digi
# International Inc.  By accepting transfer of this copy, Recipient agrees
# to retain this software in confidence, to prevent disclosure to others,
# and to make no use of this software other than that for which it was
# delivered.  This is an unpublished copyrighted work of Digi International
# Inc.  Except as permitted by federal law, 17 USC 117, copying is strictly
# prohibited.
# 
# Restricted Rights Legend
#
# Use, duplication, or disclosure by the Government is subject to
# restrictions set forth in sub-paragraph (c)(1)(ii) of The Rights in
# Technical Data and Computer Software clause at DFARS 252.227-7031 or
# subparagraphs (c)(1) and (2) of the Commercial Computer Software -
# Restricted Rights at 48 CFR 52.227-19, as applicable.
#
# Digi International Inc. 11001 Bren Road East, Minnetonka, MN 55343
#
# ***************************************************************************

PKG=$1
PROD=$2
BASE=`basename ${PKG}`
PWD=`pwd`

case $PROD in
        notused)
                echo "\nThe installation on this CD-ROM is done from /tmp not /usr." 
                echo "If you are prompted to be in a directory in /usr it can be ignored."
                cp -f $PKG /tmp
                cd /tmp
                (./${BASE})
                cd $PWD
                echo "If file extraction was successful, cd to /tmp to run Install"
                ;;
        *)
                case $3 in 
                dpar)
                        installp -u digidpar.dpar.obj
                        ;;      
                esac

                installp -ac -N -d $PKG -q -X all
                ;;
esac
echo "Press <Enter> to continue"
read key
