aboutsummaryrefslogtreecommitdiffstats
path: root/textproc/docbook-xsl/files/pkg-deinstall.in
blob: d5743543c193903122bea647916a6dac6ae8a283 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#!/bin/sh
# This script will remove the docbook-xsl entries added to xml catalog.
# -- Rui Lopes <rui@ruilopes.com>

XMLCATMGR=@XMLCATMGR@
CATALOG_PORTS_XML=@CATALOG_PORTS_XML@

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

${XMLCATMGR} -c "${CATALOG_PORTS_XML}" remove \
    http://docbook.sourceforge.net/release/xsl/ 
exit 0