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

#
# Set HG-MinchoL-* to HG-GothicB-*.pcf.Z	
#
if [ -f /tmp/fonts.upr ]; then
	rm /tmp/fonts.upr
fi

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

exit 0
