#
# This script builds the dot plugin list.
#
case "${ACTION}" in
post)
	echo "Building dot(1) plugin list... "
	if [ -f usr/lib/graphviz/config ]; then
		rm -f usr/lib/graphviz/config
	fi
	if [ -f usr/lib/graphviz/config6 ]; then
		rm -f usr/lib/graphviz/config6
	fi
	usr/bin/dot -c && echo "done."
	;;
esac