source: general/genlib/libxslt.xml@ 6c6f393

10.0 10.1 11.0 11.1 11.2 11.3 12.0 12.1 8.2 8.3 8.4 9.0 9.1 basic bdubbs/svn elogind kea ken/TL2024 ken/inkscape-core-mods ken/tuningfonts lazarus lxqt perl-modules 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 6c6f393 was 6c6f393, checked in by Pierre Labastie <pieere@…>, 6 years ago

dovecot-2.2.33.2
mercurial-4.4.1
lvm2-2.2.02.176
libxml2-2.9.7
libxslt-1.1.32
cmke-3.9.5

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

  • Property mode set to 100644
File size: 6.8 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 libxslt-download-http "http://xmlsoft.org/sources/libxslt-&libxslt-version;.tar.gz">
8 <!ENTITY libxslt-download-ftp "ftp://xmlsoft.org/libxslt/libxslt-&libxslt-version;.tar.gz">
9 <!ENTITY libxslt-md5sum "1fc72f98e98bf4443f1651165f3aa146">
10 <!ENTITY libxslt-size "3.3 MB">
11 <!ENTITY libxslt-buildsize "37 MB (with tests)">
12 <!ENTITY libxslt-time "0.1 SBU (with tests)">
13]>
14
15<sect1 id="libxslt" xreflabel="libxslt-&libxslt-version;">
16 <?dbhtml filename="libxslt.html"?>
17
18 <sect1info>
19 <othername>$LastChangedBy$</othername>
20 <date>$Date$</date>
21 </sect1info>
22
23 <title>libxslt-&libxslt-version;</title>
24
25 <indexterm zone="libxslt">
26 <primary sortas="a-libxslt">libxslt</primary>
27 </indexterm>
28
29 <sect2 role="package">
30 <title>Introduction to libxslt</title>
31
32 <para>
33 The <application>libxslt</application> package contains
34 XSLT libraries used for extending <filename
35 class="libraryfile">libxml2</filename> libraries to
36 support XSLT files.
37 </para>
38
39 &lfs81_checked;
40
41 <bridgehead renderas="sect3">Package Information</bridgehead>
42 <itemizedlist spacing="compact">
43 <listitem>
44 <para>
45 Download (HTTP): <ulink url="&libxslt-download-http;"/>
46 </para>
47 </listitem>
48 <listitem>
49 <para>
50 Download (FTP): <ulink url="&libxslt-download-ftp;"/>
51 </para>
52 </listitem>
53 <listitem>
54 <para>
55 Download MD5 sum: &libxslt-md5sum;
56 </para>
57 </listitem>
58 <listitem>
59 <para>
60 Download size: &libxslt-size;
61 </para>
62 </listitem>
63 <listitem>
64 <para>
65 Estimated disk space required: &libxslt-buildsize;
66 </para>
67 </listitem>
68 <listitem>
69 <para>
70 Estimated build time: &libxslt-time;
71 </para>
72 </listitem>
73 </itemizedlist>
74
75 <bridgehead renderas="sect3">libxslt Dependencies</bridgehead>
76
77 <bridgehead renderas="sect4">Required</bridgehead>
78 <para role="required">
79 <xref linkend="libxml2"/>
80 </para>
81
82 <bridgehead renderas="sect4">Recommended</bridgehead>
83 <para role="recommended">
84 <xref linkend="DocBook"/> and
85 <xref linkend="docbook-xsl"/>
86 </para>
87
88 <bridgehead renderas="sect4">Optional</bridgehead>
89 <para role="optional">
90 <xref linkend="libgcrypt"/> and
91 <xref linkend="python2"/> (the python module for <xref role="nodep"
92 linkend="libxml2"/> should be built for Python 2)
93 </para>
94
95 <note>
96 <para>
97 Although it is not a direct dependency, many applications
98 using <application>libxslt</application> will expect
99 <xref linkend="DocBook"/> and <xref linkend="docbook-xsl"/>
100 to be present.
101 </para>
102 </note>
103
104 <para condition="html" role="usernotes">User Notes:
105 <ulink url="&blfs-wiki;/libxslt"/>
106 </para>
107 </sect2>
108
109 <sect2 role="installation">
110 <title>Installation of libxslt</title>
111
112 <para>
113 Install <application>libxslt</application> by running the following
114 commands:
115 </para>
116
117<screen><userinput>sed -i s/3000/5000/ libxslt/transform.c doc/xsltproc.{1,xml} &amp;&amp;
118./configure --prefix=/usr --disable-static &amp;&amp;
119make</userinput></screen>
120
121 <para>
122 To test the results, issue: <command>make check</command>.
123 </para>
124
125 <para>
126 Now, as the <systemitem class="username">root</systemitem> user:
127 </para>
128
129<screen role="root"><userinput>make install</userinput></screen>
130
131 </sect2>
132
133 <sect2 role="commands">
134 <title>Command Explanations</title>
135
136 <para>
137 <command>sed -i s/3000/5000/ ...</command>: this increases the recursion
138 limit in libxslt. This is needed by some packages for their documentation.
139 </para>
140
141 <xi:include xmlns:xi="http://www.w3.org/2001/XInclude"
142 href="../../xincludes/static-libraries.xml"/>
143
144 </sect2>
145
146 <sect2 role="content">
147 <title>Contents</title>
148
149 <segmentedlist>
150 <segtitle>Installed Programs</segtitle>
151 <segtitle>Installed Libraries</segtitle>
152 <segtitle>Installed Directories</segtitle>
153
154 <seglistitem>
155 <seg>
156 xslt-config and xsltproc
157 </seg>
158 <seg>
159 libexslt.so, libxslt.so and optionally, libxsltmod.so
160 <application>Python</application> module
161 </seg>
162 <seg>
163 /usr/include/libexslt,
164 /usr/include/libxslt,
165 /usr/lib/libxslt-plugins,
166 /usr/share/doc/libxslt-&libxslt-version;, and
167 /usr/share/doc/libxslt-python-&libxslt-version;</seg>
168 </seglistitem>
169 </segmentedlist>
170
171 <variablelist>
172 <bridgehead renderas="sect3">Short Descriptions</bridgehead>
173 <?dbfo list-presentation="list"?>
174 <?dbhtml list-presentation="table"?>
175
176 <varlistentry id="xslt-config">
177 <term><command>xslt-config</command></term>
178 <listitem>
179 <para>
180 is used to find out the pre-processor, linking and
181 compiling flags necessary to use the <application>libxslt</application>
182 libraries in 3rd-party programs.
183 </para>
184 <indexterm zone="libxslt xslt-config">
185 <primary sortas="b-xslt-config">xslt-config</primary>
186 </indexterm>
187 </listitem>
188 </varlistentry>
189
190 <varlistentry id="xsltproc">
191 <term><command>xsltproc</command></term>
192 <listitem>
193 <para>
194 is used to apply XSLT stylesheets to XML documents.
195 </para>
196 <indexterm zone="libxslt xsltproc">
197 <primary sortas="b-xsltproc">xsltproc</primary>
198 </indexterm>
199 </listitem>
200 </varlistentry>
201
202 <varlistentry id="libexslt">
203 <term><filename class="libraryfile">libexslt.so</filename></term>
204 <listitem>
205 <para>
206 is used to provide extensions to XSLT functions.
207 </para>
208 <indexterm zone="libxslt libexslt">
209 <primary sortas="c-libexslt">libexslt.so</primary>
210 </indexterm>
211 </listitem>
212 </varlistentry>
213
214 <varlistentry id="libxslt-lib">
215 <term><filename class="libraryfile">libxslt.so</filename></term>
216 <listitem>
217 <para>
218 provides extensions to the
219 <filename class="libraryfile">libxml2</filename>
220 libraries to parse files that use the XSLT format.
221 </para>
222 <indexterm zone="libxslt libxslt-lib">
223 <primary sortas="c-libxslt">libxslt.so</primary>
224 </indexterm>
225 </listitem>
226 </varlistentry>
227
228 </variablelist>
229
230 </sect2>
231
232</sect1>
Note: See TracBrowser for help on using the repository browser.