#!/bin/sh
#
#ident	"@(#)r.fontsupr 1.5 04/05/27 SMI"
#
# Copyright (c) 2000 by Sun Microsystems, Inc.
#

#
# 
#
if [ -f /tmp/fonts.upr ]; then
	rm /tmp/fonts.upr
fi

while read src
do
    if [ -w $src ]; then
	sed -e '/^HG-/s/=.*\.ttf/=hggbsun.ttf/' \
	    $src > /tmp/fonts.upr
	mv /tmp/fonts.upr $src
	chgrp bin $src
    fi
done

exit 0
