source: general/prog/doxygen.xml@ 7da83f1

10.0 10.1 11.0 11.1 11.2 11.3 12.0 12.1 6.0 6.1 6.2 6.2.0 6.2.0-rc1 6.2.0-rc2 6.3 6.3-rc1 6.3-rc2 6.3-rc3 7.10 7.4 7.5 7.6 7.6-blfs 7.6-systemd 7.7 7.8 7.9 8.0 8.1 8.2 8.3 8.4 9.0 9.1 basic bdubbs/svn elogind gnome kde5-13430 kde5-14269 kde5-14686 kea ken/TL2024 ken/inkscape-core-mods ken/tuningfonts krejzi/svn lazarus lxqt nosym perl-modules plabs/newcss plabs/python-mods python3.11 qt5new rahul/power-profiles-daemon renodr/vulkan-addition systemd-11177 systemd-13485 trunk upgradedb xry111/intltool xry111/llvm18 xry111/soup3 xry111/test-20220226 xry111/xf86-video-removal
Last change on this file since 7da83f1 was 03d51788, checked in by Randy McMurchy <randy@…>, 19 years ago

Added index tags to TeX

git-svn-id: svn://svn.linuxfromscratch.org/BLFS/trunk/BOOK@3252 af4574ff-66df-0310-9fd7-8a98e5e911e0

  • Property mode set to 100644
File size: 5.6 KB
Line 
1<?xml version="1.0" encoding="ISO-8859-1"?>
2<!DOCTYPE sect1 PUBLIC "-//OASIS//DTD DocBook XML V4.3//EN"
3 "http://www.oasis-open.org/docbook/xml/4.3/docbookx.dtd" [
4 <!ENTITY % general-entities SYSTEM "../../general.ent">
5 %general-entities;
6
7 <!ENTITY doxygen-download-http " ">
8 <!ENTITY doxygen-download-ftp "ftp://ftp.stack.nl/pub/users/dimitri/doxygen-&doxygen-version;.src.tar.gz">
9 <!ENTITY doxygen-size "2.7 MB">
10 <!ENTITY doxygen-buildsize "48 MB">
11 <!ENTITY doxygen-time "1.60 SBU">
12]>
13
14<sect1 id="doxygen" xreflabel="Doxygen-&doxygen-version;">
15<sect1info>
16<othername>$LastChangedBy$</othername>
17<date>$Date$</date>
18</sect1info>
19<?dbhtml filename="doxygen.html"?>
20<title>Doxygen-&doxygen-version;</title>
21
22<sect2>
23<title>Introduction to <application>Doxygen</application></title>
24
25<para>The <application>Doxygen</application> package contains a documentation
26system for C++, C, Java, Objective-C, Corba IDL and to some extent PHP, C#
27and D. This is useful for generating <acronym>HTML</acronym> documentation
28and/or an off-line reference manual from a set of documented source files.
29There is also support for generating output in <acronym>RTF</acronym>,
30PostScript, hyperlinked <acronym>PDF</acronym>, compressed
31<acronym>HTML</acronym>, and Unix man pages. The documentation is extracted
32directly from the sources, which makes it much easier to keep the
33documentation consistent with the source code.</para>
34
35<para>You can also configure <application>Doxygen</application> to extract the
36code structure from undocumented source files. This is very useful to quickly
37find your way in large source distributions. Used along with
38<application>GraphViz</application>, you can also visualize the relations
39between the various elements by means of include dependency graphs,
40inheritance diagrams, and collaboration diagrams, which are all generated
41automatically.</para>
42
43<sect3><title>Package information</title>
44<itemizedlist spacing="compact">
45<listitem><para>Download (HTTP): <ulink url="&doxygen-download-http;"/></para></listitem>
46<listitem><para>Download (FTP): <ulink url="&doxygen-download-ftp;"/></para></listitem>
47<listitem><para>Download size: &doxygen-size;</para></listitem>
48<listitem><para>Estimated disk space required: &doxygen-buildsize;</para></listitem>
49<listitem><para>Estimated build time: &doxygen-time;</para></listitem></itemizedlist>
50</sect3>
51
52<sect3><title><application>Doxygen</application> dependencies</title>
53<sect4><title>Optional</title>
54<para><xref linkend="qt"/>,
55<xref linkend="python"/>,
56<xref linkend="tex"/>,
57<xref linkend="gs"/> or <xref linkend="espgs"/>, and
58<ulink url="http://www.graphviz.org/">GraphViz</ulink></para>
59</sect4>
60</sect3>
61
62</sect2>
63
64<sect2>
65<title>Installation of <application>Doxygen</application></title>
66
67<para>Install <application>Doxygen</application> by running the following
68commands:</para>
69
70<screen><userinput><command>rm src/unistd.h &amp;&amp;
71./configure --prefix /usr --docdir /usr/share/doc &amp;&amp;
72make &amp;&amp;
73make install</command></userinput></screen>
74
75<para>If you wish to generate and install the package documentation, ensure
76the Python, TeX and Graphviz packages are installed, then substitute the
77following commands for the <command>make install</command> command above:</para>
78
79<screen><userinput><command>make docs &amp;&amp;
80make pdf &amp;&amp;
81install -d -m755 /usr/share/doc/doxygen/src &amp;&amp;
82install -m644 src/translator{,_adapter,_en}.h \
83 /usr/share/doc/doxygen/src &amp;&amp;
84install -m644 VERSION /usr/share/doc/doxygen &amp;&amp;
85make install_docs</command></userinput></screen>
86
87</sect2>
88
89<sect2>
90<title>Command explanations</title>
91
92<para><command>rm src/unistd.h</command>: There is a bug in
93<application>Flex</application>-2.5.31 which causes <command>make</command> to
94use this file instead of the system installed version. Removing this file
95allows the <acronym>GUI</acronym> front-end to build successfully.</para>
96
97<para><option>--with-doxywizard</option>: Use this parameter if
98<application>Qt</application> is installed and you wish to build the
99<acronym>GUI</acronym> front-end.</para>
100
101<para><command>make docs</command>: This command builds the
102<acronym>HTML</acronym> documentation.</para>
103
104<para><command>make pdf</command>: This command builds a
105<acronym>PDF</acronym> version of the <application>Doxygen</application>
106Manual.</para>
107
108<para><command>install ...</command>: These commands install some files
109required by the documentation installation.</para>
110
111<para><emphasis>Note: For documentation in a language other than English,
112replace the <quote>_en</quote> with the country code of your
113locale.</emphasis></para>
114
115<para><command>make install_docs</command>: This command installs the binaries
116and documentation.</para>
117
118</sect2>
119
120<sect2>
121<title>Contents</title>
122
123<para>The <application>Doxygen</application> package contains
124<command>doxygen</command>,
125<command>doxytag</command> and optionally,
126<command>doxywizard</command>.</para>
127
128</sect2>
129
130<sect2><title>Description</title>
131
132<sect3><title>doxygen</title>
133<para><command>doxygen</command> is a command-line based utility used to
134generate template configuration files and then generate documentation from
135these templates. Use <command>doxygen --help</command> for an explanation of
136the command-line parameters.</para></sect3>
137
138<sect3><title>doxytag</title>
139<para><command>doxytag</command> is used to generate a tag file and/or a
140search index for a set of <acronym>HTML</acronym> files.</para></sect3>
141
142<sect3><title>doxywizard</title>
143<para><command>doxywizard</command> is a <acronym>GUI</acronym> front-end for
144configuring and running <command>doxygen</command>.</para></sect3>
145
146</sect2>
147
148</sect1>
149
Note: See TracBrowser for help on using the repository browser.