#!/bin/sh
# install_pkg for unix - solaris

# 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
SOFTW=$3
BASE=`basename ${PKG}`
PWD=`pwd`

case $1 in
        *.sis)
                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."
                echo ""
                echo "Copying $PKG to /tmp..."
                cp -f $PKG /tmp
                cd /tmp
                (./${BASE})
                cd $PWD
                ;;
        *)
                PATH=$PATH:/usr/sbin
                export PATH
                pkgadd -d `pwd`/$PKG
                ;;
esac
echo "Press <Enter> to continue"
read key
