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 10490a7dc14..9e44b563a39 100755 --- a/Master/tlpkg/libexec/ctan2tds +++ b/Master/tlpkg/libexec/ctan2tds @@ -1575,6 +1575,7 @@ chomp (my $ctan_root = `tlpkginfo --ctan-root`); 'stix' => '&PREHOOK_stix', 'texdraw' => '&PREHOOK_texdraw', 'texfot' => '&PREHOOK_texfot', + 'texlogfilter' => '&PREHOOK_texlogfilter', 'tkz-graph' => '&PREHOOK_flatten1', 'tlcockpit' => '&PREHOOK_tlcockpit', 'tudscr' => '&PREHOOK_tudscr', @@ -3529,6 +3530,7 @@ $standardttf = '\.ttf|\.TTC'; 'texfot' => 'texfot\.pl$', 'texliveonfly' => '\.py$', 'texloganalyser' => 'texloganalyser$', + 'texlogfilter' => 'texlogfilter$', 'texlogsieve' => 'texlogsieve$', 'texosquery' => 'texosquery(|-jre[5-9])\.sh$', 'texplate' => 'texplate\.sh$', @@ -3609,9 +3611,10 @@ $standardttf = '\.ttf|\.TTC'; 'srcredact' => '\.1$', 'sty2dtx' => '\.1$', 'texdiff' => 'texdiff.1', + 'texdirflatten' => 'texdirflatten.1', 'texdoc' => '\.1$', 'texfot' => '\.1$', - 'texdirflatten' => 'texdirflatten.1', + 'texlogfilter' => '\.1$', 'texlogsieve' => '\.1$', 'tikztosvg' => '\.1$', 'tlcockpit' => '\.man$', @@ -6077,6 +6080,11 @@ sub PREHOOK_texfot { &SYSTEM ("$RM $package.pdf"); } +sub PREHOOK_texlogfilter { + print "PREHOOK_$package - make .1 with pod2man\n"; + &prehook_pod2man ("Julien Labbe", "texlogfilter"); +} + sub PREHOOK_tlcockpit { print "PREHOOK_$package - flatten only jar/ and scripts/\n"; &SYSTEM ("$MV jar/* ."); |