summaryrefslogtreecommitdiff
path: root/distro/pkg/deb/patches/0001-Sync-the-linuxdoc-mangled-files-with-linuxdoc-tools_.patch
blob: 9ac9681751b57ed172166a9b18e548f2e9bcde4e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
From: =?utf-8?b?T25kxZllaiBTdXLDvQ==?= <ondrej@debian.org>
Date: Mon, 11 May 2020 10:27:06 +0200
Subject: Sync the linuxdoc mangled files with linuxdoc-tools_0.9.73-2

---
 doc/LinuxDocTools.pm | 903 ++++++++++++++++++++++++++-------------------------
 doc/sgml2html        |  77 +++--
 doc/sgml2latex       |  77 +++--
 doc/sgml2txt         |  77 +++--
 4 files changed, 611 insertions(+), 523 deletions(-)

diff --git a/doc/LinuxDocTools.pm b/doc/LinuxDocTools.pm
index d32f317..c035f62 100644
--- a/doc/LinuxDocTools.pm
+++ b/doc/LinuxDocTools.pm
@@ -1,21 +1,19 @@
-#! /usr/bin/perl 
+#! /usr/bin/perl
 #
 #  LinuxDocTools.pm
 #
-#  $Id$
-#
-#  LinuxDoc-Tools driver core. This contains all the basic functionality
-#  we need to control all other components.
-#
-#  © Copyright 1996, Cees de Groot.
-#  © Copyright 2000, Taketoshi Sano
-#
-#  THIS VERSION HAS BEEN HACKED FOR BIRD BY MARTIN MARES
+#  LinuxDoc-Tools driver core. This contains all the basic
+#  functionality we need to control all other components.
 #
+#  Copyright © 1996, Cees de Groot.
+#  Copyright © 2000, Taketoshi Sano
+#  Copyright © 2006-2020, Agustin Martin
+# -------------------------------------------------------------------
 package LinuxDocTools;
 
-require 5.004;
+require 5.006;
 use strict;
+use LinuxDocTools::Data::Latin1ToSgml qw{ldt_latin1tosgml};
 
 =head1 NAME
 
@@ -33,8 +31,8 @@ LinuxDocTools - SGML conversion utilities for LinuxDoc DTD.
 =head1 DESCRIPTION
 
 The LinuxDocTools package encapsulates all the functionality offered by
-LinuxDoc-Tools. It is used, of course, by LinuxDoc-Tools; 
-but the encapsulation should provide for a simple interface for other users as well. 
+LinuxDoc-Tools. It is used, of course, by LinuxDoc-Tools;
+but the encapsulation should provide for a simple interface for other users as well.
 
 =head1 FUNCTIONS
 
@@ -42,21 +40,24 @@ but the encapsulation should provide for a simple interface for other users as w
 
 =cut
 
-use DirHandle;
-use File::Basename;
-use File::Find;
 use File::Copy;
-use FileHandle;
-use IPC::Open2;
-use Cwd;
+use File::Temp qw(tempdir);
+use File::Basename qw(fileparse);
 use LinuxDocTools::Lang;
-use LinuxDocTools::Utils qw(process_options usage cleanup trap_signals remove_tmpfiles create_temp);
+use LinuxDocTools::Utils qw(
+  cleanup
+  create_temp
+  ldt_log
+  remove_tmpfiles
+  trap_signals
+  usage
+  );
 use LinuxDocTools::Vars;
 
 sub BEGIN
 {
   #
-  #  Make sure we're always looking here. Note that "use lib" adds 
+  #  Make sure we're always looking here. Note that "use lib" adds
   #  on the front of the search path, so we first push dist, then
   #  site, so that site is searched first.
   #
@@ -64,54 +65,127 @@ sub BEGIN
   use lib "$main::DataDir/site";
 }
 
