man.xml 2.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374
  1. <sect1 id="ch06-man">
  2. <title>Installing Man-&man-version;</title>
  3. <?dbhtml filename="man.html" dir="chapter06"?>
  4. <screen>Estimated build time: &man-time;
  5. Estimated required disk space: &man-compsize;</screen>
  6. &aa-man-shortdesc;
  7. &aa-man-dep;
  8. <sect2><title>&nbsp;</title><para>&nbsp;</para></sect2>
  9. <sect2>
  10. <title>Installation of Man</title>
  11. <para>We'll make three adjustments to the sources of Man.</para>
  12. <para>The first patch comments out the "MANPATH /usr/man" line in the
  13. <filename>man.conf</filename> file to prevent redundant results when using
  14. programs such as <userinput>whatis</userinput>:</para>
  15. <screen><userinput>patch -Np1 -i ../&man-manpath-patch;</userinput></screen>
  16. <para>The second patch adds the <emphasis>-R</emphasis> option to the
  17. <emphasis>PAGER</emphasis> variable so that escape sequences are
  18. handled properly:</para>
  19. <screen><userinput>patch -Np1 -i ../&man-pager-patch;</userinput></screen>
  20. <para>The third and last patch prevents a problem when man pages not formatted
  21. with more than 80 columns are used in conjunction with recent releases of
  22. <userinput>groff</userinput>:</para>
  23. <screen><userinput>patch -Np1 -i ../&man-80cols-patch;</userinput></screen>
  24. <para>Now prepare Man for compilation:</para>
  25. <screen><userinput>./configure -default -confdir=/etc</userinput></screen>
  26. <para>The meaning of the configure options:</para>
  27. <itemizedlist>
  28. <listitem><para><userinput>-default</userinput>: This tells the configure script
  29. to select a sensible set of default options. For example: only English man
  30. pages, no message catalogs, man not suid, handle compressed man pages, compress
  31. cat pages, create cat pages whenever the appropriate directory exists, follow
  32. FHS by putting cat pages under /var/cache/man provided that that directory
  33. exists.</para></listitem>
  34. <listitem><para><userinput>-confdir=/etc</userinput>: This tells the
  35. <userinput>man</userinput> program to look for the <filename>man.conf</filename>
  36. configuration file in the <filename>/etc</filename> directory.</para></listitem>
  37. </itemizedlist>
  38. <para>Compile the package:</para>
  39. <screen><userinput>make</userinput></screen>
  40. <para>And install it:</para>
  41. <screen><userinput>make install</userinput></screen>
  42. <note><para>If you wish to disable SGR escape sequences, you should
  43. edit the man.conf file and add the <userinput>-c</userinput> argument
  44. to nroff.</para></note>
  45. <para>You may want to also take a look at the BLFS page at
  46. <ulink url="&blfs-root;view/cvs/postlfs/compressdoc.html"/> which deals with
  47. formatting and compression issues for man pages.</para>
  48. </sect2>
  49. </sect1>