• Home
  • History
  • Annotate
Name Date Size #Lines LOC

..03-May-2022-

asymptote/H03-May-2022-263,894213,095

devnag/H08-Jan-2015-12,47410,081

lacheck/H11-May-2015-13,96711,298

m-tx/H25-Mar-2015-26,06221,144

pmx/H16-Feb-2015-91,27476,547

ps2eps/H16-Feb-2015-10,6718,994

texdoctk/H08-Jan-2015-9,5018,163

tpic2pdftex/H25-Mar-2015-10,2778,889

vlna/H03-May-2022-12,56810,785

xindy/H17-Feb-2015-69,43059,743

ChangeLogH A D16-Feb-2015837 2917

Makefile.amH A D16-Feb-2015487 227

Makefile.inH A D16-Feb-201530.8 KiB930828

READMEH A D20-May-20153.5 KiB11890

aclocal.m4H A D08-Jan-201543.9 KiB1,2181,109

configureH A D12-Apr-2015239.4 KiB7,8886,365

configure.acH A D09-Sep-2013754 2821

README

1$Id: README 37458 2015-05-20 17:51:10Z karl $
2Public domain.  Originally written 2005 by Karl Berry.
3
4Extra utilities we (optionally) compile for TeX Live.
5See comments in ../texk/README.
6
7
8asymptote 2.35 - checked 20may15
9  update to TL from CTAN, to include prebuilt doc.
10  see http://tug.org/texlive/build.html#asymptote
11  and tlpkg/bin/tl-update-asy
12
13devnag - from devanagari package installed in texmf-dist.
14
15lacheck - maintained here, by us
16
17m-tx 0.60d - checked 16apr12
18  http://mirror.ctan.org/support/m-tx/
19
20pmx 2.7.0 - checked 25nov14
21  http://mirror.ctan.org/support/pmx/
22
23ps2eps 1.68 - checked 10may12
24  http://tm.uka.de/~bless/ps2eps
25
26t1utils 1.39 - checked 1mar15
27  http://www.lcdf.org/type/
28
29texdoctk - reluctantly maintained here in TL
30  If anyone would like to resume development, just let us know.
31
32tpic2pdftex 1.97 - checked 10may12
33  http://mirror.ctan.org/graphics/tpic2pdftex/
34
35vlna 1.5 - checked 10may12
36  ftp://math.feld.cvut.cz/pub/olsak/vlna/
37
38xindy - see just below
39
40xpdfopen 0.86 - checked 24may14
41  http://mirror.ctan.org/support/xpdfopen/
42  http://cs.acadiau.ca/~jdiamond/xpdfopen/
43
44
45xindy 2.5.1 - checked 15sep14
46  http://www.ctan.org/tex-archive/indexing/xindy/base/
47
48After building clisp as described below, run the TL
49  Build --enable-xindy CLISP=$clisp_builddir/clisp
50to include xindy in the build.  It is disabled by default.
51
52xindy/README-clisp has alternative instructions with some extra
53information, especially for those building xindy on its own.  The
54process here is written for building clisp-for-xindy-for-TL.  The
55differences are minimal.
56
57mkdir clisp; cd clisp
58clisp_basedir=`pwd`
59clisp_toolsdir=$clisp_basedir/clisp-tools
60clisp_builddir=$clisp_basedir/clisp-build
61mkdir $clisp_toolsdir
62
63wget=wget  # or "curl -O" or whatever
64
65libsigsegv_ver=libsigsegv-2.10
66cd $clisp_basedir
67$wget http://ftp.gnu.org/gnu/libsigsegv/$libsigsegv_ver.tar.gz
68gzip -dc $libsigsegv_ver.tar.gz | tar xf -
69cd $libsigsegv_ver
70./configure --prefix=$clisp_toolsdir --disable-shared --enable-static \
71&& make && make check && make install
72#
73# you may need this hack on 64-bit systems
74# if clisp's configure does not find libsigsegv.  Harmless anyway.
75ln -s lib $clisp_toolsdir/lib64
76
77libiconv_ver=libiconv-1.14
78cd $clisp_basedir
79$wget http://ftp.gnu.org/gnu/libiconv/$libiconv_ver.tar.gz
80gzip -dc $libiconv_ver.tar.gz | tar xf -
81cd $libiconv_ver
82./configure --prefix=$clisp_toolsdir --disable-shared --enable-static \
83&& make && make check && make install
84
85ffcall_ver=ffcall-1.10
86cd $clisp_basedir
87$wget http://www.haible.de/bruno/gnu/$ffcall_ver.tar.gz
88gzip -dc $ffcall_ver.tar.gz | tar xf -
89cd $ffcall_ver
90./configure --prefix=$clisp_toolsdir --disable-shared --enable-static \
91&& make && make check && make install
92
93# would probably be ideal to also do a local libtermcap or ncurses,
94# but doesn't seem to be a problem in practice?
95
96# foil wrong attempts at dynamic linking, etc.
97(cd $clisp_basedir/clisp-tools/lib && rm -f *.dylib *.la)
98
99clisp_ver=clisp-2.49
100cd $clisp_basedir
101$wget http://ftp.gnu.org/gnu/clisp/release/2.49/$clisp_ver.tar.gz
102gzip -dc $clisp_ver.tar.gz | tar xf -
103cd $clisp_ver
104
105# On Cygwin:
106# mv modules/syscalls/configure modules/syscalls/configure.orig
107# sed -e '{s%-luuid%-L/usr/lib/w32api -luuid%}' \
108#  modules/syscalls/configure.orig > modules/syscalls/configure
109# On FreeBSD/amd64: add --disable-mmap.
110#
111./configure --without-readline --disable-nls \
112  --with-libsigsegv-prefix=$clisp_toolsdir \
113  --with-libiconv-prefix=$clisp_toolsdir \
114  --with-libffcall-prefix=$clisp_toolsdir \
115  $clisp_builddir \
116&& cd $clisp_builddir \
117&& make
118