aboutsummaryrefslogtreecommitdiff
path: root/textproc/mkcatalog/pkg-descr
diff options
context:
space:
mode:
authorShigeyuki Fukushima <shige@FreeBSD.org>2000-10-27 08:06:53 +0000
committerShigeyuki Fukushima <shige@FreeBSD.org>2000-10-27 08:06:53 +0000
commit80e70145a6a7356eaa3d3fbb1b5322acf48fcdd5 (patch)
treedcd87c7370bed901483208cbe11ab3a4aaefb66f /textproc/mkcatalog/pkg-descr
parentbd96cefe0ce4a0223a3b1620850681196898a037 (diff)
downloadports-80e70145a6a7356eaa3d3fbb1b5322acf48fcdd5.tar.gz
ports-80e70145a6a7356eaa3d3fbb1b5322acf48fcdd5.zip
Notes
Diffstat (limited to 'textproc/mkcatalog/pkg-descr')
-rw-r--r--textproc/mkcatalog/pkg-descr47
1 files changed, 47 insertions, 0 deletions
diff --git a/textproc/mkcatalog/pkg-descr b/textproc/mkcatalog/pkg-descr
new file mode 100644
index 000000000000..c508fcdd619b
--- /dev/null
+++ b/textproc/mkcatalog/pkg-descr
@@ -0,0 +1,47 @@
+A maintainance utility for sgml catalog files.
+
+mkcatalog maintains sgml "catalog" files.
+
+usage: mkcatalog [-pq] install|deinstall dtd-subdirectory [catalog-filename]
+ options:
+ -p preserve old catalog file.
+ -q silent mode
+
+ commands(required):
+ install set DTD configuration to catalog files.
+ deinstall usset DTD configuration from catalog files.
+
+ required arguments:
+ dtd-subdirectory DTD sub-directory.
+ (root sgml direcotry is ${PREFIX}/share/sgml.)
+
+ optional arguments:
+ catalog-filename DTD catalog filename.
+
+ for example:
+ # mkcatalog install html/4.0
+
+ This commands do the following actions:
+ 1. Add `CATALOG "html/catalog"' to ${PREFIX}/share/sgml/catalog.
+ 2. Add `CATALOG "html/4.0/catalog"'
+ to ${PREFIX}/share/sgml/html/catalog.
+
+
+ # mkcatalog install docbook/4.1 docbook41.cat
+
+ This commands do the following actions:
+ 1. Add `CATALOG "docbook/catalog"' to ${PREFIX}/share/sgml/catalog.
+ 2. Add `CATALOG "docbook/4.1/docbook41.cat"'
+ to ${PREFIX}/share/sgml/docbook/catalog.
+
+
+ # mkcatalog deinstall docbook/4.1 docbook41.cat
+
+ This commands do the following actions:
+ 1. Delete `CATALOG "docbook/4.1/docbook41.cat"'
+ from ${PREFIX}/share/sgml/docbook/catalog.
+ 2. Delete `CATALOG "docbook/catalog"'
+ from ${PREFIX}/share/sgml/catalog.
+
+---
+shige@FreeBSD.org