perl.xml 20 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581
  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. <sect1 id="ch-system-perl" role="wrap">
  8. <?dbhtml filename="perl.html"?>
  9. <sect1info condition="script">
  10. <productname>perl</productname>
  11. <productnumber>&perl-version;</productnumber>
  12. <address>&perl-url;</address>
  13. </sect1info>
  14. <title>Perl-&perl-version;</title>
  15. <indexterm zone="ch-system-perl">
  16. <primary sortas="a-Perl">Perl</primary>
  17. </indexterm>
  18. <sect2 role="package">
  19. <title/>
  20. <para>The Perl package contains the Practical Extraction and Report
  21. Language.</para>
  22. <segmentedlist>
  23. <segtitle>&buildtime;</segtitle>
  24. <segtitle>&diskspace;</segtitle>
  25. <seglistitem>
  26. <seg>&perl-ch6-sbu;</seg>
  27. <seg>&perl-ch6-du;</seg>
  28. </seglistitem>
  29. </segmentedlist>
  30. </sect2>
  31. <sect2 role="installation">
  32. <title>Installation of Perl</title>
  33. <para>First create a basic <filename>/etc/hosts</filename> file to be
  34. referenced in one of Perl's configuration files as well as the optional
  35. test suite:</para>
  36. <screen><userinput remap="pre">echo "127.0.0.1 localhost $(hostname)" &gt; /etc/hosts</userinput></screen>
  37. <para>This version of Perl now builds the Compress::Raw::Zlib and
  38. Compress::Raw::BZip2 modules. By
  39. default Perl will use an internal copy of the sources for the build.
  40. Issue the following command so that Perl will use the libraries
  41. installed on the system:</para>
  42. <screen><userinput remap="pre">export BUILD_ZLIB=False
  43. export BUILD_BZIP2=0</userinput></screen>
  44. <!--
  45. <para>Apply a patch to allow the Errno.pm module and the h2ph
  46. program to build correctly when building with GCC 5:</para>
  47. <screen><userinput remap="pre">patch -Np1 -i ../&perl-gcc5-fixes-patch;</userinput></screen>
  48. -->
  49. <para>To have full control over the way Perl is set up, you can remove the
  50. <quote>-des</quote> options from the following command and hand-pick the way
  51. this package is built. Alternatively, use the command exactly as below to
  52. use the defaults that Perl auto-detects:</para>
  53. <screen><userinput remap="configure">sh Configure -des -Dprefix=/usr \
  54. -Dvendorprefix=/usr \
  55. -Dman1dir=/usr/share/man/man1 \
  56. -Dman3dir=/usr/share/man/man3 \
  57. -Dpager="/usr/bin/less -isR" \
  58. -Duseshrplib</userinput></screen>
  59. <variablelist>
  60. <title>The meaning of the configure options:</title>
  61. <varlistentry>
  62. <term><parameter>-Dvendorprefix=/usr</parameter></term>
  63. <listitem>
  64. <para>This ensures <command>perl</command> knows how to
  65. tell packages where they should install their perl modules.</para>
  66. </listitem>
  67. </varlistentry>
  68. <varlistentry>
  69. <term><parameter>-Dpager="/usr/bin/less -isR"</parameter></term>
  70. <listitem>
  71. <para>This ensures that <userinput>less</userinput> is used instead
  72. of <userinput>more</userinput>.</para>
  73. </listitem>
  74. </varlistentry>
  75. <varlistentry>
  76. <term><parameter>-Dman1dir=/usr/share/man/man1
  77. -Dman3dir=/usr/share/man/man3</parameter></term>
  78. <listitem>
  79. <para>Since Groff is not installed yet, <command>Configure</command>
  80. thinks that we do not want man pages for Perl. Issuing these
  81. parameters overrides this decision.</para>
  82. </listitem>
  83. </varlistentry>
  84. <varlistentry>
  85. <term><parameter>-Duseshrplib</parameter></term>
  86. <listitem>
  87. <para>Build a shared libperl needed by some perl modules.</para>
  88. </listitem>
  89. </varlistentry>
  90. </variablelist>
  91. <para>Compile the package:</para>
  92. <screen><userinput remap="make">make</userinput></screen>
  93. <para>To test the results (approximately 2.5 SBU), issue:</para>
  94. <screen><userinput remap="test">make -k test</userinput></screen>
  95. <para>Install the package and clean up:</para>
  96. <screen><userinput remap="install">make install
  97. unset BUILD_ZLIB BUILD_BZIP2</userinput></screen>
  98. </sect2>
  99. <sect2 id="contents-perl" role="content">
  100. <title>Contents of Perl</title>
  101. <segmentedlist>
  102. <segtitle>Installed programs</segtitle>
  103. <segtitle>Installed libraries</segtitle>
  104. <segtitle>Installed directory</segtitle>
  105. <seglistitem>
  106. <seg>c2ph, corelist, cpan, enc2xs, encguess, h2ph, h2xs, instmodsh,
  107. json_pp, libnetcfg, perl, perl&perl-version; (hard link to perl),
  108. perlbug, perldoc, perlivp, perlthanks (hard link to perlbug), piconv,
  109. pl2pm, pod2html, pod2man, pod2text, pod2usage, podchecker, podselect,
  110. prove, pstruct (hard link to c2ph), ptar, ptardiff, ptargrep, shasum,
  111. splain, xsubpp, and zipdetails</seg>
  112. <seg>Many which cannot all be listed here</seg>
  113. <seg>/usr/lib/perl5</seg>
  114. </seglistitem>
  115. </segmentedlist>
  116. <variablelist>
  117. <bridgehead renderas="sect3">Short Descriptions</bridgehead>
  118. <?dbfo list-presentation="list"?>
  119. <?dbhtml list-presentation="table"?>
  120. <varlistentry id="a2p">
  121. <term><command>a2p</command></term>
  122. <listitem>
  123. <para>Translates awk to Perl</para>
  124. <indexterm zone="ch-system-perl a2p">
  125. <primary sortas="b-a2p">a2p</primary>
  126. </indexterm>
  127. </listitem>
  128. </varlistentry>
  129. <varlistentry id="c2ph">
  130. <term><command>c2ph</command></term>
  131. <listitem>
  132. <para>Dumps C structures as generated from
  133. <command>cc -g -S</command></para>
  134. <indexterm zone="ch-system-perl c2ph">
  135. <primary sortas="b-c2ph">c2ph</primary>
  136. </indexterm>
  137. </listitem>
  138. </varlistentry>
  139. <varlistentry id="corelist">
  140. <term><command>corelist</command></term>
  141. <listitem>
  142. <para>A commandline frontend to Module::CoreList</para>
  143. <indexterm zone="ch-system-perl corelist">
  144. <primary sortas="b-corelist">corelist</primary>
  145. </indexterm>
  146. </listitem>
  147. </varlistentry>
  148. <varlistentry id="cpan">
  149. <term><command>cpan</command></term>
  150. <listitem>
  151. <para>Interact with the Comprehensive Perl Archive Network (CPAN)
  152. from the command line</para>
  153. <indexterm zone="ch-system-perl cpan">
  154. <primary sortas="b-cpan">cpan</primary>
  155. </indexterm>
  156. </listitem>
  157. </varlistentry>
  158. <varlistentry id="cpan2dist">
  159. <term><command>cpan2dist</command></term>
  160. <listitem>
  161. <para>The CPANPLUS distribution creator</para>
  162. <indexterm zone="ch-system-perl cpan2dist">
  163. <primary sortas="b-cpan2dist">cpan2dist</primary>
  164. </indexterm>
  165. </listitem>
  166. </varlistentry>
  167. <varlistentry id="cpanp">
  168. <term><command>cpanp</command></term>
  169. <listitem>
  170. <para>The CPANPLUS launcher</para>
  171. <indexterm zone="ch-system-perl cpanp">
  172. <primary sortas="b-cpanp">cpanp</primary>
  173. </indexterm>
  174. </listitem>
  175. </varlistentry>
  176. <varlistentry id="cpanp-run-perl">
  177. <term><command>cpanp-run-perl</command></term>
  178. <listitem>
  179. <para>Perl script that is used to enable flushing of the output
  180. buffer after each write in spawned processes</para>
  181. <indexterm zone="ch-system-perl cpanp-run-perl">
  182. <primary sortas="b-cpanp-run-perl">cpanp-run-perl</primary>
  183. </indexterm>
  184. </listitem>
  185. </varlistentry>
  186. <varlistentry id="enc2xs">
  187. <term><command>enc2xs</command></term>
  188. <listitem>
  189. <para>Builds a Perl extension for the Encode module from either
  190. Unicode Character Mappings or Tcl Encoding Files</para>
  191. <indexterm zone="ch-system-perl enc2xs">
  192. <primary sortas="b-enc2xs">enc2xs</primary>
  193. </indexterm>
  194. </listitem>
  195. </varlistentry>
  196. <varlistentry id="encguess">
  197. <term><command>encguess</command></term>
  198. <listitem>
  199. <para>Guess the encoding type of one or several files</para>
  200. <indexterm zone="ch-system-perl encguess">
  201. <primary sortas="b-encguess">encguess</primary>
  202. </indexterm>
  203. </listitem>
  204. </varlistentry>
  205. <varlistentry id="find2perl">
  206. <term><command>find2perl</command></term>
  207. <listitem>
  208. <para>Translates <command>find</command> commands to Perl</para>
  209. <indexterm zone="ch-system-perl find2perl">
  210. <primary sortas="b-find2perl">find2perl</primary>
  211. </indexterm>
  212. </listitem>
  213. </varlistentry>
  214. <varlistentry id="h2ph">
  215. <term><command>h2ph</command></term>
  216. <listitem>
  217. <para>Converts <filename class="extension">.h</filename> C header
  218. files to <filename class="extension">.ph</filename> Perl header
  219. files</para>
  220. <indexterm zone="ch-system-perl h2ph">
  221. <primary sortas="b-h2ph">h2ph</primary>
  222. </indexterm>
  223. </listitem>
  224. </varlistentry>
  225. <varlistentry id="h2xs">
  226. <term><command>h2xs</command></term>
  227. <listitem>
  228. <para>Converts <filename class="extension">.h</filename> C header
  229. files to Perl extensions</para>
  230. <indexterm zone="ch-system-perl h2xs">
  231. <primary sortas="b-h2xs">h2xs</primary>
  232. </indexterm>
  233. </listitem>
  234. </varlistentry>
  235. <varlistentry id="instmodsh">
  236. <term><command>instmodsh</command></term>
  237. <listitem>
  238. <para>Shell script for examining installed Perl modules,
  239. and can even create a tarball from an installed module</para>
  240. <indexterm zone="ch-system-perl instmodsh">
  241. <primary sortas="b-instmodsh">instmodsh</primary>
  242. </indexterm>
  243. </listitem>
  244. </varlistentry>
  245. <varlistentry id="json_pp">
  246. <term><command>json_pp</command></term>
  247. <listitem>
  248. <para>Converts data between certain input and output formats</para>
  249. <indexterm zone="ch-system-perl json_pp">
  250. <primary sortas="b-json_pp">json_pp</primary>
  251. </indexterm>
  252. </listitem>
  253. </varlistentry>
  254. <varlistentry id="libnetcfg">
  255. <term><command>libnetcfg</command></term>
  256. <listitem>
  257. <para>Can be used to configure the
  258. <filename class="libraryfile">libnet</filename> Perl module</para>
  259. <indexterm zone="ch-system-perl libnetcfg">
  260. <primary sortas="b-libnetcfg">libnetcfg</primary>
  261. </indexterm>
  262. </listitem>
  263. </varlistentry>
  264. <varlistentry id="perl">
  265. <term><command>perl</command></term>
  266. <listitem>
  267. <para>Combines some of the best features of C, <command>sed</command>,
  268. <command>awk</command> and <command>sh</command> into a single
  269. swiss-army language</para>
  270. <indexterm zone="ch-system-perl perl">
  271. <primary sortas="b-perl">perl</primary>
  272. </indexterm>
  273. </listitem>
  274. </varlistentry>
  275. <varlistentry id="perl-version">
  276. <term><command>perl&perl-version;</command></term>
  277. <listitem>
  278. <para>A hard link to <command>perl</command></para>
  279. <indexterm zone="ch-system-perl perl-version">
  280. <primary sortas="b-perl&perl-version;">perl&perl-version;</primary>
  281. </indexterm>
  282. </listitem>
  283. </varlistentry>
  284. <varlistentry id="perlbug">
  285. <term><command>perlbug</command></term>
  286. <listitem>
  287. <para>Used to generate bug reports about Perl, or the modules that come
  288. with it, and mail them</para>
  289. <indexterm zone="ch-system-perl perlbug">
  290. <primary sortas="b-perlbug">perlbug</primary>
  291. </indexterm>
  292. </listitem>
  293. </varlistentry>
  294. <varlistentry id="perldoc">
  295. <term><command>perldoc</command></term>
  296. <listitem>
  297. <para>Displays a piece of documentation in pod format that is embedded
  298. in the Perl installation tree or in a Perl script</para>
  299. <indexterm zone="ch-system-perl perldoc">
  300. <primary sortas="b-perldoc">perldoc</primary>
  301. </indexterm>
  302. </listitem>
  303. </varlistentry>
  304. <varlistentry id="perlivp">
  305. <term><command>perlivp</command></term>
  306. <listitem>
  307. <para>The Perl Installation Verification Procedure; it can be used to
  308. verify that Perl and its libraries have been installed
  309. correctly</para>
  310. <indexterm zone="ch-system-perl perlivp">
  311. <primary sortas="b-perlivp">perlivp</primary>
  312. </indexterm>
  313. </listitem>
  314. </varlistentry>
  315. <varlistentry id="perlthanks">
  316. <term><command>perlthanks</command></term>
  317. <listitem>
  318. <para>Used to generate thank you messages to mail to the Perl
  319. developers</para>
  320. <indexterm zone="ch-system-perl perlthanks">
  321. <primary sortas="b-perlthanks">perlthanks</primary>
  322. </indexterm>
  323. </listitem>
  324. </varlistentry>
  325. <varlistentry id="piconv">
  326. <term><command>piconv</command></term>
  327. <listitem>
  328. <para>A Perl version of the character encoding converter
  329. <command>iconv</command></para>
  330. <indexterm zone="ch-system-perl piconv">
  331. <primary sortas="b-piconv">piconv</primary>
  332. </indexterm>
  333. </listitem>
  334. </varlistentry>
  335. <varlistentry id="pl2pm">
  336. <term><command>pl2pm</command></term>
  337. <listitem>
  338. <para>A rough tool for converting Perl4
  339. <filename class="extension">.pl</filename> files to Perl5
  340. <filename class="extension">.pm</filename> modules</para>
  341. <indexterm zone="ch-system-perl pl2pm">
  342. <primary sortas="b-pl2pm">pl2pm</primary>
  343. </indexterm>
  344. </listitem>
  345. </varlistentry>
  346. <varlistentry id="pod2html">
  347. <term><command>pod2html</command></term>
  348. <listitem>
  349. <para>Converts files from pod format to HTML format</para>
  350. <indexterm zone="ch-system-perl pod2html">
  351. <primary sortas="b-pod2html">pod2html</primary>
  352. </indexterm>
  353. </listitem>
  354. </varlistentry>
  355. <varlistentry id="pod2latex">
  356. <term><command>pod2latex</command></term>
  357. <listitem>
  358. <para>Converts files from pod format to LaTeX format</para>
  359. <indexterm zone="ch-system-perl pod2latex">
  360. <primary sortas="b-pod2latex">pod2latex</primary>
  361. </indexterm>
  362. </listitem>
  363. </varlistentry>
  364. <varlistentry id="pod2man">
  365. <term><command>pod2man</command></term>
  366. <listitem>
  367. <para>Converts pod data to formatted *roff input</para>
  368. <indexterm zone="ch-system-perl pod2man">
  369. <primary sortas="b-pod2man">pod2man</primary>
  370. </indexterm>
  371. </listitem>
  372. </varlistentry>
  373. <varlistentry id="pod2text">
  374. <term><command>pod2text</command></term>
  375. <listitem>
  376. <para>Converts pod data to formatted ASCII text</para>
  377. <indexterm zone="ch-system-perl pod2text">
  378. <primary sortas="b-pod2text">pod2text</primary>
  379. </indexterm>
  380. </listitem>
  381. </varlistentry>
  382. <varlistentry id="pod2usage">
  383. <term><command>pod2usage</command></term>
  384. <listitem>
  385. <para>Prints usage messages from embedded pod docs in files</para>
  386. <indexterm zone="ch-system-perl pod2usage">
  387. <primary sortas="b-pod2usage">pod2usage</primary>
  388. </indexterm>
  389. </listitem>
  390. </varlistentry>
  391. <varlistentry id="podchecker">
  392. <term><command>podchecker</command></term>
  393. <listitem>
  394. <para>Checks the syntax of pod format documentation files</para>
  395. <indexterm zone="ch-system-perl podchecker">
  396. <primary sortas="b-podchecker">podchecker</primary>
  397. </indexterm>
  398. </listitem>
  399. </varlistentry>
  400. <varlistentry id="podselect">
  401. <term><command>podselect</command></term>
  402. <listitem>
  403. <para>Displays selected sections of pod documentation</para>
  404. <indexterm zone="ch-system-perl podselect">
  405. <primary sortas="b-podselect">podselect</primary>
  406. </indexterm>
  407. </listitem>
  408. </varlistentry>
  409. <varlistentry id="prove">
  410. <term><command>prove</command></term>
  411. <listitem>
  412. <para>Command line tool for running tests against the Test::Harness
  413. module</para>
  414. <indexterm zone="ch-system-perl prove">
  415. <primary sortas="b-prove">prove</primary>
  416. </indexterm>
  417. </listitem>
  418. </varlistentry>
  419. <varlistentry id="pstruct">
  420. <term><command>pstruct</command></term>
  421. <listitem>
  422. <para>Dumps C structures as generated from <command>cc -g -S</command>
  423. stabs</para>
  424. <indexterm zone="ch-system-perl pstruct">
  425. <primary sortas="b-pstruct">pstruct</primary>
  426. </indexterm>
  427. </listitem>
  428. </varlistentry>
  429. <varlistentry id="ptar">
  430. <term><command>ptar</command></term>
  431. <listitem>
  432. <para>A <command>tar</command>-like program written in Perl</para>
  433. <indexterm zone="ch-system-perl ptar">
  434. <primary sortas="b-ptar">ptar</primary>
  435. </indexterm>
  436. </listitem>
  437. </varlistentry>
  438. <varlistentry id="ptardiff">
  439. <term><command>ptardiff</command></term>
  440. <listitem>
  441. <para>A Perl program that compares an extracted archive with an
  442. unextracted one</para>
  443. <indexterm zone="ch-system-perl ptardiff">
  444. <primary sortas="b-ptardiff">ptardiff</primary>
  445. </indexterm>
  446. </listitem>
  447. </varlistentry>
  448. <varlistentry id="ptargrep">
  449. <term><command>ptargrep</command></term>
  450. <listitem>
  451. <para>A Perl program that applies pattern matching to the contents
  452. of files in a tar archive</para>
  453. <indexterm zone="ch-system-perl ptargrep">
  454. <primary sortas="b-ptargrep">ptargrep</primary>
  455. </indexterm>
  456. </listitem>
  457. </varlistentry>
  458. <varlistentry id="s2p">
  459. <term><command>s2p</command></term>
  460. <listitem>
  461. <para>Translates <command>sed</command> scripts to Perl</para>
  462. <indexterm zone="ch-system-perl s2p">
  463. <primary sortas="b-s2p">s2p</primary>
  464. </indexterm>
  465. </listitem>
  466. </varlistentry>
  467. <varlistentry id="shasum">
  468. <term><command>shasum</command></term>
  469. <listitem>
  470. <para>Prints or checks SHA checksums</para>
  471. <indexterm zone="ch-system-perl shasum">
  472. <primary sortas="b-shasum">shasum</primary>
  473. </indexterm>
  474. </listitem>
  475. </varlistentry>
  476. <varlistentry id="splain">
  477. <term><command>splain</command></term>
  478. <listitem>
  479. <para>Is used to force verbose warning diagnostics in Perl</para>
  480. <indexterm zone="ch-system-perl splain">
  481. <primary sortas="b-splain">splain</primary>
  482. </indexterm>
  483. </listitem>
  484. </varlistentry>
  485. <varlistentry id="xsubpp">
  486. <term><command>xsubpp</command></term>
  487. <listitem>
  488. <para>Converts Perl XS code into C code</para>
  489. <indexterm zone="ch-system-perl xsubpp">
  490. <primary sortas="b-xsubpp">xsubpp</primary>
  491. </indexterm>
  492. </listitem>
  493. </varlistentry>
  494. <varlistentry id="zipdetails">
  495. <term><command>zipdetails</command></term>
  496. <listitem>
  497. <para>Displays details about the internal structure of a Zip file</para>
  498. <indexterm zone="ch-system-perl zipdetails">
  499. <primary sortas="b-zipdetails">zipdetails</primary>
  500. </indexterm>
  501. </listitem>
  502. </varlistentry>
  503. </variablelist>
  504. </sect2>
  505. </sect1>