source: general/genlib/qca.xml@ 427b46a

11.0 11.1 11.2 11.3 12.0 12.1 kea ken/TL2024 ken/inkscape-core-mods ken/tuningfonts lazarus lxqt 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 427b46a was d437f756, checked in by Bruce Dubbs <bdubbs@…>, 3 years ago

More library tags

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

  • Property mode set to 100644
File size: 6.7 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 qca-download-http "http://download.kde.org/stable/qca/&qca-version;/qca-&qca-version;.tar.xz">
8 <!ENTITY qca-download-ftp " ">
9 <!ENTITY qca-md5sum "328ca1e968ee29a2bf6f383b1f9c163e">
10 <!ENTITY qca-size "718 KB">
11 <!ENTITY qca-buildsize "43 MB">
12 <!ENTITY qca-time "0.6 SBU (using parallelism=4; add 0.6 SBU for tests)">
13]>
14
15<sect1 id="qca" xreflabel="qca-&qca-version;">
16 <?dbhtml filename="qca.html"?>
17
18 <sect1info>
19 <othername>$LastChangedBy$</othername>
20 <date>$Date$</date>
21 </sect1info>
22
23 <title>Qca-&qca-version;</title>
24
25 <indexterm zone="qca">
26 <primary sortas="a-qca">qca</primary>
27 </indexterm>
28
29 <sect2 role="package">
30 <title>Introduction to Qca</title>
31
32 <para>
33 <application>Qca</application> aims to provide a straightforward and
34 cross-platform crypto API, using <application>Qt</application> datatypes
35 and conventions. <application>Qca</application> separates the API from
36 the implementation, using plugins known as Providers.
37 </para>
38
39 &lfs101_checked;
40
41 <bridgehead renderas="sect3">Package Information</bridgehead>
42 <itemizedlist spacing="compact">
43 <listitem>
44 <para>
45 Download (HTTP): <ulink url="&qca-download-http;"/>
46 </para>
47 </listitem>
48 <listitem>
49 <para>
50 Download (FTP): <ulink url="&qca-download-ftp;"/>
51 </para>
52 </listitem>
53 <listitem>
54 <para>
55 Download MD5 sum: &qca-md5sum;
56 </para>
57 </listitem>
58 <listitem>
59 <para>
60 Download size: &qca-size;
61 </para>
62 </listitem>
63 <listitem>
64 <para>
65 Estimated disk space required: &qca-buildsize;
66 </para>
67 </listitem>
68 <listitem>
69 <para>
70 Estimated build time: &qca-time;
71 </para>
72 </listitem>
73 </itemizedlist>
74<!--
75 <bridgehead renderas="sect3">Additional Downloads</bridgehead>
76 <itemizedlist spacing="compact">
77 <listitem>
78 <para>
79 Required patch:
80 <ulink url="&patch-root;/qca-&qca-version;-openssl-1.patch"/>
81 </para>
82 </listitem>
83 </itemizedlist>
84-->
85 <bridgehead renderas="sect3">Qca Dependencies</bridgehead>
86
87 <bridgehead renderas="sect4">Required</bridgehead>
88 <para role="required">
89 <xref linkend="make-ca"/>,
90 <xref linkend="cmake"/>,
91 <xref linkend="qt5"/>, and
92 <xref linkend="which"/>
93 </para>
94
95 <bridgehead renderas="sect4">Optional</bridgehead>
96 <para role="Optional">
97 <xref linkend="cyrus-sasl"/>,
98 <xref linkend="gnupg2"/>,
99 <xref linkend="libgcrypt"/>,
100 <xref linkend="libgpg-error"/>,
101 <xref linkend="nss"/>,
102 <xref linkend="nspr"/>,
103 <xref linkend="p11-kit"/>,
104 <xref linkend="doxygen"/>,
105 <xref linkend="which"/>, and
106 <ulink url="https://botan.randombit.net/">Botan</ulink>
107 </para>
108
109 <para condition="html" role="usernotes">User Notes:
110 <ulink url="&blfs-wiki;/qca"/></para>
111
112 </sect2>
113
114 <sect2 role="installation">
115 <title>Installation of Qca</title>
116
117 <para>
118 Fix the location of the CA certificates:
119 </para>
120
121<screen><userinput>sed -i 's@cert.pem@certs/ca-bundle.crt@' CMakeLists.txt</userinput></screen>
122
123 <para>
124 Install <application>Qca</application> by running the following
125 commands:
126 </para>
127
128<screen><userinput>mkdir build &amp;&amp;
129cd build &amp;&amp;
130
131cmake -DCMAKE_INSTALL_PREFIX=$QT5DIR \
132 -DCMAKE_BUILD_TYPE=Release \
133 -DQCA_MAN_INSTALL_DIR:PATH=/usr/share/man \
134 .. &amp;&amp;
135make</userinput></screen>
136
137 <para>
138 To test the results, issue <command>make test</command>. <!--One test
139 using <xref linkend="gnupg2"/> fails without a correct passphrase. The
140 required passphrase does not seem to be published.-->
141 </para>
142
143 <para>
144 Now, as the <systemitem class="username">root</systemitem> user:
145 </para>
146
147<screen role="root"><userinput>make install</userinput></screen>
148
149 </sect2>
150
151 <sect2 role="commands">
152 <title>Command Explanations</title>
153
154 <para>
155 <parameter>-DCMAKE_BUILD_TYPE=Release</parameter>: This switch is
156 used to apply a higher level of compiler optimizations.
157 </para>
158
159 <para>
160 <parameter>-DQCA_MAN_INSTALL_DIR:PATH=/usr/share/man</parameter>:
161 Install the qca man page in the normal location.
162 </para>
163
164 </sect2>
165
166 <sect2 role="content">
167 <title>Contents</title>
168
169 <segmentedlist>
170 <segtitle>Installed Programs</segtitle>
171 <segtitle>Installed Libraries</segtitle>
172 <segtitle>Installed Directories</segtitle>
173
174 <seglistitem>
175 <seg>mozcerts-qt5 and qcatool-qt5</seg>
176 <seg>
177 libqca-qt5.so,
178 libqca-cyrus-sasl.so,
179 libqca-gcrypt.so,
180 libqca-gnupg.so,
181 libqca-logger.so,
182 libqca-nss.so,
183 libqca-ossl.so, and
184 libqca-softstore.so
185 </seg>
186 <seg>
187 &qt5-dir;/include/Qca-qt5,
188 &qt5-dir;/lib/cmake/Qca-qt5, and
189 &qt5-dir;/lib/qca-qt5
190 </seg>
191 </seglistitem>
192 </segmentedlist>
193
194 <variablelist>
195 <bridgehead renderas="sect3">Short Descriptions</bridgehead>
196 <?dbfo list-presentation="list"?>
197 <?dbhtml list-presentation="table"?>
198
199 <varlistentry id="mozcerts">
200 <term><command>mozcerts-qt5</command></term>
201 <listitem>
202 <para>
203 is a command line tool for converting certdata.txt into
204 outfile.pem files
205 </para>
206 <indexterm zone="qca mozcerts">
207 <primary sortas="b-mozcerts">mozcerts-qt5</primary>
208 </indexterm>
209 </listitem>
210 </varlistentry>
211
212 <varlistentry id="qcatool">
213 <term><command>qcatool-qt5</command></term>
214 <listitem>
215 <para>
216 is a command line tool for performing various cryptographic
217 operations with Qca
218 </para>
219 <indexterm zone="qca qcatool">
220 <primary sortas="b-qcatool">qcatool-qt5</primary>
221 </indexterm>
222 </listitem>
223 </varlistentry>
224
225 <varlistentry id="libqca">
226 <term><filename class="libraryfile">libqca-qt5.so</filename></term>
227 <listitem>
228 <para>
229 is the Qt Cryptography Architecture (Qca) library
230 </para>
231 <indexterm zone="qca libqca">
232 <primary sortas="c-libqca">libqca-qt5.so</primary>
233 </indexterm>
234 </listitem>
235 </varlistentry>
236
237 </variablelist>
238
239 </sect2>
240
241</sect1>
Note: See TracBrowser for help on using the repository browser.