source: postlfs/security/gpgme.xml@ b13548d

10.0 10.1 11.0 11.1 11.2 11.3 12.0 12.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 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 b13548d was b13548d, checked in by Bruce Dubbs <bdubbs@…>, 6 years ago

Update to gpgme-1.10.0.
Update to v4l-utils-1.12.6.
Update to pygobject2-2.28.7.
Update to whois-5.2.19.
Update to libcdio-1.1.0.

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

  • Property mode set to 100644
File size: 6.0 KB
RevLine 
[b358845]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
[8dfc5c3]7 <!ENTITY gpgme-download-http "&gnupg-http;/gpgme/gpgme-&gpgme-version;.tar.bz2">
[14d673a2]8 <!-- Something is wrong with ftp server and it confuses curl when currency runs it -->
9 <!-- <!ENTITY gpgme-download-ftp "&gnupg-ftp;/gpgme/gpgme-&gpgme-version;.tar.bz2"> -->
10 <!ENTITY gpgme-download-ftp " ">
[b13548d]11 <!ENTITY gpgme-md5sum "78b1533c593478982ee2fc548260c563">
[10dd522f]12 <!ENTITY gpgme-size "1.3 MB">
[b13548d]13 <!ENTITY gpgme-buildsize "135 MB (with all bindings)">
14 <!ENTITY gpgme-time "0.4 SBU (with parallelism=4; with all bindings, add 0.2 SBU for tests)">
[b358845]15]>
16
17<sect1 id="gpgme" xreflabel="GPGME-&gpgme-version;">
18 <?dbhtml filename="gpgme.html"?>
19
20 <sect1info>
21 <othername>$LastChangedBy$</othername>
22 <date>$Date$</date>
23 </sect1info>
24
25 <title>GPGME-&gpgme-version;</title>
26
27 <indexterm zone="gpgme">
28 <primary sortas="a-GPGME">GPGME</primary>
29 </indexterm>
30
31 <sect2 role="package">
32 <title>Introduction to GPGME</title>
33
[d6da5da]34 <para>
[200bab29]35 The <application>GPGME</application> package is a C library
[bbacc9a]36 that allows cryptography support to be added to a
[d6da5da]37 program. It is designed to make access to public key crypto
38 engines like <application>GnuPG</application> or GpgSM easier
39 for applications. <application>GPGME</application> provides
40 a high-level crypto API for encryption, decryption, signing,
41 signature verification and key management.
42 </para>
[b358845]43
[0e45aee]44 &lfs81_checked;
[b358845]45
46 <bridgehead renderas="sect3">Package Information</bridgehead>
47 <itemizedlist spacing="compact">
48 <listitem>
[d6da5da]49 <para>
50 Download (HTTP): <ulink url="&gpgme-download-http;"/>
51 </para>
[b358845]52 </listitem>
53 <listitem>
[d6da5da]54 <para>
55 Download (FTP): <ulink url="&gpgme-download-ftp;"/>
56 </para>
[b358845]57 </listitem>
58 <listitem>
[d6da5da]59 <para>
60 Download MD5 sum: &gpgme-md5sum;
61 </para>
[b358845]62 </listitem>
63 <listitem>
[d6da5da]64 <para>
65 Download size: &gpgme-size;
66 </para>
[b358845]67 </listitem>
68 <listitem>
[d6da5da]69 <para>
70 Estimated disk space required: &gpgme-buildsize;
71 </para>
[b358845]72 </listitem>
73 <listitem>
[d6da5da]74 <para>
75 Estimated build time: &gpgme-time;
76 </para>
[b358845]77 </listitem>
78 </itemizedlist>
[150992ab]79
[b358845]80 <bridgehead renderas="sect3">GPGME Dependencies</bridgehead>
81
82 <bridgehead renderas="sect4">Required</bridgehead>
[d6da5da]83 <para role="required">
84 <xref linkend="libassuan"/>
85 </para>
[b358845]86
87 <bridgehead renderas="sect4">Optional</bridgehead>
[289d262f]88 <para role="optional">
[30d6b736]89 <xref linkend="doxygen"/> (for API documentation),
[fdaae04]90 <xref linkend="gnupg2"/> (used during the testsuite), and
[30d6b736]91 <xref linkend="clisp"/>,
92 <xref linkend="python2"/>,
93 <xref linkend="qt5"/>, and/or
94 <xref linkend="swig"/> (for language bindings)
[d6da5da]95 </para>
[b358845]96
97 <para condition="html" role="usernotes">User Notes:
[d6da5da]98 <ulink url="&blfs-wiki;/gpgme"/>
99 </para>
[b358845]100 </sect2>
101
102 <sect2 role="installation">
103 <title>Installation of GPGME</title>
104
[d6da5da]105 <para>
106 Install <application>GPGME</application> by running the following
107 commands:
108 </para>
[b358845]109
[385b822]110<screen><userinput>./configure --prefix=/usr &amp;&amp;
[b358845]111make</userinput></screen>
[150992ab]112
[d6da5da]113 <para>
[385b822]114 To test the results, issue: <command>make check</command>.
[d6da5da]115 </para>
[b358845]116
[d6da5da]117 <para>
118 Now, as the <systemitem class="username">root</systemitem> user:
119 </para>
[b358845]120
121<screen role="root"><userinput>make install</userinput></screen>
122
123 </sect2>
[f7ac7b2]124
[b358845]125 <sect2 role="content">
126 <title>Contents</title>
127
128 <segmentedlist>
129 <segtitle>Installed Program</segtitle>
130 <segtitle>Installed Libraries</segtitle>
131 <segtitle>Installed Directory</segtitle>
132
133 <seglistitem>
[d6da5da]134 <seg>
[150992ab]135 gpgme-config and gpgme-tool
[d6da5da]136 </seg>
137 <seg>
138 libgpgme-pthread.so and libgpgme.so
139 </seg>
140 <seg>
141 /usr/share/common-lisp/source/gpgme
142 </seg>
[b358845]143 </seglistitem>
144 </segmentedlist>
145
146 <variablelist>
147 <bridgehead renderas="sect3">Short Descriptions</bridgehead>
148 <?dbfo list-presentation="list"?>
149 <?dbhtml list-presentation="table"?>
150
[385b822]151 <varlistentry id="gpgme-config">
152 <term><command>gpgme-config</command></term>
153 <listitem>
154 <para>
155 is used to obtain <application>GPGME</application> compilation and
156 linking information.
157 </para>
158 <indexterm zone="gpgme gpgme-config">
159 <primary sortas="b-gpgme-config">gpgme-config</primary>
160 </indexterm>
161 </listitem>
162 </varlistentry>
163
[150992ab]164 <varlistentry id="gpgme-tool">
165 <term><command>gpgme-tool</command></term>
166 <listitem>
167 <para>
168 prints fingerprint and keyid with keyservers.
169 </para>
170 <indexterm zone="gpgme gpgme-tool">
171 <primary sortas="b-gpgme-tool">gpgme-tool</primary>
172 </indexterm>
173 </listitem>
174 </varlistentry>
175
[b358845]176 <varlistentry id="libgpgme-pthread">
[d6da5da]177 <term><filename class="libraryfile">libgpgme-pthread.so</filename></term>
[b358845]178 <listitem>
[d6da5da]179 <para>
180 contains the <application>GPGME</application> API functions for
181 applications using pthread.
182 </para>
[b358845]183 <indexterm zone="gpgme libgpgme-pthread">
[d6da5da]184 <primary sortas="c-libgpgme-pthread">libgpgme-pthread.so</primary>
[b358845]185 </indexterm>
186 </listitem>
187 </varlistentry>
188
189 <varlistentry id="libgpgme">
[d6da5da]190 <term><filename class="libraryfile">libgpgme.so</filename></term>
[b358845]191 <listitem>
[d6da5da]192 <para>
193 contains the <application>GPGME</application> API functions.
194 </para>
[b358845]195 <indexterm zone="gpgme libgpgme">
[d6da5da]196 <primary sortas="c-libgpgme">libgpgme.so</primary>
[b358845]197 </indexterm>
198 </listitem>
199 </varlistentry>
200
201 </variablelist>
202
203 </sect2>
204
205</sect1>
Note: See TracBrowser for help on using the repository browser.