diff options
author | Karl Berry <karl@freefriends.org> | 2008-03-17 18:57:58 +0000 |
---|---|---|
committer | Karl Berry <karl@freefriends.org> | 2008-03-17 18:57:58 +0000 |
commit | b7056c579fcf2acd29a8df35901d39f5507c81d8 (patch) | |
tree | c8183bf81fc941bd2d192edaacbb72cdf0ffd881 /Master/bin/powerpc-linux/fixtpps | |
parent | 551fce0518df5a5bcbe04a6769ff4bd7c623dc85 (diff) |
restore powerpc-linux
git-svn-id: svn://tug.org/texlive/trunk@6998 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Master/bin/powerpc-linux/fixtpps')
-rwxr-xr-x | Master/bin/powerpc-linux/fixtpps | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/Master/bin/powerpc-linux/fixtpps b/Master/bin/powerpc-linux/fixtpps new file mode 100755 index 00000000000..4239bb9dfc5 --- /dev/null +++ b/Master/bin/powerpc-linux/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 $_; + } +} + |