OpenCores
URL https://opencores.org/ocsvn/or1k/or1k/trunk

Subversion Repositories or1k

[/] [or1k/] [tags/] [nog_patch_40/] [or1ksim/] [install-sh] - Diff between revs 1405 and 1765

Only display areas with differences | Details | Blame | View Log

Rev 1405 Rev 1765
#!/bin/sh
#!/bin/sh
#
#
# install - install a program, script, or datafile
# install - install a program, script, or datafile
# This comes from X11R5.
# This comes from X11R5.
#
#
# $XConsortium: install.sh,v 1.2 89/12/18 14:47:22 jim Exp $
# $XConsortium: install.sh,v 1.2 89/12/18 14:47:22 jim Exp $
#
#
# This script is compatible with the BSD install script, but was written
# This script is compatible with the BSD install script, but was written
# from scratch.
# from scratch.
#
#
# set DOITPROG to echo to test this script
# set DOITPROG to echo to test this script
# Don't use :- since 4.3BSD and earlier shells don't like it.
# Don't use :- since 4.3BSD and earlier shells don't like it.
doit="${DOITPROG-}"
doit="${DOITPROG-}"
# put in absolute paths if you don't have them in your path; or use env. vars.
# put in absolute paths if you don't have them in your path; or use env. vars.
mvprog="${MVPROG-mv}"
mvprog="${MVPROG-mv}"
cpprog="${CPPROG-cp}"
cpprog="${CPPROG-cp}"
chmodprog="${CHMODPROG-chmod}"
chmodprog="${CHMODPROG-chmod}"
chownprog="${CHOWNPROG-chown}"
chownprog="${CHOWNPROG-chown}"
chgrpprog="${CHGRPPROG-chgrp}"
chgrpprog="${CHGRPPROG-chgrp}"
stripprog="${STRIPPROG-strip}"
stripprog="${STRIPPROG-strip}"
rmprog="${RMPROG-rm}"
rmprog="${RMPROG-rm}"
mkdirprog="${MKDIRPROG-mkdir}"
mkdirprog="${MKDIRPROG-mkdir}"
tranformbasename=""
tranformbasename=""
transform_arg=""
transform_arg=""
instcmd="$mvprog"
instcmd="$mvprog"
chmodcmd="$chmodprog 0755"
chmodcmd="$chmodprog 0755"
chowncmd=""
chowncmd=""
chgrpcmd=""
chgrpcmd=""
stripcmd=""
stripcmd=""
rmcmd="$rmprog -f"
rmcmd="$rmprog -f"
mvcmd="$mvprog"
mvcmd="$mvprog"
src=""
src=""
dst=""
dst=""
dir_arg=""
dir_arg=""
while [ x"$1" != x ]; do
while [ x"$1" != x ]; do
    case $1 in
    case $1 in
        -c) instcmd="$cpprog"
        -c) instcmd="$cpprog"
            shift
            shift
            continue;;
            continue;;
        -d) dir_arg=true
        -d) dir_arg=true
            shift
            shift
            continue;;
            continue;;
        -m) chmodcmd="$chmodprog $2"
        -m) chmodcmd="$chmodprog $2"
            shift
            shift
            shift
            shift
            continue;;
            continue;;
        -o) chowncmd="$chownprog $2"
        -o) chowncmd="$chownprog $2"
            shift
            shift
            shift
            shift
            continue;;
            continue;;
        -g) chgrpcmd="$chgrpprog $2"
        -g) chgrpcmd="$chgrpprog $2"
            shift
            shift
            shift
            shift
            continue;;
            continue;;
        -s) stripcmd="$stripprog"
        -s) stripcmd="$stripprog"
            shift
            shift
            continue;;
            continue;;
        -t=*) transformarg=`echo $1 | sed 's/-t=//'`
        -t=*) transformarg=`echo $1 | sed 's/-t=//'`
            shift
            shift
            continue;;
            continue;;
        -b=*) transformbasename=`echo $1 | sed 's/-b=//'`
        -b=*) transformbasename=`echo $1 | sed 's/-b=//'`
            shift
            shift
            continue;;
            continue;;
        *)  if [ x"$src" = x ]
        *)  if [ x"$src" = x ]
            then
            then
                src=$1
                src=$1
            else
            else
                # this colon is to work around a 386BSD /bin/sh bug
                # this colon is to work around a 386BSD /bin/sh bug
                :
                :
                dst=$1
                dst=$1
            fi
            fi
            shift
            shift
            continue;;
            continue;;
    esac
    esac
