source: networking/netlibs/libsoup.xml@ 5841c65

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 5841c65 was 5841c65, checked in by Bruce Dubbs <bdubbs@…>, 3 years ago

Most remaing tags for genlibs
There are 10 genlib tags left that need to wait for some
dependencies to be tagged.

  • Property mode set to 100644
File size: 7.1 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 libsoup-download-http
8 "&gnome-download-http;/libsoup/2.72/libsoup-&libsoup-version;.tar.xz">
9 <!ENTITY libsoup-download-ftp
10 "&gnome-download-ftp;/libsoup/2.72/libsoup-&libsoup-version;.tar.xz">
11 <!ENTITY libsoup-md5sum "859380b76b51fb55d720daea3c76c945">
12 <!ENTITY libsoup-size "1.4 MB">
13 <!ENTITY libsoup-buildsize "24 MB (with tests)">
14 <!ENTITY libsoup-time "0.3 SBU (Using parallelism=4; with tests)">
15]>
16
17<sect1 id="libsoup" xreflabel="libsoup-&libsoup-version;">
18 <?dbhtml filename="libsoup.html"?>
19
20 <sect1info>
21 <date>$Date$</date>
22 </sect1info>
23
24 <title>libsoup-&libsoup-version;</title>
25
26 <indexterm zone="libsoup">
27 <primary sortas="a-libsoup">libsoup</primary>
28 </indexterm>
29
30 <sect2 role="package">
31 <title>Introduction to libsoup</title>
32
33 <para>
34 The <application>libsoup</application> is a HTTP client/server library for
35 <application>GNOME</application>. It uses GObject and the GLib main loop
36 to integrate with <application>GNOME</application> applications and
37 it also has an asynchronous API for use in threaded applications.
38 </para>
39
40 &lfs110_checked;
41
42 <bridgehead renderas="sect3">Package Information</bridgehead>
43 <itemizedlist spacing="compact">
44 <listitem>
45 <para>
46 Download (HTTP): <ulink url="&libsoup-download-http;"/>
47 </para>
48 </listitem>
49 <listitem>
50 <para>
51 Download (FTP): <ulink url="&libsoup-download-ftp;"/>
52 </para>
53 </listitem>
54 <listitem>
55 <para>
56 Download MD5 sum: &libsoup-md5sum;
57 </para>
58 </listitem>
59 <listitem>
60 <para>
61 Download size: &libsoup-size;
62 </para>
63 </listitem>
64 <listitem>
65 <para>
66 Estimated disk space required: &libsoup-buildsize;
67 </para>
68 </listitem>
69 <listitem>
70 <para>
71 Estimated build time: &libsoup-time;
72 </para>
73 </listitem>
74 </itemizedlist>
75
76 <bridgehead renderas="sect3">Additional Downloads</bridgehead>
77 <itemizedlist spacing="compact">
78 <listitem>
79 <para>
80 Required patch:
81 <ulink url="&patch-root;/libsoup-&libsoup-version;-testsuite_fix-1.patch"/>
82 </para>
83 </listitem>
84 </itemizedlist>
85
86 <bridgehead renderas="sect3">libsoup Dependencies</bridgehead>
87
88 <bridgehead renderas="sect4">Required</bridgehead>
89 <para role="required">
90 <xref linkend="glib-networking"/>,
91 <xref linkend="libpsl"/>,
92 <xref linkend="libxml2"/>, and
93 <xref linkend="sqlite"/>
94 </para>
95
96 <bridgehead renderas="sect4">Recommended</bridgehead>
97 <para role="recommended">
98 <xref linkend="gobject-introspection"/>,
99 <xref linkend="sysprof"/>, and
100 <xref linkend="vala"/>
101 </para>
102
103 <bridgehead renderas="sect4">Optional</bridgehead>
104 <para role="optional">
105 <xref linkend="apache"/> (required to run the test suite),
106 <xref linkend="brotli"/>,
107 <xref linkend="curl"/> (required to run the test suite),
108 <xref linkend="mitkrb"/> (required to run the test suite),
109 <xref linkend="gtk-doc"/>,
110 <xref linkend="php"/> compiled with XMLRPC-EPI <!-- It seems that XMLRPC is part of PHP 5.4.10 -->
111 support (only used for the XMLRPC regression tests), and
112 <xref linkend="samba"/> (ntlm_auth is required to run the test suite)
113 </para>
114
115 <para condition="html" role="usernotes">
116 User Notes: <ulink url="&blfs-wiki;/libsoup"/>
117 </para>
118 </sect2>
119
120 <sect2 role="installation">
121 <title>Installation of libsoup</title>
122
123 <para>
124 First, fix a problem in the testsuite caused by
125 <xref role="nodep" linkend="glib-networking"/>:
126 </para>
127
128<screen><userinput remap="pre">patch -Np1 -i ../libsoup-&libsoup-version;-testsuite_fix-1.patch</userinput></screen>
129
130 <para>
131 Install <application>libsoup</application> by running the following
132 commands:
133 </para>
134
135<screen><userinput>mkdir build &amp;&amp;
136cd build &amp;&amp;
137
138meson --prefix=/usr \
139 --buildtype=release \
140 -Dvapi=enabled \
141 -Dgssapi=disabled .. &amp;&amp;
142ninja</userinput></screen>
143
144 <para>
145 To test the results, issue: <command>ninja test</command>.
146 </para>
147
148 <para>
149 Now, as the <systemitem class="username">root</systemitem> user:
150 </para>
151
152<screen role="root"><userinput>ninja install</userinput></screen>
153
154 </sect2>
155
156 <sect2 role="commands">
157 <title>Command Explanations</title>
158
159 <xi:include xmlns:xi="http://www.w3.org/2001/XInclude"
160 href="../../xincludes/meson-buildtype-release.xml"/>
161
162 <para>
163 <option>-Dvapi=disabled</option>: Use this if you have not installed
164 <application>Vala</application>, e.g. because you are not building
165 <application>GNOME</application>.
166 </para>
167
168 <para>
169 <option>-Ddoc=enabled</option>: Use this option if you want to build
170 the documentation. Note that you must have <xref linkend="gtk-doc"/> installed.
171 </para>
172
173 <para>
174 <parameter>-Dgssapi=disabled</parameter>: libsoup defaults to building with GSSAPI support,
175 which requires Kerberos (as does the test suite). If you are building GNOME or
176 have kerberos installed, remove this switch.
177 </para>
178
179 </sect2>
180
181 <sect2 role="content">
182 <title>Contents</title>
183
184 <segmentedlist>
185 <segtitle>Installed Programs</segtitle>
186 <segtitle>Installed Libraries</segtitle>
187 <segtitle>Installed Directories</segtitle>
188
189 <seglistitem>
190 <seg>
191 None
192 </seg>
193 <seg>
194 libsoup-2.4.so and libsoup-gnome-2.4.so
195 </seg>
196 <seg>
197 /usr/include/libsoup-2.4,
198 /usr/include/libsoup-gnome-2.4 and
199 /usr/share/gtk-doc/html/libsoup-2.4 <!-- only installed if -Ddoc=true is
200 passed. -->
201 </seg>
202 </seglistitem>
203 </segmentedlist>
204
205 <variablelist>
206 <bridgehead renderas="sect3">Short Descriptions</bridgehead>
207 <?dbfo list-presentation="list"?>
208 <?dbhtml list-presentation="table"?>
209
210 <varlistentry id="libsoup-2">
211 <term><filename class="libraryfile">libsoup-2.4.so</filename></term>
212 <listitem>
213 <para>
214 provides functions for asynchronous HTTP connections
215 </para>
216 <indexterm zone="libsoup libsoup-2">
217 <primary sortas="c-libsoup-2">libsoup-2.4.so</primary>
218 </indexterm>
219 </listitem>
220 </varlistentry>
221
222 <varlistentry id="libsoup-gnome-2">
223 <term><filename class="libraryfile">libsoup-gnome-2.4.so</filename></term>
224 <listitem>
225 <para>
226 provides <application>GNOME</application> specific features
227 </para>
228 <indexterm zone="libsoup libsoup-gnome-2">
229 <primary sortas="c-libsoup-gnome-2">libsoup-gnome-2.4.so</primary>
230 </indexterm>
231 </listitem>
232 </varlistentry>
233
234 </variablelist>
235
236 </sect2>
237
238</sect1>
Note: See TracBrowser for help on using the repository browser.