source: chapter06/ncurses.xml@ 2fa922f

10.0 10.0-rc1 10.1 10.1-rc1 11.0 11.0-rc1 11.0-rc2 11.0-rc3 11.1 11.1-rc1 11.2 11.2-rc1 11.3 11.3-rc1 12.0 12.0-rc1 12.1 12.1-rc1 6.3 6.4 6.5 6.6 6.7 6.8 7.0 7.1 7.2 7.3 7.4 7.5 7.5-systemd 7.6 7.6-systemd 7.7 7.7-systemd 7.8 7.8-systemd 7.9 7.9-systemd 8.0 8.1 8.2 8.3 8.4 9.0 9.1 arm bdubbs/gcc13 ml-11.0 multilib renodr/libudev-from-systemd s6-init trunk xry111/arm64 xry111/arm64-12.0 xry111/clfs-ng xry111/lfs-next xry111/loongarch xry111/loongarch-12.0 xry111/loongarch-12.1 xry111/mips64el xry111/pip3 xry111/rust-wip-20221008 xry111/update-glibc
Last change on this file since 2fa922f was 2fa922f, checked in by Manuel Canales Esparcia <manuel@…>, 18 years ago

Indenting chapter 6, part 8

git-svn-id: http://svn.linuxfromscratch.org/LFS/trunk/BOOK@7358 4aa44e1e-78dd-0310-a6d2-fbcd4c07a689

  • Property mode set to 100644
