$Id$ Copyright 2005, 2006, 2007, 2008, 2009 TeX Users Group. You may freely use, modify and/or distribute this file. Extra utilities we (optionally) compile for TeX Live. See comments in ../texk/README. asymptote 1.73 - checked 19may09 http://superb-east.dl.sourceforge.net/sourceforge/asymptote/asymptote-1.73.src.tgz make GCLIB_CHECK=: if the make check of gc fails. make CFLAGS="-g -DBROKEN_COMPILER" if redefinition of solvedKnot3. dialog 1.1-20080819 - checked 20mar09 ftp://invisible-island.net/dialog/dialog.tar.gz gzip - (old, not built) only here so we have the sources for the Windows binaries we distribute. pdfopen 0.5 - checked 26nov06 (really xpdfopen) http://tex.aanhet.net/pdfopen ps2eps 1.64 - checked 19feb08 http://www.ipv6.tm.uka.de/~bless/ps2eps psutils p17 - checked 25nov06 (Fabrice made small modifications for Windows, it seems) http://www.ctan.org/support/psutils/ t1utils 1.34 - checked 2mar08 http://www.lcdf.org/type/ tpic2pdftex http://www.ctan.org/graphics/tpic2pdftex vlna 1.2 - checked 26jun08 ftp://math.feld.cvut.cz/pub/olsak/vlna xz 4.999.8beta - checked 16may09 not done as part of normal build, here to provide sources for the binaries we distribute. Also so we can provide exactly the same version on all platforms; even if a newer version has been released, it should not be used without discussion. xindy 2.3 - checked 24mar08 (with numerous adaptations for TL by Vladimir) http://www.ctan.org/indexing/xindy/ After building clisp as described below, run the TL Build --enable-xindy CLISP=$clisp_builddir/clisp to include xindy in the build. It is disabled by default. Do NOT use nohup when building clisp; this may cause weird build problems. Regular redirections of stdout/stderr seem ok. 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.6.tar.gz gzip -dc libsigsegv-2.6.tar.gz | tar xf - cd libsigsegv-2.6 ./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 # you may need this hack on 64-bit systems # if clisp's configure will not find libsigsegv and/or libffcall: ln -s lib $clisp_toolsdir/lib64 cd $clisp_basedir wget http://ftp.gnu.org/gnu/clisp/release/2.47/clisp-2.47.tar.gz gzip -dc clisp-2.47.tar.gz | tar xf - cd clisp-2.47 ./configure --with-ffcall --with-libffcall-prefix=$clisp_toolsdir \ --with-libsigsegv-prefix=$clisp_toolsdir --without-readline \ $clisp_builddir \ && cd $clisp_builddir \ && make