source: gnome/core/gcr.xml@ 25639ce3

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 25639ce3 was 25639ce3, checked in by Krejzi <krejzi@…>, 12 years ago

some (de)capitalisation

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

  • Property mode set to 100644
File size: 6.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 gcr-download-http "&gnome-download-http;/gcr/3.4/gcr-&gcr-version;.tar.xz">
8 <!ENTITY gcr-download-ftp "&gnome-download-ftp;/gcr/3.4/gcr-&gcr-version;.tar.xz">
9 <!ENTITY gcr-md5sum "52dd83d8f64654147e720cbd186ee357">
10 <!ENTITY gcr-size "1.3 MB">
11 <!ENTITY gcr-buildsize "83 MB">
12 <!ENTITY gcr-time "0.8 SBU">
13]>
14
15<sect1 id="gcr" xreflabel="gcr-&gcr-version;">
16 <?dbhtml filename="gcr.html"?>
17
18 <sect1info>
19 <othername>$LastChangedBy$</othername>
20 <date>$Date$</date>
21 </sect1info>
22
23 <title>gcr-&gcr-version;</title>
24
25 <indexterm zone="gcr">
26 <primary sortas="a-gcr">gcr</primary>
27 </indexterm>
28
29 <sect2 role="package">
30 <title>Introduction to gcr</title>
31
32 <para>
33 The <application>gcr</application> package contains libraries
34 for displaying certificates and accessing key stores. It also
35 provides the viewer for crypto files on the GNOME desktop.
36 </para>
37
38 &lfs70_checked;
39
40 <bridgehead renderas="sect3">Package Information</bridgehead>
41 <itemizedlist spacing="compact">
42 <listitem>
43 <para>
44 Download (HTTP): <ulink url="&gcr-download-http;"/>
45 </para>
46 </listitem>
47 <listitem>
48 <para>
49 Download (FTP): <ulink url="&gcr-download-ftp;"/>
50 </para>
51 </listitem>
52 <listitem>
53 <para>
54 Download MD5 sum: &gcr-md5sum;
55 </para>
56 </listitem>
57 <listitem>
58 <para>
59 Download size: &gcr-size;
60 </para>
61 </listitem>
62 <listitem>
63 <para>
64 Estimated disk space required: &gcr-buildsize;
65 </para>
66 </listitem>
67 <listitem>
68 <para>
69 Estimated build time: &gcr-time;
70 </para>
71 </listitem>
72 </itemizedlist>
73
74 <bridgehead renderas="sect3">gcr Dependencies</bridgehead>
75
76 <bridgehead renderas="sect4">Required</bridgehead>
77 <para role="required">
78 <xref linkend="gtk3"/>,
79 <xref linkend="intltool"/>,
80 <xref linkend="libgcrypt"/>,
81 <xref linkend="libtasn1"/> and
82 <xref linkend="p11-kit"/>
83 </para>
84
85 <bridgehead renderas="sect4">Recommended</bridgehead>
86 <para role="recommended">
87 <xref linkend="gobject-introspection"/>
88 (Required if building GNOME)
89 </para>
90
91 <bridgehead renderas="sect4">Optional</bridgehead>
92 <para role="optional">
93 <xref linkend="gtk-doc"/> and
94 <ulink url="http://www.valgrind.org">Valgrind</ulink>
95 </para>
96
97 <para condition="html" role="usernotes">
98 User Notes: <ulink url="&blfs-wiki;/gcr"/>
99 </para>
100 </sect2>
101
102 <sect2 role="installation">
103 <title>Installation of gcr</title>
104
105 <para>
106 Install <application>gcr</application> by running the following
107 commands:
108 </para>
109
110<screen><userinput>./configure --prefix=/usr --sysconfdir=/etc \
111 --libexecdir=/usr/lib/gnome-keyring \
112 --with-pkcs11-modules=/usr/lib/pkcs11 \
113 --with-dbus-services=/usr/share/dbus-1/services &amp;&amp;
114make</userinput></screen>
115
116 <para>
117 To test the results, issue: <command>make check</command>.
118 </para>
119
120 <para>
121 Now, as the <systemitem class="username">root</systemitem> user:
122 </para>
123
124<screen role="root"><userinput>make install</userinput></screen>
125 </sect2>
126
127 <sect2 role="commands">
128 <title>Command Explanations</title>
129
130<!-- <xi:include xmlns:xi="http://www.w3.org/2001/XInclude"
131 href="../../xincludes/gnome-prefix.xml"> -->
132
133 <para>
134 <parameter>--with-pkcs11-modules=/usr/lib/pkcs11</parameter>:
135 This parameter ensures that <application>p11-kit</application> modules
136 are installed in a correct location.
137 </para>
138
139 <para>
140 <parameter>--with-dbus-services=/usr/share/dbus-1/services</parameter>:
141 This parameter ensures that <application>D-BUS</application> service
142 files are installed in a correct location.
143 </para>
144
145 <xi:include xmlns:xi="http://www.w3.org/2001/XInclude"
146 href="../../xincludes/gtk-doc-rebuild.xml"/>
147
148 </sect2>
149
150 <sect2 role="content">
151 <title>Contents</title>
152
153 <segmentedlist>
154 <segtitle>Installed Program</segtitle>
155 <segtitle>Installed Libraries</segtitle>
156 <segtitle>Installed Directories</segtitle>
157
158 <seglistitem>
159 <seg>
160 gcr-viewer
161 </seg>
162 <seg>
163 libgck-1.so, libgcr-3.so, libgcr-base-3.so and
164 libmock-test-module.so
165 </seg>
166 <seg>
167 /usr/include/{gck-1,gcr-3},
168 /usr/lib/gnome-keyring,
169 /usr/share/gcr-3 and
170 /usr/share/gtk-doc/html/{gck,gcr-3}
171 </seg>
172 </seglistitem>
173 </segmentedlist>
174
175 <variablelist>
176 <bridgehead renderas="sect3">Short Descriptions</bridgehead>
177 <?dbfo list-presentation="list"?>
178 <?dbhtml list-presentation="table"?>
179
180 <varlistentry id="gcr-viewer">
181 <term><command>gcr-viewer</command></term>
182 <listitem>
183 <para>
184 is used to view certificate and key files.
185 </para>
186 <indexterm zone="gcr gcr-viewer">
187 <primary sortas="b-gcr-viewer">gcr-viewer</primary>
188 </indexterm>
189 </listitem>
190 </varlistentry>
191
192 <varlistentry id="libgck-1">
193 <term><filename class="libraryfile">libgck-1.so</filename></term>
194 <listitem>
195 <para>
196 contains GObject bindings for PKCS#11.
197 </para>
198 <indexterm zone="gcr libgck-1">
199 <primary sortas="c-libgck-1">libgck-1.so</primary>
200 </indexterm>
201 </listitem>
202 </varlistentry>
203
204 <varlistentry id="libgcr-3">
205 <term><filename class="libraryfile">libgcr-3.so</filename></term>
206 <listitem>
207 <para>
208 contains functions for high level crypto parsing.
209 </para>
210 <indexterm zone="gcr libgcr-3">
211 <primary sortas="c-libgcr-3">libgcr-3.so</primary>
212 </indexterm>
213 </listitem>
214 </varlistentry>
215
216 </variablelist>
217
218 </sect2>
219
220</sect1>
Note: See TracBrowser for help on using the repository browser.