summaryrefslogtreecommitdiff
path: root/Master/bin/hppa-hpux/fixwpps
diff options
context:
space:
mode:
authorKarl Berry <karl@freefriends.org>2008-03-17 18:53:11 +0000
committerKarl Berry <karl@freefriends.org>2008-03-17 18:53:11 +0000
commitca7d35717b5607eacec8e03c76d37e6d976ff31b (patch)
treec5fc452b91d0d427623801fef42786c660ed59a6 /Master/bin/hppa-hpux/fixwpps
parentcfaf3ba644b1df171aab1cf6bc2a39a1e2ad6914 (diff)
restore hppa-hpux
git-svn-id: svn://tug.org/texlive/trunk@6989 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Master/bin/hppa-hpux/fixwpps')
-rwxr-xr-xMaster/bin/hppa-hpux/fixwpps31
1 files changed, 31 insertions, 0 deletions
diff --git a/Master/bin/hppa-hpux/fixwpps b/Master/bin/hppa-hpux/fixwpps
new file mode 100755
index 00000000000..83a5fdfaf0b
--- /dev/null
+++ b/Master/bin/hppa-hpux/fixwpps
@@ -0,0 +1,31 @@
+#!/usr/bin/env perl
+# fixwpps: get semi-conforming PostScript out of WordPerfect 5.0 file
+#
+# Copyright (C) Angus J. C. Duggan 1991-1995
+# See file LICENSE for details.
+
+$page = 1;
+$nesting = 0;
+
+while (<>) {
+ s/([^\/]_t)([0-9]+)/\1 \2/g; # fix wp 5.0 bug
+ if (m!/_[be][dp]! || m!_bp \d+ \d+ roll!) {
+ print $_;
+ } elsif (/^(.*)(_bp.*)$/) {
+ print "$1\n" if $1 ne "";
+ print "%%Page: $page $page\n";
+ print "$2\n";
+ $page++;
+ $nesting++;
+ } elsif (/_ep$/) {
+ print $_;
+ $nesting--;
+ } elsif (/^(.*)(_ed.*)/) {
+ print "$1\n" if $1 ne "";
+ print "%%Trailer:\n";
+ print "$2\n";
+ } else {
+ print $_;
+ }
+}
+