diff options
author | Peter Eisentraut | 2017-03-22 02:09:40 +0000 |
---|---|---|
committer | Peter Eisentraut | 2017-03-22 02:11:49 +0000 |
commit | 9212810c4f4a596fc398644e96925a8a0f0332e8 (patch) | |
tree | 3c4470d52893ff6e68cd1ffa8d47d0ba58e23a96 | |
parent | 80275561fffb58e48da2d3fd72b72a3bfbee8669 (diff) |
doc: Update tool sets documentation for modern FreeBSD
For several operating systems, we give handy package manager one-liners
to install all the requirements for building our documentation. All
current production FreeBSD releases have a friendly new package manager
a bit like apt/yum, so give a one line command here. Also, add a brief
note about gmake vs make in the doc subdirectory.
Author: Thomas Munro <[email protected]>
-rw-r--r-- | doc/src/sgml/docguide.sgml | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/doc/src/sgml/docguide.sgml b/doc/src/sgml/docguide.sgml index 48828aff37..57b67137b1 100644 --- a/doc/src/sgml/docguide.sgml +++ b/doc/src/sgml/docguide.sgml @@ -255,6 +255,19 @@ yum install docbook-dtds docbook-style-dsssl docbook-style-xsl libxslt openjade </para> <para> + To install the required packages with <command>pkg</command>, use: +<programlisting> +pkg install docbook-sgml docbook-xml docbook-xsl dsssl-docbook-modular libxslt openjade +</programlisting> + </para> + + <para> + When building the documentation from the <filename>doc</filename> + directory you'll need to use <command>gmake</command>, because the + makefile provided is not suitable for FreeBSD's <command>make</command>. + </para> + + <para> More information about the FreeBSD documentation tools can be found in the <ulink url="http://www.freebsd.org/doc/en_US.ISO8859-1/books/fdp-primer/tools.html"> FreeBSD Documentation Project's instructions</ulink>. |