[project @ 2002-02-17 08:48:23 by panne]
[ghc-hetmet.git] / glafp-utils / docbook / db2rtf.dir / db2rtf.sh
index 1353554..544a0f4 100644 (file)
@@ -1,3 +1,12 @@
+if [ ! -f "$DOCBOOK_CATALOG" ] && [ ! -f "$SGML_CATALOG_FILES" ] ; then
+  echo "CATALOG file not set up; see installation guide for details."
+  exit 1
+fi
+
+if [ -f "$DOCBOOK_CATALOG" ] ; then
+  CATALOG_OPTION="-c $DOCBOOK_CATALOG"
+fi
+
 output=db2rtf.rtf
 
 # Dave Mason's option to specify a different stylesheet
@@ -28,13 +37,13 @@ then
   fi
 fi
 
-cat $* | $JADE -t rtf -d ${DB_STYLESHEET}\#print
+cat $* | $JADE -t rtf -d ${DB_STYLESHEET}\#print $CATALOG_OPTION
 
 if [ $# -eq 1 ]
 then
-  mv $JADE-out.rtf $output
+  mv jade-out.rtf $output
 else
-  cat $JADE-out.rtf
+  cat jade-out.rtf
 fi
 
 exit 0