summaryrefslogtreecommitdiff
path: root/Master/bin/hppa-hpux/fixpsditps
diff options
context:
space:
mode:
authorKarl Berry <karl@freefriends.org>2006-12-18 18:47:27 +0000
committerKarl Berry <karl@freefriends.org>2006-12-18 18:47:27 +0000
commite06209b676740916385f8b394d8330ddc0e41918 (patch)
tree91c699943424611275d7aac867f3f168af936c41 /Master/bin/hppa-hpux/fixpsditps
parent28885f3399755436fff3ffc8ab90e11f31b5b968 (diff)
hpux binaries from tim arnold
git-svn-id: svn://tug.org/texlive/trunk@2792 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Master/bin/hppa-hpux/fixpsditps')
-rwxr-xr-xMaster/bin/hppa-hpux/fixpsditps25
1 files changed, 25 insertions, 0 deletions
diff --git a/Master/bin/hppa-hpux/fixpsditps b/Master/bin/hppa-hpux/fixpsditps
new file mode 100755
index 00000000000..2a1728a8204
--- /dev/null
+++ b/Master/bin/hppa-hpux/fixpsditps
@@ -0,0 +1,25 @@
+#!/usr/bin/env perl
+# fixpsditps: fix psdit output for use in psutils
+#
+# Copyright (C) Angus J. C. Duggan 1991-1995
+# See file LICENSE for details.
+
+$nesting = 0;
+
+while (<>) {
+ if (/^\/p{pop showpage pagesave restore \/pagesave save def}def$/) {
+ print "/p{pop showpage pagesave restore}def\n";
+ } elsif (/^%%BeginDocument/ || /^%%BeginBinary/ || /^%%BeginFile/ ) {
+ print $_;
+ $nesting++;
+ } elsif (/^%%EndDocument/ || /^%%EndBinary/ || /^%%EndFile/) {
+ print $_;
+ $nesting--;
+ } elsif (/^%%Page:/ && $nesting == 0) {
+ print $_;
+ print "xi\n";
+ } elsif (! /^xi$/) {
+ print $_;
+ }
+}
+