freebsd-dev/contrib/groff/test-groff
2001-07-10 17:09:00 +00:00

42 lines
1.0 KiB
Bash
Executable File

#! /bin/sh
# This script runs groff without requiring that it be installed.
# The current directory must be the 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 build directory as the current directory 2>&1
exit 1
fi
GROFF_BIN_PATH=\
$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:$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+"$@"}