source: networking/netlibs/libsoup.xml@ 8558044

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 8558044 was 8558044, checked in by Pierre Labastie <pierre.labastie@…>, 3 years ago

Remove spaces at the end of lines

I know it is somewhat useless, but I don't like them for
two reasons: first they cannot be seen, and I do not like things I
cannot see. Second, git highlights them, and this is disturbing...

  • Property mode set to 100644
File size: 7.5 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.74/libsoup-&libsoup-version;.tar.xz">
9 <!ENTITY libsoup-download-ftp
10 "&gnome-download-ftp;/libsoup/2.74/libsoup-&libsoup-version;.tar.xz">
11 <!ENTITY libsoup-md5sum "076f7ceeb73ebae2cc55a4c2877f6926">
12 <!ENTITY libsoup-size "1.4 MB">
13 <!ENTITY libsoup-buildsize "15 MB (with tests)">
14 <!ENTITY libsoup-time "0.2 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 &lfs110a_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"/> and
99 <xref linkend="vala"/>
100 </para>
101
102 <bridgehead renderas="sect4">Optional</bridgehead>
103 <para role="optional">
104 <xref linkend="apache"/> (required to run the test suite),
105 <xref linkend="brotli"/>,
106 <xref linkend="curl"/> (required to run the test suite),
107 <xref linkend="sysprof"/> (for profiling),
108 <xref linkend="mitkrb"/> (required to run the test suite),
109 <xref linkend="gtk-doc"/>,
110 <!-- It seems that XMLRPC is part of PHP 5.4.10 -->
111 <xref linkend="php"/> compiled with XMLRPC-EPI
112 support (only used for the XMLRPC regression tests), and
113 <xref linkend="samba"/> (ntlm_auth is required to run the test suite)
114 </para>
115
116 <para condition="html" role="usernotes">
117 User Notes: <ulink url="&blfs-wiki;/libsoup"/>
118 </para>
119 </sect2>
120
121 <sect2 role="installation">
122 <title>Installation of libsoup</title>
123<!--
124 <para>
125 First, fix a problem in the testsuite caused by
126 <xref role="nodep" linkend="glib-networking"/>:
127 </para>
128
129<screen><userinput remap="pre">patch -Np1 -i ../libsoup-&libsoup-version;-testsuite_fix-1.patch</userinput></screen>
130-->
131 <para>
132 Install <application>libsoup</application> by running the following
133 commands:
134 </para>
135
136<screen><userinput>mkdir build &amp;&amp;
137cd build &amp;&amp;
138
139meson --prefix=/usr \
140 --buildtype=release \
141 -Dvapi=enabled \
142 -Dgssapi=disabled \
143 -Dsysprof=disabled \
144 .. &amp;&amp;
145ninja</userinput></screen>
146
147 <para>
148 To test the results, issue: <command>ninja test</command>.
149 </para>
150
151 <para>
152 Now, as the <systemitem class="username">root</systemitem> user:
153 </para>
154
155<screen role="root"><userinput>ninja install</userinput></screen>
156
157 </sect2>
158
159 <sect2 role="commands">
160 <title>Command Explanations</title>
161
162 <xi:include xmlns:xi="http://www.w3.org/2001/XInclude"
163 href="../../xincludes/meson-buildtype-release.xml"/>
164
165 <para>
166 <option>-Dvapi=disabled</option>: Use this if you have not installed
167 <application>Vala</application>, e.g. because you are not building
168 <application>GNOME</application>.
169 </para>
170
171 <para>
172 <option>-Ddoc=enabled</option>: Use this option if you want to build
173 the documentation. Note that you must have <xref linkend="gtk-doc"/> installed.
174 </para>
175
176 <para>
177 <parameter>-Dgssapi=disabled</parameter>: libsoup defaults to building with GSSAPI support,
178 which requires Kerberos (as does the test suite). If you are building GNOME or
179 have kerberos installed, remove this option.
180 </para>
181
182 <para>
183 <parameter>-Dsysprof=disabled</parameter>: libsoup will automatically download
184 a git version of <xref linkend="sysprof"/> if git is available or use the installed
185 version if available. If you need profiling, remove this option.
186 </para>
187
188 </sect2>
189
190 <sect2 role="content">
191 <title>Contents</title>
192
193 <segmentedlist>
194 <segtitle>Installed Programs</segtitle>
195 <segtitle>Installed Libraries</segtitle>
196 <segtitle>Installed Directories</segtitle>
197
198 <seglistitem>
199 <seg>
200 None
201 </seg>
202 <seg>
203 libsoup-2.4.so and libsoup-gnome-2.4.so
204 </seg>
205 <seg>
206 /usr/include/libsoup-2.4,
207 /usr/include/libsoup-gnome-2.4 and
208 /usr/share/gtk-doc/html/libsoup-2.4 <!-- only installed if -Ddoc=true is
209 passed. -->
210 </seg>
211 </seglistitem>
212 </segmentedlist>
213
214 <variablelist>
215 <bridgehead renderas="sect3">Short Descriptions</bridgehead>
216 <?dbfo list-presentation="list"?>
217 <?dbhtml list-presentation="table"?>
218
219 <varlistentry id="libsoup-2">
220 <term><filename class="libraryfile">libsoup-2.4.so</filename></term>
221 <listitem>
222 <para>
223 provides functions for asynchronous HTTP connections
224 </para>
225 <indexterm zone="libsoup libsoup-2">
226 <primary sortas="c-libsoup-2">libsoup-2.4.so</primary>
227 </indexterm>
228 </listitem>
229 </varlistentry>
230
231 <varlistentry id="libsoup-gnome-2">
232 <term><filename class="libraryfile">libsoup-gnome-2.4.so</filename></term>
233 <listitem>
234 <para>
235 provides <application>GNOME</application> specific features
236 </para>
237 <indexterm zone="libsoup libsoup-gnome-2">
238 <primary sortas="c-libsoup-gnome-2">libsoup-gnome-2.4.so</primary>
239 </indexterm>
240 </listitem>
241 </varlistentry>
242
243 </variablelist>
244
245 </sect2>
246
247</sect1>
Note: See TracBrowser for help on using the repository browser.