ncurses.xml 16 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470
  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. <sect1 id="ch-system-ncurses" role="wrap">
  8. <?dbhtml filename="ncurses.html"?>
  9. <sect1info condition="script">
  10. <productname>ncurses</productname>
  11. <productnumber>&ncurses-version;</productnumber>
  12. <address>&ncurses-url;</address>
  13. </sect1info>
  14. <title>Ncurses-&ncurses-version;</title>
  15. <indexterm zone="ch-system-ncurses">
  16. <primary sortas="a-Ncurses">Ncurses</primary>
  17. </indexterm>
  18. <sect2 role="package">
  19. <title/>
  20. <para>The Ncurses package contains libraries for terminal-independent
  21. handling of character screens.</para>
  22. <segmentedlist>
  23. <segtitle>&buildtime;</segtitle>
  24. <segtitle>&diskspace;</segtitle>
  25. <seglistitem>
  26. <seg>&ncurses-fin-sbu;</seg>
  27. <seg>&ncurses-fin-du;</seg>
  28. </seglistitem>
  29. </segmentedlist>
  30. </sect2>
  31. <sect2 role="installation">
  32. <title>Installation of Ncurses</title>
  33. <para>Don't install a static library that is not handled by configure:</para>
  34. <screen><userinput remap="pre">sed -i '/LIBTOOL_INSTALL/d' c++/Makefile.in</userinput></screen>
  35. <para>Prepare Ncurses for compilation:</para>
  36. <screen><userinput remap="configure">./configure --prefix=/usr \
  37. --mandir=/usr/share/man \
  38. --with-shared \
  39. --without-debug \
  40. --without-normal \
  41. --enable-pc-files \
  42. --enable-widec</userinput></screen>
  43. <variablelist>
  44. <title>The meaning of the new configure options:</title>
  45. <varlistentry>
  46. <term><parameter>--enable-widec</parameter></term>
  47. <listitem>
  48. <para>This switch causes wide-character libraries (e.g., <filename
  49. class="libraryfile">libncursesw.so.&ncurses-version;</filename>)
  50. to be built instead of normal ones (e.g., <filename
  51. class="libraryfile">libncurses.so.&ncurses-version;</filename>).
  52. These wide-character libraries are usable in both multibyte and
  53. traditional 8-bit locales, while normal libraries work properly
  54. only in 8-bit locales. Wide-character and normal libraries are
  55. source-compatible, but not binary-compatible.</para>
  56. </listitem>
  57. </varlistentry>
  58. <varlistentry>
  59. <term><parameter>--enable-pc-files</parameter></term>
  60. <listitem>
  61. <para>This switch generates and installs .pc files for pkg-config.
  62. </para>
  63. </listitem>
  64. </varlistentry>
  65. <varlistentry>
  66. <term><parameter>--without-normal</parameter></term>
  67. <listitem>
  68. <para>This switch disables building and installing most static libraries.
  69. </para>
  70. </listitem>
  71. </varlistentry>
  72. </variablelist>
  73. <para>Compile the package:</para>
  74. <screen><userinput remap="make">make</userinput></screen>
  75. <para>This package has a test suite, but it can only be run after the
  76. package has been installed. The tests reside in the
  77. <filename class="directory">test/</filename> directory. See the
  78. <filename>README</filename> file in that directory for further details.
  79. </para>
  80. <para>Install the package:</para>
  81. <screen><userinput remap="install">make install</userinput></screen>
  82. <para>Move the shared libraries to the
  83. <filename class="directory">/lib</filename> directory, where they are
  84. expected to reside:</para>
  85. <screen><userinput remap="install">mv -v /usr/lib/libncursesw.so.6* /lib</userinput></screen>
  86. <para>Because the libraries have been moved, one symlink points to
  87. a non-existent file. Recreate it:</para>
  88. <screen><userinput remap="install">ln -sfv ../../lib/$(readlink /usr/lib/libncursesw.so) /usr/lib/libncursesw.so</userinput></screen>
  89. <para>Many applications still expect the linker to be able to find
  90. non-wide-character Ncurses libraries. Trick such applications into linking with
  91. wide-character libraries by means of symlinks and linker scripts:</para>
  92. <screen><userinput remap="install">for lib in ncurses form panel menu ; do
  93. rm -vf /usr/lib/lib${lib}.so
  94. echo "INPUT(-l${lib}w)" &gt; /usr/lib/lib${lib}.so
  95. ln -sfv ${lib}w.pc /usr/lib/pkgconfig/${lib}.pc
  96. done</userinput></screen>
  97. <para>Finally, make sure that old applications that look for
  98. <filename class="libraryfile">-lcurses</filename> at build time are still
  99. buildable:</para>
  100. <screen><userinput remap="install">rm -vf /usr/lib/libcursesw.so
  101. echo "INPUT(-lncursesw)" &gt; /usr/lib/libcursesw.so
  102. ln -sfv libncurses.so /usr/lib/libcurses.so</userinput></screen>
  103. <para>If desired, install the Ncurses documentation:</para>
  104. <screen><userinput remap="install">mkdir -v /usr/share/doc/ncurses-&ncurses-version;
  105. cp -v -R doc/* /usr/share/doc/ncurses-&ncurses-version;</userinput></screen>
  106. <note>
  107. <para>The instructions above don't create non-wide-character Ncurses
  108. libraries since no package installed by compiling from sources would link
  109. against them at runtime. However, the only known binary-only
  110. applications that link against non-wide-character Ncurses libraries
  111. require version 5. If you must have such libraries because of some binary-only
  112. application or to be compliant with LSB, build the package again with the
  113. following commands:</para>
  114. <screen role="nodump"><userinput>make distclean
  115. ./configure --prefix=/usr \
  116. --with-shared \
  117. --without-normal \
  118. --without-debug \
  119. --without-cxx-binding \
  120. --with-abi-version=5
  121. make sources libs
  122. cp -av lib/lib*.so.5* /usr/lib</userinput></screen>
  123. </note>
  124. </sect2>
  125. <!-- - - - - - - - - - -->
  126. <!-- Multilib - 32bit -->
  127. <!-- - - - - - - - - - -->
  128. <sect2 arch="ml_32,ml_all">
  129. <title>Building Ncurses - 32bit</title>
  130. <para>Clean previous build:</para>
  131. <screen><userinput remap="pre">make distclean</userinput></screen>
  132. <para>Prepare Ncurses for compilation:</para>
  133. <screen><userinput remap="configure">CC="gcc -m32" CXX="g++ -m32" \
  134. ./configure --prefix=/usr \
  135. --host=i686-pc-linux-gnu \
  136. --libdir=&usr-lib-m32; \
  137. --mandir=/usr/share/man \
  138. --with-shared \
  139. --without-debug \
  140. --without-normal \
  141. --enable-pc-files \
  142. --enable-widec \
  143. --with-pkg-config-libdir=&usr-lib-m32;/pkgconfig</userinput></screen>
  144. <para>Compile the package:</para>
  145. <screen><userinput remap="make">make</userinput></screen>
  146. <para>Install the package:</para>
  147. <screen><userinput remap="install">make DESTDIR=$PWD/DESTDIR install
  148. mkdir -p DESTDIR&usr-lib-m32;/pkgconfig
  149. for lib in ncurses form panel menu ; do
  150. rm -vf DESTDIR&usr-lib-m32;/lib${lib}.so
  151. echo "INPUT(-l${lib}w)" > DESTDIR&usr-lib-m32;/lib${lib}.so
  152. ln -svf ${lib}w.pc DESTDIR&usr-lib-m32;/pkgconfig/$lib.pc
  153. done
  154. rm -vf DESTDIR&usr-lib-m32;/libcursesw.so
  155. echo "INPUT(-lncursesw)" > DESTDIR&usr-lib-m32;/libcursesw.so
  156. ln -sfv libncurses.so DESTDIR&usr-lib-m32;/libcurses.so
  157. cp -Rv DESTDIR&usr-lib-m32;/* &usr-lib-m32;
  158. rm -rf DESTDIR</userinput></screen>
  159. </sect2><!-- m32 -->
  160. <!-- - - - - - - - - - -->
  161. <!-- Multilib - x32bit -->
  162. <!-- - - - - - - - - - -->
  163. <sect2 arch="ml_x32,ml_all">
  164. <title>Building Ncurses - x32bit</title>
  165. <para>Clean previous build:</para>
  166. <screen><userinput remap="pre">make distclean</userinput></screen>
  167. <para>Prepare Ncurses for compilation:</para>
  168. <screen><userinput remap="configure">CC="gcc -mx32" CXX="g++ -mx32" \
  169. ./configure --prefix=/usr \
  170. --host=x86_64-pc-linux-gnux32 \
  171. --libdir=&usr-lib-mx32; \
  172. --mandir=/usr/share/man \
  173. --with-shared \
  174. --without-debug \
  175. --without-normal \
  176. --enable-pc-files \
  177. --enable-widec \
  178. --with-pkg-config-libdir=&usr-lib-mx32;/pkgconfig</userinput></screen>
  179. <para>Compile the package:</para>
  180. <screen><userinput remap="make">make</userinput></screen>
  181. <para>Install the package:</para>
  182. <screen><userinput remap="install">make DESTDIR=$PWD/DESTDIR install
  183. mkdir -p DESTDIR&usr-lib-mx32;/pkgconfig
  184. for lib in ncurses form panel menu ; do
  185. rm -vf DESTDIR&usr-lib-mx32;/lib${lib}.so
  186. echo "INPUT(-l${lib}w)" > DESTDIR&usr-lib-mx32;/lib${lib}.so
  187. ln -svf ${lib}w.pc DESTDIR&usr-lib-mx32;/pkgconfig/$lib.pc
  188. done
  189. rm -vf DESTDIR&usr-lib-mx32;/libcursesw.so
  190. echo "INPUT(-lncursesw)" > DESTDIR&usr-lib-mx32;/libcursesw.so
  191. ln -sfv libncurses.so DESTDIR&usr-lib-mx32;/libcurses.so
  192. cp -Rv DESTDIR&usr-lib-mx32;/* &usr-lib-mx32;
  193. rm -rf DESTDIR</userinput></screen>
  194. </sect2><!-- mx32 -->
  195. <sect2 id="contents-ncurses" role="content">
  196. <title>Contents of Ncurses</title>
  197. <segmentedlist>
  198. <segtitle>Installed programs</segtitle>
  199. <segtitle>Installed libraries</segtitle>
  200. <segtitle>Installed directories</segtitle>
  201. <seglistitem>
  202. <seg>
  203. captoinfo (link to tic),
  204. clear,
  205. infocmp,
  206. infotocap (link to tic),
  207. ncursesw6-config,
  208. reset (link to tset),
  209. tabs,
  210. tic,
  211. toe,
  212. tput, and
  213. tset
  214. </seg>
  215. <seg>
  216. libcursesw.so (symlink and linker script to libncursesw.so),
  217. libformw.so,
  218. libmenuw.so,
  219. libncursesw.so,
  220. libncurses++w.a,
  221. libpanelw.so, and their non-wide-character counterparts without "w"
  222. in the library names.</seg>
  223. <seg>
  224. /usr/share/tabset,
  225. /usr/share/terminfo, and
  226. /usr/share/doc/ncurses-&ncurses-version;
  227. </seg>
  228. </seglistitem>
  229. </segmentedlist>
  230. <variablelist>
  231. <bridgehead renderas="sect3">Short Descriptions</bridgehead>
  232. <?dbfo list-presentation="list"?>
  233. <?dbhtml list-presentation="table"?>
  234. <varlistentry id="captoinfo">
  235. <term><command>captoinfo</command></term>
  236. <listitem>
  237. <para>Converts a termcap description into a terminfo description</para>
  238. <indexterm zone="ch-system-ncurses captoinfo">
  239. <primary sortas="b-captoinfo">captoinfo</primary>
  240. </indexterm>
  241. </listitem>
  242. </varlistentry>
  243. <varlistentry id="clear">
  244. <term><command>clear</command></term>
  245. <listitem>
  246. <para>Clears the screen, if possible</para>
  247. <indexterm zone="ch-system-ncurses clear">
  248. <primary sortas="b-clear">clear</primary>
  249. </indexterm>
  250. </listitem>
  251. </varlistentry>
  252. <varlistentry id="infocmp">
  253. <term><command>infocmp</command></term>
  254. <listitem>
  255. <para>Compares or prints out terminfo descriptions</para>
  256. <indexterm zone="ch-system-ncurses infocmp">
  257. <primary sortas="b-infocmp">infocmp</primary>
  258. </indexterm>
  259. </listitem>
  260. </varlistentry>
  261. <varlistentry id="infotocap">
  262. <term><command>infotocap</command></term>
  263. <listitem>
  264. <para>Converts a terminfo description into a termcap description</para>
  265. <indexterm zone="ch-system-ncurses infotocap">
  266. <primary sortas="b-infotocap">infotocap</primary>
  267. </indexterm>
  268. </listitem>
  269. </varlistentry>
  270. <varlistentry id="ncursesw6-config">
  271. <term><command>ncursesw6-config</command></term>
  272. <listitem>
  273. <para>Provides configuration information for ncurses</para>
  274. <indexterm zone="ch-system-ncurses ncursesw6-config">
  275. <primary sortas="b-ncursesw6-config">ncursesw6-config</primary>
  276. </indexterm>
  277. </listitem>
  278. </varlistentry>
  279. <varlistentry id="reset">
  280. <term><command>reset</command></term>
  281. <listitem>
  282. <para>Reinitializes a terminal to its default values</para>
  283. <indexterm zone="ch-system-ncurses reset">
  284. <primary sortas="b-reset">reset</primary>
  285. </indexterm>
  286. </listitem>
  287. </varlistentry>
  288. <varlistentry id="tabs">
  289. <term><command>tabs</command></term>
  290. <listitem>
  291. <para>Clears and sets tab stops on a terminal</para>
  292. <indexterm zone="ch-system-ncurses tabs">
  293. <primary sortas="b-tabs">tabs</primary>
  294. </indexterm>
  295. </listitem>
  296. </varlistentry>
  297. <varlistentry id="tic">
  298. <term><command>tic</command></term>
  299. <listitem>
  300. <para>The terminfo entry-description compiler that translates a
  301. terminfo file from source format into the binary format needed for the
  302. ncurses library routines [A terminfo file contains information on the
  303. capabilities of a certain terminal.]</para>
  304. <indexterm zone="ch-system-ncurses tic">
  305. <primary sortas="b-tic">tic</primary>
  306. </indexterm>
  307. </listitem>
  308. </varlistentry>
  309. <varlistentry id="toe">
  310. <term><command>toe</command></term>
  311. <listitem>
  312. <para>Lists all available terminal types, giving the primary name and
  313. description for each</para>
  314. <indexterm zone="ch-system-ncurses toe">
  315. <primary sortas="b-toe">toe</primary>
  316. </indexterm>
  317. </listitem>
  318. </varlistentry>
  319. <varlistentry id="tput">
  320. <term><command>tput</command></term>
  321. <listitem>
  322. <para>Makes the values of terminal-dependent capabilities available to
  323. the shell; it can also be used to reset or initialize a terminal or
  324. report its long name</para>
  325. <indexterm zone="ch-system-ncurses tput">
  326. <primary sortas="b-tput">tput</primary>
  327. </indexterm>
  328. </listitem>
  329. </varlistentry>
  330. <varlistentry id="tset">
  331. <term><command>tset</command></term>
  332. <listitem>
  333. <para>Can be used to initialize terminals</para>
  334. <indexterm zone="ch-system-ncurses tset">
  335. <primary sortas="b-tset">tset</primary>
  336. </indexterm>
  337. </listitem>
  338. </varlistentry>
  339. <varlistentry id="libcursesw">
  340. <term><filename class="libraryfile">libcursesw</filename></term>
  341. <listitem>
  342. <para>A link to <filename>libncursesw</filename></para>
  343. <indexterm zone="ch-system-ncurses libcursesw">
  344. <primary sortas="c-libcursesw">libcursesw</primary>
  345. </indexterm>
  346. </listitem>
  347. </varlistentry>
  348. <varlistentry id="libncursesw">
  349. <term><filename class="libraryfile">libncursesw</filename></term>
  350. <listitem>
  351. <para>Contains functions to display text in many complex ways on a
  352. terminal screen; a good example of the use of these functions is the
  353. menu displayed during the kernel's <command>make
  354. menuconfig</command></para>
  355. <indexterm zone="ch-system-ncurses libncursesw">
  356. <primary sortas="c-libncursesw">libncursesw</primary>
  357. </indexterm>
  358. </listitem>
  359. </varlistentry>
  360. <varlistentry id="libformw">
  361. <term><filename class="libraryfile">libformw</filename></term>
  362. <listitem>
  363. <para>Contains functions to implement forms</para>
  364. <indexterm zone="ch-system-ncurses libformw">
  365. <primary sortas="c-libformw">libformw</primary>
  366. </indexterm>
  367. </listitem>
  368. </varlistentry>
  369. <varlistentry id="libmenuw">
  370. <term><filename class="libraryfile">libmenuw</filename></term>
  371. <listitem>
  372. <para>Contains functions to implement menus</para>
  373. <indexterm zone="ch-system-ncurses libmenuw">
  374. <primary sortas="c-libmenuw">libmenuw</primary>
  375. </indexterm>
  376. </listitem>
  377. </varlistentry>
  378. <varlistentry id="libpanelw">
  379. <term><filename class="libraryfile">libpanelw</filename></term>
  380. <listitem>
  381. <para>Contains functions to implement panels</para>
  382. <indexterm zone="ch-system-ncurses libpanelw">
  383. <primary sortas="c-libpanelw">libpanelw</primary>
  384. </indexterm>
  385. </listitem>
  386. </varlistentry>
  387. </variablelist>
  388. </sect2>
  389. </sect1>