Hi all, I installed jre-1.7.0 from packages and add directories to /etc/man.conf, but when using 'man -k' I can see some messed output. Is it correct output for those man pages or is is something broken in my /etc/man.conf ?
$ man -k java Java IDL: Transient Naming Service (1) - \f2tnameserv This (1) - document discusses using the Java IDL Transient Naming Service, \f2tnameserv. Java IDL also includes the Object Request Broker Daemon (ORBD). ORBD is a daemon process containing a Bootstrap Service, a Transient Naming Service, a \f3Persistent Naming Service, and a Server Manager. The Java IDL tutorials all use ORBD, however, you can substitute \f2tnameserv for \f2orbd in any of the examples that use a Transient Naming Service. For documentation on the \f2orbd tool, link to its orbd(1) or the \f2Java IDL Naming Service Included with ORBD @ http://java.sun.com/javase/6/docs/technotes/guides/idl/jidlNaming.html topic. \f3See (1) - also: \f2Naming Service @ http://java.sun.com/javase/6/docs/technotes/guides/idl/jidlNaming.html java (1) - the Java application launcher o (1) - Java IDL Transient Naming Service o Starting the Java IDL Transient Naming Service o Stopping the Java IDL Transient Naming Service o Sample Client: Adding Objects to the Namespace o Sample Client: Browsing the Namespace rmid (1) - The Java RMI Activation System Daemon rmiregistry (1) - The Java Remote Object Registry servertool (1) - The Java(TM) IDL Server Tool $ $ cat /etc/man.conf # $OpenBSD: man.conf,v 1.14 2008/04/27 15:10:58 deanna Exp $ # Sheer, raging paranoia... _version BSD.2 # The whatis/apropos database. _whatdb /usr/share/man/whatis.db _whatdb /usr/local/man/whatis.db _whatdb /usr/X11R6/man/whatis.db _whatdb /usr/local/jre-1.7.0/man/whatis.db # Subdirectories for paths ending in '/', IN SEARCH ORDER. _subdir cat1 man1 cat8 man8 cat6 man6 cat2 man2 cat3 man3 cat5 man5 cat7 man7 cat4 man4 cat9 ma n9 cat3p man3p cat3f man3f catn mann # Files typed by suffix and their commands. # Note the order: .Z must come after .[1-9n].Z, or it will match first. _suffix .0 _build .0.Z /usr/bin/zcat %s _build .0.gz /usr/bin/gzcat %s _build .[1-9n] /usr/bin/nroff -man %s _build .[1-9n].Z /usr/bin/zcat %s | /usr/bin/nroff -man _build .[1-9n].gz /usr/bin/gzcat %s | /usr/bin/nroff -man _build .[1-9][a-z] /usr/bin/nroff -man %s _build .[1-9][a-z].Z /usr/bin/zcat %s | /usr/bin/nroff -man _build .[1-9][a-z].gz /usr/bin/gzcat %s | /usr/bin/nroff -man _build .tbl /usr/bin/tbl %s | /usr/bin/nroff -man _build .tbl.Z /usr/bin/zcat %s | /usr/bin/tbl | /usr/bin/nroff -man _build .tbl.gz /usr/bin/gzcat %s | /usr/bin/tbl | /usr/bin/nroff -man _build .me /usr/bin/nroff -me %s 2>/dev/null | cat -s _build .ms /usr/bin/nroff -ms %s 2>/dev/null | cat -s # Sections and their directories. # All paths ending in '/' are the equivalent of entries specifying that # directory with all of the subdirectories listed for the keyword _subdir. # default _default /usr/{share,X11R6,local}/man/ _default /usr/local/jre-1.7.0/man/ # Other sections that represent complete man subdirectories. X11 /usr/X11R6/man/ X11R6 /usr/X11R6/man/ local /usr/local/man/ jre /usr/local/jre-1.7.0/man/ # Specific section/directory combinations. 1 /usr/{share,X11R6,local}/man/{cat,man}1 1 /usr/local/jre-1.7.0/man/man1 2 /usr/{share,X11R6,local}/man/{cat,man}2 3 /usr/{share,X11R6,local}/man/{cat,man}3 3F /usr/local/man/{cat,man}3f 3f /usr/local/man/{cat,man}3f 3P /usr/{share,local}/man/{cat,man}3p 3p /usr/{share,local}/man/{cat,man}3p 4 /usr/{share,X11R6,local}/man/{cat,man}4 5 /usr/{share,X11R6,local}/man/{cat,man}5 6 /usr/{share,X11R6,local}/man/{cat,man}6 7 /usr/{share,X11R6,local}/man/{cat,man}7 8 /usr/{share,X11R6,local}/man/{cat,man}8 9 /usr/share/man/{cat,man}9 n /usr/local/man/{cat,man}n -- http://www.openbsd.org/lyrics.html

