source: general/genlib/qca.xml@ adf6dd9a

10.0 10.1 11.0 11.1 11.2 11.3 12.0 12.1 7.10 7.5 7.6 7.6-blfs 7.6-systemd 7.7 7.8 7.9 8.0 8.1 8.2 8.3 8.4 9.0 9.1 basic bdubbs/svn elogind gnome kde5-13430 kde5-14269 kde5-14686 kea ken/TL2024 ken/inkscape-core-mods ken/tuningfonts krejzi/svn lazarus lxqt nosym perl-modules plabs/newcss plabs/python-mods python3.11 qt5new rahul/power-profiles-daemon renodr/vulkan-addition systemd-11177 systemd-13485 trunk upgradedb xry111/intltool xry111/llvm18 xry111/soup3 xry111/test-20220226 xry111/xf86-video-removal
Last change on this file since adf6dd9a was a88acf4, checked in by Ragnar Thomsen <rthomsen@…>, 11 years ago

Improvements to qca, qjson and libdbusmenu-qt instructions.

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

  • Property mode set to 100644
File size: 4.8 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
7 <!ENTITY qca-download-http "http://delta.affinix.com/download/qca/2.0/qca-&qca-version;.tar.bz2">
8 <!ENTITY qca-download-ftp " ">
9 <!ENTITY qca-md5sum "fc15bd4da22b8096c51fcfe52d2fa309">
[ad41452]10 <!ENTITY qca-size "4.3 MB">
11 <!ENTITY qca-buildsize "110 MB">
[47969a6]12 <!ENTITY qca-time "2.2 SBU">
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
[db4eca0]37 &lfs74_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">
[7af92fe5]65 <xref linkend="qt4"/> and
[e40b79b6]66 <xref linkend="which"/>
[47969a6]67 </para>
68
69 <para condition="html" role="usernotes">User Notes:
70 <ulink url="&blfs-wiki;/qca"/></para>
71
72 </sect2>
73
74 <sect2 role="installation">
[ad41452]75 <title>Installation of Qca</title>
[47969a6]76
[ad41452]77 <para>Install <application>Qca</application> by running the following
[47969a6]78 commands:</para>
79
[ad41452]80<screen><userinput>sed -i '217s@set@this->set@' src/botantools/botan/botan/secmem.h &amp;&amp;
[7af92fe5]81./configure --prefix=&qt4-dir; \
[a88acf4]82 --certstore-path=/etc/ssl/ca-bundle.crt \
83 --no-separate-debug-info &amp;&amp;
[47969a6]84make</userinput></screen>
85
[9ca304a]86 <para>To test the results, issue <command>make test</command>.</para>
87
[47969a6]88 <para>Now, as the <systemitem class="username">root</systemitem> user:</para>
89
90<screen role="root"><userinput>make install</userinput></screen>
91
92 </sect2>
[ad41452]93
[47969a6]94 <sect2 role="commands">
95 <title>Command Explanations</title>
96
[0d7900a]97 <para><command>sed -i '217s@set@...</command>: This sed fixes compiling with
[a88acf4]98 <application>GCC</application> 4.7 and newer. It is safe to omit when compiling
99 with older <application>GCC</application> versions.</para>
[47969a6]100
[a88acf4]101 <para><option>--certstore-path=/etc/ssl/ca-bundle.crt</option>: Causes
[9ca304a]102 the build to use the system-installed CA Certificates instead of a bundled
103 copy.</para>
[a88acf4]104
105 <para><option>--no-separate-debug-info</option>: Prevents installation
106 of a separate library and program file with debug information.</para>
[9ca304a]107
[47969a6]108 </sect2>
[ad41452]109
[47969a6]110 <sect2 role="content">
111 <title>Contents</title>
112
113 <segmentedlist>
[ad41452]114 <segtitle>Installed Programs</segtitle>
[47969a6]115 <segtitle>Installed Libraries</segtitle>
[ad41452]116 <segtitle>Installed Directories</segtitle>
[47969a6]117
118 <seglistitem>
[a88acf4]119 <seg>qcatool2</seg>
120 <seg>libqca.so</seg>
121 <seg>&qt4-dir;/include/QtCrypto</seg>
[47969a6]122 </seglistitem>
123 </segmentedlist>
[a88acf4]124
[47969a6]125 <variablelist>
126 <bridgehead renderas="sect3">Short Descriptions</bridgehead>
127 <?dbfo list-presentation="list"?>
128 <?dbhtml list-presentation="table"?>
129
[a88acf4]130 <varlistentry id="qcatool2">
131 <term><command>qcatool2</command></term>
132 <listitem>
133 <para>is a command line tool for performing various cryptographic
134 operations with Qca.</para>
135 <indexterm zone="qca qcatool2">
136 <primary sortas="b-qcatool2">qcatool2</primary>
137 </indexterm>
138 </listitem>
139 </varlistentry>
140
141 <varlistentry id="libqca">
142 <term><filename class='libraryfile'>libqca.so</filename></term>
[47969a6]143 <listitem>
[a88acf4]144 <para>is the Qt Cryptography Architecture (Qca) library.</para>
145 <indexterm zone="qca libqca">
146 <primary sortas="c-libqca">libqca.so</primary>
[47969a6]147 </indexterm>
148 </listitem>
149 </varlistentry>
150
151 </variablelist>
[a88acf4]152
[47969a6]153 </sect2>
154
155</sect1>
Note: See TracBrowser for help on using the repository browser.