source: general/prog/doxygen.xml@ 520f6b4f

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 520f6b4f was 520f6b4f, checked in by Randy McMurchy <randy@…>, 18 years ago

Renamed the TeX package to its proper name - teTeX

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

  • Property mode set to 100644
File size: 7.6 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 "ebf11130bec7987e9b69b1e0301d151a">
10 <!ENTITY doxygen-size "2.8 MB">
11 <!ENTITY doxygen-buildsize "48.4 MB">
12 <!ENTITY doxygen-time "1.5 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="ftpdir">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="tetex"/>,
80 <xref linkend="python"/>,
81 <xref linkend="espgs"/> or <xref linkend="gs"/>, and
82 <xref linkend="graphviz"/></para>
83
84 <para condition="html" role="usernotes">User Notes:
85 <ulink url="&blfs-wiki;/doxygen"/></para>
86
87 </sect2>
88
89 <sect2 role="installation">
90 <title>Installation of Doxygen</title>
91
92 <para>Install <application>Doxygen</application> by running the following
93 commands:</para>
94
95<screen><userinput>rm src/unistd.h &amp;&amp;
96./configure --prefix /usr --docdir /usr/share/doc &amp;&amp;
97make</userinput></screen>
98
99 <para>This package does not come with a test suite.</para>
100
101 <para>Now, as the <systemitem class="username">root</systemitem> user:</para>
102
103<screen role="root"><userinput>make install</userinput></screen>
104
105 <para>If you wish to generate and install the package documentation
106 (note that man pages have already been installed), you must have
107 <application>Python</application>, <application>teTeX</application> (for
108 HTML docs) and <application>Ghostscript</application> (for PDF docs)
109 installed, then issue the following command as the
110 <systemitem class="username">root</systemitem> user:</para>
111
112<screen role="root"><userinput>make install_docs</userinput></screen>
113
114 </sect2>
115
116 <sect2 role="commands">
117 <title>Command Explanations</title>
118
119 <para><command>rm src/unistd.h</command>: There is a bug in
120 <application>Flex</application>-&lfs-flex-version; which causes
121 <command>make</command> to use this file instead of the system
122 installed version. Removing this file allows the GUI front-end to build
123 successfully. This command is not required if you don't pass the
124 <option>--with-doxywizard</option> parameter (but won't affect the build
125 otherwise).</para>
126
127 <para><option>--with-doxywizard</option>: Use this parameter if
128 <application>Qt</application> is installed and you wish to build the
129 GUI front-end.</para>
130
131 </sect2>
132
133 <sect2 role="configuration">
134 <title>Configuring Doxygen</title>
135
136 <para>There is no real configuration necessary for the
137 <application>Doxygen</application> package although three additional
138 packages are required if you wish to use extended capabilities. If you
139 need to use the language translation features, you must have
140 <xref linkend="python"/> installed. If you require formulas to
141 create PDF documentation, then you must have <xref linkend="tetex"/>
142 installed. If you require formulas to convert PostScript files to bitmaps,
143 then you must have <xref linkend="gs"/> or <xref linkend="espgs"/>
144 installed.</para>
145
146 </sect2>
147
148 <sect2 role="content">
149 <title>Contents</title>
150
151 <segmentedlist>
152 <segtitle>Installed Programs</segtitle>
153 <segtitle>Installed Libraries</segtitle>
154 <segtitle>Installed Directory</segtitle>
155
156 <seglistitem>
157 <seg>doxygen, doxytag, and optionally, doxywizard</seg>
158 <seg>None</seg>
159 <seg>/usr/share/doc/doxygen</seg>
160 </seglistitem>
161 </segmentedlist>
162
163 <variablelist>
164 <bridgehead renderas="sect3">Short Descriptions</bridgehead>
165 <?dbfo list-presentation="list"?>
166 <?dbhtml list-presentation="table"?>
167
168 <varlistentry id="doxygen-prog">
169 <term><command>doxygen</command></term>
170 <listitem>
171 <para>is a command-line based utility used to generate template
172 configuration files and then generate documentation from these templates. Use
173 <command>doxygen --help</command> for an explanation of the command-line
174 parameters.</para>
175 <indexterm zone="doxygen doxygen-prog">
176 <primary sortas="b-doxygen">doxygen</primary>
177 </indexterm>
178 </listitem>
179 </varlistentry>
180
181 <varlistentry id="doxytag">
182 <term><command>doxytag</command></term>
183 <listitem>
184 <para>is used to generate a tag file and/or a search index for a set
185 of HTML files.</para>
186 <indexterm zone="doxygen doxytag">
187 <primary sortas="b-doxytag">doxytag</primary>
188 </indexterm>
189 </listitem>
190 </varlistentry>
191
192 <varlistentry id="doxywizard">
193 <term><command>doxywizard</command></term>
194 <listitem>
195 <para>is a GUI front-end for configuring and
196 running <command>doxygen</command>.</para>
197 <indexterm zone="doxygen doxywizard">
198 <primary sortas="b-doxywizard">doxywizard</primary>
199 </indexterm>
200 </listitem>
201 </varlistentry>
202 </variablelist>
203
204 </sect2>
205
206</sect1>
Note: See TracBrowser for help on using the repository browser.