[BACK]Return to gmdiff CVS log [TXT][DIR] Up to [cvsweb.bsd.lv] / mandoc

File: [cvsweb.bsd.lv] / mandoc / gmdiff (download)

Revision 1.5, Mon Feb 6 03:48:33 2017 UTC (7 years, 1 month ago) by schwarze
Branch: MAIN
CVS Tags: VERSION_1_14_1, VERSION_1_13
Changes since 1.4: +2 -2 lines

explicitly pass -Tascii to mandoc(1), such that LC_CTYPE does not
get into the way, and fix the usage() while here

#!/bin/sh
# Copyright (c) 2013, 2014 Ingo Schwarze <schwarze@openbsd.org>
#
# Permission to use, copy, modify, and distribute this software for any
# purpose with or without fee is hereby granted, provided that the above
# copyright notice and this permission notice appear in all copies.
#
# THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
# WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
# MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
# ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
# WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
# ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
# OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.

if [ `id -u` -eq 0 ]; then
  echo "$0: do not run me as root"
  exit 1
fi

if [ $# -eq 0 ]; then
  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 -Tascii $MOPT"

while [ -n "$1" ]; do
  file=$1
  shift
  echo " ========== $file ========== "
  tbl $file | $EQN | $ROFF -mandoc 2> /tmp/roff.err > /tmp/roff.out
  ${MANDOC:=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/roff.out /tmp/mandoc.out 2>&1
done

exit 0