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 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608
|
#!/bin/sh
CONFIGURE="$0"
case "$1" in
noloop) shift;;
*)
case "$BASH" in
*bash);;
*)
if bash -c echo
then exec bash $0 noloop "$@"
else
echo 'This is a bash script, but bash does not seem to be working'
echo 'Please, try bash "bash configure"'
fi;;
esac;;
esac
configure_options="$*"
prefix=/usr/local
bindir=''
libdir=''
datadir=''
docdir=''
elc=false
latexdir=''
emacsdir=''
xemacsdir=''
bash=bash
latex=latex
initex="$latex -ini"
format=''
fmt=''
bibtex=bibtex
emacs=emacs
xemacs=xemacs
advi=advi
xdvi=xdvi
gv=gv
dvips=dvips
multiple=true
configfile='/etc/whizzytex/whizzytex.conf'
# Parse command-line arguments
is_absolute () {
case "$prefix" in
/*) ;;
*) echo "The -prefix directory must be absolute." 1>&2; exit 2;;
esac
}
absolute_or_prefix () {
case "$1" in
"") echo;;
/*|'$(PREFIX)'*|'$(LIBDIR)'*|'$(DATADIR)'*) echo $1;;
*) echo "$(PREFIX)/$1";;
esac
}
showhelp () {
cat "$CONFIGURE" | \
sed -n -e '/^#begin help/,/^#end help/p' \
-e '/^#end help/q' | \
sed -n -e '/^ *-.*)/s/)//' \
-e 's/##//p'
}
while : ; do
case "$1" in
"") break;;
#begin help
##Usage:
##
## configure <option list>
##
##where options are either <key> or pairs <key> <arg> as listed below;
##default value for <arg> is given after #; <path> when relative is taken
##from the default prefi, <command> is taken as such, whether relative
##(to PATH) or absolute (PATH starting with '$(DATADIR)', '$(LIBDIR)',
##or '/' are treated as absolute).
##
-helpme) ##
## proposes choices to the user when meaningful
## actually equivalent to -emacsdir ? -xemacsdir ?
emacsdir=?; xemacsdir=?;;
##
-prefix|--prefix) ## <absolute path> # /usr/local
## set the default prefix PREFIX of all directories
is_absolute "$2"; prefix="$2"; shift;;
##
-bindir|--bindir) ## <path> # bin
## Set the directory for the excutable BINDIR
bindir=$(absolute_or_prefix "$2"); shift;;
##
-libdir|--libdir) ## <path> # lib/whizzytex
## set the directory for architecture dependent libraries LIBDIR
libdir=$(absolute_or_prefix "$2"); shift;;
##
-datadir|--datadir) ## <path> # share/whizzytex
## set the directory for architecture-independent files DATADIR
datadir=$(absolute_or_prefix "$2"); shift;;
##
-latexdir) ## <path> # $(DATADIR)/latex
## set the directory where to install source lisp code
latexdir=$(absolute_or_prefix "$2"); shift;;
##
-docdir|--docdir) ## <path> # share/doc/whizzytex
## set the directory where to install documentation DATADIR
docdir=$(absolute_or_prefix "$2"); shift;;
##
-emacsdir) ## .|?|<path> # $(LIBDIR)/emacs
## set the directory for emacs lisp code
## ! find for the most obvious choice in emacs system load-path
## ? list all choices in emacs and users load-path and ask the user
emacsdir="$2"; shift;;
##
-xemacsdir) ## .|?|<path> # search for
## set the directory for xemacs byte-compiled lisp code
xemacsdir="$2"; shift;;
##
-elc) ##
## also compiles lisp code
elc=true;;
-emacs) ## <command> # emacs
## use <command> instead of emacs
emacs="$2"; shift;;
##
-xemacs) ## <command> # xemacs
## use <command> instead of xemacs
xemacs="$2"; shift;;
##
-bash) ## <absolute path> # /bin/bash
## Set the bash interpreter command to BASH
is_absolute "$2"; bash="$2"; shift;;
##
-initex) ## <command> # initex
## Set the latex command to INITEX
initex="$2"; shift;;
##
-latex) ## <command> # latex
## Set the latex command to LATEX
latex="$2"; shift;;
##
-format) ## <name> # latex
## Set the name of the format (.fmt suffix removed)
format="$2"; shift;;
##
-fmt) ## <name> # fmt
## Set the name of the format extension
fmt="$2"; shift;;
##
-bibtex) ## <command> # bibtex
## Set the default command for BIBTEX
bibtex="$2"; shift;;
##
-advi) ## false|<command> # advi
## Set the Advi-like previewer command name; false means do not use
## advi-like previewer at all (default if the command is not found)
advi="$2"; shift;;
##
-multiple) ## true|<command> # multiple
## Tell if advi-like previewer can view multiple files.
multiple="$2"; shift;;
##
-xdvi) ## false|<command> # xdvi
## Idem but for xdvi-like previewer command name
xdvi="$2"; shift;;
##
-gv) ## false|<command> # gv
## Idem but for gv-like previewer command name set to to GV
gv="$2"; shift;;
##
-dvips) ## <command> # dvips
## Set the DVI-to-Postcript-converter command name
dvips="$2"; shift;;
##
-configfile|--configfile) ## <file> # /etc/whizzytex/whizzytex.conf
## Set the system configuration file (full path)
configfile="$2"; shift;;
##
-help|--help) ##
##
#end help
showhelp
exit 0;;
*)
showhelp
./configure --help; exit 1;;
esac
shift
done
# Interaction with the user
PS3="Your choice ==> "
yorn () {
echo -n "$1 (y/n) [n] "
read ANSWER
if test "$ANSWER" = 'y'; then true; else false; fi
}
nory () {
echo -n "$1 (y/n) [y] "
read ANSWER
if test "$ANSWER" = 'n'; then false; else true; fi
}
message () { echo; echo '#' "$1"; }
info () { echo "$1"; }
warning () { echo '*** Warning:'; echo "$1"; }
rm -f config.errors
error () { touch config.errors; echo '*** Error:'; echo "$1"; }
fatal () {
error "$1"
rm config.errors
echo "
************ They were serious Errors ************
Makefile.config was still build but is probably incorrect.
You should check your configuration and rerun ./configure.
You may also edit Makefile.config if you know what you are doing.
"
exit 1
}
rm -f config.sed
touch config.sed
output () {
echo "s%^\($1 *=\).*%\1 $2%" >> config.sed
info "$1"' is `'"$2'"
}
# Prefix
message "Setting directories"
output PREFIX "$prefix"
if test -z "$bindir"; then bindir='$(PREFIX)'/bin; fi
output BINDIR "$bindir"
if test -z "$libdir"; then libdir='$(PREFIX)'/lib/whizzytex; fi
output LIBDIR "$libdir"
if test -z "$datadir"; then datadir='$(PREFIX)'/share/whizzytex; fi
output DATADIR "$datadir"
if test -z "$docdir"; then docdir='$(PREFIX)'/share/doc/whizzytex; fi
output DOCDIR "$docdir"
if test -z "$latexdir"; then latexdir='$(DATADIR)'/latex; fi
output LATEXDIR "$latexdir"
# Find commands
findcommand () {
com=$1
option=$2
found=''
case "$com" in
"") ;;
/*)
test -x $com && found=$com;;
*)
for i in $(type -path -all $com) \
/bin/$com /usr/bin/$com /usr/local/bin/$com
do if test -x $i; then found=$i; break; fi; done
;;
esac
if test -n "$found"
then echo $found
else
if $2; then error "command $com not found"; fi
false
fi
}
message "Checking bash command"
if test -n "$bash"
then
bash=$(findcommand "$bash" true)
if test -z "$bash"; then error "bash not found"; fi
else
bash=bash;
findcommand "$bash" true
fi
output BASH "$bash"
message "Checking Emacs configuration"
if $elc
then
if test -n "$emacs"; then findcommand "$emacs" false || emacs=''; fi
if test -n "$xemacs"; then findcommand "$xemacs" false || xemacs=''; fi
if test -z "$emacs$xemacs"; then
error "
Cannot compile to bytecode: Neither Emacs nor XEmacs have been found.
Remove -elc option or adjust -emacs or -xemacs
"
fi
fi
if test -n $USER; then user="-u $USER"; else user=''; fi
case "$emacsdir" in
"") emacsdir='$(DATADIR)'/emacs;;
"!")
if findcommand "$emacs" false 1>/dev/null \
&& $emacs -batch -q 1>/dev/null 2>/dev/null
then
emacsdir=$($emacs -batch -q -l $(pwd)/configure.el -eval "(printall)" \
2>/dev/null | sed -n -e s/FOUND://p | head -1)
else
warning "$emacs not found"
emacs=''
fi
;;
"?")
if findcommand "$emacs" false 1>/dev/null \
&& $emacs -batch -q 1>/dev/null 2>/dev/null
then
set $($emacs -batch -q $user -l $(pwd)/configure.el \
-eval "(printall)" \
2>/dev/null | sed -n -e s/FOUND://p) exit
echo "--- Please, select one value for $emacs byte-compiled lisp"
select tmp in "$@"
do
echo "You selectd $tmp"
case "$tmp" in
"") ;;
"exit") exit 1;;
*) emacsdir="$tmp"; break 2 ;;
esac
done
else
warning "$emacs not found"
emacs=''
fi
;;
*) emacsdir=$(absolute_or_prefix "$emacsdir")
;;
esac
message "Checking XEmacs configuration"
case "$xemacsdir" in
"") xemacsdir='$(DATADIR)'/xemacs;;
"!")
if findcommand "$xemacs" false 1>/dev/null \
&& $xemacs -batch -q 1>/dev/null 2>/dev/null
then
xemacsdir=$($xemacs -batch -q -l $(pwd)/configure.el -eval "(printall)" \
2>/dev/null | sed -n -e s/FOUND://p | head -1)
else
warning "$xemacs not found"
xemacs=''
fi
;;
"?")
if findcommand "$xemacs" false 1>/dev/null \
&& $xemacs -batch -q 1>/dev/null 2>/dev/null
then
set $($xemacs -batch -q $user -l $(pwd)/configure.el \
-eval "(printall)" \
2>/dev/null | sed -n -e s/FOUND://p) exit
echo "--- Please, select one value for $xemacs byte-compiled lisp"
select tmp in "$@"
do
echo "You selected $tmp"
case "$tmp" in
"") ;;
"exit") exit 1;;
*) if test "$emacsdir" = "$tmp"
then warning \
" You cannot choose the same byte-code directory for both $emacs and $xemacs"
else xemacsdir="$tmp"; break 2
fi;;
esac
done
else
warning "$xemacs not found"
xemacs=''
fi
;;
*) xemacsdir=$(absolute_or_prefix "$xemacsdir")
;;
esac
if $elc
then
if test -n "$emacs" && test -n "$xemacs" && test "$emacsdir" = "$xemacsdir"
then
error "
Cannot compile to bytecode: $emacs and $xemacs byte-code directories
are equal (and equal to $emacsdir).
You must use -emacsdir or -xemacsdir to specify different directorries.
"
emacs=''
xemacs=''
fi
else
emacs=''
xemacs=''
fi
output EMACS "$emacs"
output EMACSDIR "$emacsdir"
output XEMACS "$xemacs"
output XEMACSDIR "$xemacsdir"
# latex
message "Checking latex"
findcommand "$latex" true 1>/dev/null
# latex
message "Checking initex"
if findcommand "$initex" false 1>/dev/null
then :
else
warning "${initex} not found. Defaulting to '${latex} -ini'."
initex="${latex} -ini"
fi
output LATEX "$latex"
output INITEX "$initex"
output BIBTEX "$bibtex"
cat <<EOF > dummy.tex
\documentclass{article}
\def \dummy {Testing Your Installation}
\def \dojump{\def \documentclass ##1\dump {\relax}}
\dojump
\dump
\begin{document}
\huge {\bf \dummy}\par Don't worry, feel Lucky!
\end{document}
EOF
message "Checking format"
if test -z "$format"
then
formats=$(basename $latex)
case "$formats" in
latex) ;;
"") foramts=latex;;
*) formats="$formats latex";;
esac
else formats="$format"
fi
format=''
for f in $formats
do
if $initex '&'$f '\input{dummy}' > initex.log
then format=$f; break
fi
done
if test -z "$format"
then error "Cannot run $initex with any of the formats: $formats"
fi
if test -z "$fmt"
then fmt=$(echo | $initex '&stroumf' '\batchmode' 2>&1 \
| sed -n -e 's%^.*the format `stroumf.\([a-z][a-z]*\)'"'.*"'%\1%p')
fi
if test -z "$fmt";
then error "Cannot determined format extension, please use option -fmt"
fi
echo -n "Running INITEX=$initex..."
rm -f dummy.dvi
if $initex '&'$format dummy.tex > initex.log
then
if [ -f dummy.$fmt ]
then
if latex '&dummy' dummy.tex > latex.log
then echo ok
else
error "
Command failed:
$latex "'"&'$format'"'" dummy.tex "'&&'" [ -f dummy.dvi ] > latex.log
$latex might be misconfigured.
See dummy.tex and latex.log
"
fi
else
error "I thought format extension was $fmt, but command
initex '&"$format"' dummy.tex > latex.log
fails to produce file dummy.fmt. I am fooled and give up!
Please help me with option -initex, -latex -frmat and -fmt.
"
fi
else
echo HERE
fi
output FORMAT $format
output FMT $fmt
# Previewers
findcommand "$advi" false >/dev/null || advi=''
findcommand "$xdvi" false >/dev/null || xdvi=''
# Should we try to fix it and call xdvi.bin directly?
# probably not, because the wrappe xdvi is use to setup graphical parameters
# xdvipath=$(which xdvi)
# if test -x "$xdvipath.bin"
# then
# if grep -e ^"$xdvipath".bin $(which "$xdvipath") 2>&1 >/dev/null && \
# ! grep -e ^"$xdvipath".bin $(which "$xdvipath") 2>&1 >/dev/null
# then
# warning "$xdvi command, \ie. $xdvipath, seems to call $xdvipath.bin
# without exec. Using $xdvi.bin instead."
if findcommand "$gv" false >/dev/null
then
if findcommand "$dvips" >/dev/null
then
echo -n "Running DVIPS=$dvips... "
if $dvips -o dummy.ps dummy.dvi 2>/dev/null 1>/dev/null
then echo ok
else error "
Command failed:
$dvips -o dummy.ps dummy.dvi 2>/dev/null 1>/dev/null
$dvips seems to have problems
"
fi
else gv=''; dvips=''
fi
else
gv=''; dvips=''
fi
case "$advi" in false) advi='';; esac
case "$xdvi" in false) xdvi='';; esac
case "$gv" in false) gv=''; esac
output ADVI "$advi"
output XDVI "$xdvi"
output GV "$gv"
output DVIPS "$dvips"
output CONFIGFILE "$configfile"
if test -z "$advi$xdvi$gv"
then error "At least one previewer amoing advi, xdvi, gv should be defined"
fi
message "Other parameters"
# tells whether "$ADVI" can view multiple files.
# check in checkconfig
# check if version > 1.50.2
if $multiple && [ -n "$advi" ]
then
tmp=advi.version$$
if $advi --version 1>$tmp 2>&1
then
if
( echo 1.50.2 ; \
sed -n -e 's/.*version \([0-9.+]*\) .*/\1/p' < $tmp \
) | sort -n -c 2>/dev/null
then
:
else
multiple=false
fi
else
multiple=false
fi
rm -f $tmp
if $multiple; then : ; else
echo "Advi version $VERSION does not allow multiple views..."
fi
fi
output MULTIPLE $multiple
message "Building Makefile.config"
for file in Makefile.config
do
sed -f config.sed < $file.in > $file
done
rm config.sed
if test -f config.errors; then fatal; else
rm -f dummy.{tex,fmt,dvi,aux,ps,log}
echo "
Configuration suceeded
See Makefile.config for details
"
fi
|