source: postlfs/security/gpgme.xml@ f7774787

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 f7774787 was f7774787, checked in by Andrew Benton <andy@…>, 12 years ago

speling

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

  • Property mode set to 100644
File size: 5.4 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 gpgme-download-http " ">
8 <!ENTITY gpgme-download-ftp "ftp://ftp.gnupg.org/gcrypt/gpgme/gpgme-&gpgme-version;.tar.bz2">
9 <!ENTITY gpgme-md5sum "90afa8436ce2b2683c001c824bd22601">
10 <!ENTITY gpgme-size "828 KB">
11 <!ENTITY gpgme-buildsize "22 MB">
12 <!ENTITY gpgme-time "0.3 SBU">
13]>
14
15<sect1 id="gpgme" xreflabel="GPGME-&gpgme-version;">
16 <?dbhtml filename="gpgme.html"?>
17
18 <sect1info>
19 <othername>$LastChangedBy$</othername>
20 <date>$Date$</date>
21 </sect1info>
22
23 <title>GPGME-&gpgme-version;</title>
24
25 <indexterm zone="gpgme">
26 <primary sortas="a-GPGME">GPGME</primary>
27 </indexterm>
28
29 <sect2 role="package">
30 <title>Introduction to GPGME</title>
31
32 <para>The <application>GPGME</application> package is a C language library
33 that allows to add support for cryptography to a program. It is designed to
34 make access to public key crypto engines like
35 <application>GnuPG</application> or GpgSM easier for applications.
36 <application>GPGME</application> provides a high-level crypto API for
37 encryption, decryption, signing, signature verification and key
38 management.</para>
39
40 &lfs70_checked;
41
42 <bridgehead renderas="sect3">Package Information</bridgehead>
43 <itemizedlist spacing="compact">
44 <listitem>
45 <para>Download (HTTP): <ulink url="&gpgme-download-http;"/></para>
46 </listitem>
47 <listitem>
48 <para>Download (FTP): <ulink url="&gpgme-download-ftp;"/></para>
49 </listitem>
50 <listitem>
51 <para>Download MD5 sum: &gpgme-md5sum;</para>
52 </listitem>
53 <listitem>
54 <para>Download size: &gpgme-size;</para>
55 </listitem>
56 <listitem>
57 <para>Estimated disk space required: &gpgme-buildsize;</para>
58 </listitem>
59 <listitem>
60 <para>Estimated build time: &gpgme-time;</para>
61 </listitem>
62 </itemizedlist>
63
64 <bridgehead renderas="sect3">GPGME Dependencies</bridgehead>
65
66 <bridgehead renderas="sect4">Required</bridgehead>
67 <para role="required"><xref linkend="libassuan"/> and
68 <xref linkend="libgpg-error"/></para>
69
70 <bridgehead renderas="sect4">Optional</bridgehead>
71 <para role="optional">
72 <xref linkend="gnupg"/>,
73 <xref linkend="gnupg2"/>, and
74 <xref linkend="pth"/>
75 </para>
76
77 <para condition="html" role="usernotes">User Notes:
78 <ulink url="&blfs-wiki;/gpgme"/></para>
79
80 </sect2>
81
82 <sect2 role="installation">
83 <title>Installation of GPGME</title>
84
85 <para>Install <application>GPGME</application> by running the following
86 commands:</para>
87
88<screen><userinput>./configure --prefix=/usr \
89 --libexecdir=/usr/lib \
90 --without-g13 &amp;&amp;
91make</userinput></screen>
92
93 <para>To test the results, issue: <command>make check</command>.</para>
94
95 <para>Now, as the <systemitem class="username">root</systemitem> user:</para>
96
97<screen role="root"><userinput>make install</userinput></screen>
98
99 </sect2>
100
101 <sect2 role="commands">
102 <title>Command Explanations</title>
103
104 <para><parameter>--libexecdir=/usr/lib</parameter>: This parameter stops the
105 creation of an empty /usr/libexec directory.</para>
106
107 <para><option>--without-g13</option>: This option merely prevents a warning
108 about about an un-released development library during
109 <command>configure</command>.</para>
110
111 </sect2>
112
113 <sect2 role="content">
114 <title>Contents</title>
115
116 <segmentedlist>
117 <segtitle>Installed Program</segtitle>
118 <segtitle>Installed Libraries</segtitle>
119 <segtitle>Installed Directory</segtitle>
120
121 <seglistitem>
122 <seg>gpgme-config</seg>
123 <seg>libgpgme-pthread.so, libgpgme-pth.so, and libgpgme.so</seg>
124 <seg>/usr/share/common-lisp/source/gpgme</seg>
125 </seglistitem>
126 </segmentedlist>
127
128 <variablelist>
129 <bridgehead renderas="sect3">Short Descriptions</bridgehead>
130 <?dbfo list-presentation="list"?>
131 <?dbhtml list-presentation="table"?>
132
133 <varlistentry id="libgpgme-pthread">
134 <term><filename class='libraryfile'>libgpgme-pthread.{so,a}</filename></term>
135 <listitem>
136 <para>contains the gpgme API functions for applications using
137 pthread.</para>
138 <indexterm zone="gpgme libgpgme-pthread">
139 <primary sortas="c-libgpgme-pthread">libgpgme-pthread.{so,a}</primary>
140 </indexterm>
141 </listitem>
142 </varlistentry>
143
144 <varlistentry id="libgpgme-pth">
145 <term><filename class='libraryfile'>libgpgme-pth.{so,a}</filename></term>
146 <listitem>
147 <para>contains the gpgme API functions for applications using GNU
148 Pth.</para>
149 <indexterm zone="gpgme libgpgme-pth">
150 <primary sortas="c-libgpgme-pth">libgpgme-pth.{so,a}</primary>
151 </indexterm>
152 </listitem>
153 </varlistentry>
154
155 <varlistentry id="libgpgme">
156 <term><filename class='libraryfile'>libgpgme.{so,a}</filename></term>
157 <listitem>
158 <para>contains the gpgme API functions.</para>
159 <indexterm zone="gpgme libgpgme">
160 <primary sortas="c-libgpgme">libgpgme.{so,a}</primary>
161 </indexterm>
162 </listitem>
163 </varlistentry>
164
165 </variablelist>
166
167 </sect2>
168
169</sect1>
Note: See TracBrowser for help on using the repository browser.