diff options
Diffstat (limited to 'Master/tlpkg/libexec/ctan2tds')
-rwxr-xr-x | Master/tlpkg/libexec/ctan2tds | 63 |
1 files changed, 31 insertions, 32 deletions
diff --git a/Master/tlpkg/libexec/ctan2tds b/Master/tlpkg/libexec/ctan2tds index 62031df9e85..f9d4a04df82 100755 --- a/Master/tlpkg/libexec/ctan2tds +++ b/Master/tlpkg/libexec/ctan2tds @@ -1190,6 +1190,33 @@ $standardtex='\.(cfg|sty|clo|ldf|cls|def|fd|cmap|4ht)$'; ); $standarddocfmt='latex'; + +# needs special TeX program to run the doc. +%specialTEX = ( + 'arabtex', 'tex', + 'barr', 'latex', + 'beamer', 'pdflatex', + 'bytefield', 'pdflatex', + 'esint-type1', 'pdftex', + 'euro-ce', 'tex', + 'floatrow', 'latex', + 'genealogy', 'tex', + 'insbox', 'tex', + 'iso10303', 'pdflatex', + 'mfpic', 'tex', + 'mpattern', 'true', # requires running mpp, but it's not executable and + # anyway it's just a test file. ignore it. + 'ofs', 'csplain', + 'pdfscreen', 'pdflatex', + 'pdfslide', 'pdflatex', + 'pl-qx', 'platex', + 'subfig', 'pdflatex', + 'texsis', 'tex', + 'typespec', 'tex', + 'wasy2', 'tex', + 'webeq', 'pdflatex', +); + # %specialsourcefmt = ( 'antomega', 'omega', @@ -1329,36 +1356,6 @@ $standardinsrunner="latex -interaction=nonstopmode"; $standardmakeindex='\.ist'; -# needs special TeX program to run the doc. -%specialTEX = ( - 'arabtex', 'tex', - 'barr', 'latex', - 'beamer', 'pdflatex', - 'bytefield', 'pdflatex', - 'esint-type1', 'pdftex', - 'euro-ce', 'tex', - 'floatrow', 'latex', - 'genealogy', 'tex', - 'insbox', 'tex', - 'iso10303', 'pdflatex', - 'mfpic', 'tex', - 'mpattern', 'true', # requires running mpp, but it's not executable and - # anyway it's just a test file. ignore it. - 'ofs', 'csplain', - 'pdfscreen', 'pdflatex', - 'pdfslide', 'pdflatex', - 'pl-qx', 'platex', - 'subfig', 'pdflatex', - 'texsis', 'tex', - 'typespec', 'tex', - 'wasy2', 'tex', - 'webeq', 'pdflatex', -); - -%specialdvi = (); -$standarddvi = 'NULL'; # rely on authors/CTAN making pdf's. - - # packages which need special MetaPost files $standardmp = '\.mp$'; %specialmp = ( @@ -1377,8 +1374,10 @@ $standardmp = '\.mp$'; ); -# packages which need special BibTeX styles installed -%specialcsf= (); +%specialdvi = (); +$standarddvi = 'NULL'; # rely on authors/CTAN making pdf's. + +%specialcsf= (); # packages which need special BibTeX styles installed $standardcsf='\.csf'; $standardbst='\.bst'; |