diff options
Diffstat (limited to 'Master/tlpkg/libexec/ctan2tds')
-rwxr-xr-x | Master/tlpkg/libexec/ctan2tds | 10 |
1 files changed, 9 insertions, 1 deletions
diff --git a/Master/tlpkg/libexec/ctan2tds b/Master/tlpkg/libexec/ctan2tds index 51b00a40dca..8e28cf2a4d3 100755 --- a/Master/tlpkg/libexec/ctan2tds +++ b/Master/tlpkg/libexec/ctan2tds @@ -1252,6 +1252,7 @@ chomp ($Build = `cd $Master/../Build/source && pwd`); 'cm-super' => '&PREHOOK_cm_super', 'cmextra' => '&PREHOOK_cmextra', 'concrete' => '&PREHOOK_concrete', + 'ctan-o-mat' => '&PREHOOK_ctan_o_mat', 'download' => '&PREHOOK_savepdf', 'dynblocks' => '&PREHOOK_flatten1', 'enctex' => '&PREHOOK_flatten1', @@ -1401,7 +1402,6 @@ chomp ($Build = `cd $Master/../Build/source && pwd`); %specialdest = ( - 'hyphenex', 'texmf-dist', ); $standarddest = "texmf-dist"; @@ -2820,6 +2820,7 @@ $standardttf = '\.ttf|\.TTC'; 'cjk-gs-integrate' => '\.pl$', 'convbkmk' => '\.rb$', 'crossrefware' => '\.pl$', + 'ctan-o-mat' => '\.pl$', 'ctanify' => '^ctanify$', 'ctanupload' => '\.pl$', 'de-macro' => 'de-macro', @@ -2929,6 +2930,7 @@ $standardttf = '\.ttf|\.TTC'; %specialmans = ( 'bundledoc' => '\.1$', 'crossrefware' => '\.1$', + 'ctan-o-mat' => '\.1$', 'ctanify' => '\.1$', 'dosepsbin' => 'dosepsbin.man', 'epstopdf' => 'r?epstopdf.1|epstopdf.man1.pdf', # don't keep pdf @@ -5223,6 +5225,12 @@ sub PREHOOK_concrete { # symlinks will get removed afterward by MAKEflatten. } +sub PREHOOK_ctan_o_mat { + print "PREHOOK_$package - make .1 with pod2man\n"; + &prehook_pod2man ("Gerd Neugebauer", "$package.pl"); + &SYSTEM ("$RM $package.pdf"); +} + sub PREHOOK_enctex { print "PREHOOK_$package - up a level\n"; &SYSTEM ("$MV enctex/* ."); |