freebsd-dev/contrib/groff/test-groff
2002-10-11 08:52:17 +00:00

43 lines
1.1 KiB
Bash
Executable File

#! /bin/sh
# This script runs groff without requiring that it be installed.
# The current directory must be the top build directory.
builddir=./src
srcdir=`echo $0 | sed -e 's;/[^/]*$;;'`
if test ! -d $builddir/roff/groff || \
test ! -r $builddir/roff/groff/groff; then
echo $0 must be run with the top build directory as the current directory 2>&1
exit 1
fi
GROFF_BIN_PATH=\
$builddir/roff/groff:\
$builddir/roff/troff:\
$builddir/preproc/pic:\
$builddir/preproc/eqn:\
$builddir/preproc/tbl:\
$builddir/preproc/grn:\
$builddir/preproc/refer:\
$builddir/preproc/soelim:\
$builddir/preproc/html:\
$builddir/devices/grops:\
$builddir/devices/grodvi:\
$builddir/devices/grotty:\
$builddir/devices/grolj4:\
$builddir/devices/grolbp:\
$builddir/devices/grohtml:\
$srcdir/$builddir/xditview
test -n "$srcdir" || srcdir=.
XENVIRONMENT=`cd $srcdir; pwd`/src/xditview/GXditview.ad
export XENVIRONMENT
GROFF_COMMAND_PREFIX=
GROFF_FONT_PATH=$builddir/../font:$srcdir/font
GROFF_TMAC_PATH=$srcdir/tmac
export GROFF_BIN_PATH GROFF_COMMAND_PREFIX GROFF_FONT_PATH GROFF_TMAC_PATH
exec $builddir/roff/groff/groff ${1+"$@"}