#! /bin/sh
#
# Copyright (c) 2004 by Sun Microsystems, Inc.
# All Rights Reserved
#
# @(#)i.OWconfig.m4 1.12 04/10/27 SMI
#
# Installation script for the OWconfig class.
# If an OWconfig file existed, remove the entry 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 "/# Start SUNWglrt, OpenGL SUNWGLX Extension/,/# End SUNWglrt, OpenGL SUNWGLX Extension/d" /tmp/OWconfig > $dst || exit 2
            cat $src >> $dst || exit 2
            rm -f /tmp/OWconfig
        fi
    else
        cat $src >> $dst || exit 2
    fi
    chgrp bin $dst
done
exit 0
