Updating TeXLive to 2013 using updated Debian snapshots.

Kept the old hacks where they don't break the build in case they things
they fix are still relevant.

I checked that the upgrade doesn't break:
1) Asymptote and EProver builds.
2) My XeLaTeX demo from configurations/ repository.
3) Some of my own files.

The upgrade fixes problems with simultaneous use of 3D and LaTeX labels
in Asymptote.

Please provide a test that worked previously and is broken now if you
need to revert this update or its parts.
This commit is contained in:
Michael Raskin
2013-10-14 10:36:39 +04:00
parent 4dee7de246
commit 776adb5704
15 changed files with 120 additions and 63 deletions

View File

@@ -9,10 +9,10 @@ stdenv.mkDerivation {
};
installPhase = ''
mkdir -p $out/texmf/
mkdir -p $out/texmf-dist/
mkdir -p $out/share/fonts/
cp -r ./* $out/texmf/
cp -r ./* $out/texmf-dist/
cp -r fonts/{opentype,type1} $out/share/fonts/
ln -s $out/texmf* $out/share/

View File

@@ -9,7 +9,7 @@ stdenv.mkDerivation {
};
installPhase = ''
export PREFIX="$out/texmf"
export PREFIX="$out/texmf-dist"
mkdir -p "$PREFIX" "$out/share"
make install PREFIX="$PREFIX"