summaryrefslogtreecommitdiff
path: root/textproc/xmlcatmgr/files
diff options
context:
space:
mode:
authorjmmv <jmmv@pkgsrc.org>2004-01-17 16:00:20 +0000
committerjmmv <jmmv@pkgsrc.org>2004-01-17 16:00:20 +0000
commit5a7cc41b8501eed5a8dc040f891d597c52e1a998 (patch)
treeda295523a9808e9852615d0837dfe84659083e96 /textproc/xmlcatmgr/files
parent8f3436a1ce64ec9da06328131ed0dc168bd0a9f6 (diff)
downloadpkgsrc-5a7cc41b8501eed5a8dc040f891d597c52e1a998.tar.gz
Update to 2.0alpha2:
Released on 2004/01/17, its state was alpha. * Fixes to allow multiple entries with the same content in both SGML and XML catalog files. Sorry but this may break command line compatibility with old versions in some scenarios; that is, the "remove" action now takes pairs of values. Even though, if just one argument is given to "remove", it behaves as before to help the transition to newer versions. * New catalogs are created now in memory before writting them to disk. This ensures that they will look exactly the same after creation and after some manipulation (addition and removal of entries). * Added an option to configure, '-n doc', to disable installation of distribution documentation files in the system. * Some bug fixes.
Diffstat (limited to 'textproc/xmlcatmgr/files')
-rw-r--r--textproc/xmlcatmgr/files/deinstall.tmpl6
1 files changed, 3 insertions, 3 deletions
diff --git a/textproc/xmlcatmgr/files/deinstall.tmpl b/textproc/xmlcatmgr/files/deinstall.tmpl
index 9e21d7deb19..c7e7045498a 100644
--- a/textproc/xmlcatmgr/files/deinstall.tmpl
+++ b/textproc/xmlcatmgr/files/deinstall.tmpl
@@ -1,4 +1,4 @@
-# $NetBSD: deinstall.tmpl,v 1.3 2003/09/08 12:26:22 jmmv Exp $
+# $NetBSD: deinstall.tmpl,v 1.4 2004/01/17 16:00:20 jmmv Exp $
#
# Unregister SGML/XML catalog entries.
#
@@ -14,14 +14,14 @@ DEINSTALL)
if [ -n "${SGML_ENTRIES}" ]; then
set -- ${SGML_ENTRIES}
while [ $# -gt 0 ]; do
- ${XMLCATMGR} -sc ${SGML_CATALOG} remove "$2"
+ ${XMLCATMGR} -sc ${SGML_CATALOG} remove "$1" "$2"
shift; shift; shift
done
fi
if [ -n "${XML_ENTRIES}" ]; then
set -- ${XML_ENTRIES}
while [ $# -gt 0 ]; do
- ${XMLCATMGR} -c ${XML_CATALOG} remove "$2"
+ ${XMLCATMGR} -c ${XML_CATALOG} remove "$1" "$2"
shift; shift; shift
done
fi