Source code pulled from OpenBSD for OpenNTPD. The place to contribute to this code is via the OpenBSD CVS tree.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

55 lines
2.0 KiB

29 years ago
  1. # $OpenBSD: man.conf,v 1.18 2013/07/13 20:21:52 schwarze Exp $
  2. # Sheer, raging paranoia...
  3. _version BSD.2
  4. # The whatis/apropos database.
  5. _whatdb /usr/share/man/whatis.db
  6. _whatdb /usr/local/man/whatis.db
  7. _whatdb /usr/X11R6/man/whatis.db
  8. # Subdirectories for paths ending in '/', IN SEARCH ORDER.
  9. _subdir {cat,man}1 {cat,man}8 {cat,man}6 {cat,man}2 {cat,man}3 {cat,man}5 {cat,man}7 {cat,man}4 {cat,man}9 {cat,man}3p {cat,man}3f {cat,man}n
  10. # Files typed by suffix and their commands.
  11. # Note the order: .Z must come after .[1-9n].Z, or it will match first.
  12. _suffix .0
  13. _build .0.Z /usr/bin/zcat %s
  14. _build .0.gz /usr/bin/gzcat %s
  15. _build .[1-9n] /usr/bin/mandoc %s
  16. _build .[1-9n].Z /usr/bin/zcat %s | /usr/bin/mandoc
  17. _build .[1-9n].gz /usr/bin/gzcat %s | /usr/bin/mandoc
  18. _build .[1-9][a-z] /usr/bin/mandoc %s
  19. _build .[1-9][a-z].Z /usr/bin/zcat %s | /usr/bin/mandoc
  20. _build .[1-9][a-z].gz /usr/bin/gzcat %s | /usr/bin/mandoc
  21. _build .tbl /usr/bin/mandoc %s
  22. _build .tbl.Z /usr/bin/zcat %s | /usr/bin/mandoc
  23. _build .tbl.gz /usr/bin/gzcat %s | /usr/bin/mandoc
  24. # Sections and their directories.
  25. # All paths ending in '/' are the equivalent of entries specifying that
  26. # directory with all of the subdirectories listed for the keyword _subdir.
  27. # default
  28. _default /usr/{share,X11R6,local,ports/infrastructure}/man/
  29. # Other sections that represent complete man subdirectories.
  30. X11 /usr/X11R6/man/
  31. X11R6 /usr/X11R6/man/
  32. local /usr/local/man/
  33. # Specific section/directory combinations.
  34. 1 /usr/{share,X11R6,local}/man/{cat,man}1
  35. 2 /usr/{share,X11R6,local}/man/{cat,man}2
  36. 3 /usr/{share,X11R6,local}/man/{cat,man}3
  37. 3F /usr/local/man/{cat,man}3f
  38. 3f /usr/local/man/{cat,man}3f
  39. 3P /usr/{share,local}/man/{cat,man}3p
  40. 3p /usr/{share,local}/man/{cat,man}3p
  41. 4 /usr/{share,X11R6,local}/man/{cat,man}4
  42. 5 /usr/{share,X11R6,local}/man/{cat,man}5
  43. 6 /usr/{share,X11R6,local}/man/{cat,man}6
  44. 7 /usr/{share,X11R6,local}/man/{cat,man}7
  45. 8 /usr/{share,X11R6,local}/man/{cat,man}8
  46. 9 /usr/share/man/{cat,man}9
  47. n /usr/local/man/{cat,man}n