source: general/genlib/qca.xml@ d679563

systemd-13485
Last change on this file since d679563 was c4dd285f, checked in by DJ Lucas <dj@…>, 9 years ago

partial cleanup of -systemd.xml files

git-svn-id: svn://svn.linuxfromscratch.org/BLFS/branches/systemd@16839 af4574ff-66df-0310-9fd7-8a98e5e911e0

  • Property mode set to 100644
File size: 6.2 KB
RevLine 
[47969a6]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
[c4dd285f]7 <!ENTITY qca-download-http "http://download.kde.org/stable/qca/&qca-version;/src/qca-&qca-version;.tar.xz">
[47969a6]8 <!ENTITY qca-download-ftp " ">
[c4dd285f]9 <!ENTITY qca-md5sum "657cc701316600199199a6b6cb2c73c9">
10 <!ENTITY qca-size "676 KB">
11 <!ENTITY qca-buildsize "28 MB">
12 <!ENTITY qca-time "1.2 SBU (additional 0.3 SBU for the tests)">
[47969a6]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">
[81586492]26 <primary sortas="a-qca">qca</primary>
[47969a6]27 </indexterm>
28
29 <sect2 role="package">
[ad41452]30 <title>Introduction to Qca</title>
[47969a6]31
[0d7900a]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
[47969a6]35 the implementation, using plugins known as Providers.</para>
36
[c4dd285f]37 &lfs78_checked;
[47969a6]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
[ad41452]61 <bridgehead renderas="sect3">Qca Dependencies</bridgehead>
[47969a6]62
63 <bridgehead renderas="sect4">Required</bridgehead>
64 <para role="required">
[c4dd285f]65 <xref linkend="cacerts"/>,
66 <xref linkend="cmake"/>,
67 <xref linkend="qt4"/> or <xref linkend="qt5"/>, and
68 <xref linkend="which"/>
[cf02129]69 </para>
70
71 <bridgehead renderas="sect4">Optional</bridgehead>
[c4dd285f]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="openssl"/>,
80 <xref linkend="p11-kit"/>,
81 <xref linkend="doxygen"/>, and
82 <xref linkend="which"/>
[47969a6]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">
[ad41452]91 <title>Installation of Qca</title>
[47969a6]92
[c4dd285f]93 <para>If desired, remove a lot of irritating warnings when building:</para>
94
95<screen><userinput>sed -i 's/BSD/DEFAULT/' CMakeLists.txt</userinput></screen>
96
[ad41452]97 <para>Install <application>Qca</application> by running the following
[47969a6]98 commands:</para>
99
[cf02129]100<screen><userinput>mkdir build &amp;&amp;
101cd build &amp;&amp;
102
[c4dd285f]103cmake -DCMAKE_INSTALL_PREFIX=&qt4-dir; \
104 -DCMAKE_BUILD_TYPE=Release \
105 -DQT4_BUILD=ON \
106 -DQCA_MAN_INSTALL_DIR:PATH=/usr/share/man \
107 .. &amp;&amp;
[cf02129]108
[47969a6]109make</userinput></screen>
110
[9ca304a]111 <para>To test the results, issue <command>make test</command>.</para>
112
[47969a6]113 <para>Now, as the <systemitem class="username">root</systemitem> user:</para>
114
115<screen role="root"><userinput>make install</userinput></screen>
116
117 </sect2>
[ad41452]118
[47969a6]119 <sect2 role="commands">
120 <title>Command Explanations</title>
121
[c4dd285f]122 <para><parameter>-DCMAKE_BUILD_TYPE=Release</parameter>: This switch is
123 used to apply a higher level of compiler optimizations.</para>
124
125 <para><parameter>-DQT4_BUILD=ON</parameter>: This switch is used to force
126 building with Qt4 even if Qt5 is found. There are no packages in BLFS
127 that use the Qt5 version of Qca.</para>
[cf02129]128
[c4dd285f]129 <para><parameter>-DQCA_MAN_INSTALL_DIR:PATH=/usr/share/man</parameter>:
130 Install the qca man page in the normal location.</para>
[9ca304a]131
[47969a6]132 </sect2>
[ad41452]133
[47969a6]134 <sect2 role="content">
135 <title>Contents</title>
136
137 <segmentedlist>
[ad41452]138 <segtitle>Installed Programs</segtitle>
[47969a6]139 <segtitle>Installed Libraries</segtitle>
[ad41452]140 <segtitle>Installed Directories</segtitle>
[47969a6]141
142 <seglistitem>
[c4dd285f]143 <seg>mozcerts and qcatool (if building with Qt5, the binaries have a -qt5 suffix)</seg>
144 <seg>libqca.so (libqca-qt5.so if building with Qt5) and plugins at &qt4-dir;/lib/qca/crypto</seg>
[cf02129]145 <seg>
[c4dd285f]146 &qt4-dir;/include/QtCrypto (or &qt5-dir;/include/Qca-qt5),
147 &qt4-dir;/lib/cmake/Qca (or &qt5-dir;/lib/cmake/Qca-qt5) and
148 &qt4-dir;/lib/qca (or &qt5-dir;/lib/qca-qt5)
[cf02129]149 </seg>
[47969a6]150 </seglistitem>
151 </segmentedlist>
[a88acf4]152
[47969a6]153 <variablelist>
154 <bridgehead renderas="sect3">Short Descriptions</bridgehead>
155 <?dbfo list-presentation="list"?>
156 <?dbhtml list-presentation="table"?>
157
[cf02129]158 <varlistentry id="mozcerts">
159 <term><command>mozcerts</command></term>
160 <listitem>
161 <para>is a command line tool for converting certdata.txt into
162 outfile.pem files.</para>
163 <indexterm zone="qca mozcerts">
164 <primary sortas="b-mozcerts">mozcerts</primary>
165 </indexterm>
166 </listitem>
167 </varlistentry>
168
[c4dd285f]169 <varlistentry id="qcatool">
170 <term><command>qcatool</command></term>
[a88acf4]171 <listitem>
172 <para>is a command line tool for performing various cryptographic
[c4dd285f]173 operations with Qca.</para>
174 <indexterm zone="qca qcatool">
175 <primary sortas="b-qcatool">qcatool</primary>
[a88acf4]176 </indexterm>
177 </listitem>
178 </varlistentry>
179
180 <varlistentry id="libqca">
181 <term><filename class='libraryfile'>libqca.so</filename></term>
[47969a6]182 <listitem>
[a88acf4]183 <para>is the Qt Cryptography Architecture (Qca) library.</para>
184 <indexterm zone="qca libqca">
185 <primary sortas="c-libqca">libqca.so</primary>
[47969a6]186 </indexterm>
187 </listitem>
188 </varlistentry>
189
190 </variablelist>
[a88acf4]191
[47969a6]192 </sect2>
193
194</sect1>
Note: See TracBrowser for help on using the repository browser.