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
|
#!/usr/bin/gawk -f
#
# makeman - make zgv man page from texinfo file.
# Public domain by Russell Marks.
#
# Requires gawk (it uses `gensub' (gawk only?) and `[:blank:]' (POSIX)).
#
# Note that this *IS NOT* a general texinfo to man page converter.
# It only supports the bare minimum required by zgv.texi.
# It could probably be generalised to cope with most stuff though.
# BTW, I'm serious about that "bare minimum" bit - if I use more stuff
# in zgv.texi, this is likely to need fixing to cope with it. :-)
BEGIN \
{
last_was_blank=1
exit_val=0
print ".\\\" *** Auto-generated by makeman, *edits will be lost*! ***"
print ".\\\""
print ".\\\""
}
function do_header()
{
# man page header
print ".TH ZGV 1 \"" var_value["UPDATED"] "\" " \
"\"Version " var_value["VERSION"] "\" \"Graphics Software\""
print ".SH NAME"
print "zgv \\- picture viewer for VGA/SVGA displays"
print ".\\\""
print ".SH SYNOPSIS"
print "zgv [\\fIoptions\\fR] [\\fIstart-dir\\fR | " \
"\\fIfile\\fR [\\fIfile2\\fR ...]]"
}
END \
{
print ".SH AUTHOR"
print "Russell Marks <rus@svgalib.org> and others;"
print "see the section \\fBACKNOWLEDGEMENTS\\fR for details."
print ".PP"
print ".SH \"SEE ALSO\""
print ".BR xzgv \"(1),\""
print ".BR cjpeg \"(1), \" djpeg \"(1),\""
print ".BR pbm \"(5), \" pgm \"(5), \" ppm \"(5),\""
print ".BR mrf \"(5),\""
print ".BR svgalib \"(7), \" libvga.config \"(5)\""
# should be last thing
exit exit_val
}
function add_line_to_para(line)
{
if(para=="")
{ para=line }
else
{ para=para "\n" line }
}
# output para, splitting at LFs as we go.
# This isn't actually required - we could just output the paragraph
# as one huge line. But that would be a bit unpleasant.
#
# Doing it nicely does, however, mean makeman takes ~50% longer to
# run, which is a pain. :-(
#
function output_para( lhs)
{
while(para ~ /\n/)
{
lhs=gensub(/^([^\n]*)\n.*/, "\\1", "g", para)
para=gensub(/^[^\n]*\n(.*)/, "\\1", "g", para)
# if it begins with .[^A-Z], escape the dot so troff ignores it.
# The assumption is that this catches things like ".xvpics",
# while leaving things like ".PP" alone.
# The \f. bit is so it catches them after a font-change too
# (curiously, dot-commands seem to count even after that!).
# We have to allow .br though, which complicates it. :-/
#
# We assume no lines start with ' (which isn't handled here).
#
if(lhs ~ /^(\\f.)?\.[^A-Z]/ && lhs !~ /^\.br/)
{
# it's such fun escaping a dot in troff :-(((
# @-cmds have been dealt with by now, so /^@/ should be unlikely.
print ".cc @\n" lhs "\n@cc ."
}
else
print lhs
}
if(para!="") { print para }
}
# first, keep copy of previous line available.
{ prevline=curline_orig; curline_orig=$0 }
/@c(omment)?\>/ \
{
sub(/@c.*/,"")
if($0=="")
{
# that's right, this *is* a revolting kludge... :-)
# (it's a special-case hack to avoid gaps in @item/@itemx pairs where
# there's a comment in-between the two)
if(prevline ~ /^@item[^x]/) { last_was_blank=1 }
next
}
}
/^\\input texinfo\>/ { next }
/^@ifinfo\>/,/^@end ifinfo\>/ \
{ next }
/^@ignore\>/,/^@end ignore\>/ \
{ next }
/^@menu\>/,/^@end menu\>/ \
{ next }
/^@author\>/ { next }
/^@bye\>/ { next }
/^@example\>/ { in_example++; next }
/^@end example\>/ \
{
in_example--
last_was_blank=1
add_line_to_para(".PP")
next
}
# section headings
# we ignore the `unnumbered' ones, assuming they are indexes.
/^@(chapter|section|subsection|subsubsection)\>/ \
{
sec_name=gensub(/^@[a-z]*[[:blank:]]*([^[:blank:]]+)/, "\\1", "g")
# fix some headings to make them man-page-like
sub(/^Overview/,"DESCRIPTION",sec_name)
sub(/^Invoking zgv/,"OPTIONS",sec_name)
# chapter/section headings are in caps and are main headings (SH),
# subsection/subsubsection aren't, and are subheadings (SS).
if(/^@(chapter|section)/)
{ print ".SH \"" toupper(sec_name) "\"" }
else
{ print ".SS \"" sec_name "\"" }
if(sec_name=="DESCRIPTION")
{
print "(NB: This man page is automagically generated from zgv's"
print "texinfo file, and so may look a bit odd."
print "We apologise for the inconvenience. :-))"
print ".PP"
}
next
}
# various tables
/^@v?table\>/ \
{
table_lvl++; table_type[table_lvl]=$2
first_item[table_lvl]=1
is_itemize[table_lvl]=0; next
}
/^@itemize\>/ \
{
table_lvl++; table_type[table_lvl]=$2
first_item[table_lvl]=1
is_itemize[table_lvl]=1; next
}
/^@end (v?table||itemize)\>/ \
{
table_lvl--
add_line_to_para(".RE")
was_tableend=1
next
}
/^@itemx?\>/ \
{
itemx=/^@itemx\>/
if(!table_lvl)
{
print "makeman:" NR ": @item outside of @table" >"/dev/stderr"
exit_val=1
next
}
if(is_itemize[table_lvl])
{ $0=table_type[table_lvl] "{}" }
else
{
$0=gensub(/^@itemx?[[:blank:]]+(.*)/, \
(first_item[table_lvl]?"":".RE\n") \
table_type[table_lvl] "{\\1}\n.RS", 1)
}
first_item[table_lvl]=0
# cope with there not being any blank lines between last item's text
# and next @item. The regexp checks the last line wasn't an @item.
#
if(!last_was_blank && prevline !~ /^@itemx?\>/) { was_item=1 }
}
/^@set\>/ \
{
valname=$2
var_value[valname]=$3
i=4
while($(i)!="")
{
var_value[valname]=var_value[valname] " " $(i)
i++
}
next
}
/^@titlepage\>/ \
{
# given the way zgv.texi is laid out, we know VERSION and
# UPDATED must be set now.
do_header()
}
# ...but ignore the titlepage stuff apart from that.
/^@titlepage\>/,/^@end titlepage\>/ \
{ next }
# these ones are ignored
/^@[ckv]index\>/ { last_was_blank=1;next }
/^@contents\>/ { next }
/^@dircategory\>/ { next }
/^@direntry\>/ { next }
/^@end\>/ { next }
/^@node\>/ { next }
/^@page\>/ { next }
/^@printindex\>/ { next }
/^@setchapternewpage\>/ { next }
/^@setfilename\>/ { next }
/^@settitle\>/ { next }
/^@subtitle\>/ { next }
/^@title\>/ { next }
/^@top\>/ { next }
/^@unnumbered\>/ { next }
/^@vskip\>/ { next }
(/^$/ && !last_was_blank) || was_item || was_tableend \
{
# before printing the paragraph, fix attribute-ish stuff (e.g. @samp{foo}).
# XXX nasty special-case hack to handle @-cmd within @-cmd :-(
# @var{dir|file|modespec} -> italic dir|file|modespec
para=gensub(/@var\{(dir|file|modespec)\}/, "\\\\fI\\1\\\\fR", "g", para)
# the one footnote used at the time of writing isn't very
# important (it's in the File Format Depths node), and I generally
# try to avoid footnotes as they're not handled that well in Info,
# so we just drop any footnotes.
para=gensub(/@footnote\{.*\}/, "", "g", para)
# @value
while(/@value\{/)
{
valname=gensub(/.*@value\{([^}]+)\}.*/, "\\1", 1, para)
para=gensub(/@value\{([^}]+)\}/, var_value[valname], 1, para)
}
# @{samp,file,var,cite,emph} -> italic
para=gensub(/@(samp|file|var|cite|emph)\{([^}]+)\}/,
"\\\\fI\\2\\\\fR", "g", para)
# @email{foo@@bar} -> <foo@bar>
# (this assumes there's an @@ in it!)
para=gensub(/@email\{(.*)@@([^}]+)\}/, "<\\1@\\2>", "g", para)
# @strong -> bold
para=gensub(/@strong\{([^}]+)\}/, "\\\\fB\\1\\\\fR", "g", para)
# @{code,kbd} -> bold in quotes
para=gensub(/@(code|kbd)\{([^}]+)\}/, "`\\\\fB\\2\\\\fR'", "g", para)
# @bullet -> bold `o'
# XXX this is crap :-)
para=gensub(/@bullet\{([^}]*)\}/, "\\\\fBo\\\\fR \\1", "g", para)
# @minus -> bold `-'
# XXX also crap...
para=gensub(/@minus\{([^}]*)\}/, "\\\\fB\\-\\\\fR \\1", "g", para)
# @asis -> normal
para=gensub(/@asis\{([^}]*)\}/, "\\1", "g", para)
# @dots{} -> ...
para=gensub(/@dots\{\}/, "...", "g", para)
# hairy hack to support five-arg form of @pxref
para=gensub(/@pxref\{([^,]+),([^,]*),([^,]*),([^,]+),([^,]*)\}/, \
"see \\\\fB\\1\\\\fR in the \\\\fI\\4\\\\fR info file", "g", para)
# XXX none of @pxref/@xref/@ref uppercase their args yet :-/
# @pxref{foo} -> see FOO (with FOO in bold)
para=gensub(/@pxref\{([^}]+)\}/, \
"see \\\\fB\\1\\\\fR", "g", para)
# @xref{foo} -> See FOO (with FOO in bold)
para=gensub(/@xref\{([^}]+)\}/, \
"See \\\\fB\\1\\\\fR", "g", para)
# @ref{foo} -> FOO (with FOO in bold)
para=gensub(/@ref\{([^}]+)\}/, \
"\\\\fB\\1\\\\fR", "g", para)
# finally, a bit of a kludge - replace "\fBInvoking zgv\fR" with
# "\fBOptions\fR", assuming it's in a @pxref/@xref/@ref.
para=gensub(/\\fBInvoking zgv\\fR/, "\\\\fBOptions\\\\fR", "g", para)
# if it still contains { or }, we probably missed something - say so.
if(para ~ /[\{\}]/)
{
print "makeman:" NR ": warning: output paragraph contains a brace" \
>"/dev/stderr"
exit_val=1
}
output_para()
para=""
print ".PP"
last_was_blank=1
if(was_item) { add_line_to_para($0) }
was_item=0
was_tableend=0
next
}
/^[^@]/ || /^@(file|samp|code|var|cite|emph|strong)/ { last_was_blank=0 }
# otherwise...
!/^$/ \
{
# if there's one we haven't handled, complain (but keep going).
# This only checks for start-of-line ones; the {/} check in the
# paragraph-output routine should catch any others.
if(/^@[a-z]+\>[^\{]/)
{
print "makeman:" NR ": unhandled texinfo command in this paragraph!" \
>"/dev/stderr"
exit_val=1
}
add_line_to_para($0)
if(in_example)
{
add_line_to_para(".br")
}
}
|