diff options
Diffstat (limited to 'Master/tlpkg/libexec/ctan2tds')
-rwxr-xr-x | Master/tlpkg/libexec/ctan2tds | 12 |
1 files changed, 5 insertions, 7 deletions
diff --git a/Master/tlpkg/libexec/ctan2tds b/Master/tlpkg/libexec/ctan2tds index d2f581b5637..dc035f7a52e 100755 --- a/Master/tlpkg/libexec/ctan2tds +++ b/Master/tlpkg/libexec/ctan2tds @@ -1145,7 +1145,7 @@ chomp ($Build = `cd $Master/../Build/source && pwd`); 'doipubmed' => '&POSTlatex2html', 'download' => '&POST_savepdf', 'enigma' => '&POSTenigma', -# 'eplain' => '&POSTeplain', + 'eplain' => '&POSTeplain', 'epspdf' => '&POSTepspdf', 'fixme' => '&POSTfixme', 'fpl' => '&POSTfpl', @@ -2467,7 +2467,6 @@ $standardxmt='\.xmt'; # packages which have info files to install. %specialinfos = ( - 'eplain' => '\.info', 'latex2e-help-texinfo' => '\.info', 'latex2e-help-texinfo-spanish' => '\.info', 'latex2man' => '\.info', @@ -2483,7 +2482,6 @@ $standardxmt='\.xmt'; 'bundledoc' => '\.1$', 'ctanify' => '\.1$', 'dosepsbin' => 'dosepsbin.man', - #'eplain' => '\.1$', # fix to be used for tds 'epstopdf' => 'r?epstopdf.1|epstopdf.man1.pdf', # don't keep pdf 'findhyph' => 'findhyph.1', 'fontools' => '\.1$', @@ -5232,13 +5230,13 @@ sub POSTenigma { } sub POSTeplain { - print "POST$package - eplain.info, man\n"; + print "POST$package - info, man\n"; my $infodir = "$TOPDEST/texmf-dist/doc/info/"; - &xmkdir ($infodir); - &SYSTEM ("$MV doc/eplain/doc/eplain.info $infodir/"); + &mv_with_mkdir ("doc/$package/$package.info", $infodir); - &POST_do_man ("doc/$package/doc"); + &POST_do_man ("doc/$package"); + &SYSTEM ("$RM doc/$package/$package.man1.pdf"); } sub POSTepspdf { |