#!/bin/sh
# This script will remove the docbook-xsl entries added to xml catalog.
# -- Rui Lopes <rui@ruilopes.com>

if [ "$2" != "DEINSTALL" ]; then
	exit 0
fi

/usr/local/bin/xmlcatmgr -c /usr/local/share/xml/catalog.ports remove \
	http://docbook.sourceforge.net/release/xsl/
exit 0
