source: networking/netlibs/serf.xml@ 2347983d

12.1 ken/TL2024 ken/tuningfonts lazarus plabs/newcss python3.11 rahul/power-profiles-daemon renodr/vulkan-addition trunk xry111/llvm18
Last change on this file since 2347983d was 7daa99e, checked in by Douglas R. Reno <renodr@…>, 9 months ago

serf: minor reword for the Kerberos V5 dependency

  • Property mode set to 100644
File size: 5.9 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 serf-download-http "https://archive.apache.org/dist/serf/serf-&serf-version;.tar.bz2">
8 <!ENTITY serf-download-ftp " ">
9 <!ENTITY serf-md5sum "5320087299084c297eff8e1dacfab1af">
10 <!ENTITY serf-size "148 KB">
11 <!ENTITY serf-buildsize "2.4 MB">
12 <!ENTITY serf-time "less than 0.1 SBU">
13]>
14
15<sect1 id="serf" xreflabel="Serf-&serf-version;">
16 <?dbhtml filename="serf.html"?>
17
18
19 <title>Serf-&serf-version;</title>
20
21 <indexterm zone="serf">
22 <primary sortas="a-Serf">Serf</primary>
23 </indexterm>
24
25 <sect2 role="package">
26 <title>Introduction to Serf</title>
27
28 <para>
29 The <application>Serf</application> package contains a C-based HTTP client
30 library built upon the Apache Portable Runtime (APR) library. It
31 multiplexes connections, running the read/write communication asynchronously.
32 Memory copies and transformations are kept to a minimum to provide high
33 performance operation.
34 </para>
35
36 &lfs120_checked;
37
38 <bridgehead renderas="sect3">Package Information</bridgehead>
39 <itemizedlist spacing="compact">
40 <listitem>
41 <para>
42 Download (HTTP): <ulink url="&serf-download-http;"/>
43 </para>
44 </listitem>
45 <listitem>
46 <para>
47 Download (FTP): <ulink url="&serf-download-ftp;"/>
48 </para>
49 </listitem>
50 <listitem>
51 <para>
52 Download MD5 sum: &serf-md5sum;
53 </para>
54 </listitem>
55 <listitem>
56 <para>
57 Download size: &serf-size;
58 </para>
59 </listitem>
60 <listitem>
61 <para>
62 Estimated disk space required: &serf-buildsize;
63 </para>
64 </listitem>
65 <listitem>
66 <para>
67 Estimated build time: &serf-time;
68 </para>
69 </listitem>
70 </itemizedlist>
71<!--
72 <bridgehead renderas="sect3">Additional Downloads</bridgehead>
73 <itemizedlist spacing="compact">
74 <listitem>
75 <para>
76 Required patch:
77 <ulink url="&patch-root;/serf-&serf-version;-openssl3_fixes-1.patch"/>
78 </para>
79 </listitem>
80 </itemizedlist>
81-->
82 <bridgehead renderas="sect3">Serf Dependencies</bridgehead>
83
84 <bridgehead renderas="sect4">Required</bridgehead>
85 <para role="required">
86 <xref linkend="apr-util"/> and
87 <xref linkend="scons"/>
88 </para>
89
90 <bridgehead renderas="sect4">Optional</bridgehead>
91 <para role="optional">
92 <xref linkend="mitkrb"/> (for GSSAPI support)
93 </para>
94
95 </sect2>
96
97 <sect2 role="installation">
98 <title>Installation of Serf</title>
99<!--
100 <para>
101 First, fix an issue that causes compilation issues in other packages
102 when using OpenSSL-3:
103 </para>
104
105<screen><userinput remap="pre">patch -Np1 -i ../serf-&serf-version;-openssl3_fixes-1.patch</userinput></screen>
106-->
107 <para>
108 Install <application>Serf</application> by running the following
109 commands:
110 </para>
111
112<screen><userinput>sed -i "/Append/s:RPATH=libdir,::" SConstruct &amp;&amp;
113sed -i "/Default/s:lib_static,::" SConstruct &amp;&amp;
114sed -i "/Alias/s:install_static,::" SConstruct &amp;&amp;
115
116scons PREFIX=/usr</userinput></screen>
117<!--
118sed -i "/ print/{s/print/print(/; s/$/)/}" SConstruct &amp;&amp;
119sed -i "/get_contents()/s/,/.decode()&amp;/" SConstruct &amp;&amp;
120-->
121
122<!-- I did not find this to be needed as of 1.3.9 -renodr
123 <para>
124 If you wish to run the test suite, fix one file:
125 </para>
126
127<screen><userinput>sed -i test/test_buckets.c \
128 -e 's://\( buf_size = orig_len + (orig_len / 1000) + 12;\):/\*\1\ */:'</userinput></screen>
129-->
130
131<!-- With Python 3, check.py is broken. It could be fixed, but since the
132 test suite hangs anyway...
133 <para>
134 To test the results, issue: <command>scons check</command>.
135 The tests currently will cause a hang.
136 </para>
137-->
138
139 <para>
140 This package does not come with a functional test suite.
141 </para>
142
143 <para>
144 Now, as the <systemitem class="username">root</systemitem> user:
145 </para>
146
147<screen role="root"><userinput>scons PREFIX=/usr install</userinput></screen>
148
149 </sect2>
150
151 <sect2 role="commands">
152 <title>Command Explanations</title>
153
154 <para>
155 <command>sed -i "..."</command>: The first command removes the runtime
156 path from a shared library and the next two commands disable building and
157 installing of the static library. <!--The fourth command corrects for
158 changes in scons-3.x. The last command allows to use <application>
159 Python 3</application>.-->
160 </para>
161
162 <para>
163 <option>GSSAPI=/usr</option>: Use this switch if you have installed a
164 GSSAPI library and you want <application>serf</application> to use it.
165 </para>
166
167 </sect2>
168
169 <sect2 role="content">
170 <title>Contents</title>
171
172 <segmentedlist>
173 <segtitle>Installed Programs</segtitle>
174 <segtitle>Installed Library</segtitle>
175 <segtitle>Installed Directory</segtitle>
176
177 <seglistitem>
178 <seg>
179 None
180 </seg>
181 <seg>
182 libserf-1.so
183 </seg>
184 <seg>
185 /usr/include/serf-1
186 </seg>
187 </seglistitem>
188 </segmentedlist>
189
190 <variablelist>
191 <bridgehead renderas="sect3">Short Descriptions</bridgehead>
192 <?dbfo list-presentation="list"?>
193 <?dbhtml list-presentation="table"?>
194
195 <varlistentry id="libserf-1">
196 <term><filename class="libraryfile">libserf-1.so</filename></term>
197 <listitem>
198 <para>
199 contains the <application>Serf</application> API functions
200 </para>
201 <indexterm zone="serf libserf-1">
202 <primary sortas="c-libserf-1">libserf-1.so</primary>
203 </indexterm>
204 </listitem>
205 </varlistentry>
206
207 </variablelist>
208
209 </sect2>
210
211</sect1>
Note: See TracBrowser for help on using the repository browser.