#!/bin/sh
#       Copyright (c) 1996 Sun Microsystems, Inc.
#               All Rights Reserved
#
#       @(#)i.OWconfig	1.1     96/05/29 (c)  Sun Microsystems, Inc.
#
# Installation script for the OWconfig class.
# If an OWconfig file existed, remove the entries belonging to this package
# and append them to the file.
#
while read src dst
do
	if [ -r $dst ]
	then
		if [ -w $dst ]
		then
			cp $dst /tmp/OWconfig || exit 2
			sed -e "/# XIL\/Ultra Extensions - Start/,/# XIL\/Ultra Extensions - End/d" \
				/tmp/OWconfig > $dst || exit 2
			cat $src >> $dst || exit 2
		fi
	else
		cat $src >> $dst || exit 2
	fi
done
exit 0
