[project @ 2004-08-26 20:08:39 by panne]
[ghc-hetmet.git] / glafp-utils / docbook / db2pdf.dir / db2pdf.sh
diff --git a/glafp-utils/docbook/db2pdf.dir/db2pdf.sh b/glafp-utils/docbook/db2pdf.dir/db2pdf.sh
deleted file mode 100644 (file)
index a078c63..0000000
+++ /dev/null
@@ -1,57 +0,0 @@
-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
-
-# Dave Mason's option to specify a different stylesheet
-case $1 in
-    -d) DB_STYLESHEET=$2
-        shift 2
-       ;;
-esac
-
-echo "Using stylesheet: \"${DB_STYLESHEET}\""
-
-if [ $# -gt 2 ]
-then
-  echo "Usage: `basename $0` [filename.sgml]" >&2
-  exit 1
-fi
-
-if [ $# -eq 1 ]
-then
-  if [ ! -r $1 ]
-  then
-    echo Cannot read \"$1\".  Exiting. >&2
-    exit 1
-  fi
-  if echo $1 | egrep -i '\.sgml$|\.sgm$' >/dev/null 2>&1
-  then
-    output="`echo $1 | sed 's,\.sgml$,,;s,\.sgm$,,'`"
-  fi
-fi
-
-$JADE -t tex -d ${DB_STYLESHEET}\#print -o ${output}.tex $CATALOG_OPTION $1
-
-jadetex ${output}
-
-# See if running jadetex twice cures the problem.
-if egrep '^LaTeX Warning: There were undefined references.$' ${TMPFN}.log >/dev/null 2>&1
-then
-  jadetex ${output}
-  jadetex ${output}
-fi
-
-dvips ${output}.dvi -o ${output}.ps
-ps2pdf ${output}.ps ${output}.pdf
-
-# clean out 
-rm -f ${output}.log
-rm -f ${output}.aux
-rm -f ${output}.tex
-
-exit 0