source: chapter06/perl.xml@ eb6d9eb

10.0 10.0-rc1 10.1 10.1-rc1 11.0 11.0-rc1 11.0-rc2 11.0-rc3 11.1 11.1-rc1 11.2 11.2-rc1 11.3 11.3-rc1 12.0 12.0-rc1 12.1 12.1-rc1 6.3 6.4 6.5 6.6 6.7 6.8 7.0 7.1 7.2 7.3 7.4 7.5 7.5-systemd 7.6 7.6-systemd 7.7 7.7-systemd 7.8 7.8-systemd 7.9 7.9-systemd 8.0 8.1 8.2 8.3 8.4 9.0 9.1 arm bdubbs/gcc13 ml-11.0 multilib renodr/libudev-from-systemd s6-init trunk xry111/arm64 xry111/arm64-12.0 xry111/clfs-ng xry111/lfs-next xry111/loongarch xry111/loongarch-12.0 xry111/loongarch-12.1 xry111/mips64el xry111/pip3 xry111/rust-wip-20221008 xry111/update-glibc
Last change on this file since eb6d9eb was eb6d9eb, checked in by Archaic <archaic@…>, 19 years ago

Updated all chapter 6 build sizes (and chapter7 bootscripts).

git-svn-id: http://svn.linuxfromscratch.org/LFS/trunk/BOOK@5917 4aa44e1e-78dd-0310-a6d2-fbcd4c07a689

  • Property mode set to 100644
