ports/textproc/sgmlformat/files/patch-sgmlfmt.pl
David W. Chapman Jr. 76f3684ac6 Unbreak references in non-html output for port textproc/sgmlformat
Bump PORTREVISION

PR:		28145
Submitted by:	Udo Schweigert
No response:	maintainer
2001-08-31 20:02:45 +00:00

25 lines
893 B
Perl

--- sgmlfmt/sgmlfmt.pl.orig Tue Sep 15 23:05:47 1998
+++ sgmlfmt/sgmlfmt.pl Thu Jun 14 15:37:50 2001
@@ -151,19 +151,14 @@
open (outfile, ">$fileroot.trf");
&sgmlparse(infile, "roff");
while (<infile>) {
+ s,\\\(ru,_,g if /^\.GET[HP]N/;
print outfile;
}
close(infile);
close(outfile);
+ system("groff -z -rRef=1 -T ${driver} -t ${fileroot}.trf 2>&1 | egrep '^\\.' > ${fileroot}.qrf");
system("groff -T ${driver} -t ${fileroot}.trf ${postproc} > ${fileroot}.${driver}");
-
- # If foo.tmp has been created, then there are cross references
- # in the file and we need a second pass to resolve them correctly.
-
- if (stat("${fileroot}.tmp")) {
- system("groff -T ${driver} -t ${fileroot}.trf ${postproc} > ${fileroot}.${driver}");
- unlink("${fileroot}.qrf");
- }
+ unlink("${fileroot}.qrf");
unlink("${fileroot}.trf");
}