summaryrefslogtreecommitdiff
path: root/Master/tlpkg
diff options
context:
space:
mode:
authorKarl Berry <karl@freefriends.org>2016-07-15 23:20:24 +0000
committerKarl Berry <karl@freefriends.org>2016-07-15 23:20:24 +0000
commit6486ac961b9d7d4428f198b5e88e33c9f459d85f (patch)
tree2bfed077e080e0950d0f740898312f0fb7fab89d /Master/tlpkg
parent8a661bd44c6de731f0ac566a5edb8782eddb3461 (diff)
pst-pdf (15jul16)
git-svn-id: svn://tug.org/texlive/trunk@41710 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Master/tlpkg')
-rwxr-xr-xMaster/tlpkg/libexec/ctan2tds19
1 files changed, 16 insertions, 3 deletions
diff --git a/Master/tlpkg/libexec/ctan2tds b/Master/tlpkg/libexec/ctan2tds
index 960de1625be..d64f0dc241f 100755
--- a/Master/tlpkg/libexec/ctan2tds
+++ b/Master/tlpkg/libexec/ctan2tds
@@ -2242,6 +2242,7 @@ $standardsource = '(\.(bat|c|drv|dtx|fea|fdd|ins|sfd)'
'patch', '\.doc',
'pdfx', 'rvdtx\.sty|' . $standardsource,
'poetrytex', 'Makefile|' . $standardsource,
+ 'pst-pdf', '\.(dtx|ins|e?ps|png)$|CHANGES.tex',
'pygmentex', 'NULL', # keep together
'rcs', 'rcs.el|src|' . $standardsource,
'ruhyphen', '^[^.]*$|README.ru|hyphen.rules',
@@ -2686,6 +2687,7 @@ $standardttf = '\.ttf|\.TTC';
'mycv' => 'mycv_split_contents\.pl',
'pgfmolbio' => '\.lua$',
'placeat' => '\.lua$',
+ 'pst-pdf' => '\.bat(.w95)?$',
'pythontex' => '([23]|_.*)\.py$',
'spelling' => '\.lua$',
'tex4ebook' => '\.lua$',
@@ -2762,6 +2764,7 @@ $standardttf = '\.ttf|\.TTC';
'pmx' => '\.lua$',
'pmxchords' => 'pmxchords\.lua$',
'petri-nets' => 'pn2pdf',
+ 'pst-pdf' => 'ps4pdf$',
'pst2pdf' => 'pst2pdf\.pl$',
'ptex2pdf' => 'ptex2pdf\.lua$',
'purifyeps' => 'purifyeps$',
@@ -3550,14 +3553,24 @@ sub doscripts {
next if $s =~ /pdf(book2|xup)/;
next if $package eq "pdfjam";
#
- if ($s eq "lua2dox_filter") { # handwritten .bat
+ if ($s eq "ps4pdf") { # package pst-pdf
+ # handwritten special .bat
+ &SYSTEM ("$CP $s.bat.noMiKTeX $platdir/$s.bat");
+ # keep copy in scripts/ too, for clarity?
+ &SYSTEM ("$MV $s.bat.noMiKTeX $scriptsdir");
+ # best to have wrapper also, maybe?
+
+ } elsif ($s eq "lua2dox_filter") { # package lua2dox
+ # handwritten .bat
&SYSTEM ("$MV $s.bat $platdir/");
next; # no wrapper
- }
- if ($s eq "latexindent.pl") { # provided .exe (made with par::packer)
+
+ } elsif ($s eq "latexindent.pl") {
+ # provided .exe (made with par::packer)
&SYSTEM ("$MV latexindent.exe $platdir/");
next; # no wrapper
}
+
my $w32_wrapper = "$Build/$build_tldir/w32_wrapper/runscript.exe";
&SYSTEM ("$CP $w32_wrapper $platdir/$linkname.exe");
&SYSTEM ("$CP $w32_wrapper $platdir/r$linkname.exe")