[project @ 2000-05-18 17:15:46 by panne]
authorpanne <unknown>
Thu, 18 May 2000 17:15:46 +0000 (17:15 +0000)
committerpanne <unknown>
Thu, 18 May 2000 17:15:46 +0000 (17:15 +0000)
* A shell-classic: Inserted space before ] (the lexical syntax of
  shells is always resource of miracles...)

* Made searching for a catalog a little bit more cunning: If
  SGML_CATALOG_FILES is not set, try FPTOOLS_CATALOG_FILE, then
  /usr/share/sgml/CATALOG.docbkdsl, the SuSE-Linux default, don't know
  about Red Hat, Debian, etc.  This way "make dvi html pdf ps rtf"
  works out of the box, at least for me. :-)

glafp-utils/docbook/db2dvi.dir/db2dvi.sh
glafp-utils/docbook/db2html.dir/db2html.sh
glafp-utils/docbook/db2pdf.dir/db2pdf.sh
glafp-utils/docbook/db2rtf.dir/db2rtf.sh

index 013d071..1f59e70 100644 (file)
@@ -1,11 +1,15 @@
-if [ -z "$SGML_CATALOG_FILES"]
-then
-  if [ ! -f "$FPTOOLS_CATALOG_FILE" ]
-  then
-    echo "CATALOG file not set up; see installation guide for details."
-    exit 1
-  fi
-  SGML_CATALOG_FILES=$FPTOOLS_CATALOG_FILE
+if [ -z "$SGML_CATALOG_FILES" ] ; then
+  for i in "$FPTOOLS_CATALOG_FILE" /usr/share/sgml/CATALOG.docbkdsl ; do
+    if [ -n "$i" -a -r "$i" ] ;  then
+      SGML_CATALOG_FILES="$i"
+      break
+    fi
+  done
+fi
+
+if [ -z "$SGML_CATALOG_FILES" ] ; then
+  echo "CATALOG file not set up; see installation guide for details."
+  exit 1
 fi
 
 # Dave Mason's option to specify a different stylesheet
index b7337cb..383e127 100644 (file)
@@ -1,11 +1,15 @@
-if [ -z "$SGML_CATALOG_FILES"]
-then
-  if [ ! -f "$FPTOOLS_CATALOG_FILE" ]
-  then
-    echo "CATALOG file not set up; see installation guide for details."
-    exit 1
-  fi
-  SGML_CATALOG_FILES=$FPTOOLS_CATALOG_FILE
+if [ -z "$SGML_CATALOG_FILES" ] ; then
+  for i in "$FPTOOLS_CATALOG_FILE" /usr/share/sgml/CATALOG.docbkdsl ; do
+    if [ -n "$i" -a -r "$i" ] ;  then
+      SGML_CATALOG_FILES="$i"
+      break
+    fi
+  done
+fi
+
+if [ -z "$SGML_CATALOG_FILES" ] ; then
+  echo "CATALOG file not set up; see installation guide for details."
+  exit 1
 fi
 
 HTML_STYLESHEET=$HTML_DIR/html/docbook.css
index 07f762a..c7c259d 100644 (file)
@@ -1,11 +1,15 @@
-if [ -z "$SGML_CATALOG_FILES"]
-then
-  if [ ! -f "$FPTOOLS_CATALOG_FILE" ]
-  then
-    echo "CATALOG file not set up; see installation guide for details."
-    exit 1
-  fi
-  SGML_CATALOG_FILES=$FPTOOLS_CATALOG_FILE
+if [ -z "$SGML_CATALOG_FILES" ] ; then
+  for i in "$FPTOOLS_CATALOG_FILE" /usr/share/sgml/CATALOG.docbkdsl ; do
+    if [ -n "$i" -a -r "$i" ] ;  then
+      SGML_CATALOG_FILES="$i"
+      break
+    fi
+  done
+fi
+
+if [ -z "$SGML_CATALOG_FILES" ] ; then
+  echo "CATALOG file not set up; see installation guide for details."
+  exit 1
 fi
 
 TMPFN=`echo $1 | sed 's/\.sgml//'`
index dc90e49..48b3521 100644 (file)
@@ -1,11 +1,15 @@
-if [ -z "$SGML_CATALOG_FILES"]
-then
-  if [ ! -f "$FPTOOLS_CATALOG_FILE" ]
-  then
-    echo "CATALOG file not set up; see installation guide for details."
-    exit 1
-  fi
-  SGML_CATALOG_FILES=$FPTOOLS_CATALOG_FILE
+if [ -z "$SGML_CATALOG_FILES" ] ; then
+  for i in "$FPTOOLS_CATALOG_FILE" /usr/share/sgml/CATALOG.docbkdsl ; do
+    if [ -n "$i" -a -r "$i" ] ;  then
+      SGML_CATALOG_FILES="$i"
+      break
+    fi
+  done
+fi
+
+if [ -z "$SGML_CATALOG_FILES" ] ; then
+  echo "CATALOG file not set up; see installation guide for details."
+  exit 1
 fi
 
 output=db2rtf.rtf