diff options
author | Karl Berry <karl@freefriends.org> | 2014-04-07 20:55:46 +0000 |
---|---|---|
committer | Karl Berry <karl@freefriends.org> | 2014-04-07 20:55:46 +0000 |
commit | 7358507835747d8146f85cd4e157aaa99b3ff9ef (patch) | |
tree | fb34c8e6ef0db5ed002b377e8108efb1f43f1738 /Master/tlpkg | |
parent | 8f6a07183e1196026adcbd4e60f6097da601c8d2 (diff) |
pst-perspective (7apr14)
git-svn-id: svn://tug.org/texlive/trunk@33399 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Master/tlpkg')
-rwxr-xr-x | Master/tlpkg/bin/tlpkg-ctan-check | 2 | ||||
-rwxr-xr-x | Master/tlpkg/libexec/ctan2tds | 12 |
2 files changed, 12 insertions, 2 deletions
diff --git a/Master/tlpkg/bin/tlpkg-ctan-check b/Master/tlpkg/bin/tlpkg-ctan-check index 7f9668b6aea..7d14255be30 100755 --- a/Master/tlpkg/bin/tlpkg-ctan-check +++ b/Master/tlpkg/bin/tlpkg-ctan-check @@ -462,7 +462,7 @@ my @TLP_working = qw( technics ted templates-fenn templates-sommer tengwarscript tensor termcal termlist teubner tex-ewd tex-font-errors-cheatsheet tex-gyre tex-gyre-math - tex-label tex-overview tex-refs + tex-label tex-overview tex-ps tex-refs texapi texbytopic texcount texdef texdiff texdirflatten texdraw texfot texilikechaps texilikecover texliveonfly texloganalyser texlogos texmate texments diff --git a/Master/tlpkg/libexec/ctan2tds b/Master/tlpkg/libexec/ctan2tds index 26a300979fa..3db1a388012 100755 --- a/Master/tlpkg/libexec/ctan2tds +++ b/Master/tlpkg/libexec/ctan2tds @@ -957,7 +957,6 @@ chomp ($Build = `cd $Master/../Build/source && pwd`); 'tengwarscript', "&MAKEflatten", 'tex-gyre', "&MAKEcopy", 'tex-gyre-math', "&MAKEflatten", - 'tex-ps', "die 'skipping, not ready, sorry'", # 'tex-refs', "die 'skipping, not ready, sorry'", 'texdraw', "&MAKEflatten", 'texemplar', "die 'skipping, await request, 199x'", @@ -1198,6 +1197,7 @@ chomp ($Build = `cd $Master/../Build/source && pwd`); 'splitindex' => '&POST_do_man', 'tap', => '&POSTtap', 'texdraw', => '&POSTtexdraw', + 'tex-ps', => '&POSTtex_ps', 'tikz-cd', => '&POSTtikz_cd', 'tipa-de' => '&POST_rmsymlink', 'xecyr' => '&POSTxecyr', @@ -1577,6 +1577,7 @@ $standardtex='\.(.bx|cfg|sty|clo|ldf|cls|def|fd|cmap|4ht)$'; 'tap', ,'tap.tex', 'taylor', 'diagrams.tex', 'tex-ewd', 'dotnot.tex', + 'tex-ps', '\.tex', 'texapi', 'texapi\.tex', 'texdraw', 'tex$|' . $standardtex, 'texsis', '\.txs|TXS.*tex|texsis.tex', @@ -2349,6 +2350,7 @@ $standardpro='\.pro$'; 'esint-type1' => 'config.esint', 'initials' => 'config.*', 'pspicture' => 'pspicture.ps', + 'tex-ps' => 'mirr.hd', 'zefonts' => 'slantcm.cfg', ); @@ -5668,6 +5670,14 @@ sub POSTtap { &SYSTEM ("$MV tapdoc/* ."); } +sub POSTtex_ps { + print "POST$package - rm zip, mv files from subdirs\n"; + &SYSTEM ("$RM *.zip"); + &mv_with_mkdir ("*/cmyk-hax.tex", "$DEST/tex/generic/$package"); + &mv_with_mkdir ("*/poligraf.sty", "$DEST/tex/generic/$package"); + &mv_with_mkdir ("poligraf/*.pro", "$DEST/dvips/$package"); +} + sub POSTtexdraw { print "POST$package - rename info file\n"; &SYSTEM ("$MV texdraw texdraw.info"); |