summaryrefslogtreecommitdiff
path: root/Build/source/utils/README
diff options
context:
space:
mode:
authorDenis Bitouzé <dbitouze@wanadoo.fr>2021-02-25 18:23:07 +0000
committerDenis Bitouzé <dbitouze@wanadoo.fr>2021-02-25 18:23:07 +0000
commitc6101f91d071883b48b1b4b51e5eba0f36d9a78d (patch)
tree1bf7f5a881d7a4f5c5bf59d0b2821943dd822372 /Build/source/utils/README
parent07ee7222e389b0777456b427a55c22d0e6ffd267 (diff)
French translation for tlmgr updated
git-svn-id: svn://tug.org/texlive/trunk@57912 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Build/source/utils/README')
-rw-r--r--Build/source/utils/README120
1 files changed, 0 insertions, 120 deletions
diff --git a/Build/source/utils/README b/Build/source/utils/README
deleted file mode 100644
index 4ac58b8fdbe..00000000000
--- a/Build/source/utils/README
+++ /dev/null
@@ -1,120 +0,0 @@
-$Id$
-Public domain. Originally written 2005 by Karl Berry.
-
-Extra utilities we (optionally) compile for TeX Live.
-See comments in ../texk/README.
-
-asymptote 2.69 - checked 2jan21
- update to TL from CTAN, to include prebuilt doc.
- see http://tug.org/texlive/build.html#asymptote
- and tlpkg/bin/tl-update-asy
-
-autosp 2021-01-07 - checked 08jan21
- http://ctan.org/pkg/autosp
-
-devnag - from devanagari package installed in texmf-dist.
-
-lacheck - maintained here, by us
-
-m-tx 0.63a - checked 29apr18
- http://ctan.org/pkg/m-tx/
-
-pmx 2.9.4a - checked 30jan21
- http://ctan.org/pkg/pmx/
-
-ps2eps 1.68 - checked 10may12
- http://tm.uka.de/~bless/ps2eps
-
-t1utils 1.42 - checked 31oct20
- http://www.lcdf.org/type/
-
-texdoctk - reluctantly maintained here in TL
- If anyone would like to resume development, just let us know.
-
-tpic2pdftex 1.97 - checked 10may12
- http://ctan.org/pkg/tpic2pdftex/
-
-vlna 1.5 - checked 10may12
- ftp://math.feld.cvut.cz/pub/olsak/vlna/
-
-xindy - see just below
-
-xpdfopen 0.86 - checked 9jul18
- http://ctan.org/pkg/xpdfopen/
- http://cs.acadiau.ca/~jdiamond/xpdfopen/
-
-
-xindy 2.5.1 - checked 15sep14
- http://www.ctan.org/pkg/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.
-
-xindy/xindy-src/README-clisp has alternative instructions with some
-extra information, especially for those building xindy on its own. The
-process here is written for building clisp-for-xindy-for-TL. The
-differences are minimal.
-
-mkdir clisp; cd clisp
-clisp_basedir=`pwd`
-clisp_toolsdir=$clisp_basedir/clisp-tools
-clisp_builddir=$clisp_basedir/clisp-build
-mkdir $clisp_toolsdir
-
-wget=wget # or "curl -O" or whatever
-
-libsigsegv_ver=libsigsegv-2.12
-cd $clisp_basedir
-$wget http://ftp.gnu.org/gnu/libsigsegv/$libsigsegv_ver.tar.gz
-gzip -dc $libsigsegv_ver.tar.gz | tar xf -
-cd $libsigsegv_ver
-./configure -C --prefix=$clisp_toolsdir --disable-shared --enable-static \
-&& make && make check && make install
-#
-# you may need this hack on 64-bit systems
-# if clisp's configure does not find libsigsegv. Harmless to do in any case.
-ln -s lib $clisp_toolsdir/lib64 # for GNU/Linux 64-bit
-ln -s . $clisp_toolsdir/lib/64 # for Solaris 64-bit
-#
-# if you can't build libsigsegv, pass --ignore-absence-of-libsigsegv
-# when running configure for clisp.
-
-# may be able to omit iconv if have new enough in libc or elsewhere.
-libiconv_ver=libiconv-1.16
-cd $clisp_basedir
-$wget http://ftp.gnu.org/gnu/libiconv/$libiconv_ver.tar.gz
-gzip -dc $libiconv_ver.tar.gz | tar xf -
-cd $libiconv_ver
-./configure -C --prefix=$clisp_toolsdir \
- --disable-shared --enable-static --disable-nls \
-&& make && make check && make install
-
-# would probably be ideal to also do a local libtermcap or ncurses,
-# but doesn't seem to be a problem in practice?
-
-# foil wrong attempts at dynamic linking, etc.
-(cd $clisp_basedir/clisp-tools/lib && rm -f *.dylib *.la)
-
-clisp_ver=2.49.92
-cd $clisp_basedir
-$wget https://alpha.gnu.org/gnu/clisp/clisp-2.49.92.tar.bz2
-bunzip2 -dc $clisp_ver.tar.bz2 | tar xf -
-cd $clisp_ver
-
-# On Cygwin:
-# mv modules/syscalls/configure modules/syscalls/configure.orig
-# sed -e '{s%-luuid%-L/usr/lib/w32api -luuid%}' \
-# modules/syscalls/configure.orig > modules/syscalls/configure
-# On FreeBSD/amd64: add --disable-mmap.
-#
-./configure CPPFLAGS=-DUNIX_BINARY_DISTRIB --prefix=$clisp_toolsdir \
- --without-readline --without-dynamic-modules --without-termcap-ncurses \
- --disable-nls \
- --with-libsigsegv-prefix=$clisp_toolsdir \
- --with-libiconv-prefix=$clisp_toolsdir \
- $clisp_builddir \
-&& (cd $clisp_builddir && make)
-
-There may be clisp test failures relating to sockets on some
-systems. Since xindy doesn't use sockets, we can ignore those for TL.