1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
|
#!/bin/sh
# This is the xdvi wrapper script for teTeX, version 0.2.
# Copyright Thomas Esser, 1998. Permission to distribute under the terms
# of the GNU General Public License version 2 or later.
# This script sets some environment variables to make sure that xdvi's
# resource file in $XDVIINPUTS/xdvi is read by xdvi.bin.
test -f /bin/sh5 && test -z "$RUNNING_SH5" \
&& test x"`(uname -s) 2>&1`" = xULTRIX \
&& { RUNNING_SH5=true; export RUNNING_SH5; exec /bin/sh5 $0 ${1+"$@"}; }
RUNNING_SH5=
test -f /bin/bsh && test -z "$RUNNING_BSH" \
&& test x"`(uname -s) 2>&1`" = xAIX \
&& { RUNNING_BSH=true; export RUNNING_BSH; exec /bin/bsh $0 ${1+"$@"}; }
RUNNING_BSH=
# -help and -version only used to work if they were the only options,
# so the "-name xdvi" parameter wasn't used in that case. With current
# xdvik, it should work in any case, but we keep this logic for compatibility
# with older xdvik and plain xdvi versions.
have_basename=`basename foo/bar 2>&1 | grep -i 'not found'`
if [ "$have_basename"xxx = "xxx" ]; then
BASE_NAME=`basename $0`
else
BASE_NAME=`echo $0 | sed 's!.*/!!'`
fi
case "$#:$1" in
1:-help|1:-version)
NAMEOPT=;;
*)
NAMEOPT="-name $BASE_NAME";;
esac
xdviappfile=`kpsewhich -progname=xdvi --format='other text files' XDvi`
if test -n "$xdviappfile"; then
xdviappdir=`dirname "$xdviappfile"`
xdviapppath="${xdviappdir}/%l_%t/%N:${xdviappdir}/%N"
# For R3, we have to set XAPPLRESDIR.
### SU: removed, xdvik won't work with R3 anyway, and XAPPLRESDIR is
### for user customizations in current X
### XAPPLRESDIR="$xdviappdir"; export XAPPLRESDIR
# For R4 or later, we have to set XFILESEARCHPATH, since XAPPLRESDIR might
# be ignored (if XUSERFILESEARCHPATH is set)
XFILESEARCHPATH="$xdviapppath:${XFILESEARCHPATH-%D}"; export XFILESEARCHPATH
fi
# 2009 modification by Ettore Aldrovandi for TeX Live specifically;
# since the regular xdvi-xaw binary is built on OpenSolaris, and there's
# a separate binary for Solaris 10, use the right one. This needs to be
# patched back in the source tree, or otherwise fixed, but for now, just
# do it here, where it's needed.
if test x"`(uname -s) 2>&1`" = xSunOS \
&& test x"`(uname -r) 2>&1`" = x5.10 \
&& test x"`(uname -m) 2>&1`" = xi86pc ; then
xdviprogram=xdvi-xaw_solaris10_x86
else
xdviprogram=xdvi-xaw
fi
exec $xdviprogram $NAMEOPT ${1+"$@"}
|