aboutsummaryrefslogtreecommitdiffstats
path: root/chapter06/ncurses.xml
diff options
context:
space:
mode:
authorAlex Gronenwoud <alex@linuxfromscratch.org>2003-11-01 22:31:50 +0000
committerAlex Gronenwoud <alex@linuxfromscratch.org>2003-11-01 22:31:50 +0000
commit73aedd1d35747ff2fad4ddf514dca810721a612a (patch)
treed05f8b503f210d7248c2b2abea9e5528fc04d90a /chapter06/ncurses.xml
parent0b400add2ba87352e955326bcb931e53864cc2ae (diff)
Merging caption and installation sections for all packages in chapters 5 and 6.
git-svn-id: http://svn.linuxfromscratch.org/LFS/trunk/BOOK@3052 4aa44e1e-78dd-0310-a6d2-fbcd4c07a689
Diffstat (limited to 'chapter06/ncurses.xml')
-rw-r--r--chapter06/ncurses.xml49
1 files changed, 48 insertions, 1 deletions
diff --git a/chapter06/ncurses.xml b/chapter06/ncurses.xml
index aa97c4867..8cc9008d1 100644
--- a/chapter06/ncurses.xml
+++ b/chapter06/ncurses.xml
@@ -7,7 +7,54 @@ Estimated required disk space: &ncurses-compsize;</screen>
&aa-ncurses-shortdesc;
&aa-ncurses-dep;
-&c6-ncurses-inst;
+
+<sect2><title>&nbsp;</title><para>&nbsp;</para></sect2>
+
+<sect2>
+<title>Installation of Ncurses</title>
+
+<para>First fix two tiny bugs:</para>
+
+<screen><userinput>patch -Np1 -i ../&ncurses-etip-patch;
+patch -Np1 -i ../&ncurses-vsscanf-patch;</userinput></screen>
+
+<para>The first patch corrects the <filename>etip.h</filename> header file, and
+the second patch prevents some compiler warnings on the use of deprecated
+headers.</para>
+
+<para>Now prepare Ncurses for compilation:</para>
+
+<screen><userinput>./configure --prefix=/usr --with-shared \
+&nbsp;&nbsp;&nbsp;&nbsp;--without-debug</userinput></screen>
+
+<para>Compile the package:</para>
+
+<screen><userinput>make</userinput></screen>
+
+<para>Install the package:</para>
+
+<screen><userinput>make install</userinput></screen>
+
+<para>Give the Ncurses libraries execute permissions:</para>
+
+<screen><userinput>chmod 755 /usr/lib/*.&ncurses-version;</userinput></screen>
+
+<para>And fix a library that shouldn't be executable:</para>
+
+<screen><userinput>chmod 644 /usr/lib/libncurses++.a</userinput></screen>
+
+<para>Move the libraries to the <filename>/lib</filename> directory,
+where they're expected to reside:</para>
+
+<screen><userinput>mv /usr/lib/libncurses.so.5* /lib</userinput></screen>
+
+<para>Since the libraries have been moved to
+<filename>/lib</filename>, a few symlinks are currently pointing
+towards non-existing files. Recreate those symlinks:</para>
+
+<screen><userinput>ln -sf ../../lib/libncurses.so.5 /usr/lib/libncurses.so
+ln -sf libncurses.so /usr/lib/libcurses.so</userinput></screen>
+</sect2>
</sect1>