# $NetBSD: MAKEDEV2manpage.awk,v 1.3 2002/04/19 01:34:41 dillo Exp $ # # Copyright (c) 2002 # Dieter Baron . All rights reserved. # Copyright (c) 1999 # Hubert Feyrer . All rights reserved. # [converted from Hubert's Perl version] # # Redistribution and use in source and binary forms, with or without # modification, are permitted provided that the following conditions # are met: # 1. Redistributions of source code must retain the above copyright # notice, this list of conditions and the following disclaimer. # 2. Redistributions in binary form must reproduce the above copyright # notice, this list of conditions and the following disclaimer in the # documentation and/or other materials provided with the distribution. # 3. All advertising materials mentioning features or use of this software # must display the following acknowledgement: # This product includes software developed by Hubert Feyrer for # the NetBSD Project. # 4. Neither the name of the University nor the names of its contributors # may be used to endorse or promote products derived from this software # without specific prior written permission. # # THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND # ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE # IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE # ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE # FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL # DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS # OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) # HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT # LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY # OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF # SUCH DAMAGE. # # ########################################################################### # # Convert src/etc/etc.${ARCH}/MAKEDEV and # src/share/man/man8/MAKEDEV.8.template to # src/share/man/man8/man8.${ARCH}/MAKEDEV.8, replacing # - @@@SPECIAL@@@ with all targets in the first section (all, std, ...) # - @@@DEVICES@@@ with the remaining targets # - @@@ARCH@@@ with the architecture name # # XXX: uses non-standard AWK functions toupper() and gensub() BEGIN { MAKEDEV = "../../../etc/etc." ARCH "/MAKEDEV"; print ".\\\" *** ------------------------------------------------------------------"; print ".\\\" *** This file was generated automatically"; print ".\\\" *** from src/etc/etc." ARCH "/MAKEDEV and"; print ".\\\" *** src/share/man/man8/MAKEDEV.8.template"; print ".\\\" ***"; print ".\\\" *** DO NOT EDIT - any changes will be lost!!!"; print ".\\\" *** ------------------------------------------------------------------"; print ".\\\""; } function read1line() { if (r1kept) r1l = r1last; else getline r1l < MAKEDEV; while (r1l ~ /^#[ \t]*$/) getline r1l < MAKEDEV; if (r1l ~ /^#[ \t]/) { if (r1l ~ /^# /) { # Not a device/other target r1kept = 0; } else { # Continuation line (?) getline r1ll < MAKEDEV; while (r1ll ~ /^#\t[ \t]/) { sub(/^#\t[ \t]/, " ", r1ll); r1l = r1l r1ll; getline r1ll < MAKEDEV; } r1last = r1ll; r1kept = 1; } } else r1kept = 0; return 1; } /^@@@SPECIAL@@@$/ { print ".\\\" " $0; print ".Bl -tag -width 01234567 -compact"; while (getline l < MAKEDEV > 0 && l !~ /^#.*Device.*Valid.*argument/) ; while (read1line() && r1l ~ /^#\t/) { sub(/#[ \t]*/, "", r1l); target=r1l; sub(/[ \t].*/, "", target); line=r1l; sub(/[^ \t]*[ \t]/, "", line); line=gensub(/\"([^\"]*)"/, "``\\1''", "g", line); line=gensub(/[ \t]*(MAKEDEV(.local)?)[ \t]*/, "\n.Pa \\1\n", "g", line); gsub(/[ \t]+/, " ", line); print ".It Ar " target; print toupper(substr(line, 1, 1)) substr(line, 2); } r1last = r1l; r1kept = 1; print ".El"; next; } /^@@@DEVICES@@@$/ { print ".\\\" " $0; print ".Bl -tag -width 01"; read1line(); do { sub(/^#[ \t]+/, "", r1l); if (r1l ~ /[^ \t]:$/) sub(/:$/, " :", r1l); print ".It " r1l; # print section heading print ". Bl -tag -width 0123456789 -compact"; while(read1line() && r1l ~ /^#\t/) { gsub(/#[ \t]+/, "", r1l); target=r1l; sub(/[ \t].*/, "", target); line=r1l; sub(/[^ \t]*[ \t]+/, "", line); sub(/\*/, "#", target); line=gensub(/\"([^\"]*)"/, "``\\1''", "g", line); line=gensub(/[ \t]*(MAKEDEV(.local)?)[ \t]*/, "\n.Pa \\1\n", "g", line); sub(/\(XXX[^)]*\)/, "", line); sub(/[ \t]*$/, "", line); # add manpage, if available if (target == "fd#") page = "fdc"; else if (target == "pms#") page = "omps"; else { page=target; sub(/[^a-zA-Z]+/, "", page); } if (system("test -f ../man4/" page ".4 -o -f ../man4/man4." ARCH "/" page ".4") == 0) { sub(/[ \t]*$/, "", line); if (line ~ /see/) { # already a manpage there, e.g. scsictl(8) line = line ", "; } else line = line ", see "; line = line page "(4)"; } # Add .Xr \&foo 4 - ampersand to work around manpages that are # *roff commands at the same time while (line ~ /[a-zA-Z0-9]+\([0-9]\)/) { line=gensub(/[ \t]*([a-zA-Z0-9]+)\(([0-9])\)(.*)/, "\n.Xr \\\\\\&\\1 \\2 \\3", "g", line); } gsub(/[ \t]+$/, "", line); gsub(/[ \t]+/, " ", line); print ". It Ar " target; print toupper(substr(line, 1, 1)) substr(line, 2); } print MANPAGE ". El"; } while (r1l ~ /^# /); print ".El"; next; } /@@@ARCH@@@/ { gsub(/@@@ARCH@@@/, ARCH); } # date is substituted in the shell script #/@@@DATE@@@/ { # # date #} /\$NetBSD/ { sub(/\$NetBSD.*\$/, "$""NetBSD$"); } { print }