File: fixfmps.pl

package info (click to toggle)
psutils 1.17.dfsg-4
  • links: PTS
  • area: main
  • in suites: bookworm, bullseye, buster, sid, stretch, trixie
  • size: 832 kB
  • ctags: 608
  • sloc: ansic: 6,567; perl: 806; sh: 756; makefile: 643; lisp: 74
file content (21 lines) | stat: -rw-r--r-- 535 bytes parent folder | download | duplicates (17)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
@PERL@
# fixfmps: get conforming PostScript out of FrameMaker version 2 file
# move all FMDEFINEFONTs to start of pages
#
# Copyright (C) Angus J. C. Duggan 1991-1995
# See file LICENSE for details.

%fonts=();

while (<>) {
   if (/^([0-9]+) [0-9]+ .* FMDEFINEFONT$/) {
      $fonts{$1} = $_;
   } elsif (/^[0-9.]+ [0-9.]+ [0-9]+ FMBEGINPAGE$/) {
      print $_, join('',values(%fonts));
   } elsif (m%(.*/PageSize \[paperwidth paperheight\]put )setpagedevice(.*)%) {
      print "$1pop$2\n";
   } else {
      print $_;
   }
}
@END@