source: general/genlib/libassuan.xml@ a2c5f7d7

10.0 10.1 11.0 11.1 11.2 11.3 12.0 12.1 6.3 6.3-rc1 6.3-rc2 6.3-rc3 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 a2c5f7d7 was a2c5f7d7, checked in by Randy McMurchy <randy@…>, 17 years ago

Added new package Libassuan-1.0.2

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

  • Property mode set to 100644
File size: 6.8 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 libassuan-download-http "http://ftp.gnupg.org/gcrypt/libassuan/libassuan-&libassuan-version;.tar.bz2">
8 <!ENTITY libassuan-download-ftp "ftp://ftp.gnupg.org/gcrypt/libassuan/libassuan-&libassuan-version;.tar.bz2">
9 <!ENTITY libassuan-md5sum "d09372855672ab4ab5a40c4fa3c0f921">
10 <!ENTITY libassuan-size "275 KB">
11 <!ENTITY libassuan-buildsize "5 MB">
12 <!ENTITY libassuan-time "0.1 SBU">
13]>
14
15<sect1 id="libassuan" xreflabel="Libassuan-&libassuan-version;">
16 <?dbhtml filename="libassuan.html"?>
17
18 <sect1info>
19 <othername>$LastChangedBy$</othername>
20 <date>$Date$</date>
21 </sect1info>
22
23 <title>Libassuan-&libassuan-version;</title>
24
25 <indexterm zone="libassuan">
26 <primary sortas="a-Libassuan">Libassuan</primary>
27 </indexterm>
28
29 <sect2 role="package">
30 <title>Introduction to Libassuan</title>
31
32 <para>The <application>Libassuan</application> package contains an IPC
33 library used by some of the other <application>GnuPG</application> related
34 packages. <application>Libassuan</application>'s primary use is to allow a
35 client to interact with a non-persistent server.
36 <application>Libassuan</application> is not, however, limited to use with
37 <application>GnuPG</application> servers and clients. It was designed to be
38 flexible enough to meet the demands of many transaction based environments
39 with non-persistent servers.</para>
40
41 <bridgehead renderas="sect3">Package Information</bridgehead>
42 <itemizedlist spacing="compact">
43 <listitem>
44 <para>Download (HTTP): <ulink url="&libassuan-download-http;"/></para>
45 </listitem>
46 <listitem>
47 <para>Download (FTP): <ulink url="&libassuan-download-ftp;"/></para>
48 </listitem>
49 <listitem>
50 <para>Download MD5 sum: &libassuan-md5sum;</para>
51 </listitem>
52 <listitem>
53 <para>Download size: &libassuan-size;</para>
54 </listitem>
55 <listitem>
56 <para>Estimated disk space required: &libassuan-buildsize;</para>
57 </listitem>
58 <listitem>
59 <para>Estimated build time: &libassuan-time;</para>
60 </listitem>
61 </itemizedlist>
62
63 <bridgehead renderas="sect3">Libassuan Dependencies</bridgehead>
64
65 <bridgehead renderas="sect4">Optional</bridgehead>
66 <para role="optional"><xref linkend="pth"/></para>
67
68 <para>Other packages (such as <application>GnuPG-2</application>) will
69 require that the <application>Libassuan</application> library is linked to
70 the <application>Pth</application> library. Ensure
71 <application>Pth</application> is installed before beginning the build if
72 you have any doubts.</para>
73
74 <para condition="html" role="usernotes">User Notes:
75 <ulink url="&blfs-wiki;/libassuan"/></para>
76
77 </sect2>
78
79 <sect2 role="installation">
80 <title>Installation of Libassuan</title>
81
82 <para>Install <application>Libassuan</application> by running the
83 following commands:</para>
84
85<screen><userinput>./configure --prefix=/usr &amp;&amp;
86make</userinput></screen>
87
88 <para>Only <command>info</command> documentation was built in the preceding
89 step. If you wish to build alternate formats of the documentation, you must
90 have <xref linkend="tetex"/> installed, then issue the following
91 commands:</para>
92
93 <screen><userinput>make -C doc pdf &amp;&amp;
94make -C doc ps &amp;&amp;
95make -C doc html &amp;&amp;
96makeinfo --html --no-split -o doc/assuan_nochunks.html doc/assuan.texi &amp;&amp;
97makeinfo --plaintext -o doc/assuan.txt doc/assuan.texi</userinput></screen>
98
99 <para>To test the results, issue: <command>make check</command>.</para>
100
101 <para>Now, as the <systemitem class="username">root</systemitem>
102 user:</para>
103
104<screen role="root"><userinput>make install &amp;&amp;
105install -v -m755 -d /usr/share/doc/libassuan-&libassuan-version; &amp;&amp;
106install -v -m644 README /usr/share/doc/libassuan-&libassuan-version;</userinput></screen>
107
108 <para>If you built the additional documentation, install it by issuing the
109 following commands as the <systemitem class="username">root</systemitem>
110 user:</para>
111
112<screen role="root"><userinput>install -v -m755 -d /usr/share/doc/libassuan-&libassuan-version;/html &amp;&amp;
113install -v -m644 doc/assuan.html/* \
114 /usr/share/doc/libassuan-&libassuan-version;/html &amp;&amp;
115install -v -m644 doc/assuan_*.html \
116 /usr/share/doc/libassuan-&libassuan-version; &amp;&amp;
117install -v -m644 doc/assuan.{pdf,ps,dvi,txt,texi} \
118 /usr/share/doc/libassuan-&libassuan-version;</userinput></screen>
119
120 </sect2>
121
122 <sect2 role="content">
123 <title>Contents</title>
124
125 <segmentedlist>
126 <segtitle>Installed Program</segtitle>
127 <segtitle>Installed Libraries</segtitle>
128 <segtitle>Installed Directory</segtitle>
129
130 <seglistitem>
131 <seg>libassuan-config</seg>
132 <seg>libassuan.a and libassuan-pth.a</seg>
133 <seg>/usr/share/doc/libassuan-&libassuan-version;</seg>
134 </seglistitem>
135 </segmentedlist>
136
137 <variablelist>
138 <bridgehead renderas="sect3">Short Descriptions</bridgehead>
139 <?dbfo list-presentation="list"?>
140 <?dbhtml list-presentation="table"?>
141
142 <varlistentry id="libassuan-config">
143 <term><command>libassuan-config</command></term>
144 <listitem>
145 <para>is a utility used to configure and build applications based on
146 the libassuan(3) library. It can be used to query the C compiler and
147 linker flags which are required to correctly compile and link the
148 application against the libassuan(3) library.</para>
149 <indexterm zone="libassuan libassuan-config">
150 <primary sortas="b-libassuan-config">libassuan-config</primary>
151 </indexterm>
152 </listitem>
153 </varlistentry>
154
155 <varlistentry id="libassuan-lib">
156 <term><filename class='libraryfile'>libassuan.a</filename></term>
157 <listitem>
158 <para>is the IPC library.</para>
159 <indexterm zone="libassuan libassuan-lib">
160 <primary sortas="c-libassuan">libassuan.a</primary>
161 </indexterm>
162 </listitem>
163 </varlistentry>
164
165 <varlistentry id="libassuan-pth">
166 <term><filename class='libraryfile'>libassuan-pth.a</filename></term>
167 <listitem>
168 <para>is the IPC library linked with the GNU Portable Threads
169 Library.</para>
170 <indexterm zone="libassuan libassuan-pth">
171 <primary sortas="c-libassuan-pth">libassuan-pth.a</primary>
172 </indexterm>
173 </listitem>
174 </varlistentry>
175
176 </variablelist>
177
178 </sect2>
179
180</sect1>
Note: See TracBrowser for help on using the repository browser.