source: general/genlib/qca.xml@ 45ab6c7

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 45ab6c7 was 45ab6c7, checked in by Xi Ruoyao <xry111@…>, 3 years ago

more SVN prop clean up

Remove "$LastChanged$" everywhere, and also some unused $Date$

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