summaryrefslogtreecommitdiff
path: root/Master/bin/amd64-freebsd/fixwfwps
diff options
context:
space:
mode:
authorKarl Berry <karl@freefriends.org>2009-12-22 00:49:20 +0000
committerKarl Berry <karl@freefriends.org>2009-12-22 00:49:20 +0000
commitb6eb5e035e6185bd8535ca38509a92e9ef5cdf97 (patch)
tree5b02b93fe85458ab391572123a0dfb236f12f3ee /Master/bin/amd64-freebsd/fixwfwps
parentbb4f2125f9283ff7200d3c3f9bbc5ecd7a700a68 (diff)
add i386-freebsd and amd64-freebsd, from http://anthesphoria.net/FreeBSD/TeXLive-2009, courtesy of Nikola Lecic
git-svn-id: svn://tug.org/texlive/trunk@16472 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Master/bin/amd64-freebsd/fixwfwps')
-rwxr-xr-xMaster/bin/amd64-freebsd/fixwfwps33
1 files changed, 33 insertions, 0 deletions
diff --git a/Master/bin/amd64-freebsd/fixwfwps b/Master/bin/amd64-freebsd/fixwfwps
new file mode 100755
index 00000000000..92d88443fe1
--- /dev/null
+++ b/Master/bin/amd64-freebsd/fixwfwps
@@ -0,0 +1,33 @@
+#!/usr/bin/env perl
+# fixwfwps: fix Word for windows PostScript for printing.
+#
+# Copyright (C) Angus J. C. Duggan 1991-1995
+# See file LICENSE for details.
+
+$nesting = 0;
+while (<>) {
+ tr/\000-\010\012-\014\016-\037//d;
+ foreach (grep($_ ne "", split("\015"))) {
+ s!/SVDoc\s+save\s+def!!g;
+ s!SVDoc\s+restore!!g;
+ if (/^(%!PS-Adobe-\d*\.\d*) EPSF-/ && !$nesting) {
+ print "$1\n";
+ $wfwepsf = 1;
+ } elsif (/^SS\s*$/ && $wfwepsf) {
+ print "%%Page: $wfwepsf $wfwepsf\n";
+ $wfwepsf++;
+ print "$_\n";
+ } elsif (/^%MSEPS Preamble/) {
+ print "%%BeginDocument: (Included EPSF)\n";
+ print "$_\n";
+ $nesting++;
+ } elsif (/^%MSEPS Trailer/) {
+ $nesting--;
+ print "$_\n";
+ print "%%EndDocument\n";
+ } elsif (! /^%%BoundingBox/) {
+ print "$_\n";
+ }
+ }
+}
+