source: x/lib/freeglut.xml@ 92245989

10.0 10.1 11.0 11.1 11.2 11.3 12.0 12.1 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 lazarus lxqt 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 92245989 was 92245989, checked in by DJ Lucas <dj@…>, 7 years ago

Merge nosym branch

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

  • Property mode set to 100644
File size: 4.9 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 freeglut-download-http
8 "&sourceforge-repo;/freeglut/freeglut-&freeglut-version;.tar.gz">
9 <!ENTITY freeglut-download-ftp " ">
10 <!ENTITY freeglut-md5sum "90c3ca4dd9d51cf32276bc5344ec9754">
11 <!ENTITY freeglut-size "412 KB">
12 <!ENTITY freeglut-buildsize "14 MB">
13 <!ENTITY freeglut-time "0.2 SBU">
14]>
15
16<sect1 id="freeglut" xreflabel="Freeglut-&freeglut-version;">
17 <?dbhtml filename="freeglut.html"?>
18
19 <sect1info>
20 <othername>$LastChangedBy$</othername>
21 <date>$Date$</date>
22 </sect1info>
23
24 <title>Freeglut-&freeglut-version;</title>
25
26 <indexterm zone="freeglut">
27 <primary sortas="a-Freeglut">Freeglut</primary>
28 </indexterm>
29
30 <sect2 role="package">
31 <title>Introduction to Freeglut</title>
32
33 <para>
34 <application>Freeglut</application> is intended to be a 100%
35 compatible, completely opensourced clone of the GLUT library.
36 GLUT is a window system independent toolkit for writing OpenGL
37 programs, implementing a simple windowing API, which makes
38 learning about and exploring OpenGL programming very easy.
39 </para>
40
41 &lfs7a_checked;
42
43 <bridgehead renderas="sect3">Package Information</bridgehead>
44 <itemizedlist spacing="compact">
45 <listitem>
46 <para>
47 Download (HTTP): <ulink url="&freeglut-download-http;"/>
48 </para>
49 </listitem>
50 <listitem>
51 <para>
52 Download (FTP): <ulink url="&freeglut-download-ftp;"/>
53 </para>
54 </listitem>
55 <listitem>
56 <para>
57 Download MD5 sum: &freeglut-md5sum;
58 </para>
59 </listitem>
60 <listitem>
61 <para>
62 Download size: &freeglut-size;
63 </para>
64 </listitem>
65 <listitem>
66 <para>
67 Estimated disk space required: &freeglut-buildsize;
68 </para>
69 </listitem>
70 <listitem>
71 <para>
72 Estimated build time: &freeglut-time;
73 </para>
74 </listitem>
75 </itemizedlist>
76
77 <bridgehead renderas="sect3">Freeglut Dependencies</bridgehead>
78
79 <bridgehead renderas="sect4">Required</bridgehead>
80 <para role="required">
81 <xref linkend="cmake"/> and
82 <xref linkend="mesa"/>
83 </para>
84
85 <bridgehead renderas="sect4">Recommended</bridgehead>
86 <para role="recommended">
87 <xref linkend="glu"/>
88 </para>
89
90 <para condition="html" role="usernotes">User Notes:
91 <ulink url="&blfs-wiki;/freeglut"/>
92 </para>
93 </sect2>
94
95 <sect2 role="installation">
96 <title>Installation of Freeglut</title>
97
98 <para>
99 Install <application>Freeglut</application> by running the
100 following commands:
101 </para>
102
103<screen><userinput>mkdir build &amp;&amp;
104cd build &amp;&amp;
105
106cmake -DCMAKE_INSTALL_PREFIX=/usr \
107 -DCMAKE_INSTALL_LIBDIR=/usr/lib \
108 -DCMAKE_BUILD_TYPE=Release \
109 -DFREEGLUT_BUILD_DEMOS=OFF \
110 -DFREEGLUT_BUILD_STATIC_LIBS=OFF \
111 .. &amp;&amp;
112
113make</userinput></screen>
114
115 <para>
116 This package does not come with a test suite.
117 </para>
118
119 <para>
120 Now, as the <systemitem class="username">root</systemitem>
121 user:
122 </para>
123
124<screen role="root"><userinput>make install</userinput></screen>
125
126 </sect2>
127
128 <sect2 role="commands">
129 <title>Command Explanations</title>
130
131 <para><parameter>-DFREEGLUT_BUILD_DEMOS=OFF</parameter>: Disable building
132 optional demo programs. Note that if you choose to build them, their
133 installation must be done manually. The demo programs are limited and
134 installation is not recommended.</para>
135
136 <para><parameter>-DFREEGLUT_BUILD_STATIC_LIBS=OFF</parameter>:
137 Do not build the static library. </para>
138
139 </sect2>
140
141 <sect2 role="content">
142 <title>Contents</title>
143
144 <segmentedlist>
145 <segtitle>Installed Programs</segtitle>
146 <segtitle>Installed Library</segtitle>
147 <segtitle>Installed Directories</segtitle>
148
149 <seglistitem>
150 <seg>
151 None
152 </seg>
153 <seg>
154 libglut.so
155 </seg>
156 <seg>
157 None
158 </seg>
159 </seglistitem>
160 </segmentedlist>
161
162 <variablelist>
163 <bridgehead renderas="sect3">Short Descriptions</bridgehead>
164 <?dbfo list-presentation="list"?>
165 <?dbhtml list-presentation="table"?>
166
167 <varlistentry id="libglut">
168 <term><filename class="libraryfile">libglut.so</filename></term>
169 <listitem>
170 <para>
171 contains functions that implement the OpenGL Utility
172 Toolkit.
173 </para>
174 <indexterm zone="freeglut libglut">
175 <primary sortas="c-libglut">libglut.so</primary>
176 </indexterm>
177 </listitem>
178 </varlistentry>
179
180 </variablelist>
181
182 </sect2>
183
184</sect1>
Note: See TracBrowser for help on using the repository browser.