source: general/prog/doxygen.xml@ 4af60e8a

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 4af60e8a was 256ee72c, checked in by Manuel Canales Esparcia <manuel@…>, 19 years ago

Adding automatized scripts generation related tags. Prog chapter.

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

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