source: networking/textweb/w3m.xml@ bd5c017

10.0 10.1 11.0 11.1 11.2 11.3 12.0 12.1 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 bd5c017 was bd5c017, checked in by Andrew Benton <andy@…>, 12 years ago

w3m tweak

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

  • Property mode set to 100644
File size: 6.0 KB
Line 
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 <!ENTITY w3m-download-http "&sourceforge-repo;/w3m/w3m-&w3m-version;.tar.gz">
8 <!ENTITY w3m-download-ftp " ">
9 <!ENTITY w3m-md5sum "1b845a983a50b8dec0169ac48479eacc">
10 <!ENTITY w3m-size "2.1 MB">
11 <!ENTITY w3m-buildsize "26 MB">
12 <!ENTITY w3m-time "0.3 SBU">
13]>
14
15<sect1 id="w3m" xreflabel="w3m-&w3m-version;">
16 <?dbhtml filename="w3m.html"?>
17
18 <sect1info>
19 <othername>$LastChangedBy$</othername>
20 <date>$Date$</date>
21 </sect1info>
22
23 <title>W3m-&w3m-version;</title>
24
25 <indexterm zone="w3m">
26 <primary sortas="a-W3m">W3m</primary>
27 </indexterm>
28
29 <sect2 role="package">
30 <title>Introduction to W3m</title>
31
32 <para><application>w3m</application> is primarily a pager but it can
33 also be used as a text-mode WWW browser.</para>
34
35 &lfs70_built;
36
37 <bridgehead renderas="sect3">Package Information</bridgehead>
38 <itemizedlist spacing="compact">
39 <listitem>
40 <para>Download (HTTP): <ulink url="&w3m-download-http;"/></para>
41 </listitem>
42 <listitem>
43 <para>Download (FTP): <ulink url="&w3m-download-ftp;"/></para>
44 </listitem>
45 <listitem>
46 <para>Download MD5 sum: &w3m-md5sum;</para>
47 </listitem>
48 <listitem>
49 <para>Download size: &w3m-size;</para>
50 </listitem>
51 <listitem>
52 <para>Estimated disk space required: &w3m-buildsize;</para>
53 </listitem>
54 <listitem>
55 <para>Estimated build time: &w3m-time;</para>
56 </listitem>
57 </itemizedlist>
58
59 <bridgehead renderas="sect3">W3m Dependencies</bridgehead>
60
61 <bridgehead renderas="sect4">Required</bridgehead>
62 <para role="required"><xref linkend="gc"/></para>
63
64 <bridgehead renderas="sect4">Optional</bridgehead>
65 <para role="optional"><xref linkend="gpm"/>,
66 <xref linkend="openssl"/>,
67 <xref linkend="imlib2"/>,
68 <xref linkend="gtk2"/>,
69 <ulink url="http://ftp.gnome.org/pub/gnome/sources/imlib/1.9/">Imlib</ulink>
70 (not recommended: obsolete, abandoned upstream,
71 <ulink url="http://bugs.debian.org/448360">buggy</ulink>, and gives no
72 additional functionality as compared to other image loading libraries),
73 <xref linkend="gdk-pixbuf"/>,
74 <xref linkend="compface"/>,
75 <ulink url="http://packages.debian.org/unstable/text/nkf">nkf</ulink>,
76 a Mail User Agent and an External Browser</para>
77
78 <para condition="html" role="usernotes">User Notes:
79 <ulink url="&blfs-wiki;/W3M"/></para>
80 </sect2>
81
82 <sect2 role="installation">
83 <title>Installation of W3m</title>
84
85 <para>Install <application>w3m</application> by running the following
86 commands:</para>
87
88<screen><userinput>sed -i 's/file_handle/file_foo/' istream.{c,h} &amp;&amp;
89sed -i 's#gdk-pixbuf-xlib-2.0#&amp; x11#' configure &amp;&amp;
90./configure --prefix=/usr --sysconfdir=/etc &amp;&amp;
91make</userinput></screen>
92
93 <para>This package does not come with a test suite.</para>
94
95 <para>Now, as the <systemitem class="username">root</systemitem> user:</para>
96
97<screen role="root"><userinput>make install &amp;&amp;
98install -v -m644 -D doc/keymap.default /etc/w3m/keymap &amp;&amp;
99install -v -m644 doc/menu.default /etc/w3m/menu &amp;&amp;
100install -v -m755 -d /usr/share/doc/w3m-&w3m-version; &amp;&amp;
101install -v -m644 doc/{HISTORY,READ*,keymap.*,menu.*,*.html} \
102 /usr/share/doc/w3m-&w3m-version;</userinput></screen>
103 </sect2>
104
105 <sect2 role="commands">
106 <title>Command Explanations</title>
107
108 <para><command>sed -i 's/file_handle/file_foo/' istream.{c,h}</command>:
109 This sed renames the file_handle function to avoid a clash with a glibc
110 function that has the same name, defined in
111 /usr/include/bits/fcntl.h.</para>
112
113 <para><command>sed -i 's#gdk-pixbuf-xlib-2.0#&amp; x11#'
114 configure</command>: This sed fixes compiling <application>w3m</application>
115 using <xref linkend="gtk2"/> as its image library. It has no impact if
116 <xref linkend="gtk2"/> is not installed.</para>
117
118 <para><option>--sysconfdir=/etc</option>: This option puts the configuration
119 files in /etc.</para>
120 </sect2>
121
122 <sect2 role="configuration">
123 <title>Configuring W3m</title>
124
125 <sect3 id="w3m-config">
126 <title>Config Files</title>
127
128 <para><filename>/etc/w3m/*</filename> and
129 <filename>~/.w3m/*</filename></para>
130
131 <indexterm zone="w3m w3m-config">
132 <primary sortas="e-etc-w3m/*">/etc/w3m/*</primary>
133 </indexterm>
134
135 <indexterm zone="w3m w3m-config">
136 <primary sortas="e-AA.w3m/*">~/.w3m/*</primary>
137 </indexterm>
138 </sect3>
139 </sect2>
140
141 <sect2 role="content">
142 <title>Contents</title>
143
144 <segmentedlist>
145 <segtitle>Installed Programs</segtitle>
146 <segtitle>Installed Directories</segtitle>
147
148 <seglistitem>
149 <seg>w3m and w3mman</seg>
150 <seg>/usr/libexec/w3m, /usr/share/w3m and
151 usr/share/doc/w3m-&w3m-version;</seg>
152 </seglistitem>
153 </segmentedlist>
154
155 <variablelist>
156 <bridgehead renderas="sect3">Short Descriptions</bridgehead>
157 <?dbfo list-presentation="list"?>
158 <?dbhtml list-presentation="table"?>
159
160 <varlistentry id="w3m-prog">
161 <term><command>w3m</command></term>
162 <listitem>
163 <para>is a text based web browser and pager.</para>
164 <indexterm zone="w3m w3m-prog">
165 <primary sortas="b-w3m">w3m</primary>
166 </indexterm>
167 </listitem>
168 </varlistentry>
169
170 <varlistentry id="w3mman">
171 <!-- Don't remove the extra space, it prevent a FOP warning. -->
172 <term><command>w3mman</command> </term>
173 <listitem>
174 <para>is an interface to the on-line reference manuals in
175 <command>w3m</command>.</para>
176 <indexterm zone="w3m w3mman">
177 <primary sortas="b-w3mman">w3mman</primary>
178 </indexterm>
179 </listitem>
180 </varlistentry>
181 </variablelist>
182 </sect2>
183</sect1>
Note: See TracBrowser for help on using the repository browser.