diff options
author | Karl Berry <karl@freefriends.org> | 2013-04-08 00:43:40 +0000 |
---|---|---|
committer | Karl Berry <karl@freefriends.org> | 2013-04-08 00:43:40 +0000 |
commit | 824f7b0903de8ad7f6ee3d7656005e4c59155e06 (patch) | |
tree | abfc8673ef9916f3ab7074e811207384c301492b /Master/tlpkg/libexec | |
parent | 689aefb0727676ed3cddf331337b4be226495e72 (diff) |
context import for TL13, from www.pragma-ade.com/context/beta/cont-tmf.zip
git-svn-id: svn://tug.org/texlive/trunk@29731 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Master/tlpkg/libexec')
-rwxr-xr-x | Master/tlpkg/libexec/ctan2tds | 4 | ||||
-rwxr-xr-x | Master/tlpkg/libexec/mptopdf-extract | 8 |
2 files changed, 11 insertions, 1 deletions
diff --git a/Master/tlpkg/libexec/ctan2tds b/Master/tlpkg/libexec/ctan2tds index 7bb103f23e4..9f456d64611 100755 --- a/Master/tlpkg/libexec/ctan2tds +++ b/Master/tlpkg/libexec/ctan2tds @@ -4929,7 +4929,9 @@ sub POSTcontext { # remove mptopdf files, since they are in a separate package. chomp (my @mptopdf_files = `tlpfiles mptopdf | sed 's,[^/]*/,,'`); - &SYSTEM ("$RM -f @mptopdf_files"); + &SYSTEM ("$RM -f @mptopdf_files "); + &SYSTEM ("$RM doc/context/scripts/mkii/mptopdf.man"); + &SYSTEM ("$RM scripts/context/stubs/mswin/mptopdf.exe"); print "still POST$package - user-level executables\n"; # similar to biber, executables go in both the Master bin dir and the diff --git a/Master/tlpkg/libexec/mptopdf-extract b/Master/tlpkg/libexec/mptopdf-extract index f959721a68f..530f64ef6bc 100755 --- a/Master/tlpkg/libexec/mptopdf-extract +++ b/Master/tlpkg/libexec/mptopdf-extract @@ -12,9 +12,17 @@ if test -z "$files"; then exit 1 fi +# Add man page in cont-tmf location: +files="$files doc/context/scripts/mkii/mptopdf.man" + +# Add w32 .exe stub too: +files="$files scripts/context/stubs/mswin/mptopdf.exe" + # We will extract them from the current context release. ctan=/home/ftp/mirror/rsync.tex.ac.uk/CTAN context_zip=$ctan/macros/context/current/cont-tmf.zip +# eventually ... +context_zip=/home/ftp/mirror/www.pragma-ade.com/context/beta/cont-tmf.zip if test ! -s $context_zip; then echo "$0: no context zip:" >&2 ls -l $context_zip >&2 |