source: basicnet/textweb/lynx.xml@ 939cf0da

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 939cf0da was 939cf0da, checked in by Randy McMurchy <randy@…>, 19 years ago

Moved OpenSSL from Chapter 8 to Chapter 4

git-svn-id: svn://svn.linuxfromscratch.org/BLFS/trunk/BOOK@3268 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.2 MB">
10 <!ENTITY lynx-buildsize "23 MB">
11 <!ENTITY lynx-time "0.55 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-package"/> 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"/>,
51<xref linkend="slang"/>, <ulink
52url="http://ftp.ibiblio.org/pub/linux/utils/compress/ncompress-4.2.4.tar.Z">ncompress</ulink>
53and <ulink url="http://www.gnu.org/software/sharutils/">sharutils</ulink>
54</para></sect4>
55</sect3>
56
57</sect2>
58
59<sect2>
60<title>Installation of <application>Lynx</application></title>
61
62<para>Install <application>Lynx</application> by running the following commands:
63</para>
64
65<screen><userinput><command>./configure --prefix=/usr --libdir=/etc \
66 --with-zlib --with-bzlib &amp;&amp;
67make &amp;&amp;
68make install &amp;&amp;
69make docdir=/usr/share/doc/lynx-&lynx-version;/lynx_doc \
70 helpdir=/usr/share/doc/lynx-&lynx-version;/lynx_help install-doc &amp;&amp;
71make docdir=/usr/share/doc/lynx-&lynx-version;/lynx_doc \
72 helpdir=/usr/share/doc/lynx-&lynx-version;/lynx_help install-help &amp;&amp;
73chgrp -R root /usr/share/doc/lynx-&lynx-version;/lynx_doc</command></userinput></screen>
74
75</sect2>
76
77<sect2>
78<title>Command explanations</title>
79
80<para><parameter>--libdir=/etc</parameter>: For some reason, the
81<command>configure</command> and <command>make</command> routine for
82<application>Lynx</application> uses libdir as the prefix for the
83configuration file. This is set to <filename class="directory">/etc</filename>
84so that the system wide configuration file is
85<filename>/etc/lynx.cfg</filename>.</para>
86
87<para><option>--with-zlib</option>: This enables support for
88linking <application>libz</application> into
89<application>Lynx</application>.</para>
90
91<para><option>--with-bzlib</option>: This enables support for
92linking <application>libbz2</application> into
93<application>Lynx</application>.</para>
94
95<para><parameter>docdir=... helpdir=...</parameter>: These
96variables are set to avoid getting the help and documentation files installed
97under <filename class="directory">/etc</filename>.</para>
98
99<para><option>--with-ssl</option>: This enables support for
100linking <acronym>SSL</acronym> into <application>Lynx</application>.</para>
101
102<para><option>--with-gnutls</option>: This enables support for
103linking <application>Gnu<acronym>TLS</acronym></application> into
104<application>Lynx</application>.</para>
105
106<para><command>chgrp -R root /usr/share/doc/lynx/2.8.5/lynx_doc</command>:
107This command corrects the improper group ownership of installed documentation
108files caused if <application>Lynx</application> is built by any user other
109than root.</para>
110
111</sect2>
112
113<sect2>
114<title>Configuring <application>Lynx</application></title>
115
116<sect3><title>Config files</title>
117<para><filename>/etc/lynx.cfg</filename></para>
118</sect3>
119
120<sect3><title>Configuration Information</title>
121
122<para>Various settings such as proxies can be set in the system-wide
123<filename>lynx.cfg</filename> file found in
124<filename class="directory">/etc</filename>.</para>
125</sect3>
126
127</sect2>
128
129<sect2>
130<title>Contents</title>
131
132<para>The <application>Lynx</application> package contains
133<command>lynx</command>.</para>
134
135</sect2>
136
137<sect2><title>Description</title>
138
139<sect3><title>lynx</title>
140<para><command>lynx</command> is a general purpose, text-based, distributed
141information browser for the World Wide Web.</para></sect3>
142
143</sect2>
144
145</sect1>
Note: See TracBrowser for help on using the repository browser.