source: gnome/platform/gcr.xml

trunk
Last change on this file was 5b8b9f5, checked in by Xi Ruoyao <xry111@…>, 5 weeks ago

gcr3: Disable ssh agent

Let gcr4 provide it, so they don't overwrite each other.

It looks like gcr-ssh-agent is completely useless on non-GNOME desktop
environments, and GNOME users will build gcr4 anyway.

  • Property mode set to 100644
File size: 7.3 KB
Line 
1<?xml version="1.0" encoding="UTF-8"?>
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 gcr-download-http "&gnome-download-http;/gcr/&gcr-minor;/gcr-&gcr-version;.tar.xz">
8 <!ENTITY gcr-download-ftp " ">
9 <!ENTITY gcr-md5sum "40a754ba44d5e95e4d07656d6302900c">
10 <!ENTITY gcr-size "1012 KB">
11 <!ENTITY gcr-buildsize "33 MB (with tests)">
12 <!ENTITY gcr-time "0.2 SBU (with tests; both using parallelism=4)">
13]>
14
15<sect1 id="gcr" xreflabel="Gcr-&gcr-version;">
16 <?dbhtml filename="gcr.html"?>
17
18
19 <title>Gcr-&gcr-version;</title>
20
21 <indexterm zone="gcr">
22 <primary sortas="a-Gcr">Gcr</primary>
23 </indexterm>
24
25 <sect2 role="package">
26 <title>Introduction to Gcr</title>
27
28 <para>
29 The <application>Gcr</application> package contains libraries used
30 for displaying certificates and accessing key stores. It also
31 provides the viewer for crypto files on the
32 <application>GNOME</application> Desktop.
33 </para>
34
35 &lfs121_checked;
36
37 <bridgehead renderas="sect3">Package Information</bridgehead>
38 <itemizedlist spacing="compact">
39 <listitem>
40 <para>
41 Download (HTTP): <ulink url="&gcr-download-http;"/>
42 </para>
43 </listitem>
44 <listitem>
45 <para>
46 Download (FTP): <ulink url="&gcr-download-ftp;"/>
47 </para>
48 </listitem>
49 <listitem>
50 <para>
51 Download MD5 sum: &gcr-md5sum;
52 </para>
53 </listitem>
54 <listitem>
55 <para>
56 Download size: &gcr-size;
57 </para>
58 </listitem>
59 <listitem>
60 <para>
61 Estimated disk space required: &gcr-buildsize;
62 </para>
63 </listitem>
64 <listitem>
65 <para>
66 Estimated build time: &gcr-time;
67 </para>
68 </listitem>
69 </itemizedlist>
70
71 <bridgehead renderas="sect3">Gcr Dependencies</bridgehead>
72
73 <bridgehead renderas="sect4">Required</bridgehead>
74 <para role="required">
75 <xref linkend="glib2"/> (GObject Introspection recommended),
76 <xref linkend="libgcrypt"/>, and
77 <xref linkend="p11-kit"/>
78 </para>
79
80 <bridgehead renderas="sect4">Recommended</bridgehead>
81 <para role="recommended">
82 <xref linkend="gnupg2"/>,
83 <xref linkend="gtk3"/>,
84 <xref linkend="libsecret"/>,
85 <xref linkend="libxslt"/>, and
86 <xref linkend="vala"/>
87 </para>
88
89 <bridgehead renderas="sect4">Optional</bridgehead>
90 <para role="optional">
91 <xref linkend="gi-docgen"/> and
92 <xref linkend="valgrind"/>
93 </para>
94
95 </sect2>
96
97 <sect2 role="installation">
98 <title>Installation of Gcr</title>
99
100 <!--
101 <caution>
102 <para>
103 If you are upgrading from a version of gcr prior to 3.36.0, you must
104 run the <filename>remove-la-files.sh</filename> script from the
105 <xref linkend="la-files"/> after installing gcr.
106 </para>
107 </caution>
108 -->
109
110<!--
111 <para>
112 First apply a fix for building with newer versions of
113 <application>meson</application>:
114 </para>
115
116<screen><userinput>find . -name meson.build | xargs sed -i /packages.\*deps/d</userinput></screen>
117-->
118
119 <para>
120 Install <application>Gcr</application> by running the following
121 commands:
122 </para>
123
124<screen><userinput>sed -i 's:"/desktop:"/org:' schema/*.xml &amp;&amp;
125
126mkdir build &amp;&amp;
127cd build &amp;&amp;
128
129meson setup --prefix=/usr \
130 --buildtype=release \
131 -Dgtk_doc=false \
132 -Dssh_agent=false \
133 .. &amp;&amp;
134ninja</userinput></screen>
135
136 <para>
137 If you have <xref linkend='gi-docgen'/> installed and wish to build
138 the API documentation for this package, issue:
139 </para>
140
141<screen remap='doc'><userinput>sed -e "/install_dir/s@,\$@ / 'gcr-&gcr-version;'&amp;@" \
142 -i ../docs/*/meson.build &amp;&amp;
143meson configure -Dgtk_doc=true &amp;&amp;
144ninja</userinput></screen>
145
146 <para>
147 To test the results, issue: <command>ninja test</command>.
148 The tests must be run from an X Terminal or similar. <!-- One test,
149 "test-openssl 3", is known to fail. -->
150 </para>
151
152 <para>
153 Now, as the <systemitem class="username">root</systemitem> user:
154 </para>
155
156<screen role="root"><userinput>ninja install</userinput></screen>
157 </sect2>
158
159 <sect2 role="commands">
160 <title>Command Explanations</title>
161
162 <xi:include xmlns:xi="http://www.w3.org/2001/XInclude"
163 href="../../xincludes/meson-buildtype-release.xml"/>
164
165<!--
166 <para>
167 <command>sed ... schema/*.xml</command>: This command fixes a
168 deprecated entry in the schema template.
169 </para>
170
171 <para>
172 <command>sed ... ui/meson.build</command>: This command fixes a
173 problem when building with meson-0.59.0.
174 </para>
175-->
176
177 <!--
178 <para>
179 <!- - https://gitlab.gnome.org/GNOME/gcr/-/merge_requests/52/ - ->
180 <command>sed ... gck/gck-slot.c</command>: This command fixes a bug
181 (usage of uninitialized value) identified by upstream.
182 </para>
183 -->
184
185 <para>
186 <parameter>-Dssh_agent=false</parameter>: Prevent a conflict with
187 <xref linkend='gcr4'/>. Omit this switch if you do not plan to
188 install <xref linkend='gcr4'/> and you want to use
189 <command>gcr-ssh-agent</command>.
190 </para>
191
192 <para>
193 <option>-Dgtk=false</option>: Use this switch if you
194 haven't installed <xref linkend="gtk3"/>. Note that
195 <application>gcr-viewer</application> will not be installed
196 if this is passed to meson.
197 </para>
198
199 <para>
200 <option>-Dgtk_doc=true</option>: &gi-doc-disable;
201 </para>
202
203 <!--<xi:include xmlns:xi="http://www.w3.org/2001/XInclude"
204 href="../../xincludes/gtk-doc-rebuild.xml"/>-->
205
206 </sect2>
207
208 <sect2 role="content">
209 <title>Contents</title>
210
211 <segmentedlist>
212 <segtitle>Installed Program</segtitle>
213 <segtitle>Installed Libraries</segtitle>
214 <segtitle>Installed Directories</segtitle>
215
216 <seglistitem>
217 <seg>
218 gcr-viewer
219 </seg>
220 <seg>
221 libgck-1.so, libgcr-base-3.so and libgcr-ui-3.so
222 </seg>
223 <seg>
224 /usr/include/gck-1,
225 /usr/include/gcr-3, and
226 /usr/share/gtk-doc/html/{gcr,gck}
227 </seg>
228 </seglistitem>
229 </segmentedlist>
230
231 <variablelist>
232 <bridgehead renderas="sect3">Short Descriptions</bridgehead>
233 <?dbfo list-presentation="list"?>
234 <?dbhtml list-presentation="table"?>
235
236 <varlistentry id="gcr-viewer">
237 <term><command>gcr-viewer</command></term>
238 <listitem>
239 <para>
240 is used to view certificates and key files
241 </para>
242 <indexterm zone="gcr gcr-viewer">
243 <primary sortas="b-gcr-viewer">gcr-viewer</primary>
244 </indexterm>
245 </listitem>
246 </varlistentry>
247
248 <varlistentry id="libgck-1">
249 <term><filename class="libraryfile">libgck-1.so</filename></term>
250 <listitem>
251 <para>
252 contains GObject bindings for PKCS#11
253 </para>
254 <indexterm zone="gcr libgck-1">
255 <primary sortas="c-libgck-1">libgck-1.so</primary>
256 </indexterm>
257 </listitem>
258 </varlistentry>
259
260 </variablelist>
261
262 </sect2>
263
264</sect1>
Note: See TracBrowser for help on using the repository browser.