#!/bin/sh
# sgml-data postinst
#   jobs: remove old catalog entry in transitional.cat

set -e

PACKAGE=sgml-data

if [ "$1" = configure ]; then
    # remove legacy SGML catalog
    update-catalog --quiet --remove "/etc/sgml/${PACKAGE}.cat" /usr/share/sgml/html/dtd/xml/1.0/xhtml.soc
fi

# automatically generated debhelper commands
#DEBHELPER#

exit 0
