source: x/lib/fltk.xml@ 4c24eb0a

10.1 11.0 11.1 11.2 11.3 12.0 12.1 kea ken/TL2024 ken/inkscape-core-mods ken/tuningfonts lazarus lxqt 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 4c24eb0a was 4c24eb0a, checked in by Pierre Labastie <pieere@…>, 3 years ago

Remove period at the end of short descriptions.
In the process, some attributes in single quotes have been changed to double
quotes, and a few attribute lists have been written on one line instead of
several lines.

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

  • Property mode set to 100644
File size: 8.0 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 <!-- Watch directory when updating -->
8 <!ENTITY fltk-download-http "http://fltk.org/pub/fltk/1.3.5/fltk-&fltk-version;-source.tar.gz">
9 <!ENTITY fltk-download-ftp " ">
10 <!ENTITY fltk-md5sum "e85017defd5a03ae82e634311db87bbf">
11 <!ENTITY fltk-size "5.1 MB">
12 <!ENTITY fltk-buildsize "117 MB (with documentation)">
13 <!ENTITY fltk-time "0.2 SBU (Using parallelism=4)">
14]>
15
16<sect1 id="fltk" xreflabel="FLTK-&fltk-version;">
17 <?dbhtml filename="fltk.html"?>
18
19 <sect1info>
20 <othername>$LastChangedBy$</othername>
21 <date>$Date$</date>
22 </sect1info>
23
24 <title>FLTK-&fltk-version;</title>
25
26 <indexterm zone="fltk">
27 <primary sortas="a-FLTK">FLTK</primary>
28 </indexterm>
29
30 <sect2 role="package">
31 <title>Introduction to FLTK</title>
32
33 <para>
34 FLTK (pronounced "fulltick") is a cross-platform C++ GUI toolkit.
35 FLTK provides modern GUI functionality and supports 3D graphics via
36 OpenGL and its built-in GLUT emulation libraries used for creating
37 graphical user interfaces for applications.
38 </para>
39
40 &lfs10_checked;
41
42 <bridgehead renderas="sect3">Package Information</bridgehead>
43 <itemizedlist spacing="compact">
44 <listitem>
45 <para>
46 Download (HTTP): <ulink url="&fltk-download-http;"/>
47 </para>
48 </listitem>
49 <listitem>
50 <para>
51 Download (FTP): <ulink url="&fltk-download-ftp;"/>
52 </para>
53 </listitem>
54 <listitem>
55 <para>
56 Download MD5 sum: &fltk-md5sum;
57 </para>
58 </listitem>
59 <listitem>
60 <para>
61 Download size: &fltk-size;
62 </para>
63 </listitem>
64 <listitem>
65 <para>
66 Estimated disk space required: &fltk-buildsize;
67 </para>
68 </listitem>
69 <listitem>
70 <para>
71 Estimated build time: &fltk-time;
72 </para>
73 </listitem>
74 </itemizedlist>
75
76 <bridgehead renderas="sect3">FLTK Dependencies</bridgehead>
77
78 <bridgehead renderas="sect4">Required</bridgehead>
79 <para role="required">
80 <xref linkend="xorg7-lib"/>
81 </para>
82
83 <bridgehead renderas="sect4">Recommended</bridgehead>
84 <para role="recommended">
85 <xref linkend="hicolor-icon-theme"/>,
86 <xref linkend="libjpeg"/>, and
87 <xref linkend="libpng"/>
88 </para>
89
90 <bridgehead renderas="sect4">Optional</bridgehead>
91 <para role="optional">
92 <xref linkend="alsa-lib"/>,
93 <xref linkend="desktop-file-utils"/>,
94 <xref linkend="doxygen"/>,
95 <xref linkend="glu"/>,
96 <xref linkend="mesa"/>, and
97 <xref linkend="texlive"/> (or <xref linkend="tl-installer"/>)
98 </para>
99
100 <para condition="html" role="usernotes">
101 User Notes: <ulink url="&blfs-wiki;/fltk"/>
102 </para>
103 </sect2>
104
105 <sect2 role="installation">
106 <title>Installation of FLTK</title>
107
108 <note>
109 <para>
110 The tar extraction directory is fltk-&fltk-version; and not
111 fltk-&fltk-version;-source as indicated by the tarball name.
112 </para>
113 </note>
114
115 <para>
116 Install <application>FLTK</application> by running the following
117 commands:
118 </para>
119
120<screen><userinput>sed -i -e '/cat./d' documentation/Makefile &amp;&amp;
121
122./configure --prefix=/usr \
123 --enable-shared &amp;&amp;
124make</userinput></screen>
125
126 <para>
127 If you wish to create the API documentation, issue:
128 </para>
129
130<screen remap="doc"><userinput>make -C documentation html</userinput></screen>
131
132 <para>
133 The tests for the package are interactive. To execute the tests, run
134 <command>test/unittests</command>. In addition, there are 70 other
135 executable test programs in the <filename
136 class='directory'>test</filename> directory that can be run individually.
137 </para>
138
139 <para>
140 Now, as the <systemitem class="username">root</systemitem> user:
141 </para>
142
143<screen role="root"><userinput>make docdir=/usr/share/doc/fltk-&fltk-version; install</userinput></screen>
144
145 <para>
146 If desired, install some example games built as a part of the tests,
147 extra documentation and example programs. As the <systemitem
148 class="username">root</systemitem> user:
149 </para>
150
151<screen role="root"
152 remap="doc"><userinput>make -C test docdir=/usr/share/doc/fltk-&fltk-version; install-linux &amp;&amp;
153make -C documentation docdir=/usr/share/doc/fltk-&fltk-version; install-linux</userinput></screen>
154
155 </sect2>
156
157 <sect2 role="commands">
158 <title>Command Explanations</title>
159
160 <para>
161 <command>sed ... documentation/Makefile</command>: Avoid installing
162 pages in <filename class='directory'>/usr/share/man/cat*</filename>.
163 </para>
164
165 </sect2>
166
167 <sect2 role="content">
168 <title>Contents</title>
169
170 <segmentedlist>
171 <segtitle>Installed Programs</segtitle>
172 <segtitle>Installed Libraries</segtitle>
173 <segtitle>Installed Directories</segtitle>
174
175 <seglistitem>
176 <seg>
177 blocks,
178 checkers,
179 fltk-config,
180 fluid, and
181 sudoku
182 </seg>
183 <seg>
184 libfltk.{a,so},
185 libfltk_forms.{a,so},
186 libfltk_gl.{a,so}, and
187 libfltk_images.{a,so}
188 </seg>
189 <seg>
190 /usr/include/FL and
191 /usr/share/doc/fltk-&fltk-version;
192 </seg>
193 </seglistitem>
194 </segmentedlist>
195
196 <variablelist>
197 <bridgehead renderas="sect3">Short Descriptions</bridgehead>
198 <?dbfo list-presentation="list"?>
199 <?dbhtml list-presentation="table"?>
200
201 <varlistentry id="blocks">
202 <term><command>blocks</command></term>
203 <listitem>
204 <para>
205 is a FLTK-based block elimination game
206 </para>
207 <indexterm zone="fltk blocks">
208 <primary sortas="b-blocks">blocks</primary>
209 </indexterm>
210 </listitem>
211 </varlistentry>
212
213 <varlistentry id="checkers">
214 <term><command>checkers</command></term>
215 <listitem>
216 <para>
217 is a FLTK-based version of the game of checkers
218 </para>
219 <indexterm zone="fltk checkers">
220 <primary sortas="b-checkers">checkers</primary>
221 </indexterm>
222 </listitem>
223 </varlistentry>
224
225 <varlistentry id="fltk-config">
226 <term><command>fltk-config</command></term>
227 <listitem>
228 <para>
229 is a utility script that can be used to get information about the
230 current version of FLTK that is installed on the system
231 </para>
232 <indexterm zone="fltk fltk-config">
233 <primary sortas="b-fltk-config">fltk-config</primary>
234 </indexterm>
235 </listitem>
236 </varlistentry>
237
238 <varlistentry id="fluid">
239 <term><command>fluid</command></term>
240 <listitem>
241 <para>
242 is an interactive GUI designer for FLTK
243 </para>
244 <indexterm zone="fltk fluid">
245 <primary sortas="b-fluid">fluid</primary>
246 </indexterm>
247 </listitem>
248 </varlistentry>
249
250 <varlistentry id="sudoku">
251 <term><command>sudoku</command></term>
252 <listitem>
253 <para>
254 is an implementation of the popular Sudoku game
255 </para>
256 <indexterm zone="fltk sudoku">
257 <primary sortas="b-sudoku">sudoku</primary>
258 </indexterm>
259 </listitem>
260 </varlistentry>
261
262 <varlistentry id="libfltk">
263 <term><filename class="libraryfile">libfltk.so</filename></term>
264 <listitem>
265 <para>
266 contains functions that provide an API to implement graphical user
267 interfaces
268 </para>
269 <indexterm zone="fltk libfltk">
270 <primary sortas="c-libfltk">libfltk.so</primary>
271 </indexterm>
272 </listitem>
273 </varlistentry>
274
275 </variablelist>
276
277 </sect2>
278
279</sect1>
Note: See TracBrowser for help on using the repository browser.