source: general/genlib/qca.xml@ e66a8c3

10.0 10.1 11.0 11.1 11.2 11.3 12.0 12.1 8.3 8.4 9.0 9.1 basic bdubbs/svn elogind kea ken/TL2024 ken/inkscape-core-mods ken/tuningfonts lazarus lxqt perl-modules 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 e66a8c3 was e66a8c3, checked in by Bruce Dubbs <bdubbs@…>, 6 years ago

Update to libX11-1.6.6.tar.bz2 (xorg library).
Update to poppler-0.67.0.
Update to mlt-6.10.0.
Update to graphite2-1.3.12.
Update to kf5-apps-18.08.0.
Update to opencv-3.4.2.

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

  • Property mode set to 100644
File size: 6.0 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;/src/qca-&qca-version;.tar.xz">
8 <!ENTITY qca-download-ftp " ">
9 <!ENTITY qca-md5sum "5019cc29efcf828681cd93164238ce26">
10 <!ENTITY qca-size "672 KB">
11 <!ENTITY qca-buildsize "28 MB">
12 <!ENTITY qca-time "0.5 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><application>Qca</application> aims to provide a straightforward
33 and 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.</para>
36
37 &lfs83_checked;
38
39 <bridgehead renderas="sect3">Package Information</bridgehead>
40 <itemizedlist spacing="compact">
41 <listitem>
42 <para>Download (HTTP): <ulink url="&qca-download-http;"/></para>
43 </listitem>
44 <listitem>
45 <para>Download (FTP): <ulink url="&qca-download-ftp;"/></para>
46 </listitem>
47 <listitem>
48 <para>Download MD5 sum: &qca-md5sum;</para>
49 </listitem>
50 <listitem>
51 <para>Download size: &qca-size;</para>
52 </listitem>
53 <listitem>
54 <para>Estimated disk space required: &qca-buildsize;</para>
55 </listitem>
56 <listitem>
57 <para>Estimated build time: &qca-time;</para>
58 </listitem>
59 </itemizedlist>
60
61 <bridgehead renderas="sect3">Qca Dependencies</bridgehead>
62
63 <bridgehead renderas="sect4">Required</bridgehead>
64 <para role="required">
65 <xref linkend="make-ca"/>,
66 <xref linkend="cmake"/>,
67 <xref linkend="qt5"/>, and
68 <xref linkend="which"/>
69 </para>
70
71 <bridgehead renderas="sect4">Optional</bridgehead>
72 <para role="Optional">
73 <xref linkend="cyrus-sasl"/>,
74 <xref linkend="gnupg2"/>,
75 <xref linkend="libgcrypt"/>,
76 <xref linkend="libgpg-error"/>,
77 <xref linkend="nss"/>,
78 <xref linkend="nspr"/>,
79 <xref linkend="openssl10"/>,
80 <xref linkend="p11-kit"/>,
81 <xref linkend="doxygen"/>, and
82 <xref linkend="which"/>
83 </para>
84
85 <para condition="html" role="usernotes">User Notes:
86 <ulink url="&blfs-wiki;/qca"/></para>
87
88 </sect2>
89
90 <sect2 role="installation">
91 <title>Installation of Qca</title>
92
93 <para>Fix the location of the CA certificates:</para>
94
95<screen><userinput>sed -i 's@ca-bundle.pem@ca-bundle.crt@' CMakeLists.txt</userinput></screen>
96
97 <para>Install <application>Qca</application> by running the following
98 commands:</para>
99
100<screen><userinput>mkdir build &amp;&amp;
101cd build &amp;&amp;
102
103cmake -DCMAKE_INSTALL_PREFIX=$QT5DIR \
104 -DCMAKE_BUILD_TYPE=Release \
105 -DQCA_MAN_INSTALL_DIR:PATH=/usr/share/man \
106 -DOPENSSL_INCLUDE_DIR=/usr/include/openssl-1.0 \
107 -DOPENSSL_SSL_LIBRARY=/usr/lib/openssl-1.0/libssl.so \
108 -DOPENSSL_CRYPTO_LIBRARY=/usr/lib/openssl-1.0/libcrypto.so \
109 .. &amp;&amp;
110
111make</userinput></screen>
112
113 <para>To test the results, issue <command>make test</command>.</para>
114
115 <para>Now, as the <systemitem class="username">root</systemitem> user:</para>
116
117<screen role="root"><userinput>make install</userinput></screen>
118
119 </sect2>
120
121 <sect2 role="commands">
122 <title>Command Explanations</title>
123
124 <para><parameter>-DCMAKE_BUILD_TYPE=Release</parameter>: This switch is
125 used to apply a higher level of compiler optimizations.</para>
126
127 <para><parameter>-DQCA_MAN_INSTALL_DIR:PATH=/usr/share/man</parameter>:
128 Install the qca man page in the normal location.</para>
129
130 </sect2>
131
132 <sect2 role="content">
133 <title>Contents</title>
134
135 <segmentedlist>
136 <segtitle>Installed Programs</segtitle>
137 <segtitle>Installed Libraries</segtitle>
138 <segtitle>Installed Directories</segtitle>
139
140 <seglistitem>
141 <seg>mozcerts-qt5 and qcatool-qt5</seg>
142 <seg>libqca-qt5.so</seg>
143 <seg>
144 &qt5-dir;/include/Qca-qt5,
145 &qt5-dir;/lib/cmake/Qca-qt5, and
146 &qt5-dir;/lib/qca-qt5
147 </seg>
148 </seglistitem>
149 </segmentedlist>
150
151 <variablelist>
152 <bridgehead renderas="sect3">Short Descriptions</bridgehead>
153 <?dbfo list-presentation="list"?>
154 <?dbhtml list-presentation="table"?>
155
156 <varlistentry id="mozcerts">
157 <term><command>mozcerts-qt5</command></term>
158 <listitem>
159 <para>is a command line tool for converting certdata.txt into
160 outfile.pem files.</para>
161 <indexterm zone="qca mozcerts">
162 <primary sortas="b-mozcerts">mozcerts-qt5</primary>
163 </indexterm>
164 </listitem>
165 </varlistentry>
166
167 <varlistentry id="qcatool">
168 <term><command>qcatool-qt5</command></term>
169 <listitem>
170 <para>is a command line tool for performing various cryptographic
171 operations with Qca.</para>
172 <indexterm zone="qca qcatool">
173 <primary sortas="b-qcatool">qcatool-qt5</primary>
174 </indexterm>
175 </listitem>
176 </varlistentry>
177
178 <varlistentry id="libqca">
179 <term><filename class='libraryfile'>libqca-qt5.so</filename></term>
180 <listitem>
181 <para>is the Qt Cryptography Architecture (Qca) library.</para>
182 <indexterm zone="qca libqca">
183 <primary sortas="c-libqca">libqca-qt5.so</primary>
184 </indexterm>
185 </listitem>
186 </varlistentry>
187
188 </variablelist>
189
190 </sect2>
191
192</sect1>
Note: See TracBrowser for help on using the repository browser.