source: general/prog/doxygen.xml@ c5cd635c

10.0 10.1 11.0 11.1 11.2 11.3 12.0 12.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 c5cd635c was c5cd635c, checked in by Randy McMurchy <randy@…>, 19 years ago

Updated to Doxygen-1.4.4

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

  • Property mode set to 100644
File size: 7.7 KB
Line 
1<?xml version="1.0" encoding="ISO-8859-1"?>
2<!DOCTYPE sect1 PUBLIC "-//OASIS//DTD DocBook XML V4.4//EN"
3 "http://www.oasis-open.org/docbook/xml/4.4/docbookx.dtd" [
4 <!ENTITY % general-entities SYSTEM "../../general.ent">
5 %general-entities;
6
7 <!ENTITY doxygen-download-http "http://ftp.stack.nl/pub/users/dimitri/doxygen-&doxygen-version;.src.tar.gz">
8 <!ENTITY doxygen-download-ftp "ftp://ftp.stack.nl/pub/users/dimitri/doxygen-&doxygen-version;.src.tar.gz">
9 <!ENTITY doxygen-md5sum "0e7fdbeafc6264cbde590c363a4debcd">
10 <!ENTITY doxygen-size "2.8 MB">
11 <!ENTITY doxygen-buildsize "43.4 MB (additional 3.8 MB to install docs)">
12 <!ENTITY doxygen-time "1.4 SBU">
13]>
14
15<sect1 id="doxygen" xreflabel="Doxygen-&doxygen-version;">
16 <?dbhtml filename="doxygen.html"?>
17
18 <sect1info>
19 <othername>$LastChangedBy$</othername>
20 <date>$Date$</date>
21 </sect1info>
22
23 <title>Doxygen-&doxygen-version;</title>
24
25 <indexterm zone="doxygen">
26 <primary sortas="a-Doxygen">Doxygen</primary>
27 </indexterm>
28
29 <sect2 role="package">
30 <title>Introduction to Doxygen</title>
31
32 <para>The <application>Doxygen</application> package contains a
33 documentation system for C++, C, Java, Objective-C, Corba IDL and to some
34 extent PHP, C# and D. This is useful for generating HTML documentation
35 and/or an off-line reference manual from a set of documented source files.
36 There is also support for generating output in RTF, PostScript, hyperlinked
37 PDF, compressed HTML, and Unix man pages. The documentation is extracted
38 directly from the sources, which makes it much easier to keep the
39 documentation consistent with the source code.</para>
40
41 <para>You can also configure <application>Doxygen</application> to extract
42 the code structure from undocumented source files. This is very useful to
43 quickly find your way in large source distributions. Used along with
44 <application>GraphViz</application>, you can also visualize the relations
45 between the various elements by means of include dependency graphs,
46 inheritance diagrams, and collaboration diagrams, which are all generated
47 automatically.</para>
48
49 <bridgehead renderas="sect3">Package Information</bridgehead>
50 <itemizedlist spacing="compact">
51 <listitem>
52 <para>Download (HTTP): <ulink url="&doxygen-download-http;"/></para>
53 </listitem>
54 <listitem>
55 <para>Download (FTP): <ulink url="&doxygen-download-ftp;"/></para>
56 </listitem>
57 <listitem>
58 <para>Download MD5 sum: &doxygen-md5sum;</para>
59 </listitem>
60 <listitem>
61 <para>Download size: &doxygen-size;</para>
62 </listitem>
63 <listitem>
64 <para>Estimated disk space required: &doxygen-buildsize;</para>
65 </listitem>
66 <listitem>
67 <para>Estimated build time: &doxygen-time;</para>
68 </listitem>
69 </itemizedlist>
70
71 <bridgehead renderas="sect3">Doxygen Dependencies</bridgehead>
72
73 <bridgehead renderas="sect4">Optional</bridgehead>
74 <para><xref linkend="qt"/>,
75 <xref linkend="tex"/> and
76 <ulink url="http://www.graphviz.org/">GraphViz</ulink></para>
77
78 </sect2>
79
80 <sect2 role="installation">
81 <title>Installation of Doxygen</title>
82
83 <para>Install <application>Doxygen</application> by running the following
84 commands:</para>
85
86<screen><userinput>rm src/unistd.h &amp;&amp;
87./configure --prefix /usr --docdir /usr/share/doc &amp;&amp;
88make</userinput></screen>
89
90 <para>This package does not come with a test suite.</para>
91
92 <para>Now, as the <systemitem class="username">root</systemitem> user:</para>
93
94<screen role="root"><userinput>make install</userinput></screen>
95
96 <para>If you wish to generate and install the package documentation
97 (note that man pages have already been installed), you must have
98 <application>TeX</application> installed, then issue the following
99 command as the <systemitem class="username">root</systemitem> user:</para>
100
101<screen role="root"><userinput>make install_docs</userinput></screen>
102
103<!--
104 <tip>
105 <para>If you don't have <application>TeX</application> installed but
106 wish to generate and install the HTML documentation (very good docs),
107 issue the following commands:</para>
108
109<screen><userinput>make docs</userinput></screen>
110
111 <para>Now, as the <systemitem class="username">root</systemitem>
112 user:</para>
113
114<screen role="root"><userinput>install -v -m755 -d /usr/share/doc/doxygen &amp;&amp;
115cp -v -R examples html /usr/share/doc/doxygen</userinput></screen>
116
117 </tip>
118-->
119
120 </sect2>
121
122 <sect2 role="commands">
123 <title>Command Explanations</title>
124
125 <para><command>rm src/unistd.h</command>: There is a bug in
126 <application>Flex</application>-2.5.31 which causes
127 <command>make</command> to use this file instead of the system
128 installed version. Removing this file allows the GUI front-end to build
129 successfully. This command is not required if you don't pass the
130 <option>--with-doxywizard</option> parameter (but won't affect the build
131 otherwise).</para>
132
133 <para><option>--with-doxywizard</option>: Use this parameter if
134 <application>Qt</application> is installed and you wish to build the
135 GUI front-end.</para>
136
137 </sect2>
138
139 <sect2 role="configuration">
140 <title>Configuring Doxygen</title>
141
142 <para>There is no real configuration necessary for the
143 <application>Doxygen</application> package although three additional
144 packages are required if you wish to use extended capabilities. If you
145 need to use the language translation features, you must have
146 <xref linkend="python"/> installed. If you require formulas to
147 create PDF documentation, then you must have <xref linkend="tex"/>
148 installed. If you require formulas to convert PostScript files to bitmaps,
149 then you must have <xref linkend="gs"/> or <xref linkend="espgs"/>
150 installed.</para>
151
152 </sect2>
153
154 <sect2 role="content">
155 <title>Contents</title>
156
157 <segmentedlist>
158 <segtitle>Installed Programs</segtitle>
159 <segtitle>Installed Libraries</segtitle>
160 <segtitle>Installed Directory</segtitle>
161
162 <seglistitem>
163 <seg>doxygen, doxytag, and optionally, doxywizard</seg>
164 <seg>None</seg>
165 <seg>/usr/share/doc/doxygen</seg>
166 </seglistitem>
167 </segmentedlist>
168
169 <variablelist>
170 <bridgehead renderas="sect3">Short Descriptions</bridgehead>
171 <?dbfo list-presentation="list"?>
172 <?dbhtml list-presentation="table"?>
173
174 <varlistentry id="doxygen-prog">
175 <term><command>doxygen</command></term>
176 <listitem>
177 <para>is a command-line based utility used to generate template
178 configuration files and then generate documentation from these templates. Use
179 <command>doxygen --help</command> for an explanation of the command-line
180 parameters.</para>
181 <indexterm zone="doxygen doxygen-prog">
182 <primary sortas="b-doxygen">doxygen</primary>
183 </indexterm>
184 </listitem>
185 </varlistentry>
186
187 <varlistentry id="doxytag">
188 <term><command>doxytag</command></term>
189 <listitem>
190 <para>is used to generate a tag file and/or a search index for a set
191 of HTML files.</para>
192 <indexterm zone="doxygen doxytag">
193 <primary sortas="b-doxytag">doxytag</primary>
194 </indexterm>
195 </listitem>
196 </varlistentry>
197
198 <varlistentry id="doxywizard">
199 <term><command>doxywizard</command></term>
200 <listitem>
201 <para>is a GUI front-end for configuring and
202 running <command>doxygen</command>.</para>
203 <indexterm zone="doxygen doxywizard">
204 <primary sortas="b-doxywizard">doxywizard</primary>
205 </indexterm>
206 </listitem>
207 </varlistentry>
208 </variablelist>
209
210 </sect2>
211
212</sect1>
Note: See TracBrowser for help on using the repository browser.