File size: 10.8 KB
Line 
1<?xml version="1.0" encoding="ISO-8859-1"?>
2<!DOCTYPE sect1 PUBLIC "-//OASIS//DTD DocBook XML V4.4//EN" "http://www.oasis-open.org/docbook/xml/4.4/docbookx.dtd" [
3 <!ENTITY % general-entities SYSTEM "../general.ent">
4 <!ENTITY % patches-entities SYSTEM "../patches.ent">
5 %general-entities;
6 %patches-entities;
7]>
8<sect1 id="ch-system-perl" role="wrap">
9<title>Perl-&perl-version;</title>
10<?dbhtml filename="perl.html"?>
11
12<indexterm zone="ch-system-perl"><primary sortas="a-Perl">Perl</primary></indexterm>
13
14<sect2 role="package"><title/>
15<para>The Perl package contains the Practical Extraction and Report Language.</para>
16
17<segmentedlist>
18<segtitle>&buildtime;</segtitle>
19<segtitle>&diskspace;</segtitle>
20<seglistitem><seg>2.9 SBU</seg><seg>137 MB</seg></seglistitem>
21</segmentedlist>
22
23<segmentedlist>
24<segtitle>&dependencies;</segtitle>
25<seglistitem><seg>Bash, Binutils, Coreutils, Diffutils,
26Gawk, GCC, Glibc, Grep, Make, and Sed</seg></seglistitem>
27</segmentedlist>
28</sect2>
29
30<sect2 role="installation">
31<title>Installation of Perl</title>
32
33<para>To have full control over the way Perl is set up, run the
34interactive <command>Configure</command> script and hand-pick the way
35this package is built. If the defaults it auto-detects are suitable,
36prepare Perl for compilation with:</para>
37
38<screen><userinput>./configure.gnu --prefix=/usr -Dpager="/bin/less -isR"</userinput></screen>
39
40<para>The meaning of the configure option:</para>
41
42<variablelist>
43<varlistentry>
44<term><parameter>-Dpager="/bin/less -isR"</parameter></term>
45<listitem><para>This corrects an error in the <command>perldoc</command> code with the invocation
46of the <command>less</command> program.</para></listitem>
47</varlistentry>
48</variablelist>
49
50<para>Compile the package:</para>
51
52<screen><userinput>make</userinput></screen>
53
54<para>To run the test suite, first create a basic
55<filename>/etc/hosts</filename> file which is needed by a couple of
56tests to resolve the network name localhost:</para>
57
58<screen><userinput>echo "127.0.0.1 localhost $(hostname)" &gt; /etc/hosts</userinput></screen>
59
60<para>Now run the tests, if desired:</para>
61
62<screen><userinput>make test</userinput></screen>
63
64<para>Install the package:</para>
65
66<screen><userinput>make install</userinput></screen>
67
68</sect2>
69
70
71<sect2 id="contents-perl" role="content"><title>Contents of Perl</title>
72
73<segmentedlist>
74<segtitle>Installed programs</segtitle>
75<segtitle>Installed libraries</segtitle>
76<seglistitem><seg>a2p, c2ph, dprofpp, enc2xs,
77find2perl, h2ph, h2xs, libnetcfg, perl, perl&perl-version; (link to perl),
78perlbug, perlcc, perldoc, perlivp, piconv, pl2pm, pod2html, pod2latex, pod2man,
79pod2text, pod2usage, podchecker, podselect, psed (link to s2p), pstruct (link
80to c2ph), s2p, splain, and xsubpp</seg>
81<seg>Several hundred which cannot all be listed here</seg></seglistitem>
82</segmentedlist>
83
84<variablelist><bridgehead renderas="sect3">Short Descriptions</bridgehead>
85<?dbfo list-presentation="list"?>
86<?dbhtml list-presentation="table"?>
87
88<varlistentry id="a2p">
89<term><command>a2p</command></term>
90<listitem>
91<para>Translates awk to Perl</para>
92<indexterm zone="ch-system-perl a2p"><primary sortas="b-a2p">a2p</primary></indexterm>
93</listitem>
94</varlistentry>
95
96<varlistentry id="c2ph">
97<term><command>c2ph</command></term>
98<listitem>
99<para>Dumps C structures as generated from <command>cc -g -S</command></para>
100<indexterm zone="ch-system-perl c2ph"><primary sortas="b-c2ph">c2ph</primary></indexterm>
101</listitem>
102</varlistentry>
103
104<varlistentry id="dprofpp">
105<term><command>dprofpp</command></term>
106<listitem>
107<para>Displays Perl profile data</para>
108<indexterm zone="ch-system-perl dprofpp"><primary sortas="b-dprofpp">dprofpp</primary></indexterm>
109</listitem>
110</varlistentry>
111
112<varlistentry id="en2cxs">
113<term><command>en2cxs</command></term>
114<listitem>
115<para>Builds a Perl extension for the Encode module from either
116Unicode Character Mappings or Tcl Encoding Files</para>
117<indexterm zone="ch-system-perl en2cxs"><primary sortas="b-en2cxs">en2cxs</primary></indexterm>
118</listitem>
119</varlistentry>
120
121<varlistentry id="find2perl">
122<term><command>find2perl</command></term>
123<listitem>
124<para>Translates <command>find</command> commands to Perl</para>
125<indexterm zone="ch-system-perl find2perl"><primary sortas="b-find2perl">find2perl</primary></indexterm>
126</listitem>
127</varlistentry>
128
129<varlistentry id="h2ph">
130<term><command>h2ph</command></term>
131<listitem>
132<para>Converts <filename class="extension">.h</filename> C header files to
133<filename class="extension">.ph</filename> Perl header files</para>
134<indexterm zone="ch-system-perl h2ph"><primary sortas="b-h2ph">h2ph</primary></indexterm>
135</listitem>
136</varlistentry>
137
138<varlistentry id="h2xs">
139<term><command>h2xs</command></term>
140<listitem>
141<para>Converts <filename class="extension">.h</filename> C header files to Perl extensions</para>
142<indexterm zone="ch-system-perl h2xs"><primary sortas="b-h2xs">h2xs</primary></indexterm>
143</listitem>
144</varlistentry>
145
146<varlistentry id="libnetcfg">
147<term><command>libnetcfg</command></term>
148<listitem>
149<para>Can be used to configure the <filename class="libraryfile">libnet</filename></para>
150<indexterm zone="ch-system-perl libnetcfg"><primary sortas="b-libnetcfg">libnetcfg</primary></indexterm>
151</listitem>
152</varlistentry>
153
154<varlistentry id="perl">
155<term><command>perl</command></term>
156<listitem>
157<para>Combines some of the best features of C, sed, awk and sh into a
158single swiss-army language</para>
159<indexterm zone="ch-system-perl perl"><primary sortas="b-perl">perl</primary></indexterm>
160</listitem>
161</varlistentry>
162
163<varlistentry id="perl-version">
164<term><command>perl&perl-version;</command></term>
165<listitem>
166<para>A hard link to <command>perl</command></para>
167<indexterm zone="ch-system-perl perl-version"><primary
168sortas="b-perl&perl-version;">perl&perl-version;</primary></indexterm>
169</listitem>
170</varlistentry>
171
172
173<varlistentry id="perlbug">
174<term><command>perlbug</command></term>
175<listitem>
176<para>Used to generate bug reports about Perl, or the modules that come
177with it, and mail them</para>
178<indexterm zone="ch-system-perl perlbug"><primary sortas="b-perlbug">perlbug</primary></indexterm>
179</listitem>
180</varlistentry>
181
182<varlistentry id="perlcc">
183<term><command>perlcc</command></term>
184<listitem>
185<para>Generates executables from Perl programs</para>
186<indexterm zone="ch-system-perl perlcc"><primary sortas="b-perlcc">perlcc</primary></indexterm>
187</listitem>
188</varlistentry>
189
190<varlistentry id="perldoc">
191<term><command>perldoc</command></term>
192<listitem>
193<para>Displays a piece of documentation in pod format that is embedded
194in the Perl installation tree or in a Perl script</para>
195<indexterm zone="ch-system-perl perldoc"><primary sortas="b-perldoc">perldoc</primary></indexterm>
196</listitem>
197</varlistentry>
198
199<varlistentry id="perlivp">
200<term><command>perlivp</command></term>
201<listitem>
202<para>The Perl Installation Verification Procedure; it can be used to
203verify that Perl and its libraries have been installed
204correctly</para>
205<indexterm zone="ch-system-perl perlivp"><primary sortas="b-perlivp">perlivp</primary></indexterm>
206</listitem>
207</varlistentry>
208
209<varlistentry id="piconv">
210<term><command>piconv</command></term>
211<listitem>
212<para>A Perl version of the character encoding converter
213<command>iconv</command></para>
214<indexterm zone="ch-system-perl piconv"><primary sortas="b-piconv">piconv</primary></indexterm>
215</listitem>
216</varlistentry>
217
218<varlistentry id="pl2pm">
219<term><command>pl2pm</command></term>
220<listitem>
221<para>A rough tool for converting Perl4 <filename class="extension">.pl</filename>
222files to Perl5 <filename class="extension">.pm</filename> modules</para>
223<indexterm zone="ch-system-perl pl2pm"><primary sortas="b-pl2pm">pl2pm</primary></indexterm>
224</listitem>
225</varlistentry>
226
227<varlistentry id="pod2html">
228<term><command>pod2html</command></term>
229<listitem>
230<para>Converts files from pod format to HTML format</para>
231<indexterm zone="ch-system-perl pod2html"><primary sortas="b-pod2html">pod2html</primary></indexterm>
232</listitem>
233</varlistentry>
234
235<varlistentry id="pod2latex">
236<term><command>pod2latex</command></term>
237<listitem>
238<para>Converts files from pod format to LaTeX format</para>
239<indexterm zone="ch-system-perl pod2latex"><primary sortas="b-pod2latex">pod2latex</primary></indexterm>
240</listitem>
241</varlistentry>
242
243<varlistentry id="pod2man">
244<term><command>pod2man</command></term>
245<listitem>
246<para>Converts pod data to formatted *roff input</para>
247<indexterm zone="ch-system-perl pod2man"><primary sortas="b-pod2man">pod2man</primary></indexterm>
248</listitem>
249</varlistentry>
250
251<varlistentry id="pod2text">
252<term><command>pod2text</command></term>
253<listitem>
254<para>Converts pod data to formatted ASCII text</para>
255<indexterm zone="ch-system-perl pod2text"><primary sortas="b-pod2text">pod2text</primary></indexterm>
256</listitem>
257</varlistentry>
258
259<varlistentry id="pod2usage">
260<term><command>pod2usage</command></term>
261<listitem>
262<para>Prints usage messages from embedded pod docs in files</para>
263<indexterm zone="ch-system-perl pod2usage"><primary sortas="b-pod2usage">pod2usage</primary></indexterm>
264</listitem>
265</varlistentry>
266
267<varlistentry id="podchecker">
268<term><command>podchecker</command></term>
269<listitem>
270<para>Checks the syntax of pod format documentation files</para>
271<indexterm zone="ch-system-perl podchecker"><primary sortas="b-podchecker">podchecker</primary></indexterm>
272</listitem>
273</varlistentry>
274
275<varlistentry id="podselect">
276<term><command>podselect</command></term>
277<listitem>
278<para>Displays selected sections of pod documentation</para>
279<indexterm zone="ch-system-perl podselect"><primary sortas="b-podselect">podselect</primary></indexterm>
280</listitem>
281</varlistentry>
282
283<varlistentry id="psed">
284<term><command>psed</command></term>
285<listitem>
286<para>A Perl version of the stream editor <command>sed</command></para>
287<indexterm zone="ch-system-perl psed"><primary sortas="b-psed">psed</primary></indexterm>
288</listitem>
289</varlistentry>
290
291<varlistentry id="pstruct">
292<term><command>pstruct</command></term>
293<listitem>
294<para>Dumps C structures as generated from <command>cc -g -S</command> stabs</para>
295<indexterm zone="ch-system-perl pstruct"><primary sortas="b-pstruct">pstruct</primary></indexterm>
296</listitem>
297</varlistentry>
298
299<varlistentry id="s2p">
300<term><command>s2p</command></term>
301<listitem>
302<para>Translates sed to Perl</para>
303<indexterm zone="ch-system-perl s2p"><primary sortas="b-s2p">s2p</primary></indexterm>
304</listitem>
305</varlistentry>
306
307<varlistentry id="splain">
308<term><command>splain</command></term>
309<listitem>
310<para>Is used to force verbose warning diagnostics in Perl</para>
311<indexterm zone="ch-system-perl splain"><primary sortas="b-splain">splain</primary></indexterm>
312</listitem>
313</varlistentry>
314
315<varlistentry id="xsubpp">
316<term><command>xsubpp</command></term>
317<listitem>
318<para>Converts Perl XS code into C code</para>
319<indexterm zone="ch-system-perl xsubpp"><primary sortas="b-xsubpp">xsubpp</primary></indexterm>
320</listitem>
321</varlistentry>
322</variablelist>
323
324</sect2>
325
326</sect1>
327
Note: See TracBrowser for help on using the repository browser.