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)
11 lines
264 B
Bash
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
|