source: basicnet/textweb/lynx.xml@ 50b8d8b

10.0 10.1 11.0 11.1 11.2 11.3 12.0 12.1 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 50b8d8b was 50b8d8b, checked in by Randy McMurchy <randy@…>, 19 years ago

Removed spaces from blank lines and excess spaces from the end of XML data

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

  • Property mode set to 100644
File size: 6.4 KB
Line 
1<?xml version="1.0" encoding="ISO-8859-1"?>
2<!DOCTYPE sect1 PUBLIC "-//OASIS//DTD DocBook XML V4.4//EN"
3 "http://www.oasis-open.org/docbook/xml/4.4/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-md5sum "d1e5134e5d175f913c16cb6768bc30eb">
10 <!ENTITY lynx-size "2.2 MB">
11 <!ENTITY lynx-buildsize "25 MB">
12 <!ENTITY lynx-time "0.48 SBU">
13]>
14
15<sect1 id="lynx" xreflabel="Lynx-&lynx-version;">
16 <?dbhtml filename="lynx.html"?>
17
18 <sect1info>
19 <othername>$LastChangedBy$</othername>
20 <date>$Date$</date>
21 </sect1info>
22
23 <title>Lynx-&lynx-version;</title>
24
25 <indexterm zone="lynx">
26 <primary sortas="a-Lynx">Lynx</primary>
27 </indexterm>
28
29 <sect2 role="package">
30 <title>Introduction to Lynx</title>
31
32 <para><application>Lynx</application> is a text based web browser.</para>
33
34 <bridgehead renderas="sect3">Package Information</bridgehead>
35 <itemizedlist spacing="compact">
36 <listitem>
37 <para>Download (HTTP): <ulink url="&lynx-download-http;"/></para>
38 </listitem>
39 <listitem>
40 <para>Download (FTP): <ulink url="&lynx-download-ftp;"/></para>
41 </listitem>
42 <listitem>
43 <para>Download MD5 sum: &lynx-md5sum;</para>
44 </listitem>
45 <listitem>
46 <para>Download size: &lynx-size;</para>
47 </listitem>
48 <listitem>
49 <para>Estimated disk space required: &lynx-buildsize;</para>
50 </listitem>
51 <listitem>
52 <para>Estimated build time: &lynx-time;</para>
53 </listitem>
54 </itemizedlist>
55
56 <bridgehead renderas="sect3">Lynx Dependencies</bridgehead>
57
58 <bridgehead renderas="sect4">Optional</bridgehead>
59 <para><xref linkend="openssl"/> or
60 <ulink url="http://www.gnu.org/software/gnutls/">GnuTLS</ulink> (which
61 needs <ulink
62 url="ftp://ftp.gnupg.org/gcrypt/alpha/libgpg-error/">libgpg-error</ulink>
63 then <ulink url="ftp://ftp.gnupg.org/gcrypt/libgcrypt/">libgcrypt</ulink>),
64 <ulink url="../server/mail.html">MTA</ulink>,
65 <xref linkend="zip"/>, <xref linkend="unzip"/>,
66 <xref linkend="slang"/>, <ulink
67 url="http://ftp.ibiblio.org/pub/linux/utils/compress/ncompress-4.2.4.tar.Z">
68 ncompress</ulink> and
69 <ulink url="http://www.gnu.org/software/sharutils/">sharutils</ulink></para>
70
71 </sect2>
72
73 <sect2 role="installation">
74 <title>Installation of Lynx</title>
75
76 <para>Install <application>Lynx</application> by running the following
77 commands:</para>
78
79<screen><userinput>./configure --prefix=/usr --libdir=/etc \
80 --with-zlib --with-bzlib &amp;&amp;
81make</userinput></screen>
82
83 <para>Now, as the <systemitem class="username">root</systemitem> user:</para>
84
85<screen role='root'><userinput>make install &amp;&amp;
86make docdir=/usr/share/doc/lynx-&lynx-version;/lynx_doc \
87 helpdir=/usr/share/doc/lynx-&lynx-version;/lynx_help install-doc &amp;&amp;
88make docdir=/usr/share/doc/lynx-&lynx-version;/lynx_doc \
89 helpdir=/usr/share/doc/lynx-&lynx-version;/lynx_help install-help &amp;&amp;
90chgrp -v -R root /usr/share/doc/lynx-&lynx-version;/lynx_doc</userinput></screen>
91
92 </sect2>
93
94 <sect2 role="commands">
95 <title>Command Explanations</title>
96
97 <para><parameter>--libdir=/etc</parameter>: For some reason, the
98 <command>configure</command> and <command>make</command> routine for
99 <application>Lynx</application> uses <option>libdir</option> as the prefix for the
100 configuration file. This is set to <filename class="directory">/etc</filename>
101 so that the system wide configuration file is
102 <filename>/etc/lynx.cfg</filename>.</para>
103
104 <para><parameter>--with-zlib</parameter>: This enables support for
105 linking <filename class="libraryfile">libz</filename> into
106 <application>Lynx</application>.</para>
107
108 <para><parameter>--with-bzlib</parameter>: This enables support for
109 linking <filename class="libraryfile">libbz2</filename> into
110 <application>Lynx</application>.</para>
111
112 <para><parameter>docdir=... helpdir=...</parameter>: These
113 variables are set to avoid getting the help and documentation files installed
114 under <filename class="directory">/etc</filename>.</para>
115
116 <para><option>--with-ssl</option>: This enables support for
117 linking SSLl into <application>Lynx</application>.</para>
118
119 <para><option>--with-gnutls</option>: This enables support for
120 linking <application>GnuTLS</application> into
121 <application>Lynx</application>.</para>
122
123 <para><command>chgrp -v -R root /usr/share/doc/lynx/2.8.5/lynx_doc</command>:
124 This command corrects the improper group ownership of installed documentation
125 files caused if <application>Lynx</application> is built by any user other
126 than <systemitem class="username">root</systemitem>.</para>
127
128 </sect2>
129
130 <sect2 role="configuration">
131 <title>Configuring Lynx</title>
132
133 <sect3 id="lynx-config">
134 <title>Config Files</title>
135
136 <para><filename>/etc/lynx.cfg</filename></para>
137
138 <indexterm zone="lynx lynx-config">
139 <primary sortas="e-etc-lynx.cfg">/etc/lynx.cfg</primary>
140 </indexterm>
141
142 </sect3>
143
144 <sect3>
145 <title>Configuration Information</title>
146
147 <para>Various settings such as proxies can be set in the system-wide
148 <filename>lynx.cfg</filename> file found in
149 <filename class="directory">/etc</filename>.</para>
150
151 </sect3>
152
153 </sect2>
154
155 <sect2 role="content">
156 <title>Contents</title>
157
158 <segmentedlist>
159 <segtitle>Installed Program</segtitle>
160 <segtitle>Installed Libraries</segtitle>
161 <segtitle>Installed Directory</segtitle>
162
163 <seglistitem>
164 <seg>lynx</seg>
165 <seg>None</seg>
166 <seg>/usr/share/doc/lynx</seg>
167 </seglistitem>
168 </segmentedlist>
169
170 <variablelist>
171 <bridgehead renderas="sect3">Short Descriptions</bridgehead>
172 <?dbfo list-presentation="list"?>
173 <?dbhtml list-presentation="table"?>
174
175 <varlistentry id="lynx-prog">
176 <term><command>lynx</command></term>
177 <listitem>
178 <para>is a general purpose, text-based, distributed information
179 browser for the World Wide Web.</para>
180 <indexterm zone="lynx lynx-prog">
181 <primary sortas="b-lynx">lynx</primary>
182 </indexterm>
183 </listitem>
184 </varlistentry>
185
186 </variablelist>
187
188 </sect2>
189
190</sect1>
Note: See TracBrowser for help on using the repository browser.