source: general/prog/doxygen.xml@ 7031a69

10.0 10.1 11.0 11.1 11.2 11.3 12.0 12.1 7.10 7.6 7.7 7.8 7.9 8.0 8.1 8.2 8.3 8.4 9.0 9.1 basic bdubbs/svn elogind 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 trunk upgradedb xry111/intltool xry111/llvm18 xry111/soup3 xry111/test-20220226 xry111/xf86-video-removal
Last change on this file since 7031a69 was 7031a69, checked in by Bruce Dubbs <bdubbs@…>, 10 years ago

Update to kde-4.14.1
Tags for kde dependencies

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

  • Property mode set to 100644
File size: 7.4 KB
Line 
1<?xml version="1.0" encoding="ISO-8859-1"?>
2<!DOCTYPE sect1 PUBLIC "-//OASIS//DTD DocBook XML V4.5//EN"
3 "http://www.oasis-open.org/docbook/xml/4.5/docbookx.dtd" [
4 <!ENTITY % general-entities SYSTEM "../../general.ent">
5 %general-entities;
6
7 <!ENTITY doxygen-download-http "http://ftp.stack.nl/pub/doxygen/doxygen-&doxygen-version;.src.tar.gz">
8 <!ENTITY doxygen-download-ftp "ftp://ftp.stack.nl/pub/doxygen/doxygen-&doxygen-version;.src.tar.gz">
9 <!ENTITY doxygen-md5sum "0cbe6912fcac302a984bfcfb9231fec9">
10 <!ENTITY doxygen-size "4.8 MB">
11 <!ENTITY doxygen-buildsize "111 MB">
12 <!ENTITY doxygen-time "1.3 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>
33 The <application>Doxygen</application> package contains a documentation
34 system for C++, C, Java, Objective-C, Corba IDL and to some extent PHP,
35 C# and D. It is useful for generating HTML documentation and/or an
36 off-line reference manual from a set of documented source files. There
37 is also support for generating output in RTF, PostScript, hyperlinked
38 PDF, compressed HTML, and Unix man pages. The documentation is extracted
39 directly from the sources, which makes it much easier to keep the
40 documentation consistent with the source code.
41 </para>
42
43 <para>
44 You can also configure <application>Doxygen</application> to extract
45 the code structure from undocumented source files. This is very useful
46 to quickly find your way in large source distributions. Used along with
47 <application>Graphviz</application>, you can also visualize the relations
48 between the various elements by means of include dependency graphs,
49 inheritance diagrams, and collaboration diagrams, which are all generated
50 automatically.
51 </para>
52
53 &lfs76_checked;
54
55 <bridgehead renderas="sect3">Package Information</bridgehead>
56 <itemizedlist spacing="compact">
57 <listitem>
58 <para>
59 Download (HTTP): <ulink url="&doxygen-download-http;"/>
60 </para>
61 </listitem>
62 <listitem>
63 <para>
64 Download (FTP): <ulink url="&doxygen-download-ftp;"/>
65 </para>
66 </listitem>
67 <listitem>
68 <para>
69 Download MD5 sum: &doxygen-md5sum;
70 </para>
71 </listitem>
72 <listitem>
73 <para>
74 Download size: &doxygen-size;
75 </para>
76 </listitem>
77 <listitem>
78 <para>
79 Estimated disk space required: &doxygen-buildsize;
80 </para>
81 </listitem>
82 <listitem>
83 <para>
84 Estimated build time: &doxygen-time;
85 </para>
86 </listitem>
87 </itemizedlist>
88
89 <bridgehead renderas="sect3">Doxygen Dependencies</bridgehead>
90
91 <bridgehead renderas="sect4">Optional</bridgehead>
92 <para role="optional">
93 <xref linkend="graphviz"/>,
94 <xref linkend="gs"/>,
95 <xref linkend="python2"/>,
96 <xref linkend="qt4"/> (for doxywizard) and
97 <xref linkend="texlive"/>
98 </para>
99
100 <para condition="html" role="usernotes">User Notes:
101 <ulink url="&blfs-wiki;/doxygen"/>
102 </para>
103 </sect2>
104
105 <sect2 role="installation">
106 <title>Installation of Doxygen</title>
107
108 <para>
109 Install <application>Doxygen</application> by running the following
110 commands:
111 </para>
112
113<screen><userinput>./configure --prefix /usr \
114 --docdir /usr/share/doc/doxygen-&doxygen-version; &amp;&amp;
115make</userinput></screen>
116
117 <para>
118 This package does not come with a test suite.
119 </para>
120
121 <para>
122 Now, as the <systemitem class="username">root</systemitem> user:
123 </para>
124
125<screen role="root"><userinput>make MAN1DIR=share/man/man1 install</userinput></screen>
126
127 <para>
128 If you wish to generate and install the package documentation
129 (note that man pages have already been installed), you must have
130 <application>Python</application>,
131 <application>TeX Live</application> (for HTML docs) and
132 <application>Ghostscript</application> (for PDF docs)
133 installed, then issue the following command as the
134 <systemitem class="username">root</systemitem> user:
135 </para>
136
137<screen role="root"><userinput>make install_docs</userinput></screen>
138
139 </sect2>
140
141 <sect2 role="commands">
142 <title>Command Explanations</title>
143
144 <para>
145 <option>--with-doxywizard</option>: Use this parameter if
146 <application>Qt4</application> is installed and you wish to build the
147 GUI front-end. If both <application>Qt4</application> and
148 <application>Qt5</application> are installed, use
149 <command>source setqt4</command>. If <application>Qt4</application> is
150 installed in <filename class="directory">/opt</filename>, issue
151 <command>export QTDIR=$QT4DIR</command>.
152 </para>
153
154 </sect2>
155
156 <sect2 role="configuration">
157 <title>Configuring Doxygen</title>
158
159 <para>
160 There is no real configuration necessary for the
161 <application>Doxygen</application> package although three additional
162 packages are required if you wish to use extended capabilities. If you
163 need to use the language translation features, you must have <xref
164 linkend="python2"/> installed. If you require formulas to create PDF
165 documentation, then you must have <xref linkend="texlive"/> installed.
166 If you require formulas to convert PostScript files to bitmaps, then
167 you must have <xref linkend="gs"/> installed.
168 </para>
169
170 </sect2>
171
172 <sect2 role="content">
173 <title>Contents</title>
174
175 <segmentedlist>
176 <segtitle>Installed Programs</segtitle>
177 <segtitle>Installed Libraries</segtitle>
178 <segtitle>Installed Directory</segtitle>
179
180 <seglistitem>
181 <seg>
182 doxygen and optionally, doxywizard
183 </seg>
184 <seg>
185 None
186 </seg>
187 <seg>
188 /usr/share/doc/doxygen-&doxygen-version;
189 </seg>
190 </seglistitem>
191 </segmentedlist>
192
193 <variablelist>
194 <bridgehead renderas="sect3">Short Descriptions</bridgehead>
195 <?dbfo list-presentation="list"?>
196 <?dbhtml list-presentation="table"?>
197
198 <varlistentry id="doxygen-prog">
199 <term><command>doxygen</command></term>
200 <listitem>
201 <para>
202 is a command-line based utility used to generate template
203 configuration files and then generate documentation from these
204 templates. Use <command>doxygen --help</command> for an
205 explanation of the command-line parameters.
206 </para>
207 <indexterm zone="doxygen doxygen-prog">
208 <primary sortas="b-doxygen">doxygen</primary>
209 </indexterm>
210 </listitem>
211 </varlistentry>
212
213 <varlistentry id="doxywizard">
214 <term><command>doxywizard</command></term>
215 <listitem>
216 <para>
217 is a GUI front-end for configuring and
218 running <command>doxygen</command>.
219 </para>
220 <indexterm zone="doxygen doxywizard">
221 <primary sortas="b-doxywizard">doxywizard</primary>
222 </indexterm>
223 </listitem>
224 </varlistentry>
225
226 </variablelist>
227
228 </sect2>
229
230</sect1>
Note: See TracBrowser for help on using the repository browser.