diff options
author | Karl Berry <karl@freefriends.org> | 2010-02-22 00:35:53 +0000 |
---|---|---|
committer | Karl Berry <karl@freefriends.org> | 2010-02-22 00:35:53 +0000 |
commit | b1d08fe2d339951213fe6aba9c2e849df806fc06 (patch) | |
tree | 6726c2b286311951217d7072b8b35089577b51fd /Master/tlpkg/libexec/ctan2tds | |
parent | b84acce97a2eb68fa5c4a4c9e3fae4dbf09e30de (diff) |
carlisle update: fix2col and typehtml now separated
git-svn-id: svn://tug.org/texlive/trunk@17132 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Master/tlpkg/libexec/ctan2tds')
-rwxr-xr-x | Master/tlpkg/libexec/ctan2tds | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/Master/tlpkg/libexec/ctan2tds b/Master/tlpkg/libexec/ctan2tds index 5d0413df1c9..3472eca7739 100755 --- a/Master/tlpkg/libexec/ctan2tds +++ b/Master/tlpkg/libexec/ctan2tds @@ -366,6 +366,7 @@ $Master = "$mydir/../.."; 'ltt', "&MAKEltt", 'ltxbase', "&MAKEbase", 'ltxmisc', "die 'skipping, too complicated, sorry'", + 'ltxtable', "die 'skipping, use carlisle'", 'lxfonts', "&MAKEcopy", 'lucida', "die 'skipping, nonfree font'", 'lucidabr', "die 'skipping, nonfree font'", @@ -1316,9 +1317,17 @@ $standardsource='\.fdd|\.dtx|\.ins|\.c$|Makefile|configure.*|install-sh|\.drv'; ); $standardins='\.ins'; +# ltxtable.tex in carlisle uses the {filecontents} environment to write +# ltxtable.sty. Unfortunately if the file exists anywhere in the input +# tree, it won't be written, and of course TL already has it installed. +# So set TEXINPUTS to only the directories actually needed for the run, +# so that latex will not find our installed ltxtable.sty. +my $core_latex = "$Master/texmf-dist/tex/latex"; + %specialinsrunner = ( 'bosisio' => 'latex -translate-file=empty.tcx', # no 8-bit 'bullcntr' => 'latex', # requires interaction + 'carlisle' => "env TEXINPUTS=$core_latex/base:$core_latex/tools:. latex", 'clefval' => 'latex -translate-file=empty.tcx', # no 8-bit 'ctable' => 'latex', # requires interaction 'dateiliste' => 'latex', # requires interaction |