diff options
author | Norbert Preining <preining@logic.at> | 2014-03-04 04:59:40 +0000 |
---|---|---|
committer | Norbert Preining <preining@logic.at> | 2014-03-04 04:59:40 +0000 |
commit | ff25537b4955ac9aed9f7865dc290a8108dc10dd (patch) | |
tree | 5553ec5f9d9bc347f214c683a5d826c3781e1f55 /Master/tlpkg | |
parent | 03ae441c431ec77f74ebc15b2fc07fa5b349c1b0 (diff) |
cfr-lm (Mar4) - plus adaptions for ctan2tds
git-svn-id: svn://tug.org/texlive/trunk@33090 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Master/tlpkg')
-rwxr-xr-x | Master/tlpkg/libexec/ctan2tds | 18 |
1 files changed, 17 insertions, 1 deletions
diff --git a/Master/tlpkg/libexec/ctan2tds b/Master/tlpkg/libexec/ctan2tds index e0ab7663ae2..93af0dcecf0 100755 --- a/Master/tlpkg/libexec/ctan2tds +++ b/Master/tlpkg/libexec/ctan2tds @@ -210,7 +210,6 @@ chomp ($Build = `cd $Master/../Build/source && pwd`); 'cdcover', "die 'skipping, use cd-cover'", 'cellular', "die 'skipping, noinfo license, author deceased'", 'cellwise', "die 'skipping, noinfo license'", - 'cfr-lm', "&MAKEcopy", 'changebar', "&MAKEchangebar", 'chapterbib', "die 'skipping, update cite instead'", 'check-parens',"die 'skipping, C++'", @@ -1139,6 +1138,7 @@ chomp ($Build = `cd $Master/../Build/source && pwd`); 'biber' => '&POSTbiber', 'biblatex' => '&POSTbiblatex', 'bibtex' => '&POSTbibtex', + 'cfr-lm' => '&POSTcfr_lm', 'chemmacros' => '&POSTchemmacros', 'context' => '&POSTcontext', 'context-games' => '&POSTcontext_games', @@ -1670,6 +1670,7 @@ $standardtex='\.(.bx|cfg|sty|clo|ldf|cls|def|fd|cmap|4ht)$'; 'burmese', 'fonts', 'cbfonts', 'fonts', 'cc-pl', 'fonts', + 'cfr-lm', 'fonts', 'chicago-annote', 'bibtex', 'chemarrow', 'fonts', 'chronosys', 'generic', @@ -5179,6 +5180,21 @@ sub POSTmptopdf { } + +sub POSTcfr_lm { + print "POST$package - move directories around\n"; + &rename_with_mkdir ("vf", "$DEST/fonts/vf/public/$package"); + &rename_with_mkdir ("tfm", "$DEST/fonts/tfm/public/$package"); + &rename_with_mkdir ("enc", "$DEST/fonts/enc/dvips/$package"); + &rename_with_mkdir ("map", "$DEST/fonts/map/dvips/$package"); + &SYSTEM("$MV source/* $DEST/source/fonts/$package"); + # somehome th source/fonts package is already created??? + #&rename_with_mkdir ("source", "$DEST/source/fonts/$package"); + &rename_with_mkdir ("tex", "$DEST/tex/latex/$package"); + &SYSTEM("$MV doc/* ."); + &SYSTEM("rmdir doc"); +} + sub POSTcontext_games { print "POST$package - remove duplicated fonts\n"; &SYSTEM ("$RM -rf fonts"); |