source: chapter06/ncurses.xml@ 456a1d92

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.0 6.1 6.1.1 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 456a1d92 was b8a819f, checked in by Manuel Canales Esparcia <manuel@…>, 20 years ago

Changed the id's location in the Short descriptions sections to fix a bug in the PDF generation.

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

  • Property mode set to 100644
File size: 6.8 KB
RevLine 
[673b0d8]1<?xml version="1.0" encoding="ISO-8859-1"?>
2<!DOCTYPE sect1 PUBLIC "-//OASIS//DTD DocBook XML V4.3//EN" "http://www.oasis-open.org/docbook/xml/4.3/docbookx.dtd" [
3 <!ENTITY % general-entities SYSTEM "../general.ent">
4 %general-entities;
5]>
[a001133]6<sect1 id="ch-system-ncurses" xreflabel="Ncurses" role="wrap">
[673b0d8]7<title>Ncurses-&ncurses-version;</title>
8<?dbhtml filename="ncurses.html"?>
[6370fa6]9
[673b0d8]10<indexterm zone="ch-system-ncurses"><primary sortas="a-Ncurses">Ncurses</primary></indexterm>
11
[a001133]12<sect2 role="package"><title/>
[673b0d8]13<para>The Ncurses package contains libraries for terminal-independent
[17476c5]14handling of character screens.</para>
[5888299]15
[a001133]16<segmentedlist>
17<segtitle>&buildtime;</segtitle>
18<segtitle>&diskspace;</segtitle>
19<seglistitem><seg>0.6 SBU</seg><seg>27 MB</seg></seglistitem>
20</segmentedlist>
[673b0d8]21
[a001133]22<segmentedlist>
23<segtitle>Ncurses installation depends on</segtitle>
24<seglistitem><seg>Bash, Binutils, Coreutils, Diffutils,
25Gawk, GCC, Glibc, Grep, Make, Sed</seg></seglistitem>
26</segmentedlist>
27</sect2>
[3554fa3a]28
[a001133]29<sect2 role="installation">
[73aedd1d]30<title>Installation of Ncurses</title>
31
[21308e2]32<para>Prepare Ncurses for compilation:</para>
[73aedd1d]33
[c288d97]34<screen><userinput>./configure --prefix=/usr --with-shared --without-debug</userinput></screen>
[73aedd1d]35
36<para>Compile the package:</para>
37
38<screen><userinput>make</userinput></screen>
39
40<para>Install the package:</para>
41
42<screen><userinput>make install</userinput></screen>
43
44<para>Give the Ncurses libraries execute permissions:</para>
45
46<screen><userinput>chmod 755 /usr/lib/*.&ncurses-version;</userinput></screen>
47
[673b0d8]48<para>Now fix a library that shouldn't be executable:</para>
[73aedd1d]49
50<screen><userinput>chmod 644 /usr/lib/libncurses++.a</userinput></screen>
51
52<para>Move the libraries to the <filename>/lib</filename> directory,
53where they're expected to reside:</para>
54
55<screen><userinput>mv /usr/lib/libncurses.so.5* /lib</userinput></screen>
56
[673b0d8]57<para>Because the libraries have been moved, a few symlinks are pointing to
[db9d773c]58non-existent files. Recreate those symlinks:</para>
[73aedd1d]59
60<screen><userinput>ln -sf ../../lib/libncurses.so.5 /usr/lib/libncurses.so
61ln -sf libncurses.so /usr/lib/libcurses.so</userinput></screen>
62</sect2>
[6370fa6]63
[5888299]64
[c6cb3aa]65<sect2 id="contents-ncurses" role="content"><title>Contents of Ncurses</title>
[673b0d8]66
[c6cb3aa]67<segmentedlist>
68<segtitle>Installed programs</segtitle>
69<segtitle>Installed libraries</segtitle>
70<seglistitem><seg>captoinfo (link to tic), clear, infocmp, infotocap (link to tic),
71reset (link to tset), tack, tic, toe, tput and tset</seg>
72<seg>libcurses.[a,so] (link to libncurses.[a,so]), libform.[a,so], libmenu.[a,so],
73libncurses++.a, libncurses.[a,so], libpanel.[a,so]</seg></seglistitem>
74</segmentedlist>
[673b0d8]75
[c6cb3aa]76<variablelist><title>Short descriptions</title>
[673b0d8]77
[b8a819f]78<varlistentry id="captoinfo">
79<term><command>captoinfo</command></term>
[c6cb3aa]80<listitem>
[673b0d8]81<indexterm zone="ch-system-ncurses captoinfo"><primary sortas="b-captoinfo">captoinfo</primary></indexterm>
[c6cb3aa]82<para>converts a termcap description into a terminfo description.</para>
83</listitem>
84</varlistentry>
[673b0d8]85
[b8a819f]86<varlistentry id="clear">
87<term><command>clear</command></term>
[c6cb3aa]88<listitem>
[673b0d8]89<indexterm zone="ch-system-ncurses clear"><primary sortas="b-clear">clear</primary></indexterm>
[c6cb3aa]90<para>clears the screen, if this is possible.</para>
91</listitem>
92</varlistentry>
[673b0d8]93
[b8a819f]94<varlistentry id="infocmp">
95<term><command>infocmp</command></term>
[c6cb3aa]96<listitem>
[673b0d8]97<indexterm zone="ch-system-ncurses infocmp"><primary sortas="b-infocmp">infocmp</primary></indexterm>
[c6cb3aa]98<para>compares or prints out terminfo descriptions.</para>
99</listitem>
100</varlistentry>
[673b0d8]101
[b8a819f]102<varlistentry id="infotocap">
103<term><command>infotocap</command></term>
[c6cb3aa]104<listitem>
[673b0d8]105<indexterm zone="ch-system-ncurses infotocap"><primary sortas="b-infotocap">infotocap</primary></indexterm>
[c6cb3aa]106<para>converts a terminfo description into a termcap description.</para>
107</listitem>
108</varlistentry>
[673b0d8]109
[b8a819f]110<varlistentry id="reset">
111<term><command>reset</command></term>
[c6cb3aa]112<listitem>
[673b0d8]113<indexterm zone="ch-system-ncurses reset"><primary sortas="b-reset">reset</primary></indexterm>
[c6cb3aa]114<para>reinitializes a terminal to its default values.</para>
115</listitem>
116</varlistentry>
[673b0d8]117
[b8a819f]118<varlistentry id="tack">
119<term><command>tack</command></term>
[c6cb3aa]120<listitem>
[673b0d8]121<indexterm zone="ch-system-ncurses tack"><primary sortas="b-tack">tack</primary></indexterm>
[c6cb3aa]122<para>is the terminfo action checker. It is mainly
[673b0d8]123used to test the correctness of an entry in the terminfo database.</para>
[c6cb3aa]124</listitem>
125</varlistentry>
[6370fa6]126
[b8a819f]127<varlistentry id="tic">
128<term><command>tic</command></term>
[c6cb3aa]129<listitem>
[673b0d8]130<indexterm zone="ch-system-ncurses tic"><primary sortas="b-tic">tic</primary></indexterm>
[c6cb3aa]131<para>is the terminfo entry-description compiler.
[673b0d8]132It translates a terminfo file from source format into the binary format needed
133for the ncurses library routines. A terminfo file contains information on the
134capabilities of a certain terminal.</para>
[c6cb3aa]135</listitem>
136</varlistentry>
[673b0d8]137
[b8a819f]138<varlistentry id="toe">
139<term><command>toe</command></term>
[c6cb3aa]140<listitem>
[673b0d8]141<indexterm zone="ch-system-ncurses toe"><primary sortas="b-toe">toe</primary></indexterm>
[c6cb3aa]142<para>lists all available terminal types, for each
[673b0d8]143giving its primary name and its description.</para>
[c6cb3aa]144</listitem>
145</varlistentry>
[673b0d8]146
[b8a819f]147<varlistentry id="tput">
148<term><command>tput</command></term>
[c6cb3aa]149<listitem>
[673b0d8]150<indexterm zone="ch-system-ncurses tput"><primary sortas="b-tput">tput</primary></indexterm>
[c6cb3aa]151<para>makes the values of terminal-dependent
[673b0d8]152capabilities available to the shell. It can also be used to reset or initialize
153a terminal, or report its long name.</para>
[c6cb3aa]154</listitem>
155</varlistentry>
[673b0d8]156
[b8a819f]157<varlistentry id="tset">
158<term><command>tset</command></term>
[c6cb3aa]159<listitem>
[673b0d8]160<indexterm zone="ch-system-ncurses tset"><primary sortas="b-tset">tset</primary></indexterm>
[c6cb3aa]161<para>can be used to initialize terminals.</para>
162</listitem>
163</varlistentry>
[673b0d8]164
[b8a819f]165<varlistentry id="libncurses">
166<term><command>libncurses*</command></term>
[c6cb3aa]167<listitem>
[673b0d8]168<indexterm zone="ch-system-ncurses libncurses"><primary sortas="c-libncurses*">libncurses*</primary></indexterm>
[c6cb3aa]169<para>contains functions to display text in
[673b0d8]170many complicated ways on a terminal screen. A good example of the use of these
171functions is the menu displayed during the kernel's make menuconfig.</para>
[c6cb3aa]172</listitem>
173</varlistentry>
[673b0d8]174
[b8a819f]175<varlistentry id="libform">
176<term><command>libform*</command></term>
[c6cb3aa]177<listitem>
[673b0d8]178<indexterm zone="ch-system-ncurses libform"><primary sortas="c-libform*">libform*</primary></indexterm>
[c6cb3aa]179<para>contains functions to implement forms.</para>
180</listitem>
181</varlistentry>
[673b0d8]182
[b8a819f]183<varlistentry id="libmenu">
184<term><command>libmenu*</command></term>
[c6cb3aa]185<listitem>
[673b0d8]186<indexterm zone="ch-system-ncurses libmenu"><primary sortas="c-libmenu*">libmenu*</primary></indexterm>
[c6cb3aa]187<para>contains functions to implement menus.</para>
188</listitem>
189</varlistentry>
[673b0d8]190
[b8a819f]191<varlistentry id="libpanel">
192<term><command>libpanel*</command></term>
[c6cb3aa]193<listitem>
[673b0d8]194<indexterm zone="ch-system-ncurses libpanel"><primary sortas="c-libpanel*">libpanel*</primary></indexterm>
[c6cb3aa]195<para>contains functions to implement panels.</para>
196</listitem>
197</varlistentry>
198</variablelist>
[673b0d8]199
200</sect2>
201
202</sect1>
Note: See TracBrowser for help on using the repository browser.