summaryrefslogtreecommitdiff
path: root/textproc/xmlcatmgr/files
diff options
context:
space:
mode:
authorjmmv <jmmv@pkgsrc.org>2003-09-08 12:26:20 +0000
committerjmmv <jmmv@pkgsrc.org>2003-09-08 12:26:20 +0000
commit18b182d4cfef1c45649cd365d2b8ce9fbbd50ed7 (patch)
tree68baf1a80e34d2035fdab6e252ec5c101541c5eb /textproc/xmlcatmgr/files
parentd2e8152d769dc2230c6e33231cf32b17c2e180ee (diff)
downloadpkgsrc-18b182d4cfef1c45649cd365d2b8ce9fbbd50ed7.tar.gz
Update to 1.0:
* Adapted Buildtool scripts to the latest version, 0.14. As a side effect, distribution documentation is now installed into the system. * Minor manpage fixes. * Code cleanup. Fixes in the package: avoid overwriting catalog files when using 'make replace' (if you have 0.2 installed actually, it won't take any effect, so be careful by backing up pkg/share/{sgml,xml}/catalog). 'make update' will work fine.
Diffstat (limited to 'textproc/xmlcatmgr/files')
-rw-r--r--textproc/xmlcatmgr/files/deinstall.tmpl4
-rw-r--r--textproc/xmlcatmgr/files/install.tmpl4
2 files changed, 2 insertions, 6 deletions
diff --git a/textproc/xmlcatmgr/files/deinstall.tmpl b/textproc/xmlcatmgr/files/deinstall.tmpl
index e63e0835930..9e21d7deb19 100644
--- a/textproc/xmlcatmgr/files/deinstall.tmpl
+++ b/textproc/xmlcatmgr/files/deinstall.tmpl
@@ -1,4 +1,4 @@
-# $NetBSD: deinstall.tmpl,v 1.2 2003/03/17 17:48:06 jmmv Exp $
+# $NetBSD: deinstall.tmpl,v 1.3 2003/09/08 12:26:22 jmmv Exp $
#
# Unregister SGML/XML catalog entries.
#
@@ -12,7 +12,6 @@ XML_ENTRIES='@XML_ENTRIES@'
case ${STAGE} in
DEINSTALL)
if [ -n "${SGML_ENTRIES}" ]; then
- ${ECHO} "===> Unregistering SGML catalog entries for ${PKGNAME}"
set -- ${SGML_ENTRIES}
while [ $# -gt 0 ]; do
${XMLCATMGR} -sc ${SGML_CATALOG} remove "$2"
@@ -20,7 +19,6 @@ DEINSTALL)
done
fi
if [ -n "${XML_ENTRIES}" ]; then
- ${ECHO} "===> Unregistering XML catalog entries for ${PKGNAME}"
set -- ${XML_ENTRIES}
while [ $# -gt 0 ]; do
${XMLCATMGR} -c ${XML_CATALOG} remove "$2"
diff --git a/textproc/xmlcatmgr/files/install.tmpl b/textproc/xmlcatmgr/files/install.tmpl
index 92ddc1e8784..bc995eb27a4 100644
--- a/textproc/xmlcatmgr/files/install.tmpl
+++ b/textproc/xmlcatmgr/files/install.tmpl
@@ -1,4 +1,4 @@
-# $NetBSD: install.tmpl,v 1.2 2003/03/17 17:48:06 jmmv Exp $
+# $NetBSD: install.tmpl,v 1.3 2003/09/08 12:26:22 jmmv Exp $
#
# Register SGML/XML catalog entries.
#
@@ -12,7 +12,6 @@ XML_ENTRIES='@XML_ENTRIES@'
case ${STAGE} in
POST-INSTALL)
if [ -n "${SGML_ENTRIES}" ]; then
- ${ECHO} "===> Registering SGML catalog entries for ${PKGNAME}"
set -- ${SGML_ENTRIES}
while [ $# -gt 0 ]; do
${XMLCATMGR} -sc ${SGML_CATALOG} add "$1" "$2" "$3"
@@ -20,7 +19,6 @@ POST-INSTALL)
done
fi
if [ -n "${XML_ENTRIES}" ]; then
- ${ECHO} "===> Registering XML catalog entries for ${PKGNAME}"
set -- ${XML_ENTRIES}
while [ $# -gt 0 ]; do
${XMLCATMGR} -c ${XML_CATALOG} add "$1" "$2" "$3"