diff options
author | Norbert Preining <preining@logic.at> | 2012-04-24 00:13:14 +0000 |
---|---|---|
committer | Norbert Preining <preining@logic.at> | 2012-04-24 00:13:14 +0000 |
commit | 8f29bdce0bdd08ec81df555e98692d1f288c3289 (patch) | |
tree | c4f9a6b00a587f635e55fc4068c1961780c90591 /Master/tlpkg/libexec | |
parent | 74e624196144ae218a63a4c35672fc7a0e7b18dc (diff) |
new package luatexja (24apr)
adapt ctan2tds to deal with it
git-svn-id: svn://tug.org/texlive/trunk@26115 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Master/tlpkg/libexec')
-rwxr-xr-x | Master/tlpkg/libexec/ctan2tds | 17 |
1 files changed, 15 insertions, 2 deletions
diff --git a/Master/tlpkg/libexec/ctan2tds b/Master/tlpkg/libexec/ctan2tds index 6849bf5b092..04c7f751a03 100755 --- a/Master/tlpkg/libexec/ctan2tds +++ b/Master/tlpkg/libexec/ctan2tds @@ -1095,6 +1095,7 @@ $standarddest = "texmf-dist"; 'jadetex', 'jadetex', 'japanese', 'platex', 'levy', 'generic', # one .sty, one .tex + 'luatexja', 'luatex', 'mathabx', 'generic', 'mathdots', 'generic', 'metatex', 'plain', @@ -1534,6 +1535,7 @@ $standardtex='\.(.bx|cfg|sty|clo|ldf|cls|def|fd|cmap|4ht)$'; 'lh', 'fonts', 'latex-notes-zh-cn', 'generic', 'lua-alt-getopt', 'support', + 'luatexja', 'luatex', 'marvosym', 'fonts', 'mathabx', 'fonts', 'mathdots', 'generic', @@ -4795,8 +4797,19 @@ sub POSTlithuanian { } sub POSTluatexja { - die "\t POST$package - move directories around\n"; - &SYSTEM ("$MV"); + print "\t POST$package - move directories around\n"; + # dir "src" content -> run files + # dir "no_runtime" content -> source files + # dir "tool" as a whole -> source files + # dir "doc" content to -> doc files (one dir up!) + my $rundest = "$DEST/tex/luatex/$package"; + my $srcdest = "$DEST/source/luatex/$package"; + &xmkdir ($rundest); + &xmkdir ($srcdest); + &SYSTEM ("$MV src/* $rundest"); + &SYSTEM ("$MV no_runtime/* $srcdest"); + &SYSTEM ("$MV tool $srcdest"); + &SYSTEM ("$MV doc/* .; rmdir doc"); } sub POSTmontex { |