diff options
Diffstat (limited to 'Master/tlpkg/libexec/ctan2tds')
-rwxr-xr-x | Master/tlpkg/libexec/ctan2tds | 14 |
1 files changed, 13 insertions, 1 deletions
diff --git a/Master/tlpkg/libexec/ctan2tds b/Master/tlpkg/libexec/ctan2tds index aa3bc6ebb77..79947823d5c 100755 --- a/Master/tlpkg/libexec/ctan2tds +++ b/Master/tlpkg/libexec/ctan2tds @@ -1322,6 +1322,7 @@ chomp ($Build = `cd $Master/../Build/source && pwd`); 'bibtex' => '&POSTbibtex', 'bibtexperllibs' => '&POSTbibtexperllibs', 'cfr-lm' => '&POSTcfr_lm', + 'cjk-gs-integrate' => '&POSTcjk_gs_integrate', 'cmcyr' => '&POSTcmcyr', 'context' => '&POSTcontext', 'context-games' => '&POSTcontext_games', @@ -5600,6 +5601,13 @@ sub POSTcfr_lm { &SYSTEM("rmdir doc"); } +sub POSTcjk_gs_integrate { + print "POST$package - move database/ -> fonts/misc/PKGNAME/\n"; + my $destdir = "$DEST/fonts/misc"; + &xmkdir ($destdir); + &SYSTEM ("$MV database $destdir/$package"); # rename to pkgname +} + sub POSTcmcyr { print "POST$package - exclude cmcsc{8,9,10}.mf from runtime\n"; # because they are duplicates of the standard files @@ -5958,9 +5966,13 @@ sub POSTptex_fontmaps { &SYSTEM ("$MV cmap/* $cmapdest"); &SYSTEM ("rmdir cmap"); &SYSTEM ("$MV script/kanji-* $scriptdest"); - &SYSTEM ("$MV jis04cmap_exp tools script $srcdest"); + &SYSTEM ("$MV jis04cmap_exp script $srcdest"); &SYSTEM ("$MV maps/* $mapdest"); &SYSTEM ("rmdir maps"); + # + my $fmiscdest= "$DEST/fonts/misc"; + &xmkdir ($fmiscdest); + &SYSTEM ("$MV database $fmiscdest"); } sub POSTknitting { |