#!/bin/sh
# install_pkg for unixware

# 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
SOFT=$3

case $SOFT in
dpar)
   PROD="dpar"
   ;;
rp)
   PROD="rp"
   ;;
*)
   ;;
esac
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 
        ;;
rp)
        pkgadd -d `pwd`/$PKG
        ;;

dpar)
        pkgadd -d `pwd`/$PKG
         ;;

*)
        echo "unixware_installer did not find instructions for $PROD"
        ;;
esac
echo "Press <Enter> to continue"
read key