+# -------------------------------------------------------------------
+sub ldt_searchfile {
+  # -----------------------------------------------------------------
+  # Look for a readable file in the locations. Return first math.
+  # -----------------------------------------------------------------
+  my $files = shift;
+  foreach my $file  ( @$files ){
+    return $file if -r $file;
+  }
+}
+
+# -------------------------------------------------------------------
+sub ldt_getdtd_v1 {
+  # -----------------------------------------------------------------
+  # Get the dtd
+  # -----------------------------------------------------------------
+  my $file         = shift;
+  my $error_header = "LinuxdocTools::ldt_getdtd_v1";
+  my $dtd;
+
+  open ( my $FILE, "< $file")
+    or die "$error_header: Could not open \"$file\" for reading. Aborting ...\n";
+
+  while ( <$FILE> ) {
+    tr/A-Z/a-z/;
+    # check for [<!doctype ... system] type definition
+    if ( /<!doctype\s*(\w*)\s*system/ ) {
+      $dtd = $1;
+      last;
+      # check for <!doctype ... PUBLIC ... DTD ...
+    } elsif ( /<!doctype\s*\w*\s*public\s*.*\/\/dtd\s*(\w*)/mi ) {
+      $dtd = $1;
+      last;
+      # check for <!doctype ...
+      #          PUBLIC  ... DTD ...
+      # (multi-line version)
+    } elsif ( /<!doctype\s*(\w*)/ ) {
+      $dtd = "precheck";
+      next;
+    } elsif ( /\s*public\s*.*\/\/dtd\s*(\w*)/ && $dtd eq "precheck" ) {
+      $dtd = $1;
+      last;
+    }
+  }
+  close $FILE;
+
+  return $dtd;
+}
+
+# -------------------------------------------------------------------
+sub ldt_getdtd_v2 {
+  # -----------------------------------------------------------------
+  # Second way of getting dtd, fron nsgmls output.
+  # -----------------------------------------------------------------
+  my $preaspout    = shift;
+  my $error_header = "LinuxdocTools::ldt_getdtd_v2";
+  my $dtd2;
+
+  open (my $TMP,"< $preaspout")
+    or die "%error_header: Could not open $preaspout for reading. Aborting ...\n";
+  while ( defined ($dtd2 = <$TMP>) && ! ( $dtd2 =~ /^\(/) ) { };
+  close $TMP;
+  $dtd2 =~ s/^\(//;
+  $dtd2 =~ tr/A-Z/a-z/;
+  chomp $dtd2;
+  return $dtd2;
+}
+
+# -------------------------------------------------------------------
+
 =item LinuxDocTools::init
 
 Takes care of initialization of package-global variables (which are actually
 defined in L<LinuxDocTools::Vars>). The package-global variables are I<$global>,
 a reference to a hash containing numerous settings, I<%Formats>, a hash
 containing all the formats, and I<%FmtList>, a hash containing the currently
-active formats for help texts. 
+active formats for help texts.
 
 Apart from this, C<LinuxDocTools::init> also finds all distributed and site-local
 formatting backends and C<require>s them.
 
 =cut
 
-sub init
-{
+# -------------------------------------------------------------------
+sub init {
+# -------------------------------------------------------------------
   trap_signals;
 
-  #
-  #  Register the ``global'' pseudoformat. Apart from the global settings,
-  #  we also use $global to keep the global variable name space clean; 
-  #  everything that we need to provide to other modules is stuffed
-  #  into $global.
-  #
-  $global = {};
-  $global->{NAME} = "global";
-  $global->{HELP} = "";
-  $global->{OPTIONS} = [
-    { option => "backend", type => "l",
-      'values' => [ "html", "info", "latex", 
-			"lyx", "rtf", "txt", "check" ],
-	 short => "B" },
-    { option => "papersize", type => "l",
-      'values' => [ "a4", "letter" ], short => "p" },
-    { option => "language",  type => "l",
-      'values' => [ @LinuxDocTools::Lang::Languages ], short => "l" },
-    { option => "charset",   type => "l",
-      'values' => [ "latin", "ascii", "nippon", "euc-kr" ], short => "c" },
-    { option => "style",     type => "s", short => "S" },
-    { option => "tabsize",   type => "i", short => "t" },
-#    { option => "verbose",   type => "f", short => "v" },
-    { option => "debug",     type => "f", short => "d" },
-    { option => "define",    type => "s", short => "D" },
-    { option => "include",   type => "s", short => "i" },
-    { option => "pass",      type => "s", short => "P" }
-  ];
+  # Register the ``global'' pseudoformat. Apart from the global settings, we
+  # also use $global to keep the global variable name space clean everything
+  # that we need to provide to other modules is stuffed into $global.
+  $global              = {};
+  $global->{NAME}      = "global";
+  $global->{HELP}      = "";
+  $global->{OPTIONS}   = [
+			  { option => "backend",
+			    type => "l",
+			    'values' => [ "html", "info", "latex", "lyx", "rtf", "txt", "check" ],
+			    short => "B" },
+			  { option => "papersize",
+			    type => "l",
+			    'values' => [ "a4", "letter" ],
+			    short => "p" },
+			  { option => "language",
+			    type => "l",
+			    'values' => [ @LinuxDocTools::Lang::Languages ],
+			    short => "l" },
+			  { option => "charset",   type => "l",
+			    'values' => [ "latin", "ascii", "nippon", "euc-kr" , "utf-8"],
+			    short => "c" },
+			  { option => "style",     type => "s", short => "S" },
+			  { option => "tabsize",   type => "i", short => "t" },
+			  # { option => "verbose",   type => "f", short => "v" },
+			  { option => "debug",     type => "f", short => "d" },
+			  { option => "define",    type => "s", short => "D" },
+			  { option => "include",   type => "s", short => "i" },
+			  { option => "pass",      type => "s", short => "P" }
+			  ];
   $global->{backend}   = "linuxdoc";
   $global->{papersize} = "a4";
-  $global->{language}  = "en";
+  $global->{language}  = '';
   $global->{charset}   = "ascii";
   $global->{style}     = "";
   $global->{tabsize}   = 8;
@@ -119,11 +193,24 @@ sub init
   $global->{define}    = "";
   $global->{debug}     = 0;
   $global->{include}   = "";
+  $global->{logfile}   = '';
   $global->{pass}      = "";
   $global->{InFiles}   = [];
+  $global->{fmtlist}   = "";            # List of loaded fmt files
   $Formats{$global->{NAME}} = $global;	# All formats we know.
   $FmtList{$global->{NAME}} = $global;  # List of formats for help msgs.
 
+  $global->{sgmlpre}   = "$main::AuxBinDir/sgmlpre";
+  my $error_header     = "LinuxdocTools::init";
+
+  if ( -e "/etc/papersize" ){
+    open (my $PAPERSIZE,"< /etc/papersize") ||
+      die "$error_header: Count not open \"/etc/papersize\" for reading\n";
+    chomp (my $paper = <$PAPERSIZE>);
+    $global->{papersize} = "letter" if ( $paper eq "letter");
+    close $PAPERSIZE;
+  }
+
   # automatic language detection: disabled by default
   # {
   #    my $lang;
@@ -137,42 +224,39 @@ sub init
   #     }
   # }
 
-  #
-  #  Used when the format is "global" (from sgmlcheck).
-  #
+  # -------------------------------------------------------------------
   $global->{preNSGMLS} = sub {
-    $global->{NsgmlsOpts} .= " -s ";
+    # -----------------------------------------------------------------
+    #  Define a fallback preNSGMLS. Used when the format is "global"
+    #  (from sgmlcheck).
+    # -----------------------------------------------------------------
+    $global->{NsgmlsOpts}   .= " -s ";
     $global->{NsgmlsPrePipe} = "cat $global->{file}";
   };
 
-  #
-  #  Build up the list of formatters.
-  #
-  my $savdir = cwd;
-  my %Locs;
-  chdir "$main::DataDir/dist";
-  my $dir = new DirHandle(".");
-  die "Unable to read directory $main::DataDir/dist: $!" unless defined($dir);
-  foreach my $fmt (grep(/^fmt_.*\.pl$/, $dir->read()))
-  {
-    $Locs{$fmt} = "dist";
-  }
-  $dir->close();
-  chdir "$main::DataDir/site";
-  $dir = new DirHandle(".");
-  die "Unable to read directory $main::DataDir/site: $!" unless defined($dir);
-  foreach my $fmt (grep(/^fmt_.*\.pl$/, $dir->read()))
-  {
-    $Locs{$fmt} = "site";
+  # We need to load all fmt files here, so the allowed options for all
+  # format are put into $global and a complete usage message is built,
+  # including options for all formats.
+  my %locations = ();
+  foreach my $path ("$main::DataDir/site",
+		    "$main::DataDir/dist",
+		    "$main::DataDir/fmt"){
+    foreach my $location (<$path/fmt_*.pl>){
+      my $fmt =  $location;
+      $fmt    =~ s/^.*_//;
+      $fmt    =~ s/\.pl$//;
+      $locations{$fmt} = $location unless defined $locations{$fmt};
+    }
   }
-  $dir->close();
-  foreach my $fmt (keys %Locs)
-  {
-    require $fmt;
+
+  foreach my $fmt ( keys %locations ){
+    $global->{fmtlist}   .= "  Loading $locations{$fmt}\n";
+    require $locations{$fmt};
   }
-  chdir $savdir;
 }
 
+# ------------------------------------------------------------------------
+
 =item LinuxDocTools::process_options ($0, @ARGV)
 
 This function contains all initialization that is bound to the current
@@ -181,91 +265,113 @@ should be used (ld2txt activates the I<txt> backend) and parses the
 options array. It returns an array of filenames it encountered during
 option processing.
 
-As a side effect, the environment variables I<SGMLDECL> and 
-I<SGML_CATALOG_FILES> are modified.
+As a side effect, the environment variable I<SGML_CATALOG_FILES> is
+modified and, once I<$global->{format}> is known, I<SGMLDECL> is set.
 
 =cut
 
-sub process_options
-{
-  my $progname = shift;
-  my @args = @_;
+# -------------------------------------------------------------------
+sub process_options {
+  # -----------------------------------------------------------------
+  my $progname  = shift;
+  my @tmpargs   = @_;
+  my @args      = ();
+  my $format    = '';
+  my $msgheader = "LinuxDocTools::process_options";
+
+  # Try getting the format. We need to do this here so process_options
+  # knows which is the format and which format options are allowed
+
+  # First, see if we have an explicit backend option by looping over command line.
+  # Do not shift in the while condition itself, 0 in options like '-s 0' will
+  # otherwise stop looping
+  while ( @tmpargs ){
+    $_ = shift @tmpargs;
+    if ( s/--backend=// ){
+      $format = $_;
+    } elsif ( $_ eq "-B" ){
+      $format = shift @tmpargs;
+    } else {
+      push @args, $_;
+    }
+  }
 
-  #
-  #  Deduce the format from the caller's file name
-  #
-  my ($format, $dummy1, $dummy2) = fileparse ($progname, "");
-  $global->{myname} = $format;
-  $format =~ s/sgml2*(.*)/$1/;
+  unless ( $format ){
+    my ($tmpfmt, $dummy1, $dummy2) = fileparse($progname, "");
+    if ( $tmpfmt =~ s/^sgml2// ) {       # Calling program through sgml2xx symlinks
+      $format = $tmpfmt;
+    } elsif ( $tmpfmt eq "sgmlcheck" ) { # Calling program through sgmlcheck symlink
+      $format = "global";
+    }
+  }
 
-  #
-  # check the option "--backend / -B"
-  #
-  if ($format eq "linuxdoc") {
-      my @backends = @args;
-      my $arg;
-      while (@backends) {
-         $arg = shift @backends;
-         if ($arg eq "-B") {
-                $arg = shift @backends;
-                $format = $arg;
-                last;
-	 }
-         if ( $arg =~ s/--backend=(.*)/$1/ ) {
-                $format = $arg;
-                last;
-         }
+  if ( $format ) {
+    if ( $format eq "check" ){
+      $format = "global";
+    } elsif ( $format eq "latex" ){
+      $format = "latex2e";
+    }
+    $FmtList{$format} = $Formats{$format} or
+      usage("$format: Unknown format");
+    $global->{format} = $format;
+  } else {
+    usage("");
+  }
+
+  # Parse all the options from @args, and return files.
+  my @files    = LinuxDocTools::Utils::process_options(@args);
+
+  # Check the number of given files
+  $#files > -1 || usage("No filenames given");
+
+  # Normalize language string
+  $global->{language} = Any2ISO($global->{language})
+    if ( defined $global->{language} );
+
+  # Fine tune japanese and korean charsets when not utf-8
+  if ($global->{charset} ne "utf-8") {
+    if ($global->{language} eq "ja" ){
+      $global->{charset} = "nippon";
+    } elsif ($global->{language} eq "ko"){
+      if ($global->{format} eq "groff") {
+	$global->{charset} = "latin1";
+      } else {
+	$global->{charset} = "euc-kr";
       }
+    }
   }
 
-  $format = "global" if $format eq "check";
-  usage ("") if $format eq "linuxdoc";
-  $format = "latex2e" if $format eq "latex";
-  $FmtList{$format} = $Formats{$format} or 
-     usage ("$global->{myname}: unknown format");
-  $global->{format} = $format;
+  # Setup the SGML environment.
+  my @sgmlcatalogs =
+    (# SGML iso-entities catalog location in Debian sgml-data package
+     "$main::isoentities_prefix/share/sgml/entities/sgml-iso-entities-8879.1986/catalog",
+     # SGML iso-entities catalog location in ArchLinux, Fedora and Gentoo
+     "$main::isoentities_prefix/share/sgml/sgml-iso-entities-8879.1986/catalog",
+     # SGML iso-entities catalog location when installed from linuxdoc-tools
+     "$main::isoentities_prefix/share/sgml/iso-entities-8879.1986/iso-entities.cat",
+     # dtd/catalog for SGML-Tools
+     "$main::DataDir/linuxdoc-tools.catalog",
+     # The super catalog
+     "/etc/sgml/catalog");
 
-  #
-  #  Parse all the options.
-  #
-  my @files = LinuxDocTools::Utils::process_options (@args);
-  $global->{language} = Any2ISO ($global->{language});
-  #
-  # check the number of given files 
-  $#files > -1 || usage ("no filenames given");
+  @sgmlcatalogs = ($ENV{SGML_CATALOG_FILES}, @sgmlcatalogs) if defined $ENV{SGML_CATALOG_FILES};
 
-  #
-  #  Setup the SGML environment.
-  #  (Note that Debian package rewrite path to catalog of
-  #   iso-entities using debian/rules so that it can use 
-  #   entities from sgml-data pacakge.  debian/rules also
-  #   removes iso-entites sub directory after doing make install.)
-  #
-  $ENV{SGML_CATALOG_FILES} .= (defined $ENV{SGML_CATALOG_FILES} ? ":" : "") .
-     "$main::prefix/share/sgml/sgml-iso-entities-8879.1986/catalog:" .
-     "$main::prefix/share/sgml/entities/sgml-iso-entities-8879.1986/catalog";
-  $ENV{SGML_CATALOG_FILES} .= ":$main::DataDir/linuxdoc-tools.catalog";
-  $ENV{SGML_CATALOG_FILES} .= ":$main::/etc/sgml.catalog";
-  if (-f "$main::DataDir/dtd/$format.dcl")
-    {
-      $ENV{SGMLDECL} = "$main::DataDir/dtd/$format.dcl";
-    }
-  elsif (-f "$main::DataDir/dtd/$global->{style}.dcl")
-    {
-      $ENV{SGMLDECL} = "$main::DataDir/dtd/$global->{style}.dcl";
-    }
-  elsif (-f "$main::DataDir/dtd/sgml.dcl")
-    {
-      $ENV{SGMLDECL} = "$main::DataDir/dtd/sgml.dcl";
-    }
+  $ENV{SGML_CATALOG_FILES} = join(':', @sgmlcatalogs);
 
-  #
-  #  OK. Give the list of files we distilled from the options
-  #  back to the caller.
-  #
+  # Set to one of these if readable, nil otherwise
+  $ENV{SGMLDECL} = ldt_searchfile(["$main::DataDir/dtd/$global->{format}.dcl",
+				   "$main::DataDir/dtd/$global->{style}.dcl",
+				   "$main::DataDir/dtd/sgml.dcl"]);
+
+  # Show the list of loaded fmt_*.pl files if debugging
+  print STDERR $global->{fmtlist} if $global->{debug};
+
+  # Return the list of files to be processed
   return @files;
 }
 
+# -------------------------------------------------------------------
+
 =item LinuxDocTools::process_file
 
 With all the configuration done, this routine will take a single filename
@@ -294,330 +400,243 @@ etcetera. See the code for details.
 
 =cut
 
-sub process_file
-{
-  my $file = shift (@_);
-  my $saved_umask = umask;
+# -------------------------------------------------------------------
+sub process_file {
+  # ----------------------------------------------------------------
+  my $file            = $global->{origfile} = shift (@_);
+  my $saved_umask     = umask;
+  my $error_header    = "LinuxdocTools::process_file";
+  my $fmtopts         = $Formats{$global->{format}};
 
   print "Processing file $file\n";
   umask 0077;
 
-  my ($filename, $filepath, $filesuffix) = fileparse ($file, "\.sgml");
-  my $tmpnam = $filepath . '/' . $filename;
-  $file = $tmpnam . $filesuffix;
-  -f $file || $file =~ /.*.sgml$/ || ($file .= '.sgml');
-  -f $file || ($file = $tmpnam . '.SGML');
-  -f $file || die "Cannot find $file\n";
+  my ($filename, $filepath, $filesuffix) = fileparse($file, "\.sgml");
   $global->{filename} = $filename;
-  $global->{file} = $file;
   $global->{filepath} = $filepath;
+  $global->{file}     = ldt_searchfile(["$filepath/$filename.sgml",
+					"$filepath/$filename.SGML"])
+    or die "$error_header: Cannot find $file. Aborting ...\n";
+
+  my $dtd = ldt_getdtd_v1("$global->{file}");
+  print STDERR "DTD: " . $dtd . "\n" if $global->{debug};
+
+  # -- Prepare temporary directory
+  my $tmpdir    = $ENV{'TMPDIR'} || '/tmp';
+  $tmpdir       = tempdir("linuxdoc-tools.XXXXXXXXXX", DIR => "$tmpdir");
+
+  # -- Set common base name for temp files and temp file names
+  my $tmpbase   = $global->{tmpbase} = $tmpdir . '/sgmltmp.' . $filename;
+  my $precmdout = "$tmpbase.01.precmdout";
+  my $nsgmlsout = "$tmpbase.02.nsgmlsout";   # Was $tmpbase.1
+  my $preaspout = "$tmpbase.03.preaspout";   # Was $tmpbase.2
+  my $aspout    = "$tmpbase.04.aspout";      # Was $tmpbase.3
+
+  # -- Set $global->{logfile} and initialize logfile.
+  $global->{logfile} = "$tmpbase.$global->{format}.log";
+  open (my $LOGFILE, ">", "$global->{logfile}")
+    or die "$error_header: Could not open \"$global->{logfile}\" logfile for write.\n";
+  print $LOGFILE "--- Opening \"$global->{logfile}\" logfile ---\n";
+  close $LOGFILE;
+
+  # -- Write info about some global options
+  ldt_log "--- Begin: Info about global options";
+  foreach ( sort keys %$global ){
+    next if m/fmtlist|InFiles|OPTIONS/;
+    ldt_log "$_:  $global->{$_}";
+  }
+  ldt_log "--- End: Info about global options";
+  ldt_log "$global->{fmtlist}";
+
+  # -- Write info about some backend options
+  ldt_log "--- Begin: Info about backend options";
+  foreach ( sort keys %$fmtopts ){
+    next if m/fmtlist|InFiles|OPTIONS/;
+    ldt_log "$_:  $fmtopts->{$_}";
+  }
+  ldt_log "--- End: Info about backend options";
 
-  my $tmp = new FileHandle "<$file";
-  my $dtd;
-  while ( <$tmp> )
-    {
-      tr/A-Z/a-z/;
-      # check for [<!doctype ... system] type definition
-      if ( /<!doctype\s*(\w*)\s*system/ )
-        {
-          $dtd = $1;
-          last;
-        }
-      # check for <!doctype ... PUBLIC ... DTD ...
-      if ( /<!doctype\s*\w*\s*public\s*.*\/\/dtd\s*(\w*)/mi )
-        {
-          $dtd = $1;
-          last;
-        }
-      # check for <!doctype ...
-      #          PUBLIC  ... DTD ...
-      # (multi-line version)
-      if ( /<!doctype\s*(\w*)/ )
-        {
-          $dtd = "precheck";
-          next;
-        }
-      if ( /\s*public\s*.*\/\/dtd\s*(\w*)/ && $dtd eq "precheck" )
-        {
-          $dtd = $1;
-          last;
-        }
-    }
-  $tmp->close;
-  if ( $global->{debug} )
-    {
-      print "DTD: " . $dtd . "\n";
+  # Set up the preprocessing command. Conditionals have to be
+  # handled here until they can be moved into the DTD, otherwise
+  # a validating SGML parser will choke on them.
+
+  # -- Check if output option for latex is pdf or not
+  if ($global->{format} eq "latex2e") {
+    if ($Formats{$global->{format}}{output} eq "pdf") {
+      $global->{define} .= " pdflatex=yes";
     }
-  $global->{dtd} = $dtd;
+  }
 
-  # prepare temporary directory
-  my $tmpdir = $ENV{'TMPDIR'} || '/tmp';
-  $tmpdir = $tmpdir . '/' . 'linuxdoc-dir-' . $$;
-  mkdir ($tmpdir, 0700) ||
-   die " - temporary files can not be created, aborted - \n";
+  # -- Set the actual pre-processing command
+  my($precmd) = "| $global->{sgmlpre} output=$global->{format} $global->{define}";
+  ldt_log "  ${error_header}::precmd:\n    $precmd";
 
-  my $tmpbase = $global->{tmpbase} = $tmpdir . '/sgmltmp.' . $filename;
+  # -- Make sure path of file to be processed is in SGML_SEARCH_PATH
   $ENV{"SGML_SEARCH_PATH"} .= ":$filepath";
 
-  #
-  # Set up the preprocessing command.  Conditionals have to be
-  # handled here until they can be moved into the DTD, otherwise
-  # a validating SGML parser will choke on them.
-  #
-  # check if output option for latex is pdf or not
-  if ($global->{format} eq "latex2e")
-    {
-      if ($Formats{$global->{format}}{output} eq "pdf")
-        {
-          $global->{define} .= " pdflatex=yes";
-        }
-    }
-  #
+  # -- You can hack $NsgmlsOpts here, etcetera.
+  $global->{NsgmlsOpts}   .= "-D $main::prefix/share/sgml -D $main::DataDir";
+  $global->{NsgmlsOpts}   .= "-i$global->{include}" if ($global->{include});
+
+  # If a preNSGMLS function is defined in the fmt file, pipe its output to $FILE,
+  # otherwise just open $global->{file} as $IFILE
+  # -----------------------------------------------------------------
+  ldt_log "- PreNsgmls stage started.";
+  my $IFILE;
+  if ( defined $Formats{$global->{format}}{preNSGMLS} ) {
+    $global->{NsgmlsPrePipe} = &{$Formats{$global->{format}}{preNSGMLS}};
+    ldt_log  "  ${error_header}::NsgmlsPrePipe: $global->{NsgmlsPrePipe} |";
+    open ($IFILE,"$global->{NsgmlsPrePipe} |")
+      || die "$error_header: Could not open pipe from $global->{NsgmlsPrePipe}. Aborting ...\n";
+  } else {
+    ldt_log "  ${error_header}: No prepipe. Just opening \"$global->{file}\" for read";
+    open ($IFILE,"< $global->{file}")
+      || die "$error_header: Could not open $global->{file} for reading. Aborting ...\n";
+  }
 
-  local $ENV{PATH} = "$ENV{PATH}:/usr/lib/linuxdoc-tools";
-  my($precmd) = "|sgmlpre output=$global->{format} $global->{define}";
+  # -- Create a temp file with $precmd output
+  my $precmd_command    = "$precmd > $precmdout";
+  ldt_log "  ${error_header}::precmd_command:\n    $precmd_command";
 
-  #
-  #  You can hack $NsgmlsOpts here, etcetera.
-  #
-  $global->{NsgmlsOpts} .= "-D $main::prefix/share/sgml -D $main::DataDir";
-  $global->{NsgmlsOpts} .= "-i$global->{include}" if ($global->{include});
-  $global->{NsgmlsPrePipe} = "NOTHING";
-  if ( defined $Formats{$global->{format}}{preNSGMLS} )
-    {
-      $global->{NsgmlsPrePipe} = &{$Formats{$global->{format}}{preNSGMLS}};
-    }
+  open (my $PRECMDOUT, "$precmd_command")
+    or die "$error_header: Could not open pipe to $precmdout. Aborting ...\n";
 
-  #
-  #  Run the prepocessor and nsgmls.
-  #
-  my ($ifile, $writensgmls);
+  # -- Convert latin1 chars to sgml entities for html backend
+  if ( $global->{format} eq "html"
+       && $global->{charset} eq "latin"  ) {
+    ldt_log "  ${error_header}: Converting latin1 chars to sgml entities for html backend";
+    print $PRECMDOUT ldt_latin1tosgml($IFILE);
+  } else {
+    copy($IFILE,$PRECMDOUT);
+  }
 
-  if ($global->{NsgmlsPrePipe} eq "NOTHING")
-    {
-      $ifile = new FileHandle $file;
-    }
-  else
-    {
-      $ifile = new FileHandle "$global->{NsgmlsPrePipe}|";
-    }
+  close $IFILE;
+  close $PRECMDOUT;
+  ldt_log "- PreNsgmls stage finished.";
 
-  create_temp("$tmpbase.1");
-  $writensgmls = new FileHandle
-      "$precmd|$main::progs->{NSGMLS} $global->{NsgmlsOpts} $ENV{SGMLDECL} >\"$tmpbase.1\"";
-  if ($global->{charset} eq "latin")
-    {
-      while (<$ifile>) 
-        {
-	  # Outline these commands later on - CdG
-	  #change latin1 characters to SGML
-	  #by Farzad Farid, adapted by Greg Hankins
-	  s/À/\&Agrave;/g;
-	  s/Á/\&Aacute;/g;
-	  s/Â/\&Acirc;/g;
-	  s/Ã/\&Atilde;/g;
-	  s/Ä/\&Auml;/g;
-	  s/Å/\&Aring;/g;
-	  s/Æ/\&AElig;/g;
-	  s/Ç/\&Ccedil;/g;
-	  s/È/\&Egrave;/g;
-	  s/É/\&Eacute;/g;
-	  s/Ê/\&Ecirc;/g;
-	  s/Ë/\&Euml;/g;
-	  s/Ì/\&Igrave;/g;
-	  s/Í/\&Iacute;/g;
-	  s/Î/\&Icirc;/g;
-	  s/Ï/\&Iuml;/g;
-	  s/Ñ/\&Ntilde;/g;
-	  s/Ò/\&Ograve;/g;
-	  s/Ó/\&Oacute;/g;
-	  s/Ô/\&Ocirc;/g;
-	  s/Õ/\&Otilde;/g;
-	  s/Ö/\&Ouml;/g;
-	  s/Ø/\&Oslash;/g;
-	  s/Ù/\&Ugrave;/g;
-	  s/Ú/\&Uacute;/g;
-	  s/Û/\&Ucirc;/g;
-	  s/Ü/\&Uuml;/g;
-	  s/Ý/\&Yacute;/g;
-	  s/Þ/\&THORN;/g;
-	  s/ß/\&szlig;/g;
-	  s/à/\&agrave;/g;
-	  s/á/\&aacute;/g;
-	  s/â/\&acirc;/g;
-	  s/ã/\&atilde;/g;
-	  s/ä/\&auml;/g;
-	  s/å/\&aring;/g;
-	  s/æ/\&aelig;/g;
-	  s/ç/\&ccedil;/g;
-	  s/è/\&egrave;/g;
-	  s/é/\&eacute;/g;
-	  s/ê/\&ecirc;/g;
-	  s/ë/\&euml;/g;
-	  s/ì/\&igrave;/g;
-	  s/í/\&iacute;/g;
-	  s/î/\&icirc;/g;
-	  s/ï/\&iuml;/g;
-	  s/µ/\&mu;/g;
-	  s/ð/\&eth;/g;
-	  s/ñ/\&ntilde;/g;
-	  s/ò/\&ograve;/g;
-	  s/ó/\&oacute;/g;
-	  s/ô/\&ocirc;/g;
-	  s/õ/\&otilde;/g;
-	  s/ö/\&ouml;/g;
-	  s/ø/\&oslash;/g;
-	  s/ù/\&ugrave;/g;
-	  s/ú/\&uacute;/g;
-	  s/û/\&ucirc;/g;
-	  s/ü/\&uuml;/g;
-	  s/ý/\&yacute;/g;
-	  s/þ/\&thorn;/g;
-	  s/ÿ/\&yuml;/g;
-          print $writensgmls $_;
-	}
-    }
-  else
-    {
-      while (<$ifile>)
-        {
-          print $writensgmls $_;
-	}
-    }
-  $ifile->close;
-  $writensgmls->close;
-        
-  #
-  #  Special case: if format is global, we're just checking.
-  #
-  $global->{format} eq "global" && cleanup;
+  ldt_log "- Nsgmls stage started.";
 
-  #
-  #  If the output file is empty, something went wrong.
-  #
-  ! -e "$tmpbase.1" and die "can't create file - exiting";
-  -z "$tmpbase.1" and die "SGML parsing error - exiting";
-  if ( $global->{debug} )
-    {
-      print "Nsgmls stage finished.\n";
-    }
+  # -- Pass apropriate envvars to nsgmls to better deal with utf-8
+  my $NSGMLS_envvars = ($global->{charset} eq "utf-8")
+    ? "SP_CHARSET_FIXED=yes SP_ENCODING=utf-8" : "";
+
+  # -- Process with nsgmls.
+  my $nsgmls_command = "$NSGMLS_envvars $main::progs->{NSGMLS} $global->{NsgmlsOpts} $ENV{SGMLDECL} $precmdout > $nsgmlsout";
+  ldt_log "  ${error_header}::nsgmls_command:\n    $nsgmls_command";
+  system($nsgmls_command) == 0
+    or die "${error_header}: Error: \"$nsgmls_command\" failed with exit status: ",$? >> 8,"\n";
+
+  #  -- Special case: if format is global, we're just checking.
+  cleanup if ( $global->{format} eq "global");
+
+  # -- If output file does not exists or is empty, something went wrong.
+  if ( ! -e "$nsgmlsout" ) {
+    die "$error_header: Can't create file $nsgmlsout. Aborting ...\n";
+  } elsif ( -z "$nsgmlsout" ){
+    die "$error_header: $nsgmlsout empty, SGML parsing error. Aborting ...\n";
+  }
+
+  print "- Nsgmls stage finished.\n" if $global->{debug};
+  ldt_log "- Nsgmls stage finished.";
 
-  #
   #  If a preASP stage is defined, let the format handle it.
-  #  
-  #  preASP ($inhandle, $outhandle);
-  #
-  my $inpreasp = new FileHandle "<$tmpbase.1";
-  my $outpreasp = new FileHandle "$tmpbase.2",O_WRONLY|O_CREAT|O_EXCL,0600;
-  if (defined $Formats{$global->{format}}{preASP})
-    {
-      &{$Formats{$global->{format}}{preASP}}($inpreasp, $outpreasp) == 0 or
-       die "error pre-processing $global->{format}.\n";
-    }  
-  else
-    {
-      copy ($inpreasp, $outpreasp);
-    }
-  $inpreasp->close;
-  $outpreasp->close;
-  ! -e "$tmpbase.2" and die "can't create file - exiting";
+  #  --------------------------------------------------------
+  ldt_log "- PreASP stage started.";
+  open (my $PREASP_IN, "< $nsgmlsout")
+    or die "$error_header: Could not open $nsgmlsout for reading. Aborting ...\n";
+  open (my $PREASP_OUT, "> $preaspout")
+    or die "$error_header: Could not open $preaspout for writing. Aborting ...\n";
+
+  if (defined $Formats{$global->{format}}{preASP}) {
+    # Usage: preASP ($INHANDLE, $OUTHANDLE);
+    &{$Formats{$global->{format}}{preASP}}($PREASP_IN, $PREASP_OUT) == 0
+      or die "$error_header: Error pre-processing $global->{format}.\n";
+  } else {
+    copy ($PREASP_IN, $PREASP_OUT);
+  }
 
-  if ( $global->{debug} )
-    {
-      print "PreASP stage finished.\n";
-    }
+  close $PREASP_IN;
+  close $PREASP_OUT;
+
+  die "$error_header: Can't create $preaspout file. Aborting ...\n"
+    unless -e "$preaspout";
+
+  print "- PreASP stage finished.\n" if ( $global->{debug} );
+  ldt_log "- PreASP stage finished.";
+
+  # Run sgmlsasp, with an optional style if specified.
+  # -----------------------------------------------------------
+  ldt_log "- ASP stage started.";
+  my $dtd2 = ldt_getdtd_v2($preaspout)
+    or die "$error_header: Could not read dtd from $preaspout. Aborting ...\n";
+
+  ldt_log "  $error_header: dtd_v1: $dtd, dtd_v2: $dtd2, both must match, dtd_v2 prevails";
+  unless ( $dtd eq $dtd2 ){
+    print STDERR "Warning: Two different values for dtd, dtd1: $dtd, dtd2: $dtd2\n";
+    $dtd = $dtd2;
+  }
+
+  $global->{'dtd'} = $dtd;
 
-  #
-  #  Run sgmlsasp, with an optional style if specified.
-  #
   #  Search order:
   #  - datadir/site/<dtd>/<format>
   #  - datadir/dist/<dtd>/<format>
-  #  So we need to fetch the doctype from the intermediate.
-  #
-  #  Note: this is a very simplistic check - but as far as I know,
-  #  it is correct. Am I right?
-  #
-  my $tmp = new FileHandle "<$tmpbase.2";
-  my $dtd;
-  while ( ($dtd = <$tmp>) && ! ( $dtd =~ /^\(/) ) { };
-  $tmp->close;
-  $dtd =~ s/^\(//;
-  $dtd =~ tr/A-Z/a-z/;
-  chop $dtd;
-  $global->{dtd} = $dtd;
-
-  my $style = "";
-  if ($global->{style})
-    {
-      $style = "$main::DataDir/site/$dtd/$global->{format}/$global->{style}mapping";
-      -r $style or
-         $style = "$main::DataDir/dist/$dtd/$global->{format}/$global->{style}mapping";
-    }
-  my $mapping = "$main::DataDir/site/$dtd/$global->{format}/mapping";
-  -r $mapping or $mapping = "$main::DataDir/dist/$dtd/$global->{format}/mapping";
 
-  $global->{charset} = "nippon" if ($global->{language} eq "ja");
-  #
-  # we don't have Korean groff so charset should be latin1.
-  #
-  if ($global->{language} eq "ko")
-    {
-      if ($global->{format} eq "groff")
-        {
-          $global->{charset} = "latin1";
-        }
-      else
-        {
-          $global->{charset} = "euc-kr";
-        }
-    }
-  
-  if ($global->{format} eq "groff" or $global->{format} eq "latex2e")
-    {
-      if ($dtd eq "linuxdoctr")
-        {
-          $mapping = "$main::DataDir/dist/$dtd/$global->{format}/tr-mapping";
-        }
-    }
+  my $style = ($global->{style}) ?
+    ldt_searchfile(["$main::DataDir/site/$dtd/$global->{format}/$global->{style}mapping",
+		    "$main::DataDir/dist/$dtd/$global->{format}/$global->{style}mapping",
+		    "$main::DataDir/mappings/$global->{format}/$global->{style}mapping"])
+    :
+    '';
 
-  create_temp("$tmpbase.3");
-  system ("$main::progs->{SGMLSASP} $style $mapping <\"$tmpbase.2\" |
-      expand -$global->{tabsize} >\"$tmpbase.3\"");
-  ! -e "$tmpbase.3" and die "can't create file - exiting";
+  my $mapping = ldt_searchfile(["$main::DataDir/site/$dtd/$global->{format}/mapping",
+				"$main::DataDir/dist/$dtd/$global->{format}/mapping",
+				"$main::DataDir/mappings/$global->{format}/mapping"])
+    or die "$error_header: Could not find mapping file for $dtd/$global->{format}. Aborting ...\n";
 
+  $mapping = "$style $mapping" if $style;
 
-  if ( $global->{debug} )
-    {
-      print "ASP stage finished.\n";
+  if ($global->{format} eq "groff"){
+    if ($dtd eq "linuxdoctr") {
+      $mapping = "$main::DataDir/mappings/$global->{format}/tr-mapping";
     }
+  }
+
+  my $sgmlsasp_command = "$main::progs->{SGMLSASP} $mapping < $preaspout |
+      expand -t $global->{tabsize} > $aspout";
+  ldt_log "  ${error_header}::sgmlsasp_command:\n    $sgmlsasp_command";
+  system ($sgmlsasp_command) == 0
+    or die "$error_header: Error running $sgmlsasp_command. Aborting ...\n";
+
+  die "$error_header: Can't create $aspout file. Aborting ...\n"
+    unless -e "$aspout";
+
+  print "- ASP stage finished.\n" if ( $global->{debug} );
+  ldt_log "- ASP stage finished.";
 
-  #
   #  If a postASP stage is defined, let the format handle it.
-  #  It should leave whatever it thinks is right based on $file.
-  #
-  #  postASP ($inhandle)
-  #
+  # ----------------------------------------------------------------
+  ldt_log "- postASP stage started.";
   umask $saved_umask;
-  my $inpostasp = new FileHandle "<$tmpbase.3";
-  if (defined $Formats{$global->{format}}{postASP})
-    {
-      &{$Formats{$global->{format}}{postASP}}($inpostasp) == 0 or
-	die "error post-processing $global->{format}.\n";
-    }
-  $inpostasp->close;
-
-  if ( $global->{debug} )
-    {
-      print "postASP stage finished.\n";
-    }
 
-  #
-  #  All done, remove the temporaries.
-  #
-  if( !$global->{debug} ) {
-      remove_tmpfiles($tmpbase);
+  open (my $INPOSTASP, "< $aspout" )
+    or die "$error_header: Could not open $aspout for reading. Aborting ...\n";
+  if (defined $Formats{$global->{format}}{postASP}) {
+    # Usage: postASP ($INHANDLE)
+    # Should leave whatever it thinks is right based on $INHANDLE.
+    &{$Formats{$global->{format}}{postASP}}($INPOSTASP) == 0
+      or die "$error_header: Error post-processing $global->{format}. Aborting ...\n";
   }
+  close $INPOSTASP;
+
+  print "- postASP stage finished.\n" if ( $global->{debug} );
+  ldt_log "- postASP stage finished.";
+
+  # -- Reset $global->{logfile} for next file
+  $global->{logfile} = '';
+
+  # -- All done, remove the temporaries.
+  remove_tmpfiles($tmpbase) unless ( $global->{debug} );
 }
 
 =pod
@@ -629,7 +648,7 @@ sub process_file
 Documentation for various sub-packages of LinuxDocTools.
 
 =head1 AUTHOR
-SGMLTools are written by Cees de Groot, C<E<lt>cg@cdegroot.comE<gt>>, 
+SGMLTools are written by Cees de Groot, C<E<lt>cg@cdegroot.comE<gt>>,
 and various SGML-Tools contributors as listed in C<CONTRIBUTORS>.
 Taketoshi Sano C<E<lt>sano@debian.org<gt>> rename to LinuxDocTools.
 
diff --git a/doc/sgml2html b/doc/sgml2html
index ea8e8c9..98a688c 100755
--- a/doc/sgml2html
+++ b/doc/sgml2html
@@ -1,53 +1,76 @@
 #!/usr/bin/perl 
 #
-#   sgmltools.in
-#
-#   $Id$
-#
-#   SGML-Tools driver. Calls all other SGML-Tools components, contains
-#   configuration information, etcetera.
+#   linuxdoc.in
 #
+#   LinuxDoc-Tools driver. Calls all other LinuxDoc-Tools components,
+#   contains configuration information, etcetera.
+# -------------------------------------------------------------------
+
 package main;
 
-sub BEGIN 
-{
+sub BEGIN {
   require 5.004;
 }
+
 use strict;
 
-use vars qw($prefix $DataDir $BinDir $progs);
+use vars qw($prefix
+	    $isoentities_prefix
+	    $DataDir
+	    $AuxBinDir
+	    $progs);
 
 use FindBin;
 
-$prefix = "/usr";
-$DataDir = "$FindBin::Bin/sbase";
-$BinDir = "/usr/bin";
+$prefix             = "/usr";
+$isoentities_prefix = "/usr";
+$DataDir            = "$FindBin::Bin/sbase";
+$AuxBinDir          = "/usr/lib/linuxdoc-tools";
 
 use lib "/usr/share/linuxdoc-tools";
-use lib "/usr/perl5";
-use lib "/usr/lib/perl5";
 use lib "/usr/share/perl5";
-$progs = {
-  "NSGMLS" => "/usr/bin/nsgmls",
-  "SGMLSASP" => "/usr/bin/sgmlsasp",
-  "GROFF" => "/usr/bin/groff",
+
+# ---------------------------------------------------------------------
+sub ldt_which {
+# ---------------------------------------------------------------------
+# ---------------------------------------------------------------------
+  die "ldt_which: No filename(s) array given. Aborting ...\n" unless scalar @_;
+
+  foreach my $file ( @_ ){
+    if ( $file =~ m/\// ) {
+      return $file if -x $file;
+    } else {
+      foreach my $path ( split(':',$ENV{'PATH'}) ){
+	$path =~ s/\/+$//;
+	return $file if -x "$path/$file";
+      }
+    }
+  }
+  die "No executable found in path for (", join(' ',@_) ,"). Aborting ...\n";
+}
+
+$progs   = {
+  "SGMLSASP"   => ldt_which("sgmlsasp"),
+  "NSGMLS"     => ldt_which("nsgmls","onsgmls"),
+  "GROFF"      => ldt_which("groff"),
   "GROFFMACRO" => "-ms",
-  "AWK" => "/usr/share/linuxdoc-tools/awkwhich"
+#  "NKF" => "@NKF@"
 };
 
-if (! -x $progs->{"NSGMLS"})
-  { $progs->{"NSGMLS"} = "/usr/bin/onsgmls"; }
-
 $ENV{"SGML_CATALOG_FILES"} = "$DataDir/dtd/catalog" .
   (defined $ENV{SGML_CATALOG_FILES} ? ":$ENV{SGML_CATALOG_FILES}" : "");
 
 require "$FindBin::Bin/LinuxDocTools.pm";
 &LinuxDocTools::init;
 
-my @FileList = LinuxDocTools::process_options ("html", @ARGV);
-for my $curfile (@FileList)
-  {
-    LinuxDocTools::process_file ($curfile);
-  }
+my @FileList = LinuxDocTools::process_options ($0, @ARGV);
+
+foreach my $curfile (@FileList) {
+  &LinuxDocTools::process_file ($curfile);
+}
 
 exit 0;
+
+# Local Variables:
+#  mode: perl
+# End:
diff --git a/doc/sgml2latex b/doc/sgml2latex
index 79c6df0..98a688c 100755
--- a/doc/sgml2latex
+++ b/doc/sgml2latex
@@ -1,53 +1,76 @@
 #!/usr/bin/perl 
 #
-#   sgmltools.in
-#
-#   $Id$
-#
-#   SGML-Tools driver. Calls all other SGML-Tools components, contains
-#   configuration information, etcetera.
+#   linuxdoc.in
 #
+#   LinuxDoc-Tools driver. Calls all other LinuxDoc-Tools components,
+#   contains configuration information, etcetera.
+# -------------------------------------------------------------------
+
 package main;
 
-sub BEGIN 
-{
+sub BEGIN {
   require 5.004;
 }
+
 use strict;
 
-use vars qw($prefix $DataDir $BinDir $progs);
+use vars qw($prefix
+	    $isoentities_prefix
+	    $DataDir
+	    $AuxBinDir
+	    $progs);
 
 use FindBin;
 
-$prefix = "/usr";
-$DataDir = "$FindBin::Bin/sbase";
-$BinDir = "/usr/bin";
+$prefix             = "/usr";
+$isoentities_prefix = "/usr";
+$DataDir            = "$FindBin::Bin/sbase";
+$AuxBinDir          = "/usr/lib/linuxdoc-tools";
 
 use lib "/usr/share/linuxdoc-tools";
-use lib "/usr/perl5";
-use lib "/usr/lib/perl5";
 use lib "/usr/share/perl5";
-$progs = {
-  "NSGMLS" => "/usr/bin/nsgmls",
-  "SGMLSASP" => "/usr/bin/sgmlsasp",
-  "GROFF" => "/usr/bin/groff",
+
+# ---------------------------------------------------------------------
+sub ldt_which {
+# ---------------------------------------------------------------------
+# ---------------------------------------------------------------------
+  die "ldt_which: No filename(s) array given. Aborting ...\n" unless scalar @_;
+
+  foreach my $file ( @_ ){
+    if ( $file =~ m/\// ) {
+      return $file if -x $file;
+    } else {
+      foreach my $path ( split(':',$ENV{'PATH'}) ){
+	$path =~ s/\/+$//;
+	return $file if -x "$path/$file";
+      }
+    }
+  }
+  die "No executable found in path for (", join(' ',@_) ,"). Aborting ...\n";
+}
+
+$progs   = {
+  "SGMLSASP"   => ldt_which("sgmlsasp"),
+  "NSGMLS"     => ldt_which("nsgmls","onsgmls"),
+  "GROFF"      => ldt_which("groff"),
   "GROFFMACRO" => "-ms",
-  "AWK" => "/usr/share/linuxdoc-tools/awkwhich"
+#  "NKF" => "@NKF@"
 };
 
-if (! -x $progs->{"NSGMLS"})
-  { $progs->{"NSGMLS"} = "/usr/bin/onsgmls"; }
-
 $ENV{"SGML_CATALOG_FILES"} = "$DataDir/dtd/catalog" .
   (defined $ENV{SGML_CATALOG_FILES} ? ":$ENV{SGML_CATALOG_FILES}" : "");
 
 require "$FindBin::Bin/LinuxDocTools.pm";
 &LinuxDocTools::init;
 
-my @FileList = LinuxDocTools::process_options ("latex", @ARGV);
-for my $curfile (@FileList)
-  {
-    LinuxDocTools::process_file ($curfile);
-  }
+my @FileList = LinuxDocTools::process_options ($0, @ARGV);
+
+foreach my $curfile (@FileList) {
+  &LinuxDocTools::process_file ($curfile);
+}
 
 exit 0;
+
+# Local Variables:
+#  mode: perl
+# End:
diff --git a/doc/sgml2txt b/doc/sgml2txt
index 013479f..98a688c 100755
--- a/doc/sgml2txt
+++ b/doc/sgml2txt
@@ -1,53 +1,76 @@
 #!/usr/bin/perl 
 #
-#   sgmltools.in
-#
-#   $Id$
-#
-#   SGML-Tools driver. Calls all other SGML-Tools components, contains
-#   configuration information, etcetera.
+#   linuxdoc.in
 #
+#   LinuxDoc-Tools driver. Calls all other LinuxDoc-Tools components,
+#   contains configuration information, etcetera.
+# -------------------------------------------------------------------
+
 package main;
 
-sub BEGIN 
-{
+sub BEGIN {
   require 5.004;
 }
+
 use strict;
 
-use vars qw($prefix $DataDir $BinDir $progs);
+use vars qw($prefix
+	    $isoentities_prefix
+	    $DataDir
+	    $AuxBinDir
+	    $progs);
 
 use FindBin;
 
-$prefix = "/usr";
-$DataDir = "$FindBin::Bin/sbase";
-$BinDir = "/usr/bin";
+$prefix             = "/usr";
+$isoentities_prefix = "/usr";
+$DataDir            = "$FindBin::Bin/sbase";
+$AuxBinDir          = "/usr/lib/linuxdoc-tools";
 
 use lib "/usr/share/linuxdoc-tools";
-use lib "/usr/perl5";
-use lib "/usr/lib/perl5";
 use lib "/usr/share/perl5";
-$progs = {
-  "NSGMLS" => "/usr/bin/nsgmls",
-  "SGMLSASP" => "/usr/bin/sgmlsasp",
-  "GROFF" => "/usr/bin/groff",
+
+# ---------------------------------------------------------------------
+sub ldt_which {
+# ---------------------------------------------------------------------
+# ---------------------------------------------------------------------
+  die "ldt_which: No filename(s) array given. Aborting ...\n" unless scalar @_;
+
+  foreach my $file ( @_ ){
+    if ( $file =~ m/\// ) {
+      return $file if -x $file;
+    } else {
+      foreach my $path ( split(':',$ENV{'PATH'}) ){
+	$path =~ s/\/+$//;
+	return $file if -x "$path/$file";
+      }
+    }
+  }
+  die "No executable found in path for (", join(' ',@_) ,"). Aborting ...\n";
+}
+
+$progs   = {
+  "SGMLSASP"   => ldt_which("sgmlsasp"),
+  "NSGMLS"     => ldt_which("nsgmls","onsgmls"),
+  "GROFF"      => ldt_which("groff"),
   "GROFFMACRO" => "-ms",
-  "AWK" => "/usr/share/linuxdoc-tools/awkwhich"
+#  "NKF" => "@NKF@"
 };
 
-if (! -x $progs->{"NSGMLS"})
-  { $progs->{"NSGMLS"} = "/usr/bin/onsgmls"; }
-
 $ENV{"SGML_CATALOG_FILES"} = "$DataDir/dtd/catalog" .
   (defined $ENV{SGML_CATALOG_FILES} ? ":$ENV{SGML_CATALOG_FILES}" : "");
 
 require "$FindBin::Bin/LinuxDocTools.pm";
 &LinuxDocTools::init;
 
-my @FileList = LinuxDocTools::process_options ("txt", @ARGV);
-for my $curfile (@FileList)
-  {
-    LinuxDocTools::process_file ($curfile);
-  }
+my @FileList = LinuxDocTools::process_options ($0, @ARGV);
+
+foreach my $curfile (@FileList) {
+  &LinuxDocTools::process_file ($curfile);
+}
 
 exit 0;
+
+# Local Variables:
+#  mode: perl
+# End: