source: multimedia/libdriv/sdl2.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.3 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 sdl2-download-http "http://www.libsdl.org/release/SDL2-&sdl2-version;.tar.gz">
8 <!ENTITY sdl2-download-ftp " ">
9 <!ENTITY sdl2-md5sum "76ed4e6da9c07bd168b2acd9bfefab1b">
10 <!ENTITY sdl2-size "5.8 MB">
11 <!ENTITY sdl2-buildsize "178 MB (with docs)">
12 <!ENTITY sdl2-time "0.4 SBU (using parallelism=4; with docs)">
13]>
14
15<sect1 id="sdl2" xreflabel="SDL2-&sdl2-version;">
16 <?dbhtml filename="sdl2.html"?>
17
18 <sect1info>
19 <othername>$LastChangedBy$</othername>
20 <date>$Date$</date>
21 </sect1info>
22
23 <title>SDL2-&sdl2-version;</title>
24
25 <indexterm zone="sdl2">
26 <primary sortas="a-SDL2">SDL2</primary>
27 </indexterm>
28
29 <sect2 role="package">
30 <title>Introduction to SDL2</title>
31
32 <para>
33 The Simple DirectMedia Layer Version 2 (<application>SDL2</application>
34 for short) is a cross-platform library designed to make it easy to write
35 multimedia software, such as games and emulators.
36 </para>
37
38 &lfs10_checked;
39
40 <bridgehead renderas="sect3">Package Information</bridgehead>
41 <itemizedlist spacing="compact">
42 <listitem>
43 <para>
44 Download (HTTP): <ulink url="&sdl2-download-http;"/>
45 </para>
46 </listitem>
47 <listitem>
48 <para>
49 Download (FTP): <ulink url="&sdl2-download-ftp;"/>
50 </para>
51 </listitem>
52 <listitem>
53 <para>
54 Download MD5 sum: &sdl2-md5sum;
55 </para>
56 </listitem>
57 <listitem>
58 <para>
59 Download size: &sdl2-size;
60 </para>
61 </listitem>
62 <listitem>
63 <para>
64 Estimated disk space required: &sdl2-buildsize;
65 </para>
66 </listitem>
67 <listitem>
68 <para>
69 Estimated build time: &sdl2-time;
70 </para>
71 </listitem>
72 </itemizedlist>
73
74 <bridgehead renderas="sect3">Additional Downloads</bridgehead>
75 <itemizedlist spacing="compact">
76 <listitem>
77 <para>
78 Required patch (for i686 systems):
79 <ulink url="&patch-root;/SDL2-&sdl2-version;-opengl_include_fix-1.patch"/>
80 </para>
81 </listitem>
82 </itemizedlist>
83
84 <bridgehead renderas="sect3">SDL2 Dependencies</bridgehead>
85
86 <bridgehead renderas="sect4">Recommended</bridgehead>
87 <para role="recommended">
88 <xref linkend="libxkbcommon"/>,
89 <xref linkend="wayland-protocols"/>, and
90 <xref linkend="xorg7-lib"/> (if those are not present, the corresponding modules are not built)
91 </para>
92
93 <bridgehead renderas="sect4">Optional</bridgehead>
94 <para role="optional">
95 <xref linkend="alsa"/>,
96 <xref linkend="doxygen"/> (to create documentation),
97 <xref linkend="ibus"/>,
98 <xref linkend="nasm"/>,
99 <xref linkend="pulseaudio"/>,
100 <xref linkend="libsamplerate"/>,
101 <xref linkend="x-window-system"/>,
102 <ulink url="http://pkgs.fedoraproject.org/repo/pkgs/directfb/">DirectFB</ulink>, and
103 <ulink url="https://fcitx-im.org/">fcitx</ulink>
104 </para>
105
106 <para condition="html" role="usernotes">User Notes:
107 <ulink url="&blfs-wiki;/sdl"/></para>
108
109 </sect2>
110
111 <sect2 role="installation">
112 <title>Installation of SDL2</title>
113
114 <para>
115 First, if you are building on a 32-bit i686 system, apply a patch
116 containing a fix for the OpenGL headers and their data types:
117 </para>
118
119<screen><userinput remap="pre">case $(uname -m) in
120 i?86) patch -Np1 -i ../SDL2-&sdl2-version;-opengl_include_fix-1.patch ;;
121esac</userinput></screen>
122
123 <para>
124 Install <application>SDL2</application> by running the
125 following commands:
126 </para>
127
128<screen><userinput>./configure --prefix=/usr &amp;&amp;
129make</userinput></screen>
130
131 <para>
132 If you have <xref linkend="doxygen"/> installed and want to build the
133 html documentation, run the following commands:
134 </para>
135
136<screen remap="doc"><userinput>pushd docs &amp;&amp;
137 doxygen &amp;&amp;
138popd</userinput></screen>
139
140 <note>
141 <para>
142 If you wish to build and run the package regression
143 tests, do not delete the static libraries below until after
144 the tests are built.
145 </para>
146 </note>
147
148 <para>
149 Now, as the <systemitem class="username">root</systemitem> user:
150 </para>
151
152<screen role="root"><userinput>make install &amp;&amp;
153rm -v /usr/lib/libSDL2*.a</userinput></screen>
154
155 <para>
156 If you built the documentation, install it as the <systemitem
157 class="username">root</systemitem> user:
158 </para>
159
160<screen role="root"
161 remap="doc"><userinput>install -v -m755 -d /usr/share/doc/SDL2-&sdl2-version;/html &amp;&amp;
162cp -Rv docs/output/html/* /usr/share/doc/SDL2-&sdl2-version;/html</userinput></screen>
163
164 </sect2>
165<!--
166 The tests are broken for version 2.0.10. It cannot find libSDL2_test*.
167
168 <sect2 role="testing">
169 <title>Testing SDL2</title>
170
171 <para>
172 If you wish to, test the installation of <application>SDL2</application>
173 using the included test programs. None of the resulting binaries need
174 to be installed. Issue the following commands to build the test
175 programs:
176 </para>
177
178<screen><userinput>cd test &amp;&amp;
179./configure &amp;&amp;
180make</userinput></screen>
181
182 <para>
183 Each of the test programs (they are listed in the
184 <filename>README</filename> file in this directory) will need to be run
185 individually. Many of them will need to be manually killed. Additionally,
186 speakers need to be on with the volume at a suitable level.
187 </para>
188
189 </sect2>
190-->
191 <sect2 role="commands">
192 <title>Command Explanations</title>
193
194 <para>
195 <command>rm -v /usr/lib/libSDL2*.a</command>: Normally
196 static libraries can be disabled with a <option>--disable-static</option>
197 option to configure, but that breaks the build in this package.
198 </para>
199
200 <para>
201 <option>--disable-alsa-shared</option>: This switch disables
202 dynamically loading ALSA shared libraries.
203 </para>
204
205 <para>
206 <option>--disable-sdl-dlopen</option>: This switch disables using
207 dlopen for shared object loading. Loading image backend libraries like
208 libpng dynamically on the fly does not work.
209 </para>
210
211 <para>
212 <option>--disable-x11-shared</option>: This switch disables
213 dynamically loading X11 shared libraries.
214 </para>
215
216 </sect2>
217
218 <sect2 role="configuration">
219 <title>Configuring SDL2</title>
220
221 <sect3>
222 <title>Configuration Information</title>
223
224 <xi:include xmlns:xi="http://www.w3.org/2001/XInclude"
225 href="../../xincludes/lib-config.xml"/>
226
227 </sect3>
228
229 </sect2>
230
231 <sect2 role="content">
232 <title>Contents</title>
233
234 <segmentedlist>
235 <segtitle>Installed Program</segtitle>
236 <segtitle>Installed Libraries</segtitle>
237 <segtitle>Installed Directories</segtitle>
238
239 <seglistitem>
240 <seg>sdl2-config</seg>
241 <seg>libSDL2.so</seg>
242 <seg>/usr/include/SDL2 and
243 /usr/share/doc/SDL-&sdl2-version;</seg>
244 </seglistitem>
245 </segmentedlist>
246
247 <variablelist>
248 <bridgehead renderas="sect3">Short Descriptions</bridgehead>
249 <?dbfo list-presentation="list"?>
250 <?dbhtml list-presentation="table"?>
251
252 <varlistentry id="sdl2-config">
253 <term><command>sdl2-config</command></term>
254 <listitem>
255 <para>
256 determines the compile and linker flags that should be used to
257 compile and link programs that use
258 <filename class="libraryfile">libSDL2</filename>
259 </para>
260 <indexterm zone="sdl2 sdl2-config">
261 <primary sortas="b-sdl2-config">sdl2-config</primary>
262 </indexterm>
263 </listitem>
264 </varlistentry>
265
266 <varlistentry id="libsdl2">
267 <term><filename class="libraryfile">libSDL2.so</filename></term>
268 <listitem>
269 <para>
270 contains functions that provide low level access to audio,
271 keyboard, mouse, joystick, 3D hardware via OpenGL, and
272 2D frame buffer across multiple platforms
273 </para>
274 <indexterm zone="sdl2 libsdl2">
275 <primary sortas="c-libsdl2">libSDL2.so</primary>
276 </indexterm>
277 </listitem>
278 </varlistentry>
279
280 </variablelist>
281
282 </sect2>
283
284</sect1>
Note: See TracBrowser for help on using the repository browser.