done
done
if [ x"$src" = x ]
if [ x"$src" = x ]
then
then
        echo "install:  no input file specified"
        echo "install:  no input file specified"
        exit 1
        exit 1
else
else
        true
        true
fi
fi
if [ x"$dir_arg" != x ]; then
if [ x"$dir_arg" != x ]; then
        dst=$src
        dst=$src
        src=""
        src=""
        if [ -d $dst ]; then
        if [ -d $dst ]; then
                instcmd=:
                instcmd=:
        else
        else
                instcmd=mkdir
                instcmd=mkdir
        fi
        fi
else
else
# Waiting for this to be detected by the "$instcmd $src $dsttmp" command
# Waiting for this to be detected by the "$instcmd $src $dsttmp" command
# might cause directories to be created, which would be especially bad
# might cause directories to be created, which would be especially bad
# if $src (and thus $dsttmp) contains '*'.
# if $src (and thus $dsttmp) contains '*'.
        if [ -f $src -o -d $src ]
        if [ -f $src -o -d $src ]
        then
        then
                true
                true
        else
        else
                echo "install:  $src does not exist"
                echo "install:  $src does not exist"
                exit 1
                exit 1
        fi
        fi
        if [ x"$dst" = x ]
        if [ x"$dst" = x ]
        then
        then
                echo "install:  no destination specified"
                echo "install:  no destination specified"
                exit 1
                exit 1
        else
        else
                true
                true
        fi
        fi
# If destination is a directory, append the input filename; if your system
# If destination is a directory, append the input filename; if your system
# does not like double slashes in filenames, you may need to add some logic
# does not like double slashes in filenames, you may need to add some logic
        if [ -d $dst ]
        if [ -d $dst ]
        then
        then
                dst="$dst"/`basename $src`
                dst="$dst"/`basename $src`
        else
        else
                true
                true
        fi
        fi
