diff options
author | Karl Berry <karl@freefriends.org> | 2018-06-06 22:25:01 +0000 |
---|---|---|
committer | Karl Berry <karl@freefriends.org> | 2018-06-06 22:25:01 +0000 |
commit | 67a3b03c3f11c14b811b04447baf2b464e157e98 (patch) | |
tree | f5f8050ce90286fcd75ee2161c1dad78116bf50d /Master/tlpkg/libexec | |
parent | 0654b7aef1ec8948c0a7cc81fbaf9fc707782d44 (diff) |
texdoc 3.0 from CTAN
git-svn-id: svn://tug.org/texlive/trunk@47946 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Master/tlpkg/libexec')
-rwxr-xr-x | Master/tlpkg/libexec/ctan2tds | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/Master/tlpkg/libexec/ctan2tds b/Master/tlpkg/libexec/ctan2tds index 07cc03ac3cb..47026ead9f9 100755 --- a/Master/tlpkg/libexec/ctan2tds +++ b/Master/tlpkg/libexec/ctan2tds @@ -1104,6 +1104,7 @@ chomp ($Build = `cd $Master/../Build/source && pwd`); 'tex-gyre', "&MAKEcopy", 'tex-gyre-math', "&MAKEflatten", # 'tex-refs', "die 'skipping, no longer maintained'", + 'texdoc', "&MAKEflatten", 'texdoctk', "die 'skipping, moribund, only in tl'", 'texdraw', "&MAKEflatten", 'texemplar', "die 'skipping, await request, 199x'", @@ -1416,6 +1417,7 @@ chomp ($Build = `cd $Master/../Build/source && pwd`); 'splitindex' => '&POST_do_man', 'startex' => '&POST_otherformat', 'tap' => '&POSTtap', + 'texdoc' => '&POSTtexdoc', 'texdraw' => '&POSTtexdraw', 'tex-ps' => '&POSTtex_ps', 'tikz-cd' => '&POSTtikz_cd', @@ -2861,6 +2863,7 @@ $standardttf = '\.ttf|\.TTC'; 'pythontex' => '([23]|_.*)\.py$', 'songs' => '\.lua$', 'spelling' => '\.lua$', + 'texdoc', => '[^c]\.tlu$', # luckily that's enough 'tex4ebook' => '\.lua$', 'texosquery' => '\.jar$', ); @@ -2959,6 +2962,7 @@ $standardttf = '\.ttf|\.TTC'; 'texdef' => '\.pl$', 'texdiff' => 'texdiff$', 'texdirflatten' => 'texdirflatten$', + 'texdoc', => 'texdoc\.tlu$', 'texfot' => 'texfot\.pl$', 'texliveonfly' => '\.py$', 'texloganalyser' => 'texloganalyser', @@ -3021,6 +3025,7 @@ $standardttf = '\.ttf|\.TTC'; 'srcredact' => '\.1$', 'sty2dtx' => '\.1$', 'texdiff' => 'texdiff.1', + 'texdoc' => '\.1$', 'texfot' => '\.1$', 'texdirflatten' => 'texdirflatten.1', 'wheretotrim' => '\.1$', @@ -6377,6 +6382,11 @@ sub POSTtex_ps { &mv_with_mkdir ("poligraf/*.pro", "$DEST/dvips/$package"); } +sub POSTtexdoc { + print "POST$package - texdoc.cnf at top level\n"; + &mv_with_mkdir ("texdoc.cnf", "$DEST/$package"); +} + sub POSTtexdraw { print "POST$package - rename info file\n"; &SYSTEM ("$MV texdraw texdraw.info"); |