summaryrefslogtreecommitdiff
path: root/Master/bin/x86_64-darwin/fixtpps
diff options
context:
space:
mode:
authorKarl Berry <karl@freefriends.org>2010-05-24 00:05:35 +0000
committerKarl Berry <karl@freefriends.org>2010-05-24 00:05:35 +0000
commitfd0b0388052142e91b9d5ae0464fc054ee89bc1c (patch)
tree7e53527dc92a9502c7433ba2ec02ba005ecfc785 /Master/bin/x86_64-darwin/fixtpps
parent6e411d4c9dba73649f1ca5e25984ae667d57997a (diff)
x86_64-darwin 2010 pretest 1 binaries for snow leopard (koch)
git-svn-id: svn://tug.org/texlive/trunk@18441 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Master/bin/x86_64-darwin/fixtpps')
-rwxr-xr-xMaster/bin/x86_64-darwin/fixtpps28
1 files changed, 28 insertions, 0 deletions
diff --git a/Master/bin/x86_64-darwin/fixtpps b/Master/bin/x86_64-darwin/fixtpps
new file mode 100755
index 00000000000..4239bb9dfc5
--- /dev/null
+++ b/Master/bin/x86_64-darwin/fixtpps
@@ -0,0 +1,28 @@
+#!/usr/bin/env perl
+# fixtpps: fix tpscript document to work with PSUtils
+#
+# Copyright (C) Angus J. C. Duggan 1991-1995
+# See file LICENSE for details.
+
+$nesting = 0;
+$header = 1;
+
+while (<>) {
+ if (/^%%Page:/ && $nesting == 0) {
+ print $_;
+ print "save home\n";
+ $header = 0;
+ } elsif (/^%%BeginDocument/ || /^%%BeginBinary/ || /^%%BeginFile/) {
+ print $_;
+ $nesting++;
+ } elsif (/^%%EndDocument/ || /^%%EndBinary/ || /^%%EndFile/) {
+ print $_;
+ $nesting--;
+ } elsif (/save home/) {
+ s/save home//;
+ print $_;
+ } elsif (!$header || (! /^save$/ && ! /^home$/)) {
+ print $_;
+ }
+}
+