#!/bin/sh
#
#ident	"@(#)i.OWconfig	1.1	97/03/11 SMI"
#
# Copyright (c) 1997 by Sun Microsystems, Inc.
# All rights reserved.
#
# Installation script for the OWconfig class.
# If an OWconfig file existed, remove the entries belonging to
# this package and then append the entry belonging to this package.
#
#
while read src dst
do
    if [ -r $dst ]
    then
        if [ -w $dst ]
        then
            cp $dst /tmp/OWconfig || exit 2
            sed -e "/# XIL\/SunVideo Extensions - Start/,/# XIL\/SunVideo Extensions - End/d" /tmp/OWconfig > $dst || exit 2
            cat $src >> $dst || exit 2
        fi
    else
        cat $src >> $dst || exit 2
    fi
done
exit 0

