blob: b845756e0e7a3bbd85fccbef166c59d984ddf391 (
plain)
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
|
$Id$
Public domain. Originally written 2005 by Karl Berry.
Extra utilities we (optionally) compile for TeX Live.
See comments in ../texk/README.
asymptote 1.94 - checked 9may10
update to TL from CTAN, to include prebuilt doc.
see http://tug.org/texlive/build.html#asymptote
and tlpkg/bin/tl-update-asy
chktex 1.6.4 - checked 3may10
http://baruch.ev-en.org/proj/chktex/chktex-1.6.4.tar.gz
dialog 1.1-20100119 - checked 21jan10
ftp://invisible-island.net/dialog/dialog.tar.gz
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.35 - checked 10may10
http://www.lcdf.org/type/
tpic2pdftex 1.97 - checked 9may10
http://www.ctan.org/graphics/tpic2pdftex
vlna 1.2 - checked 26jun08
ftp://math.feld.cvut.cz/pub/olsak/vlna
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.
xpdfopen 0.80 - checked 5may10
http://mirror.ctan.org/support/xpdfopen.zip
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.8.tar.gz
gzip -dc libsigsegv-2.8.tar.gz | tar xf -
cd libsigsegv-2.8
./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.48/clisp-2.48.tar.gz
gzip -dc clisp-2.48.tar.gz | tar xf -
cd clisp-2.48
# On FreeBSD/amd64, add --disable-mmap.
./configure --with-ffcall --with-libffcall-prefix=$clisp_toolsdir \
--with-libsigsegv-prefix=$clisp_toolsdir --without-readline \
$clisp_builddir \
&& cd $clisp_builddir \
&& make
|