diff options
author | jmmv <jmmv> | 2003-09-08 12:26:20 +0000 |
---|---|---|
committer | jmmv <jmmv> | 2003-09-08 12:26:20 +0000 |
commit | 5a26150bff94c8582fa333c6948560e1d954c4bb (patch) | |
tree | 68baf1a80e34d2035fdab6e252ec5c101541c5eb /textproc/xmlcatmgr/files | |
parent | 43a6ee32a89ce376464a0105dd85c6076205a193 (diff) | |
download | pkgsrc-5a26150bff94c8582fa333c6948560e1d954c4bb.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.tmpl | 4 | ||||
-rw-r--r-- | textproc/xmlcatmgr/files/install.tmpl | 4 |
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" |