File size: 12.2 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
8<sect1 id="ch-system-ncurses" role="wrap">
9 <?dbhtml filename="ncurses.html"?>
10
11 <title>Ncurses-&ncurses-version;</title>
12
13 <indexterm zone="ch-system-ncurses">
14 <primary sortas="a-Ncurses">Ncurses</primary>
15 </indexterm>
16
17 <sect2 role="package">
18 <title/>
19
20 <para>The Ncurses package contains libraries for terminal-independent
21 handling of character screens.</para>
22
23 <segmentedlist>
24 <segtitle>&buildtime;</segtitle>
25 <segtitle>&diskspace;</segtitle>
26
27 <seglistitem>
28 <seg>0.6 SBU</seg>
29 <seg>18.6 MB</seg>
30 </seglistitem>
31 </segmentedlist>
32
33 <segmentedlist>
34 <segtitle>&dependencies;</segtitle>
35
36 <seglistitem>
37 <seg>Bash, Binutils, Coreutils, Diffutils, Gawk, GCC, Glibc, Grep,
38 Make, and Sed</seg>
39 </seglistitem>
40 </segmentedlist>
41
42 </sect2>
43
44 <sect2 role="installation">
45 <title>Installation of Ncurses</title>
46 <!-- Uncomment if using a dated ncurses release instead of a numbered one.
47
48 <para>Since the release of Ncurses-&ncurses-version;, some bugs have been fixed
49 and features added. The most important news are .......
50 To get these fixes and features, apply the rollup patch:</para>
51
52<screen><userinput>bzcat ../&ncurses-rollup-patch; | patch -Np1</userinput></screen>
53 -->
54
55 <para>Since the release of Ncurses-&ncurses-version;, a memory leak and some
56 display bugs were found and fixed upstream. Apply those fixes:</para>
57
58<screen><userinput>patch -Np1 -i ../&ncurses-fixes-patch;</userinput></screen>
59
60 <para>Prepare Ncurses for compilation:</para>
61
62<screen><userinput>./configure --prefix=/usr --with-shared --without-debug --enable-widec</userinput></screen>
63
64 <variablelist>
65 <title>The meaning of the configure option:</title>
66
67 <varlistentry>
68 <term><parameter>--enable-widec</parameter></term>
69 <listitem>
70 <para>This switch causes wide-character libraries (e.g., <filename
71 class="libraryfile">libncursesw.so.&ncurses-version;</filename>)
72 to be built instead of normal ones (e.g., <filename
73 class="libraryfile">libncurses.so.&ncurses-version;</filename>).
74 These wide-character libraries are usable in both multibyte and
75 traditional 8-bit locales, while normal libraries work properly
76 only in 8-bit locales. Wide-character and normal libraries are
77 source-compatible, but not binary-compatible.</para>
78 </listitem>
79 </varlistentry>
80
81 <!--
82 <varlistentry>
83 <term><parameter>- -without-cxx-binding</parameter></term>
84 <listitem>
85 <para>This optional switch causes the
86 <filename class="libraryfile">libncurses++w.a</filename> library
87 not to be built. Nothing in LFS and BLFS uses this library.</para>
88 </listitem>
89 </varlistentry>
90 -->
91
92 </variablelist>
93
94 <para>Compile the package:</para>
95
96<screen><userinput>make</userinput></screen>
97
98 <para>This package does not come with a test suite.</para>
99
100 <para>Install the package:</para>
101
102<screen><userinput>make install</userinput></screen>
103
104 <para>Give the Ncurses libraries execute permissions:</para>
105
106<screen><userinput>chmod -v 755 /usr/lib/*.&ncurses-version;</userinput></screen>
107
108 <para>Fix a library that should not be executable:</para>
109
110<screen><userinput>chmod -v 644 /usr/lib/libncurses++w.a</userinput></screen>
111
112 <para>Move the libraries to the <filename class="directory">/lib</filename> directory,
113 where they are expected to reside:</para>
114
115<screen><userinput>mv -v /usr/lib/libncursesw.so.5* /lib</userinput></screen>
116
117 <para>Because the libraries have been moved, one symlink points to
118 a non-existent file. Recreate it:</para>
119
120<screen><userinput>ln -sfv ../../lib/libncursesw.so.5 /usr/lib/libncursesw.so</userinput></screen>
121
122 <para>Many applications still expect the linker to be able to find
123 non-wide-character Ncurses libraries. Trick such applications into linking with
124 wide-character libraries by means of symlinks and linker scripts:</para>
125
126<screen><userinput>for lib in curses ncurses form panel menu ; do \
127 rm -vf /usr/lib/lib${lib}.so ; \
128 echo "INPUT(-l${lib}w)" &gt;/usr/lib/lib${lib}.so ; \
129 ln -sfv lib${lib}w.a /usr/lib/lib${lib}.a ; \
130done &amp;&amp;
131ln -sfv libncurses++w.a /usr/lib/libncurses++.a</userinput></screen>
132
133 <para>Finally, make sure that old applications that look for
134 <filename class="libraryfile">-lcurses</filename> at build time are still
135 buildable:</para>
136
137<screen><userinput>echo "INPUT(-lncursesw)" &gt;/usr/lib/libcursesw.so &amp;&amp;
138ln -sfv libncurses.so /usr/lib/libcurses.so &amp;&amp;
139ln -sfv libncursesw.a /usr/lib/libcursesw.a &amp;&amp;
140ln -sfv libncurses.a /usr/lib/libcurses.a</userinput></screen>
141
142 <note>
143 <para>The instructions above don't create non-wide-character Ncurses
144 libraries since no package installed by compiling from sources would
145 link against them at runtime. If you must have such libraries because
146 of some binary-only application, build them with the following
147 commands:</para>
148
149<screen role="nodump"><userinput>make distclean &amp;&amp;
150./configure --prefix=/usr --with-shared --without-normal \
151 --without-debug --without-cxx-binding &amp;&amp;
152make sources libs &amp;&amp;
153cp -av lib/lib*.so.5* /usr/lib</userinput></screen>
154 </note>
155
156 </sect2>
157
158 <sect2 id="contents-ncurses" role="content">
159 <title>Contents of Ncurses</title>
160
161 <segmentedlist>
162 <segtitle>Installed programs</segtitle>
163 <segtitle>Installed libraries</segtitle>
164
165 <seglistitem>
166 <seg>captoinfo (link to tic), clear, infocmp, infotocap (link to tic),
167 reset (link to tset), tack, tic, toe, tput, and tset</seg>
168 <seg>libcursesw.[a,so] (symlink and linker script to libncursesw.[a,so]),
169 libformw.[a,so], libmenuw.[a,so], libncurses++w.a, libncursesw.[a,so],
170 libpanelw.[a,so] and their non-wide-character counterparts without "w"
171 in the library names.</seg>
172 </seglistitem>
173 </segmentedlist>
174
175 <variablelist>
176 <bridgehead renderas="sect3">Short Descriptions</bridgehead>
177 <?dbfo list-presentation="list"?>
178 <?dbhtml list-presentation="table"?>
179
180 <varlistentry id="captoinfo">
181 <term><command>captoinfo</command></term>
182 <listitem>
183 <para>Converts a termcap description into a terminfo description</para>
184 <indexterm zone="ch-system-ncurses captoinfo">
185 <primary sortas="b-captoinfo">captoinfo</primary>
186 </indexterm>
187 </listitem>
188 </varlistentry>
189
190 <varlistentry id="clear">
191 <term><command>clear</command></term>
192 <listitem>
193 <para>Clears the screen, if possible</para>
194 <indexterm zone="ch-system-ncurses clear">
195 <primary sortas="b-clear">clear</primary>
196 </indexterm>
197 </listitem>
198 </varlistentry>
199
200 <varlistentry id="infocmp">
201 <term><command>infocmp</command></term>
202 <listitem>
203 <para>Compares or prints out terminfo descriptions</para>
204 <indexterm zone="ch-system-ncurses infocmp">
205 <primary sortas="b-infocmp">infocmp</primary>
206 </indexterm>
207 </listitem>
208 </varlistentry>
209
210 <varlistentry id="infotocap">
211 <term><command>infotocap</command></term>
212 <listitem>
213 <para>Converts a terminfo description into a termcap description</para>
214 <indexterm zone="ch-system-ncurses infotocap">
215 <primary sortas="b-infotocap">infotocap</primary>
216 </indexterm>
217 </listitem>
218 </varlistentry>
219
220 <varlistentry id="reset">
221 <term><command>reset</command></term>
222 <listitem>
223 <para>Reinitializes a terminal to its default values</para>
224 <indexterm zone="ch-system-ncurses reset">
225 <primary sortas="b-reset">reset</primary>
226 </indexterm>
227 </listitem>
228 </varlistentry>
229
230 <varlistentry id="tack">
231 <term><command>tack</command></term>
232 <listitem>
233 <para>The terminfo action checker; it is mainly used to test the
234 accuracy of an entry in the terminfo database</para>
235 <indexterm zone="ch-system-ncurses tack">
236 <primary sortas="b-tack">tack</primary>
237 </indexterm>
238 </listitem>
239 </varlistentry>
240
241 <varlistentry id="tic">
242 <term><command>tic</command></term>
243 <listitem>
244 <para>The terminfo entry-description compiler that translates a
245 terminfo file from source format into the binary format needed for the
246 ncurses library routines. A terminfo file contains information on the
247 capabilities of a certain terminal</para>
248 <indexterm zone="ch-system-ncurses tic">
249 <primary sortas="b-tic">tic</primary>
250 </indexterm>
251 </listitem>
252 </varlistentry>
253
254 <varlistentry id="toe">
255 <term><command>toe</command></term>
256 <listitem>
257 <para>Lists all available terminal types, giving the primary name and
258 description for each</para>
259 <indexterm zone="ch-system-ncurses toe">
260 <primary sortas="b-toe">toe</primary>
261 </indexterm>
262 </listitem>
263 </varlistentry>
264
265 <varlistentry id="tput">
266 <term><command>tput</command></term>
267 <listitem>
268 <para>Makes the values of terminal-dependent capabilities available to
269 the shell; it can also be used to reset or initialize a terminal or
270 report its long name</para>
271 <indexterm zone="ch-system-ncurses tput">
272 <primary sortas="b-tput">tput</primary>
273 </indexterm>
274 </listitem>
275 </varlistentry>
276
277 <varlistentry id="tset">
278 <term><command>tset</command></term>
279 <listitem>
280 <para>Can be used to initialize terminals</para>
281 <indexterm zone="ch-system-ncurses tset">
282 <primary sortas="b-tset">tset</primary>
283 </indexterm>
284 </listitem>
285 </varlistentry>
286
287 <varlistentry id="libcurses">
288 <term><filename class="libraryfile">libcurses</filename></term>
289 <listitem>
290 <para>A link to <filename>libncurses</filename></para>
291 <indexterm zone="ch-system-ncurses libcurses">
292 <primary sortas="c-libcurses">libcurses</primary>
293 </indexterm>
294 </listitem>
295 </varlistentry>
296
297 <varlistentry id="libncurses">
298 <term><filename class="libraryfile">libncurses</filename></term>
299 <listitem>
300 <para>Contains functions to display text in many complex ways on a
301 terminal screen; a good example of the use of these functions is the
302 menu displayed during the kernel's <command>make
303 menuconfig</command></para>
304 <indexterm zone="ch-system-ncurses libncurses">
305 <primary sortas="c-libncurses">libncurses</primary>
306 </indexterm>
307 </listitem>
308 </varlistentry>
309
310 <varlistentry id="libform">
311 <term><filename class="libraryfile">libform</filename></term>
312 <listitem>
313 <para>Contains functions to implement forms</para>
314 <indexterm zone="ch-system-ncurses libform">
315 <primary sortas="c-libform">libform</primary>
316 </indexterm>
317 </listitem>
318 </varlistentry>
319
320 <varlistentry id="libmenu">
321 <term><filename class="libraryfile">libmenu</filename></term>
322 <listitem>
323 <para>Contains functions to implement menus</para>
324 <indexterm zone="ch-system-ncurses libmenu">
325 <primary sortas="c-libmenu">libmenu</primary>
326 </indexterm>
327 </listitem>
328 </varlistentry>
329
330 <varlistentry id="libpanel">
331 <term><filename class="libraryfile">libpanel</filename></term>
332 <listitem>
333 <para>Contains functions to implement panels</para>
334 <indexterm zone="ch-system-ncurses libpanel">
335 <primary sortas="c-libpanel">libpanel</primary>
336 </indexterm>
337 </listitem>
338 </varlistentry>
339
340 </variablelist>
341
342 </sect2>
343
344</sect1>
Note: See TracBrowser for help on using the repository browser.