source: general/genlib/qca.xml@ 24f179da

12.2 gimp3 lazarus trunk xry111/for-12.3 xry111/spidermonkey128
Last change on this file since 24f179da was 71818de, checked in by Bruce Dubbs <bdubbs@…>, 3 months ago

Update to qt6-6.7.1 and qtwebengine-6.7.1.

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