source: general/genlib/libassuan.xml@ 8aeb474

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 8aeb474 was 8aeb474, checked in by Bruce Dubbs <bdubbs@…>, 12 years ago

General cleanup. Mostly removing obsolete comments.

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

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