source: xsoft/other/feh.xml@ 1f5d497

10.0 10.1 11.0 11.1 11.2 11.3 12.0 12.1 7.10 7.7 7.8 7.9 8.0 8.1 8.2 8.3 8.4 9.0 9.1 basic bdubbs/svn elogind kea ken/TL2024 ken/inkscape-core-mods ken/tuningfonts lazarus lxqt nosym perl-modules plabs/newcss plabs/python-mods python3.11 qt5new rahul/power-profiles-daemon renodr/vulkan-addition trunk upgradedb xry111/intltool xry111/llvm18 xry111/soup3 xry111/test-20220226 xry111/xf86-video-removal
Last change on this file since 1f5d497 was 1f5d497, checked in by Igor Živković <igor@…>, 9 years ago

fix feh build

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

  • Property mode set to 100644
File size: 5.6 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 feh-download-http "http://feh.finalrewind.org/feh-&feh-version;.tar.bz2">
8 <!ENTITY feh-download-ftp " ">
9 <!ENTITY feh-md5sum "da59074c2e7b68fb08f555e366f827a9">
10 <!ENTITY feh-size "2.0 MB">
11 <!ENTITY feh-buildsize "6.5 MB">
12 <!ENTITY feh-time "0.1 SBU">
13]>
14
15<sect1 id="feh" xreflabel="feh-&feh-version;">
16 <?dbhtml filename="feh.html"?>
17
18 <sect1info>
19 <othername>$LastChangedBy$</othername>
20 <date>$Date$</date>
21 </sect1info>
22
23 <title>feh-&feh-version;</title>
24
25 <indexterm zone="feh">
26 <primary sortas="a-feh">feh</primary>
27 </indexterm>
28
29 <sect2 role="package">
30 <title>Introduction to feh</title>
31
32 <para>
33 <application>feh</application> is a fast, lightweight image viewer which
34 uses Imlib2. It is commandline-driven and supports multiple images
35 through slideshows, thumbnail browsing or multiple windows, and montages
36 or index prints (using TrueType fonts to display file info). Advanced
37 features include fast dynamic zooming, progressive loading, loading via
38 HTTP (with reload support for watching webcams), recursive file opening
39 (slideshow of a directory hierarchy), and mouse wheel/keyboard control.
40 </para>
41
42 &lfs76_checked;
43
44 <bridgehead renderas="sect3">Package Information</bridgehead>
45 <itemizedlist spacing="compact">
46 <listitem>
47 <para>
48 Download (HTTP): <ulink url="&feh-download-http;"/>
49 </para>
50 </listitem>
51 <listitem>
52 <para>
53 Download (FTP): <ulink url="&feh-download-ftp;"/>
54 </para>
55 </listitem>
56 <listitem>
57 <para>
58 Download MD5 sum: &feh-md5sum;
59 </para>
60 </listitem>
61 <listitem>
62 <para>
63 Download size: &feh-size;
64 </para>
65 </listitem>
66 <listitem>
67 <para>
68 Estimated disk space required: &feh-buildsize;
69 </para>
70 </listitem>
71 <listitem>
72 <para>
73 Estimated build time: &feh-time;
74 </para>
75 </listitem>
76 </itemizedlist>
77
78 <bridgehead renderas="sect3">feh Dependencies</bridgehead>
79
80 <bridgehead renderas="sect4">Required</bridgehead>
81 <para role="required">
82 <xref linkend="libpng"/> and
83 <xref linkend="imlib2"/>
84 </para>
85
86 <bridgehead renderas="sect4">Recommended</bridgehead>
87 <para role="recommended">
88 <xref linkend="curl"/>
89 </para>
90
91 <bridgehead renderas="sect4">Optional</bridgehead>
92 <para role="optional">
93 <xref linkend="libexif"/>
94 </para>
95
96 <bridgehead renderas="sect4">Optional (runtime)</bridgehead>
97 <para role="optional">
98 <xref linkend="libjpeg"/> (for lossless image rotation), and
99 <xref linkend="imagemagick"/> (to load unsupported formats)
100 </para>
101
102 <bridgehead renderas="sect4">Optional (test suite)</bridgehead>
103 <para role="optional">
104 <ulink url="http://mdocml.bsd.lv/snapshots/">mdocml</ulink>
105 (warning: this package will overwrite many files and programs of
106 <application>Man-DB</application> - installed in LFS - and should not be
107 installed, unless you know how to modify file and binary names that it
108 installs), and
109 <ulink url="https://cpan.metacpan.org/authors/id/D/DA/DANBOO/">Test::Command</ulink>
110 </para>
111
112 <para condition="html" role="usernotes">
113 User Notes: <ulink url="&blfs-wiki;/feh"/>
114 </para>
115
116 </sect2>
117
118 <sect2 role="installation">
119 <title>Installation of feh</title>
120
121 <para>
122 Install <application>feh</application> by running the following commands:
123 </para>
124
125<screen><userinput>sed -i "s:doc/feh:&amp;-&feh-version;:" config.mk &amp;&amp;
126make PREFIX=/usr</userinput></screen>
127
128 <para>
129 To test the results, issue: <command>make test</command>.
130 </para>
131
132 <para>
133 Now, as the <systemitem class="username">root</systemitem> user:
134 </para>
135
136<screen role="root"><userinput>make PREFIX=/usr install</userinput></screen>
137
138 </sect2>
139
140 <sect2 role="commands">
141 <title>Command Explanations</title>
142
143 <para>
144 <command>sed -i "s:doc/feh:&amp;-&feh-version;:" config.mk</command>: This
145 sed fixes the doc directory to a versioned one, as used in BLFS.
146 </para>
147
148 <para>
149 <option>curl=0</option>: Use this make flag if you don't have cURL
150 package installed.
151 </para>
152
153 <para>
154 <option>exif=1</option>: This make flag enables builtin Exif tag display
155 support.
156 </para>
157
158 </sect2>
159
160 <sect2 role="content">
161 <title>Contents</title>
162
163 <segmentedlist>
164 <segtitle>Installed Program</segtitle>
165 <segtitle>Installed Libraries</segtitle>
166 <segtitle>Installed Directories</segtitle>
167
168 <seglistitem>
169 <seg>
170 feh
171 </seg>
172 <seg>
173 None
174 </seg>
175 <seg>
176 /usr/share/doc/feh-&feh-version; and
177 /usr/share/feh
178 </seg>
179 </seglistitem>
180 </segmentedlist>
181
182 <variablelist>
183 <bridgehead renderas="sect3">Short Descriptions</bridgehead>
184 <?dbfo list-presentation="list"?>
185 <?dbhtml list-presentation="table"?>
186
187 <varlistentry id="feh-prog">
188 <term><command>feh</command></term>
189 <listitem>
190 <para>
191 is an image viewer and cataloguer.
192 </para>
193 <indexterm zone="feh feh-prog">
194 <primary sortas="b-feh">feh</primary>
195 </indexterm>
196 </listitem>
197 </varlistentry>
198
199 </variablelist>
200
201 </sect2>
202
203</sect1>
Note: See TracBrowser for help on using the repository browser.