/texi2man

# · Perl · 189 lines · 161 code · 19 blank · 9 comment · 61 complexity · cf7922a9685a1cbf6d694718cf6adf3e MD5 · raw file

  1. #!/usr/bin/perl
  2. # Written by Adrian Mariano, additional features by Eric Backus,
  3. # yet more features by Tim Mann.
  4. # Script to translate a texinfo file into an nroff manual page.
  5. $version="1.01.tpm1";
  6. $html=0;
  7. $ignore=0;
  8. $tex=0;
  9. $doman=0;
  10. $title=0;
  11. $diditem=0;
  12. $justdidlp=1;
  13. $noman=0;
  14. $info=0;
  15. $manprefix="";
  16. $args=($#ARGV < 0) ? "stdin" : "@ARGV";
  17. $itemxcomma=0;
  18. printf(".\\\"Do not edit this file. It was created from %s\n", $args);
  19. printf(".\\\"using texi2man version %s on %s", $version, `date`);
  20. printf(".\\\"If you want a typeset version, you will get better\n");
  21. printf(".\\\"results with the original file.\n.\\\"\n");
  22. sub parse
  23. {
  24. if (s/\@c man //) { print; next; }
  25. if (/\@c noman/) { $noman=1; next; }
  26. if (/\@c end noman/) { $noman=0; next; }
  27. if ($noman) { next; }
  28. if (/\@c ifman\s*(.*)/) { $doman=1; $manprefix = $1; next; }
  29. if (/\@c end ifman/) { $doman=0; $manprefix = ""; next; }
  30. if (/^\\input/) { next; }
  31. if (/^\*/) { next; }
  32. if (/^INFO-DIR-SECTION/) { next; }
  33. if (/^START-INFO-DIR-ENTRY/) { next; }
  34. if (/^END-INFO-DIR-ENTRY/) { next; }
  35. if (/\@titlepage/) { $title=1; next; }
  36. if (/\@end titlepage/) { $title=0; next; }
  37. if (/\@tex/) { $tex=1; next; }
  38. if (/\@end tex/) { $tex=0; next; }
  39. if (/\@ignore/) { $ignore=1; next; }
  40. if (/\@end ignore/) { $ignore=0; next; }
  41. if (/\@ifinfo/) { $info=1; next; }
  42. if (/\@end ifinfo/) { $info=0; next; }
  43. if (/\@ifhtml/) { $html=1; next; }
  44. if (/\@end ifhtml/) { $html=0; next; }
  45. if (/\@ifnothtml/) { next; }
  46. if (/\@end ifhtml/) { next; }
  47. if (/\@iftex/) { $tex=1; next; }
  48. if (/\@end iftex/) { $tex=0; next; }
  49. if (/\@ifnottex/) { next; }
  50. if (/\@end iftex/) { next; }
  51. if (!$doman && ($ignore || $html || $title || $tex || $info)) { next; }
  52. s/\\/\\\\/g;
  53. s/\@-/\\-/g;
  54. s/\@cite\{([^}]*)}/\`$1\'/g;
  55. s/\@code\{([^}]*)}/\`$1\'/g;
  56. s/\@email\{([^}]*)}/\`$1\'/g;
  57. s/\@file\{([^}]*)}/\`$1\'/g;
  58. s/\@kbd\{([^}]*)}/\`$1\'/g;
  59. s/\@samp\{([^}]*)}/\`$1\'/g;
  60. s/\@url\{([^}]*)}/\`$1\'/g;
  61. s/\@dfn\{([^}]*)}/\"$1\"/g;
  62. s/\@key\{([^}]*)}/<$1>/g;
  63. s/\@emph\{([^}]*)}/\\fI$1\\fR/g;
  64. s/\@strong\{([^}]*)}/\\fB$1\\fR/g;
  65. s/\@var\{([^}]*)}/\U$1\E/g;
  66. s/\@sc\{([^}]*)}/\U$1\E/g;
  67. s/\@w\{([^}]*)}/$1/g;
  68. s/\@pxref\{([^}]*)}/See \\fI$1\\fR/g;
  69. s/\@xref\{([^}]*)}/See \\fI$1\\fR/g;
  70. s/\@ref\{([^}]*)}/\\fI$1\\fR/g;
  71. s/\@footnote\{([^}]*)}/[$1]/g;
  72. s/\@minus\{}/-/g;
  73. s/\@copyright\{}/(C)/g;
  74. s/\@noindent//;
  75. s/\@\{/{/g;
  76. s/\@}/}/g;
  77. s/\@\@/@/g;
  78. s/\\'\\'/\"/g;
  79. s/\\`\\`/\"/g;
  80. s/---/ -- /g;
  81. s/\@value\{([^\s]+)}/$value{$1}/eg;
  82. if (/\@set\s+([^\s]+)\s+(.*)$/) { $value{$1} = $2; next; }
  83. if (/\@clear\s+([^\s]+)\s+(.*)$/) { delete $value{$1}; next; }
  84. if ($itemxcomma) {
  85. # If multiple items have the same description, put the items
  86. # on one line, separated by commas
  87. if (/\@itemx (.*)/) { printf(", $1"); $diditem=1; next; }
  88. elsif ($diditem) { printf("\n"); $diditem=0; }
  89. if (/\@item (.*)/) {
  90. printf("%s.TP\n%s.B $1", $manprefix, $manprefix);
  91. $diditem=1;
  92. next;
  93. }
  94. } else {
  95. # If multiple items have the same description, put the items
  96. # on separate lines
  97. if (/\@item (.*)/) {
  98. printf("%s.TP\n%s.B $1\n", $manprefix, $manprefix);
  99. next;
  100. }
  101. if (/\@itemx (.*)/) {
  102. printf("%s.PD 0\n%s.TP\n%s.B $1\n%s.PD\n",
  103. $manprefix, $manprefix, $manprefix, $manprefix);
  104. next;
  105. }
  106. }
  107. if (s/\@chapter (.*)/.SH \U$1\E/)
  108. {
  109. printf("%s%s", $manprefix, $_);
  110. $justdidlp=1;
  111. next;
  112. }
  113. if (s/\@unnumbered (.*)/.SH \U$1\E/)
  114. {
  115. printf("%s%s", $manprefix, $_);
  116. $justdidlp=1;
  117. next;
  118. }
  119. if (s/\@section (.*)/$1/)
  120. {
  121. printf("%s.SS %s", $manprefix, $_);
  122. $justdidlp=1;
  123. next;
  124. }
  125. if (/\@example/) {
  126. printf("%s.nf\n", $manprefix);
  127. $manprefix = $manprefix . " ";
  128. $example=1;
  129. next;
  130. }
  131. if (/\@end example/) {
  132. $manprefix = substr($manprefix, 0, -4);
  133. printf("%s.fi\n", $manprefix);
  134. $example=0;
  135. next;
  136. }
  137. if (/\@display/) { printf("%s.nf\n", $manprefix); $example=1; next; }
  138. if (/\@end display/) { printf("%s.fi\n", $manprefix); $example=0; next; }
  139. if (/\@format/) { printf("%s.nf\n", $manprefix); $example=1; next; }
  140. if (/\@end format/) { printf("%s.fi\n", $manprefix); $example=0; next; }
  141. if (/\@smallexample/) { printf("%s.nf\n", $manprefix); $example=1; next; }
  142. if (/\@end smallexample/) { printf("%s.fi\n", $manprefix); $example=0; next; }
  143. if (!$example && /^\s*$/ && !$doman)
  144. {
  145. if ($justdidlp) { next; }
  146. # printf(".PP\n");
  147. printf("\n");
  148. $justdidlp=1;
  149. next;
  150. }
  151. if (/\@end table/) {
  152. printf("%s.PP\n", $manprefix);
  153. $justdidlp=1;
  154. }
  155. if (/\@include (.*)/) {
  156. my $INCL;
  157. open($INCL, $1) or open($INCL, "../$1") or die "$1: $!";
  158. while (<$INCL>) {
  159. parse();
  160. }
  161. next;
  162. }
  163. if (/^\@/) { next; }
  164. printf("%s%s", $manprefix, $_);
  165. if (!$doman) { $justdidlp=0; }
  166. }
  167. while(<>)
  168. {
  169. parse();
  170. }