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

#
# Create alias for gotb*, minm* and minb*.
#
if [ -f /tmp/fonts.alias ]; then
    rm /tmp/fonts.alias
fi

while read src dst
do
    if [ -w $src ]; then
	sed -e '/gotb\*/,/^!!/  s/^!-/-/' \
	    -e '/minm\*/,/^!!/  s/^!-/-/' \
	    -e '/minb\*/,/^!!/  s/^!-/-/' \
	    -e '/\*om212/,/^!!/	s/^!"/"/' \
	    -e '/^"-ricoh-heiseimin-w3/s/hg mincho l/hg gothic b/' \
	    $src > /tmp/fonts.alias
	mv /tmp/fonts.alias $src
	chgrp bin $src
    fi
done

exit 0
