source@mandoc.bsd.lv
 help / color / mirror / Atom feed
* mdocml: minimal support for Heirloom nroff
@ 2015-02-03 15:52 schwarze
  0 siblings, 0 replies; only message in thread
From: schwarze @ 2015-02-03 15:52 UTC (permalink / raw)
  To: source

Log Message:
-----------
minimal support for Heirloom nroff

Modified Files:
--------------
    mdocml:
        gmdiff

Revision Data
-------------
Index: gmdiff
===================================================================
RCS file: /home/cvs/mdocml/mdocml/gmdiff,v
retrieving revision 1.2
retrieving revision 1.3
diff -Lgmdiff -Lgmdiff -u -p -r1.2 -r1.3
--- gmdiff
+++ gmdiff
@@ -19,20 +19,32 @@ if [ `id -u` -eq 0 ]; then
 fi
 
 if [ $# -eq 0 ]; then
-  echo "usage: $0 manual_source_file ..."
+  echo "usage: $0 -h manual_source_file ..."
   exit 1
 fi
 
+if [ "X$1" = "X-h" ]; then
+  shift
+  export PATH="/usr/local/heirloom-doctools/bin:$PATH"
+  EQN="neqn"
+  ROFF="nroff"
+  MOPT="-Omdoc $MOPT"
+else
+  EQN="eqn -Tascii"
+  ROFF="groff -ww -Tascii -P -c"
+fi
+MOPT="-Werror $MOPT"
+
 while [ -n "$1" ]; do
   file=$1
   shift
   echo " ========== $file ========== "
-  tbl $file | groff -mandoc -Tascii -P -c 2> /tmp/groff.err > /tmp/groff.out
-  mandoc -Ios='OpenBSD ports' -Werror $file 2> /tmp/mandoc.err > /tmp/mandoc.out
-  for i in groff mandoc; do
+  tbl $file | $EQN | $ROFF -mandoc 2> /tmp/roff.err > /tmp/roff.out
+  mandoc -Ios='OpenBSD ports' $MOPT $file 2> /tmp/mandoc.err > /tmp/mandoc.out
+  for i in roff mandoc; do
     [[ -s /tmp/$i.err ]] && echo "$i errors:" && cat /tmp/$i.err
   done
-  diff -au /tmp/groff.out /tmp/mandoc.out 2>&1
+  diff -au /tmp/roff.out /tmp/mandoc.out 2>&1
 done
 
 exit 0
--
 To unsubscribe send an email to source+unsubscribe@mdocml.bsd.lv

^ permalink raw reply	[flat|nested] only message in thread

only message in thread, other threads:[~2015-02-03 15:52 UTC | newest]

Thread overview: (only message) (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2015-02-03 15:52 mdocml: minimal support for Heirloom nroff schwarze

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).