source: general/genlib/libgcrypt.xml@ 390e0d7

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 390e0d7 was 390e0d7, checked in by Randy McMurchy <randy@…>, 15 years ago

Updated to Libgcrypt-1.4.4

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

  • Property mode set to 100644
File size: 6.0 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 libgcrypt-download-http "&sources-anduin-http;/l/libgcrypt-&libgcrypt-version;.tar.bz2">
8 <!ENTITY libgcrypt-download-ftp "ftp://ftp.gnupg.org/gcrypt/libgcrypt/libgcrypt-&libgcrypt-version;.tar.bz2">
9 <!ENTITY libgcrypt-md5sum "34105aa927e23c217741966496b97e67">
10 <!ENTITY libgcrypt-size "1.1 MB">
11 <!ENTITY libgcrypt-buildsize "25 MB">
12 <!ENTITY libgcrypt-time "0.6 SBU (additional 0.6 SBU to run the test suite)">
13]>
14
15<sect1 id="libgcrypt" xreflabel="Libgcrypt-&libgcrypt-version;">
16 <?dbhtml filename="libgcrypt.html"?>
17
18 <sect1info>
19 <othername>$LastChangedBy$</othername>
20 <date>$Date$</date>
21 </sect1info>
22
23 <title>Libgcrypt-&libgcrypt-version;</title>
24
25 <indexterm zone="libgcrypt">
26 <primary sortas="a-Libgcrypt">Libgcrypt</primary>
27 </indexterm>
28
29 <sect2 role="package">
30 <title>Introduction to Libgcrypt</title>
31
32 <para>The <application>Libgcrypt</application> package contains a general
33 purpose crypto library based on the code used in
34 <application>GnuPG</application>. The library provides a high level
35 interface to cryptographic building blocks using an extendable and flexible
36 API.</para>
37
38 <bridgehead renderas="sect3">Package Information</bridgehead>
39 <itemizedlist spacing="compact">
40 <listitem>
41 <para>Download (HTTP): <ulink url="&libgcrypt-download-http;"/></para>
42 </listitem>
43 <listitem>
44 <para>Download (FTP): <ulink url="&libgcrypt-download-ftp;"/></para>
45 </listitem>
46 <listitem>
47 <para>Download MD5 sum: &libgcrypt-md5sum;</para>
48 </listitem>
49 <listitem>
50 <para>Download size: &libgcrypt-size;</para>
51 </listitem>
52 <listitem>
53 <para>Estimated disk space required: &libgcrypt-buildsize;</para>
54 </listitem>
55 <listitem>
56 <para>Estimated build time: &libgcrypt-time;</para>
57 </listitem>
58 </itemizedlist>
59
60 <bridgehead renderas="sect3">Libgcrypt Dependencies</bridgehead>
61
62 <bridgehead renderas="sect4">Required</bridgehead>
63 <para role="required"><xref linkend="libgpg-error"/></para>
64
65 <bridgehead renderas="sect4">Optional</bridgehead>
66 <para role="optional"><ulink url="http://www.kernel.org/pub/linux/libs/security/linux-privs/libcap2/">
67 Linux Capabilities (libcap)</ulink></para>
68
69 <para condition="html" role="usernotes">User Notes:
70 <ulink url="&blfs-wiki;/libgcrypt"/></para>
71
72 </sect2>
73
74 <sect2 role="installation">
75 <title>Installation of Libgcrypt</title>
76
77 <para>Install <application>Libgcrypt</application> by running the
78 following commands:</para>
79
80<screen><userinput>./configure --prefix=/usr &amp;&amp;
81make</userinput></screen>
82
83 <para>Only <command>info</command> documentation is shipped in the package
84 tarball. If you wish to build alternate formats of the documentation, you
85 must have <xref linkend="tetex"/> installed (to build the PDF, PostScript
86 and chunked HTML docs), then issue the following commands:</para>
87
88<screen><userinput>make -C doc pdf ps html &amp;&amp;
89makeinfo --html --no-split -o doc/gcrypt_nochunks.html doc/gcrypt.texi &amp;&amp;
90makeinfo --plaintext -o doc/gcrypt.txt doc/gcrypt.texi</userinput></screen>
91
92 <para>To test the results, issue: <command>make check</command>.</para>
93
94 <para>Now, as the <systemitem class="username">root</systemitem>
95 user:</para>
96
97<screen role="root"><userinput>make install &amp;&amp;
98install -v -m644 -D README /usr/share/doc/libgcrypt-&libgcrypt-version;/README</userinput></screen>
99
100 <para>If you built the additional documentation, install it by issuing the
101 following commands as the <systemitem class="username">root</systemitem>
102 user:</para>
103
104<screen role="root"><userinput>install -v -m755 -d /usr/share/doc/libgcrypt-&libgcrypt-version;/html &amp;&amp;
105install -v -m644 doc/gcrypt.html/* \
106 /usr/share/doc/libgcrypt-&libgcrypt-version;/html &amp;&amp;
107install -v -m644 doc/gcrypt_nochunks.html \
108 /usr/share/doc/libgcrypt-&libgcrypt-version; &amp;&amp;
109install -v -m644 doc/gcrypt.{pdf,ps,dvi,txt,texi} \
110 /usr/share/doc/libgcrypt-&libgcrypt-version;</userinput></screen>
111
112 </sect2>
113
114 <sect2 role="content">
115 <title>Contents</title>
116
117 <segmentedlist>
118 <segtitle>Installed Programs</segtitle>
119 <segtitle>Installed Libraries</segtitle>
120 <segtitle>Installed Directory</segtitle>
121
122 <seglistitem>
123 <seg>dumpsexp, hmac256 and libgcrypt-config</seg>
124 <seg>libgcrypt.{so,a}</seg>
125 <seg>/usr/share/doc/libgcrypt-&libgcrypt-version;</seg>
126 </seglistitem>
127 </segmentedlist>
128
129 <variablelist>
130 <bridgehead renderas="sect3">Short Descriptions</bridgehead>
131 <?dbfo list-presentation="list"?>
132 <?dbhtml list-presentation="table"?>
133
134 <varlistentry id="libgcrypt-config">
135 <term><command>libgcrypt-config</command></term>
136 <listitem>
137 <para>is a utility used to configure and build applications based on
138 the libgcrypt(3) library. It can be used to query the C compiler and
139 linker flags which are required to correctly compile and link the
140 application against the libgcrypt(3) library.</para>
141 <indexterm zone="libgcrypt libgcrypt-config">
142 <primary sortas="b-libgcrypt-config">libgcrypt-config</primary>
143 </indexterm>
144 </listitem>
145 </varlistentry>
146
147 <varlistentry id="libgcrypt-lib">
148 <term><filename class='libraryfile'>libgcrypt.{so,a}</filename></term>
149 <listitem>
150 <para>contains the cryptographic API functions.</para>
151 <indexterm zone="libgcrypt libgcrypt-lib">
152 <primary sortas="c-libgcrypt">libgcrypt.{so,a}</primary>
153 </indexterm>
154 </listitem>
155 </varlistentry>
156
157 </variablelist>
158
159 </sect2>
160
161</sect1>
Note: See TracBrowser for help on using the repository browser.