source: basicnet/textweb/lynx.xml@ 658b9721

10.0 10.1 11.0 11.1 11.2 11.3 12.0 12.1 6.0 6.1 6.2 6.2.0 6.2.0-rc1 6.2.0-rc2 6.3 6.3-rc1 6.3-rc2 6.3-rc3 7.10 7.4 7.5 7.6 7.6-blfs 7.6-systemd 7.7 7.8 7.9 8.0 8.1 8.2 8.3 8.4 9.0 9.1 basic bdubbs/svn elogind gnome kde5-13430 kde5-14269 kde5-14686 kea ken/TL2024 ken/inkscape-core-mods ken/tuningfonts krejzi/svn lazarus lxqt nosym perl-modules plabs/newcss plabs/python-mods python3.11 qt5new rahul/power-profiles-daemon renodr/vulkan-addition systemd-11177 systemd-13485 trunk upgradedb xry111/intltool xry111/llvm18 xry111/soup3 xry111/test-20220226 xry111/xf86-video-removal
Last change on this file since 658b9721 was 7ac57d9, checked in by Igor Živković <igor@…>, 20 years ago

Added ncompress and sharutils to Lynx's dependencies.

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

  • Property mode set to 100644
File size: 5.0 KB
Line 
1<?xml version="1.0" encoding="ISO-8859-1"?>
2<!DOCTYPE sect1 PUBLIC "-//OASIS//DTD DocBook XML V4.3//EN"
3 "http://www.oasis-open.org/docbook/xml/4.3/docbookx.dtd" [
4 <!ENTITY % general-entities SYSTEM "../../general.ent">
5 %general-entities;
6
7 <!ENTITY lynx-download-http "http://lynx.isc.org/release/lynx&lynx-version;.tar.bz2">
8 <!ENTITY lynx-download-ftp "ftp://lynx.isc.org/lynx&lynx-version;/lynx&lynx-version;.tar.bz2">
9 <!ENTITY lynx-size "2.1 MB">
10 <!ENTITY lynx-buildsize "21 MB">
11 <!ENTITY lynx-time "0.45 SBU">
12]>
13
14<sect1 id="lynx" xreflabel="Lynx-&lynx-version;">
15<sect1info>
16<othername>$LastChangedBy$</othername>
17<date>$Date$</date>
18</sect1info>
19<?dbhtml filename="lynx.html"?>
20<title>Lynx-&lynx-version;</title>
21
22<sect2>
23<title>Introduction to <application>Lynx</application></title>
24
25<para><application>Lynx</application> is a text based web browser.</para>
26
27<sect3><title>Package information</title>
28<itemizedlist spacing='compact'>
29<listitem><para>Download (HTTP): <ulink
30url="&lynx-download-http;"/></para></listitem>
31<listitem><para>Download (FTP): <ulink
32url="&lynx-download-ftp;"/></para></listitem>
33<listitem><para>Download size: &lynx-size;</para></listitem>
34<listitem><para>Estimated Disk space required:
35&lynx-buildsize;</para></listitem>
36<listitem><para>Estimated build time:
37&lynx-time;</para></listitem></itemizedlist>
38</sect3>
39
40<sect3><title><application>Lynx</application> dependencies</title>
41<sect4><title>Optional</title>
42<para><xref linkend="openssl"/> or
43<ulink url="http://www.gnu.org/software/gnutls/">GnuTLS</ulink> (which
44needs <ulink
45url="ftp://ftp.gnupg.org/gcrypt/alpha/libgpg-error/">libgpg-error</ulink>,
46<ulink url="ftp://ftp.gnupg.org/gcrypt/libgcrypt/">libgcrypt</ulink> and
47<ulink
48url="ftp://ftp.gnupg.org/gcrypt/alpha/gnutls/opencdk/">opencdk</ulink>,
49in that order), <ulink url="../server/mail.html">MTA</ulink>,
50<xref linkend="zip"/>, <xref linkend="unzip"/>, <ulink
51url="http://ftp.ibiblio.org/pub/linux/utils/compress/ncompress-4.2.4.tar.Z">ncompress</ulink>
52and <ulink url="http://www.gnu.org/software/sharutils/">sharutils</ulink>
53</para></sect4>
54</sect3>
55
56</sect2>
57
58<sect2>
59<title>Installation of <application>Lynx</application></title>
60
61<para>Install <application>Lynx</application> by running the following commands:
62</para>
63
64<screen><userinput><command>./configure --prefix=/usr --libdir=/etc \
65 --with-zlib --with-bzlib &amp;&amp;
66make &amp;&amp;
67make install &amp;&amp;
68make docdir=/usr/share/doc/lynx-&lynx-version;/lynx_doc \
69 helpdir=/usr/share/doc/lynx-&lynx-version;/lynx_help install-doc &amp;&amp;
70make docdir=/usr/share/doc/lynx-&lynx-version;/lynx_doc \
71 helpdir=/usr/share/doc/lynx-&lynx-version;/lynx_help install-help &amp;&amp;
72chgrp -R root /usr/share/doc/lynx-&lynx-version;/lynx_doc</command></userinput></screen>
73
74</sect2>
75
76<sect2>
77<title>Command explanations</title>
78
79<para><parameter>--libdir=/etc</parameter>: For some reason, the
80<command>configure</command> and <command>make</command> routine for
81<application>Lynx</application> uses libdir as the prefix for the
82configuration file. This is set to <filename class="directory">/etc</filename>
83so that the system wide configuration file is
84<filename>/etc/lynx.cfg</filename>.</para>
85
86<para><option>--with-zlib</option>: This enables support for
87linking <application>libz</application> into
88<application>Lynx</application>.</para>
89
90<para><option>--with-bzlib</option>: This enables support for
91linking <application>libbz2</application> into
92<application>Lynx</application>.</para>
93
94<para><parameter>docdir=... helpdir=...</parameter>: These
95variables are set to avoid getting the help and documentation files installed
96under <filename class="directory">/etc</filename>.</para>
97
98<para><option>--with-ssl</option>: This enables support for
99linking <acronym>SSL</acronym> into <application>Lynx</application>.</para>
100
101<para><option>--with-gnutls</option>: This enables support for
102linking <application>Gnu<acronym>TLS</acronym></application> into
103<application>Lynx</application>.</para>
104
105<para><command>chgrp -R root /usr/share/doc/lynx/2.8.5/lynx_doc</command>:
106This command corrects the improper group ownership of installed documentation
107files caused if <application>Lynx</application> is built by any user other
108than root.</para>
109
110</sect2>
111
112<sect2>
113<title>Configuring <application>Lynx</application></title>
114
115<sect3><title>Config files</title>
116<para><filename>/etc/lynx.cfg</filename></para>
117</sect3>
118
119<sect3><title>Configuration Information</title>
120
121<para>Various settings such as proxies can be set in the system-wide
122<filename>lynx.cfg</filename> file found in
123<filename class="directory">/etc</filename>.</para>
124</sect3>
125
126</sect2>
127
128<sect2>
129<title>Contents</title>
130
131<para>The <application>Lynx</application> package contains
132<command>lynx</command>.</para>
133
134</sect2>
135
136<sect2><title>Description</title>
137
138<sect3><title>lynx</title>
139<para><command>lynx</command> is a general purpose, text-based, distributed
140information browser for the World Wide Web.</para></sect3>
141
142</sect2>
143
144</sect1>
Note: See TracBrowser for help on using the repository browser.