#!/bin/sh
#
#ident	"@(#)i.fontsupr 1.6 04/07/15 SMI"
#
# Copyright (c) 2000 by Sun Microsystems, Inc.
#

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

while read src dst
do
	cp $src $dst
	sed -e '/^HG-MinchoL/s/=HG-GothicB/=HG-MinchoL/' \
	    -e '/^HG-MinchoL/s/=hggbsun/=hgmlsun/' \
	    $src > /tmp/fonts.upr
	mv /tmp/fonts.upr $dst
done    

exit 0