fi
fi
## this sed command emulates the dirname command
## this sed command emulates the dirname command
dstdir=`echo $dst | sed -e 's,[^/]*$,,;s,/$,,;s,^$,.,'`
dstdir=`echo $dst | sed -e 's,[^/]*$,,;s,/$,,;s,^$,.,'`
# Make sure that the destination directory exists.
# Make sure that the destination directory exists.
#  this part is taken from Noah Friedman's mkinstalldirs script
#  this part is taken from Noah Friedman's mkinstalldirs script
# Skip lots of stat calls in the usual case.
# Skip lots of stat calls in the usual case.
if [ ! -d "$dstdir" ]; then
if [ ! -d "$dstdir" ]; then
defaultIFS='
defaultIFS='
'
'
IFS="${IFS-${defaultIFS}}"
IFS="${IFS-${defaultIFS}}"
oIFS="${IFS}"
oIFS="${IFS}"
# Some sh's can't handle IFS=/ for some reason.
# Some sh's can't handle IFS=/ for some reason.
IFS='%'
IFS='%'
set - `echo ${dstdir} | sed -e 's@/@%@g' -e 's@^%@/@'`
set - `echo ${dstdir} | sed -e 's@/@%@g' -e 's@^%@/@'`
IFS="${oIFS}"
IFS="${oIFS}"
pathcomp=''
pathcomp=''
while [ $# -ne 0 ] ; do
while [ $# -ne 0 ] ; do
        pathcomp="${pathcomp}${1}"
        pathcomp="${pathcomp}${1}"
        shift
        shift
        if [ ! -d "${pathcomp}" ] ;
        if [ ! -d "${pathcomp}" ] ;
        then
        then
                $mkdirprog "${pathcomp}"
                $mkdirprog "${pathcomp}"
        else
        else
                true
                true
        fi
        fi
        pathcomp="${pathcomp}/"
        pathcomp="${pathcomp}/"
done
done
fi
fi
if [ x"$dir_arg" != x ]
if [ x"$dir_arg" != x ]
then
then
        $doit $instcmd $dst &&
        $doit $instcmd $dst &&
        if [ x"$chowncmd" != x ]; then $doit $chowncmd $dst; else true ; fi &&
        if [ x"$chowncmd" != x ]; then $doit $chowncmd $dst; else true ; fi &&
        if [ x"$chgrpcmd" != x ]; then $doit $chgrpcmd $dst; else true ; fi &&
        if [ x"$chgrpcmd" != x ]; then $doit $chgrpcmd $dst; else true ; fi &&
        if [ x"$stripcmd" != x ]; then $doit $stripcmd $dst; else true ; fi &&
        if [ x"$stripcmd" != x ]; then $doit $stripcmd $dst; else true ; fi &&
        if [ x"$chmodcmd" != x ]; then $doit $chmodcmd $dst; else true ; fi
        if [ x"$chmodcmd" != x ]; then $doit $chmodcmd $dst; else true ; fi
else
else
# If we're going to rename the final executable, determine the name now.
# If we're going to rename the final executable, determine the name now.
        if [ x"$transformarg" = x ]
        if [ x"$transformarg" = x ]
        then
        then
                dstfile=`basename $dst`
                dstfile=`basename $dst`
        else
        else
                dstfile=`basename $dst $transformbasename |
                dstfile=`basename $dst $transformbasename |
                        sed $transformarg`$transformbasename
                        sed $transformarg`$transformbasename
        fi
        fi
# don't allow the sed command to completely eliminate the filename
# don't allow the sed command to completely eliminate the filename
        if [ x"$dstfile" = x ]
        if [ x"$dstfile" = x ]
        then
        then
                dstfile=`basename $dst`
                dstfile=`basename $dst`
        else
        else
                true
                true
        fi
        fi
# Make a temp file name in the proper directory.
# Make a temp file name in the proper directory.
        dsttmp=$dstdir/#inst.$$#
        dsttmp=$dstdir/#inst.$$#
# Move or copy the file name to the temp name
# Move or copy the file name to the temp name
        $doit $instcmd $src $dsttmp &&
        $doit $instcmd $src $dsttmp &&
        trap "rm -f ${dsttmp}" 0 &&
        trap "rm -f ${dsttmp}" 0 &&
# and set any options; do chmod last to preserve setuid bits
# and set any options; do chmod last to preserve setuid bits
# If any of these fail, we abort the whole thing.  If we want to
# If any of these fail, we abort the whole thing.  If we want to
# ignore errors from any of these, just make sure not to ignore
# ignore errors from any of these, just make sure not to ignore
# errors from the above "$doit $instcmd $src $dsttmp" command.
# errors from the above "$doit $instcmd $src $dsttmp" command.
        if [ x"$chowncmd" != x ]; then $doit $chowncmd $dsttmp; else true;fi &&
        if [ x"$chowncmd" != x ]; then $doit $chowncmd $dsttmp; else true;fi &&
        if [ x"$chgrpcmd" != x ]; then $doit $chgrpcmd $dsttmp; else true;fi &&
        if [ x"$chgrpcmd" != x ]; then $doit $chgrpcmd $dsttmp; else true;fi &&
        if [ x"$stripcmd" != x ]; then $doit $stripcmd $dsttmp; else true;fi &&
        if [ x"$stripcmd" != x ]; then $doit $stripcmd $dsttmp; else true;fi &&
        if [ x"$chmodcmd" != x ]; then $doit $chmodcmd $dsttmp; else true;fi &&
        if [ x"$chmodcmd" != x ]; then $doit $chmodcmd $dsttmp; else true;fi &&
# Now rename the file to the real destination.
# Now rename the file to the real destination.
        $doit $rmcmd -f $dstdir/$dstfile &&
        $doit $rmcmd -f $dstdir/$dstfile &&
        $doit $mvcmd $dsttmp $dstdir/$dstfile
        $doit $mvcmd $dsttmp $dstdir/$dstfile
fi &&
fi &&
exit 0
exit 0
 
 

powered by: WebSVN 2.1.0

© copyright 1999-2024 OpenCores.org, equivalent to Oliscience, all rights reserved. OpenCores®, registered trademark.