source: gnome/applications/evince.xml@ 76f2fb4

12.0 12.1 gimp3 kea ken/TL2024 ken/tuningfonts lazarus lxqt plabs/newcss python3.11 rahul/power-profiles-daemon renodr/vulkan-addition trunk xry111/llvm18 xry111/xf86-video-removal
Last change on this file since 76f2fb4 was defbb22e, checked in by Xi Ruoyao <xry111@…>, 13 months ago

Clean up dependencies to itstool

Several packages have switched from itstool to gettext.

For evolution it can be disabled, so make it recommended instead of
required.

  • Property mode set to 100644
File size: 9.1 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 evince-download-http
8 "&gnome-download-http;/evince/&gnome-44;/evince-&evince-version;.tar.xz">
9 <!ENTITY evince-download-ftp
10 "&gnome-download-ftp;/evince/&gnome-44;/evince-&evince-version;.tar.xz">
11 <!ENTITY evince-md5sum "efba23224fba7f42bd9f1dc46a3b3652">
12 <!ENTITY evince-size "2.8 MB">
13 <!ENTITY evince-buildsize "59 MB">
14 <!ENTITY evince-time "0.4 SBU (Using parallelism=4)">
15]>
16
17<sect1 id="evince" xreflabel="Evince-&evince-version;">
18 <?dbhtml filename="evince.html"?>
19
20
21 <title>Evince-&evince-version;</title>
22
23 <indexterm zone="evince">
24 <primary sortas="a-Evince">Evince</primary>
25 </indexterm>
26
27 <sect2 role="package">
28 <title>Introduction to Evince</title>
29
30 <para>
31 <application>Evince</application> is a document viewer for multiple
32 document formats. It supports PDF, Postscript, DjVu, TIFF and DVI.
33 It is useful for viewing documents of various types using one simple
34 application instead of the multiple document viewers that once existed
35 on the <application>GNOME</application> Desktop.
36 </para>
37
38 &lfs113_checked;
39
40 <bridgehead renderas="sect3">Package Information</bridgehead>
41 <itemizedlist spacing="compact">
42 <listitem>
43 <para>
44 Download (HTTP): <ulink url="&evince-download-http;"/>
45 </para>
46 </listitem>
47 <listitem>
48 <para>
49 Download (FTP): <ulink url="&evince-download-ftp;"/>
50 </para>
51 </listitem>
52 <listitem>
53 <para>
54 Download MD5 sum: &evince-md5sum;
55 </para>
56 </listitem>
57 <listitem>
58 <para>
59 Download size: &evince-size;
60 </para>
61 </listitem>
62 <listitem>
63 <para>
64 Estimated disk space required: &evince-buildsize;
65 </para>
66 </listitem>
67 <listitem>
68 <para>
69 Estimated build time: &evince-time;
70 </para>
71 </listitem>
72 </itemizedlist>
73
74 <bridgehead renderas="sect3">Evince Dependencies</bridgehead>
75
76 <bridgehead renderas="sect4">Required</bridgehead>
77 <para role="required">
78 <xref linkend="adwaita-icon-theme"/>,
79 <xref linkend="gsettings-desktop-schemas"/>,
80 <xref linkend="gtk3"/>,
81 <xref linkend="libhandy1"/>,
82 <xref linkend="libxml2"/>, and
83 <xref linkend="openjpeg2"/>
84 </para>
85
86 <bridgehead renderas="sect4">Recommended</bridgehead>
87 <para role="recommended">
88 <xref linkend="gnome-keyring"/>,
89 <xref linkend="gobject-introspection"/>,
90 <xref linkend="libarchive"/>,
91 <xref linkend="libsecret"/>, and
92 <xref linkend="poppler"/>
93 </para>
94
95 <bridgehead renderas="sect4">Optional</bridgehead>
96 <para role="optional">
97 <xref linkend="cups"/> (to enable printing if support is built into
98 <application>GTK+ 3</application>),
99 <xref linkend="gnome-desktop"/>,
100 <xref linkend="gspell"/>,
101 <xref linkend="gst10-plugins-base"/>,
102 <xref linkend="gi-docgen"/>,
103 <xref linkend="libgxps"/>,
104 <xref linkend="libtiff"/>,
105 <xref linkend="texlive"/> (or <xref linkend="tl-installer"/>),
106 <ulink url="https://djvu.sourceforge.net/">DjVuLibre</ulink>,
107 <ulink url="https://www.freedesktop.org/wiki/Software/libspectre/">libspectre</ulink>, and
108 <ulink url="https://github.com/jlaurens/synctex">Synctex</ulink>
109 </para>
110
111 <para condition="html" role="usernotes">User Notes:
112 <ulink url="&blfs-wiki;/evince"/>
113 </para>
114 </sect2>
115
116 <sect2 role="installation">
117 <title>Installation of Evince</title>
118
119 <para>
120 Install <application>Evince</application> by running the following
121 commands:
122 </para>
123
124<screen revision="sysv"><userinput>mkdir build &amp;&amp;
125cd build &amp;&amp;
126
127CPPFLAGS+=" -I/opt/texlive/&texlive-year;/include" \
128meson setup --prefix=/usr \
129 --buildtype=release \
130 -Dgtk_doc=false \
131 --wrap-mode=nodownload \
132 -Dsystemduserunitdir=no .. &amp;&amp;
133ninja</userinput></screen>
134
135<screen revision="systemd"><userinput>mkdir build &amp;&amp;
136cd build &amp;&amp;
137
138CPPFLAGS+=" -I/opt/texlive/&texlive-year;/include" \
139meson setup --prefix=/usr \
140 --buildtype=release \
141 -Dgtk_doc=false \
142 --wrap-mode=nodownload \
143 .. &amp;&amp;
144ninja</userinput></screen>
145
146 <para>
147 If you have <xref linkend='gi-docgen'/> installed and wish to build
148 the API documentation for this package, issue:
149 </para>
150
151<screen role='nodump'><userinput>sed "/docs_dir/s@\$@ / 'evince-&evince-version;'@" -i ../help/meson.build &amp;&amp;
152meson configure -Dgtk_doc=true &amp;&amp;
153ninja</userinput></screen>
154
155 <para>
156 This package does not have a working test suite.
157 </para>
158
159 <para>
160 Now, as the <systemitem class="username">root</systemitem> user:
161 </para>
162
163<screen role="root"><userinput>ninja install</userinput></screen>
164
165 <xi:include xmlns:xi="http://www.w3.org/2001/XInclude"
166 href="../../xincludes/gsettings-destdir.xml"/>
167
168 </sect2>
169
170 <sect2 role="commands">
171 <title>Command Explanations</title>
172
173 <xi:include xmlns:xi="http://www.w3.org/2001/XInclude"
174 href="../../xincludes/meson-buildtype-release.xml"/>
175
176 <para>
177 <parameter>CPPFLAGS+=" -I/opt/texlive/..."</parameter>:
178 Make sure that meson can find libkpathsea headers from TeXLive if it
179 is installed. This has no effect on systems without TeXLive installed.
180 </para>
181
182 <para>
183 <parameter>--wrap-mode=nodownload</parameter>: This switch disables
184 fetching any dependency: the build system tries to fetch gi-docgen
185 even if <parameter>-Dgtk_doc=false</parameter> is passed.
186 </para>
187
188 <para>
189 <parameter>-Dgtk_doc=false</parameter>: &gi-doc-disable;
190 </para>
191
192 <para>
193 <option>-Dgspell=false</option>: This switch turns off support
194 for the spell checking plugin.
195 </para>
196
197 <para>
198 <option>-Dintrospection=false</option>: Use this option if you
199 don't have <xref role="nodep" linkend="gobject-introspection"/>
200 installed and don't wish to have introspection support built into Evince.
201 </para>
202
203 <para>
204 <option>-Dnautilus=false</option>: This switch disables building
205 the <application>Nautilus</application> Plugin. Use this switch
206 if <application>Nautilus</application> is not installed.
207 </para>
208
209 <para>
210 <option>-Dkeyring=false</option>: This switch disables the use of
211 <application>libsecret</application>. Use this switch
212 if <application>libsecret</application> is not installed.
213 </para>
214
215 <para>
216 <option>-Dps=enabled</option>: Use this switch if
217 <application>libspectre</application> is installed and you want to
218 view PostScript files with <application>Evince</application>.
219 </para>
220
221 </sect2>
222
223 <sect2 role="content">
224 <title>Contents</title>
225
226 <segmentedlist>
227 <segtitle>Installed Programs</segtitle>
228 <segtitle>Installed Libraries</segtitle>
229 <segtitle>Installed Directories</segtitle>
230
231 <seglistitem>
232 <seg>
233 evince, evince-previewer, and evince-thumbnailer
234 </seg>
235 <seg>
236 libevdocument3.so and
237 libevview3.so
238 </seg>
239 <seg>
240 /usr/{include,lib,share}/evince,
241 /usr/share/gtk-doc/html/{evince,libevdocument-3.0,libevview-3.0}
242 (optional), and
243 /usr/share/help/*/evince
244 </seg>
245 </seglistitem>
246 </segmentedlist>
247
248 <variablelist>
249 <bridgehead renderas="sect3">Short Descriptions</bridgehead>
250 <?dbfo list-presentation="list"?>
251 <?dbhtml list-presentation="table"?>
252
253 <varlistentry id="evince-prog">
254 <term><command>evince</command></term>
255 <listitem>
256 <para>
257 is a multiple format document viewer
258 </para>
259 <indexterm zone="evince evince-prog">
260 <primary sortas="b-evince">evince</primary>
261 </indexterm>
262 </listitem>
263 </varlistentry>
264
265 <varlistentry id="evince-previewer">
266 <term><command>evince-previewer</command></term>
267 <listitem>
268 <para>
269 is an application that implements the printing previewer
270 </para>
271 <indexterm zone="evince evince-previewer">
272 <primary sortas="b-evince-previewer">evince-previewer</primary>
273 </indexterm>
274 </listitem>
275 </varlistentry>
276
277 <varlistentry id="evince-thumbnailer">
278 <term><command>evince-thumbnailer</command></term>
279 <listitem>
280 <para>
281 is a simple program used to create thumbnail images of
282 supported documents
283 </para>
284 <indexterm zone="evince evince-thumbnailer">
285 <primary sortas="b-evince-thumbnailer">evince-thumbnailer</primary>
286 </indexterm>
287 </listitem>
288 </varlistentry>
289
290 </variablelist>
291
292 </sect2>
293
294</sect1>
Note: See TracBrowser for help on using the repository browser.