#! /bin/sh # # Copyright (c) 1999 by Sun Microsystems, Inc. # All Rights Reserved # # @(#)i.OWconfig.m4 1.8 99/01/26 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 installf -c OWconfig $PKGINST $dst e 0644 root bin || exit 2 done installf -f $PKGINST || exit 2 exit 0