freebsd-ports/textproc/docbook-xsl/files/pkg-deinstall.in
Gabor Kovesdan 90927e2db8 - Modularize. User can choose between the selected
modules via OPTIONS.
- Depend on the textproc/docbook meta-port. The user
  isn't forced to use DocBook 4.2 or SDocBook 1.1 any
  more, she can install the stylesheets with any
  desired DocBook version.
- Use SUB_LIST to post-edit the installation scripts.
- Bump PORTREVISION
- Style changes

PR:		ports/129309
Submitted by:	gabor
Approved by:	maintainer timeout (skv, 7 weeks)
2009-01-22 13:12:53 +00:00

11 lines
264 B
Bash

#!/bin/sh
# This script will remove the docbook-xsl entries added to xml catalog.
# -- Rui Lopes <rui@ruilopes.com>
if [ "$2" != "POST-DEINSTALL" ]; then
exit 0
fi
%%XMLCATMGR%% -c %%CATALOG_PORTS%% remove \
http://docbook.sourceforge.net/release/xsl/
exit 0