source: x/lib/glew.xml@ 57e1c09

10.0 10.1 11.0 11.1 11.2 11.3 12.0 12.1 9.0 9.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 57e1c09 was 57e1c09, checked in by Bruce Dubbs <bdubbs@…>, 5 years ago

Tags for editors, shells, X libraries.
Update vim version to match LFS

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

  • Property mode set to 100644
File size: 5.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 glew-download-http "https://downloads.sourceforge.net/glew/glew-&glew-version;.tgz
8">
9 <!ENTITY glew-download-ftp " ">
10 <!ENTITY glew-md5sum "b2ab12331033ddfaa50dc39345343980">
11 <!ENTITY glew-size "747 KB">
12 <!ENTITY glew-buildsize "16 MB">
13 <!ENTITY glew-time "less than 0.1 SBU">
14]>
15
16<sect1 id="glew" xreflabel="GLEW-&glew-version;">
17 <?dbhtml filename="glew.html"?>
18
19 <sect1info>
20 <othername>$LastChangedBy$</othername>
21 <date>$Date$</date>
22 </sect1info>
23
24 <title>GLEW-&glew-version;</title>
25
26 <indexterm zone="glew">
27 <primary sortas="a-GLEW">GLEW</primary>
28 </indexterm>
29
30 <sect2 role="package">
31 <title>Introduction to GLEW</title>
32
33 <para>
34 <application>GLEW</application> is the OpenGL Extension Wrangler Library.
35 </para>
36
37 &lfs90_checked;
38
39 <bridgehead renderas="sect3">Package Information</bridgehead>
40 <itemizedlist spacing="compact">
41 <listitem>
42 <para>
43 Download (HTTP): <ulink url="&glew-download-http;"/>
44 </para>
45 </listitem>
46 <listitem>
47 <para>
48 Download (FTP): <ulink url="&glew-download-ftp;"/>
49 </para>
50 </listitem>
51 <listitem>
52 <para>
53 Download MD5 sum: &glew-md5sum;
54 </para>
55 </listitem>
56 <listitem>
57 <para>
58 Download size: &glew-size;
59 </para>
60 </listitem>
61 <listitem>
62 <para>
63 Estimated disk space required: &glew-buildsize;
64 </para>
65 </listitem>
66 <listitem>
67 <para>
68 Estimated build time: &glew-time;
69 </para>
70 </listitem>
71 </itemizedlist>
72
73 <bridgehead renderas="sect3">glew Dependencies</bridgehead>
74
75 <bridgehead renderas="sect4">Required</bridgehead>
76 <para role="required">
77 <xref linkend="mesa"/>
78 </para>
79
80 <para condition="html" role="usernotes">
81 User Notes: <ulink url="&blfs-wiki;/GLEW"/>
82 </para>
83 </sect2>
84
85 <!--Required section-->
86 <sect2 role="installation">
87 <title>Installation of GLEW</title>
88
89 <para>
90 Install <application>GLEW</application> by running the following
91 commands:
92 </para>
93
94<screen><userinput>sed -i 's%lib64%lib%g' config/Makefile.linux &amp;&amp;
95sed -i -e '/glew.lib.static:/d' \
96 -e '/0644 .*STATIC/d' \
97 -e 's/glew.lib.static//' Makefile &amp;&amp;
98make</userinput></screen>
99
100 <para>
101 This package does not come with a test suite.
102 </para>
103
104 <para>
105 Now, as the <systemitem class="username">root</systemitem> user:
106 </para>
107
108<screen role="root"><userinput>make install.all</userinput></screen>
109 </sect2>
110
111 <!--Optional section-->
112 <sect2 role="commands">
113 <title>Command Explanations</title>
114
115 <para>
116 <command>sed -i 's%lib64%lib%g' ...</command>: This ensures that the
117 library is installed in <filename class="directory">/usr/lib</filename>.
118 </para>
119
120 <para>
121 <parameter>sed -i -e '/glew.lib.static:/d' ...</parameter>: This suppresses
122 the static library.
123 </para>
124
125 <para>
126 <command>make install.all</command>: This installs the programs as well as
127 the library.
128 </para>
129 </sect2>
130
131
132 <!--Required section-->
133 <sect2 role="content">
134 <title>Contents</title>
135
136 <segmentedlist>
137 <segtitle>Installed Programs</segtitle>
138 <segtitle>Installed Library</segtitle>
139 <segtitle>Installed Directory</segtitle>
140
141 <seglistitem>
142 <seg>
143 glewinfo, visualinfo.
144 </seg>
145 <seg>
146 libGLEW.so.
147 </seg>
148 <seg>
149 /usr/include/GL.
150 </seg>
151 </seglistitem>
152 </segmentedlist>
153
154 <variablelist>
155 <bridgehead renderas="sect3">Short Descriptions</bridgehead>
156 <?dbfo list-presentation="list"?>
157 <?dbhtml list-presentation="table"?>
158
159 <!-- If the program or library name conflicts (is the same) as the
160 package name, add -prog or -lib to the varlistentry entity id
161 and the 2nd entry of the indexterm zone entity -->
162
163 <varlistentry id="glewinfo">
164 <term><command>glewinfo</command></term>
165 <listitem>
166 <para>
167 provides information about the supported extensions.
168 </para>
169 <indexterm zone="glew glewinfo">
170 <primary sortas="b-glewinfo">glewinfo</primary>
171 </indexterm>
172 </listitem>
173 </varlistentry>
174
175 <varlistentry id="visualinfo">
176 <term><command>visualinfo</command></term>
177 <listitem>
178 <para>
179 is an extended version of glxinfo.
180 </para>
181 <indexterm zone="glew visualinfo">
182 <primary sortas="b-visualinfo">visualinfo</primary>
183 </indexterm>
184 </listitem>
185 </varlistentry>
186
187 <varlistentry id="libGLEW.so">
188 <term><filename class="libraryfile">libGLEW.so</filename></term>
189 <listitem>
190 <para>
191 provides functions to access OpenGL extensions.
192 </para>
193 <indexterm zone="glew libGLEW.so">
194 <primary sortas="c-libGLEW.so">libGLEW.so</primary>
195 </indexterm>
196 </listitem>
197 </varlistentry>
198 </variablelist>
199 </sect2>
200</sect1>
Note: See TracBrowser for help on using the repository browser.