Copyright 2005, 2006, 2007, 2008 TeX Users Group. You may freely use, modify and/or distribute this file. Extra utilities we (optionally) compile for TeX Live. gzip - (old) only for Windows jpeg2ps - (old) only for Windows dialog - seems to be a v1.0 in debian, asked te 5jun05; he said keep as-is or else go through testing. Perhaps best would be for dialog to use a system ncurses (as texinfo does); then we could remove ncurses. http://hightek.org/dialog/ http://packages.debian.org/cgi-bin/search_packages.pl?searchon=names&version=all&exact=1&keywords=dialog lzma-utils 4.32.5 - ok 10may08 (we do not compile/install in normal build, here for installer) http://tukaani.org/lzma pdfopen 0.5 - ok 26nov06 (really xpdfopen) http://tex.aanhet.net/pdfopen ps2eps 1.64 - ok 19feb08 http://www.ipv6.tm.uka.de/~bless/ps2eps psutils p17 - ok 25nov06 (Fabrice made small modifications for Windows, it seems) http://www.ctan.org/tex-archive/support/psutils/ t1utils 1.34 - checked 2mar08 http://www.lcdf.org/type/ texinfo 4.12 - ok 20apr08 vlna - (old) only for Windows xindy 2.3 - ok 24mar08 (with numerous adaptations for TL by Vladimir) http://www.ctan.org/tex-archive/indexing/xindy/ After building clisp as described below, run the TL Build --with-xindy --with-clisp=$clisp_builddir/clisp to include xindy in the build. It is disabled by default. mkdir clisp; cd clisp clisp_basedir=`pwd` clisp_toolsdir=$clisp_basedir/clisp-tools clisp_builddir=$clisp_basedir/clisp-build mkdir $clisp_toolsdir cd $clisp_basedir wget http://ftp.gnu.org/gnu/libsigsegv/libsigsegv-2.5.tar.gz gzip -dc libsigsegv-2.5.tar.gz | tar xf - cd libsigsegv-2.5 ./configure --prefix=$clisp_toolsdir && make && make check && make install cd $clisp_basedir wget http://www.haible.de/bruno/gnu/ffcall-1.10.tar.gz gzip -dc ffcall-1.10.tar.gz | tar xf - cd ffcall-1.10 ./configure --prefix=$clisp_toolsdir && make && make check && make install # hack to fix configure error on 64-bit systems ln -s lib $clisp_toolsdir/lib64 cd $clisp_basedir wget http://ftp.gnu.org/gnu/clisp/release/2.44.1/clisp-2.44.1.tar.gz gzip -dc clisp-2.44.1.tar.gz | tar xf - cd clisp-2.44.1 ./configure --with-ffcall --with-libffcall-prefix=$clisp_toolsdir \ --with-libsigsegv-prefix=$clisp_toolsdir --without-readline \ $clisp_builddir \ && cd $clisp_builddir \ && make