source: general/prog/pdl.xml@ de91b35

10.0 10.1 11.0 11.1 11.2 11.3 12.0 12.1 12.2 6.2 6.2.0 6.2.0-rc1 6.2.0-rc2 6.3 6.3-rc1 6.3-rc2 6.3-rc3 7.10 7.4 7.5 7.6 7.6-blfs 7.6-systemd 7.7 7.8 7.9 8.0 8.1 8.2 8.3 8.4 9.0 9.1 basic bdubbs/svn elogind gimp3 gnome kde5-13430 kde5-14269 kde5-14686 kea ken/TL2024 ken/inkscape-core-mods ken/tuningfonts krejzi/svn lazarus lxqt nosym perl-modules plabs/newcss plabs/python-mods python3.11 qt5new rahul/power-profiles-daemon renodr/vulkan-addition systemd-11177 systemd-13485 trunk upgradedb xry111/for-12.3 xry111/intltool xry111/llvm18 xry111/soup3 xry111/spidermonkey128 xry111/test-20220226 xry111/xf86-video-removal
Last change on this file since de91b35 was 1039de3, checked in by Randy McMurchy <randy@…>, 18 years ago

Added the 'User Notes' wiki link to each package page; changed all instances of .[so,a] to .{so,a} (brackets changed to braces); changed all replaceable tags to use angle brackets instead of square brackets to encapsulate the text - commit #3

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

  • Property mode set to 100644
File size: 20.3 KB
RevLine 
[bd23186f]1<?xml version="1.0" encoding="ISO-8859-1"?>
[ff769b8c]2<!DOCTYPE sect1 PUBLIC "-//OASIS//DTD DocBook XML V4.4//EN"
3 "http://www.oasis-open.org/docbook/xml/4.4/docbookx.dtd" [
[bd23186f]4 <!ENTITY % general-entities SYSTEM "../../general.ent">
5 %general-entities;
6
[7dac9f1]7 <!ENTITY pdl-download-http "http://prdownloads.sourceforge.net/pdl/PDL-&pdl-version;.tar.gz">
8 <!ENTITY pdl-download-ftp " ">
9 <!ENTITY pdl-md5sum "edd056a006eae8b46e8ef804b9774a93">
10 <!ENTITY pdl-size "2.1 MB">
11 <!ENTITY pdl-buildsize "74 MB">
12 <!ENTITY pdl-time "2.56 SBU">
[bd23186f]13]>
14
[0b5a693]15<sect1 id="pdl" xreflabel="PDL">
[7dac9f1]16 <?dbhtml filename="pdl.html" ?>
17
18 <sect1info>
19 <othername>$LastChangedBy$</othername>
20 <date>$Date$</date>
[256ee72c]21 <keywordset>
22 <keyword role="package">PDL-&pdl-version;.tar</keyword>
[22ac237]23 <keyword role="ftpdir">PDL</keyword>
[256ee72c]24 </keywordset>
[7dac9f1]25 </sect1info>
26
27 <title>PDL-&pdl-version;</title>
28
29 <indexterm zone="pdl">
30 <primary sortas="a-PDL">PDL</primary>
31 </indexterm>
32
33 <sect2 role="package">
34 <title>Introduction to PDL</title>
35
[dae2ba0b]36 <para><application>PDL</application> (Perl Data Language) gives
37 standard <application>Perl</application> the ability to compactly store
38 and quickly manipulate the large N-dimensional data arrays common to
39 scientific computing. <application>PDL</application> turns
40 <application>Perl</application> into an array-oriented, numerical language
[919683dc]41 similar to such commercial packages as <application>IDL</application>
[dae2ba0b]42 and <application>MatLab</application>. One can write simple
43 <application>Perl</application> expressions to manipulate entire numerical
[7dac9f1]44 arrays all at once.</para>
45
[dae2ba0b]46 <para><application>PDL</application> provides extensive numerical and
47 semi-numerical functionality with support for two- and three-dimensional
48 visualisation as well as a variety of I/O formats. The goal is to allow
49 <application>PDL</application> to interact with a variety of external numerical
50 packages, graphics and visualisation systems. Easy interfacing to such systems
[7dac9f1]51 is one of the core design features of <application>PDL</application>.</para>
52
53 <bridgehead renderas="sect3">Package Information</bridgehead>
54 <itemizedlist spacing="compact">
55 <listitem>
56 <para>Download (HTTP): <ulink url="&pdl-download-http;"/></para>
57 </listitem>
58 <listitem>
59 <para>Download (FTP): <ulink url="&pdl-download-ftp;"/></para>
60 </listitem>
61 <listitem>
62 <para>Download MD5 sum: &pdl-md5sum;</para>
63 </listitem>
64 <listitem>
65 <para>Download size: &pdl-size;</para>
66 </listitem>
67 <listitem>
68 <para>Estimated disk space required: &pdl-buildsize;</para>
69 </listitem>
70 <listitem>
71 <para>Estimated build time: &pdl-time;</para>
72 </listitem>
73 </itemizedlist>
74
75 <bridgehead renderas="sect3">PDL Dependencies</bridgehead>
76
[dae2ba0b]77 <para><application>PDL</application> is a collection of over 90
78 <application>Perl</application> modules. Some of these modules require
[7dac9f1]79 additional libraries and/or <application>Perl</application> modules for full
[dae2ba0b]80 functionality. Listed below are the modules which require additional software
81 or configuration. If you don't need a particular module's functionality, you don't
82 need to install its dependencies. The dependency tree for each module is listed
83 downward, meaning you'll need to start at the bottom of a module's tree and work
84 up. The dependencies are listed in the same order as they are in the
[7dac9f1]85 <filename>DEPENDENCIES</filename> file, found in the package source tree.</para>
86
87 <bridgehead renderas="sect4">PDL::NiceSlice</bridgehead>
[0619e6d]88
[dae2ba0b]89 <para>The <application>PDL</application>::NiceSlice module is used to
[0619e6d]90 enhance <application>PDL</application>'s slice syntax. <quote>Slicing</quote>
[dae2ba0b]91 is a term used in the process of creating a cross-section, or slice, of a
[7dac9f1]92 <application>PDL</application> object (piddle).</para>
93
94 <itemizedlist spacing='compact'>
95 <listitem>
[dae2ba0b]96 <para><ulink
[7dac9f1]97 url="http://www.cpan.org/authors/id/P/PM/PMQS/Filter-&Filter-version;.tar.gz">
98 Filter-&Filter-version;</ulink></para>
99 </listitem>
100 </itemizedlist>
101
102 <bridgehead renderas="sect4">Inline::Pdlpp</bridgehead>
103
[dae2ba0b]104 <para>The Inline::Pdlpp module allows you to define fast PP
[7dac9f1]105 code inline in your scripts.</para>
106
107 <itemizedlist spacing='compact'>
108 <listitem>
[dae2ba0b]109 <para><ulink
[7dac9f1]110 url="http://www.cpan.org/authors/id/I/IN/INGY/Inline-&Inline-version;.tar.gz">
111 Inline-&Inline-version;</ulink></para>
112 <itemizedlist>
113 <listitem>
[dae2ba0b]114 <para><ulink
[7dac9f1]115 url="http://www.cpan.org/authors/id/D/DC/DCONWAY/Parse-RecDescent-&Parse-RecDescent-version;.tar.gz">
116 Parse-RecDescent-&Parse-RecDescent-version;</ulink></para>
117 </listitem>
118 </itemizedlist>
119 </listitem>
120 </itemizedlist>
121
122 <bridgehead renderas="sect4">Perldl</bridgehead>
123
[dae2ba0b]124 <para><command>perldl</command> is a simple shell (written in
125 <application>Perl</application>) which allows interactive
[7dac9f1]126 use of <application>PDL</application>.</para>
127
128 <itemizedlist spacing='compact'>
129 <listitem>
[dae2ba0b]130 <para><ulink
[7dac9f1]131 url="http://www.cpan.org/authors/id/H/HA/HAYASHI/Term-ReadLine-Gnu-&Term-ReadLine-Gnu-version;.tar.gz">
132 Term-ReadLine-Gnu-&Term-ReadLine-Gnu-version;</ulink></para>
133 </listitem>
134 </itemizedlist>
135
136 <bridgehead renderas="sect4">PDL::Graphics::TriD</bridgehead>
137
[dae2ba0b]138 <para>The <application>PDL</application>::Graphics::TriD module implements
139 a generic 3D plotting interface for <application>PDL</application>. Points,
[7dac9f1]140 lines and surfaces (among other objects) are supported.</para>
141
142 <itemizedlist spacing='compact'>
143 <listitem>
[e77976f]144 <para>OpenGL (<xref linkend="x-window-system"/>)</para>
[7dac9f1]145 </listitem>
146 </itemizedlist>
147
148 <bridgehead renderas="sect4">PDL::Graphics::PGPLOT</bridgehead>
149
[dae2ba0b]150 <para>The <application>PDL</application>::Graphics::PGPLOT module is a
151 convenience interface to the <application>PGPLOT</application> commands,
[0619e6d]152 implemented using the object oriented <application>PGPLOT</application>
[dae2ba0b]153 plotting package in the <application>PDL</application>::Graphics::PGPLOT::Window
[7dac9f1]154 module.</para>
155
156 <itemizedlist spacing='compact'>
157 <listitem>
[dae2ba0b]158 <para><ulink
[7dac9f1]159 url="http://www.cpan.org/authors/id/K/KG/KGB/PGPLOT-&pgperl-version;.tar.gz">
160 pgperl</ulink></para>
161 <itemizedlist>
162 <listitem>
[dae2ba0b]163 <para><ulink
[7dac9f1]164 url="http://www.cpan.org/authors/id/K/KG/KGB/ExtUtils-F77-&ExtUtils-F77-version;.tar.gz">
165 ExtUtils-F77-&ExtUtils-F77-version;</ulink></para>
166 <itemizedlist>
167 <listitem>
168 <para><xref linkend="gcc"/> (Fortran compiler)</para>
169 </listitem>
170 </itemizedlist>
171 </listitem>
172 <listitem>
[dae2ba0b]173 <para><ulink
[7dac9f1]174 url="http://www.astro.caltech.edu/~tjp/pgplot/">PGPLOT</ulink></para>
175 <itemizedlist>
176 <listitem>
[e77976f]177 <para><xref linkend="x-window-system"/>,
[dae2ba0b]178 <xref linkend="lesstif"/>,
[e77976f]179 <xref linkend="tk"/>, and
[7dac9f1]180 <xref linkend="gcc"/> (Fortran compiler)</para>
181 </listitem>
182 </itemizedlist>
183 </listitem>
184 </itemizedlist>
185 </listitem>
186 </itemizedlist>
187
188 <bridgehead renderas="sect4">PDL::Graphics::PLPLOT</bridgehead>
189
[dae2ba0b]190 <para>The <application>PDL</application>::Graphics::PLPLOT module is a
[7dac9f1]191 simple interface to the <application>PLplot</application> plotting library.</para>
192
193 <itemizedlist spacing='compact'>
194 <listitem>
195 <para><ulink url="http://plplot.sourceforge.net/">PLplot</ulink></para>
196 <itemizedlist>
197 <listitem>
[dae2ba0b]198 <para><xref linkend="pkgconfig"/>,
[e77976f]199 <xref linkend="x-window-system"/>,
[dae2ba0b]200 <xref linkend="GTK"/>,
201 <xref linkend="freetype2"/>,
202 <ulink url="http://www.boutell.com/gd/">GD</ulink>,
203 <ulink url="http://www.svgalib.org/">SVGAlib</ulink>,
204 <xref linkend="gnome-libs"/>,
205 <xref linkend="jdk"/>,
206 <xref linkend="tk"/>,
207 <xref linkend="python"/> (with the
[e77976f]208 <ulink url="http://www.numpy.org/">Numeric Python</ulink>),
[dae2ba0b]209 <xref linkend="gcc"/> (Fortran compiler),
[e77976f]210 <ulink url="http://www.swig.org/">SWIG</ulink>, and
[7dac9f1]211 <ulink url="http://sourceforge.net/projects/incrtcl/">iTcl</ulink></para>
212 </listitem>
213 </itemizedlist>
214 </listitem>
215 </itemizedlist>
216
217 <bridgehead renderas="sect4">PDL::Graphics::IIS</bridgehead>
218
[dae2ba0b]219 <para>The <application>PDL</application>::Graphics::IIS
[0619e6d]220 module provides an interface to any image display <quote>device</quote>
[7dac9f1]221 which supports the <quote>IIS protocol</quote>.</para>
222
223 <itemizedlist spacing='compact'>
224 <listitem>
[dae2ba0b]225 <para><ulink
[7dac9f1]226 url="http://tdc-www.harvard.edu/software/saoimage.html">SAOimage</ulink></para>
227 <itemizedlist>
228 <listitem>
[e77976f]229 <para><xref linkend="x-window-system"/></para>
[7dac9f1]230 </listitem>
231 </itemizedlist>
232 </listitem>
233 <listitem>
[dae2ba0b]234 <para><ulink
235 url="http://iraf.noao.edu/iraf/web/projects/x11iraf/x11iraf.html">X11
[7dac9f1]236 IRAF</ulink></para>
237 <itemizedlist>
238 <listitem>
[e77976f]239 <para><xref linkend="x-window-system"/> and
[7dac9f1]240 <xref linkend="tk"/></para>
241 </listitem>
242 </itemizedlist>
243 </listitem>
244 </itemizedlist>
245
246 <bridgehead renderas="sect4">PDL::Graphics::Karma</bridgehead>
247
[dae2ba0b]248 <para>The <application>PDL</application>::Graphics::Karma
249 module is an interface to <application>Karma</application> visualisation
[7dac9f1]250 applications.</para>
251
252 <itemizedlist spacing='compact'>
253 <listitem>
[dae2ba0b]254 <para><ulink
[7dac9f1]255 url="http://www.atnf.csiro.au/computing/software/karma/">Karma</ulink></para>
256 <itemizedlist>
257 <listitem>
[e77976f]258 <para><xref linkend="x-window-system"/></para>
[7dac9f1]259 </listitem>
260 </itemizedlist>
261 </listitem>
262 </itemizedlist>
263
[dae2ba0b]264 <para><emphasis>Note:</emphasis> You may need to modify the
265 <option>WHERE_KARMA =&gt; undef</option> line in the source tree
266 <filename>perldl.conf</filename> file to point to your installation
[7dac9f1]267 of <application>Karma</application></para>
268
269 <bridgehead renderas="sect4">PDL::IO::Pic</bridgehead>
270
[dae2ba0b]271 <para> The <application>PDL</application>::IO::Pic module implements I/O
272 for a number of popular image formats by exploiting the
[0619e6d]273 <command>xxxtopnm</command> and <command>pnmtoxxx</command>
[dae2ba0b]274 converters from the <application>Netpbm</application> package and the
275 <command>cjpeg</command> and <command>djpeg</command> converters.
276 It also contains the routine wmpeg to write MPEG movies from piddles
[7dac9f1]277 representing image stacks.</para>
278
279 <itemizedlist spacing='compact'>
280 <listitem>
[dae2ba0b]281 <para><ulink url="http://netpbm.sourceforge.net/">Netpbm</ulink>,
282 <xref linkend="libjpeg"/> and
[7dac9f1]283 <ulink url="ftp://mm-ftp.cs.berkeley.edu/pub/multimedia/mpeg/encode/">
284 mpeg_encode</ulink></para>
285 </listitem>
286 </itemizedlist>
287
288 <bridgehead renderas="sect4">PDL::Slatec</bridgehead>
289
[dae2ba0b]290 <para> The <application>PDL</application>::Slatec module serves the dual
291 purpose of providing an interface to parts of the slatec library and showing
292 how to interface <application>PDL</application> to an external library.
293 The module provides routines to manipulate matrices, calculate FFTs, fit
294 data using polynomials, and interpolate/integrate data using piecewise
[7dac9f1]295 cubic Hermite interpolation.</para>
296
297 <itemizedlist spacing='compact'>
298 <listitem>
[dae2ba0b]299 <para><ulink
[7dac9f1]300 url="http://www.cpan.org/authors/id/K/KG/KGB/ExtUtils-F77-&ExtUtils-F77-version;.tar.gz">
301 ExtUtils-F77-&ExtUtils-F77-version;</ulink></para>
302 <itemizedlist>
303 <listitem>
304 <para><xref linkend="gcc"/> (Fortran compiler)</para>
305 </listitem>
306 </itemizedlist>
307 </listitem>
308 </itemizedlist>
309
310 <bridgehead renderas="sect4">PDL::GSL</bridgehead>
311
[0619e6d]312 <para> The <application>PDL</application>::<application>GSL</application>
[7dac9f1]313 module is an interface to the functions provided by the Gnu Scientific Library.</para>
314
315 <itemizedlist spacing='compact'>
316 <listitem>
317 <para><ulink url="http://www.gnu.org/software/gsl/">GSL</ulink></para>
318 </listitem>
319 </itemizedlist>
320
321 <bridgehead renderas="sect4">PDL::FFTW</bridgehead>
322
[0619e6d]323 <para> The <application>PDL</application>::<application>FFTW</application>
[dae2ba0b]324 module is a means to interface <application>PDL</application> with the
325 <application>FFTW</application> library. It's similar to the standard FFT
326 routine but it's usually faster and has support for real transforms. It works
327 well for the types of piddles for which the library was compiled (otherwise it
[7dac9f1]328 must do conversions).</para>
329
330 <itemizedlist spacing='compact'>
331 <listitem>
332 <para><ulink url="http://www.fftw.org/">FFTW-2.x</ulink></para>
333 </listitem>
334 </itemizedlist>
335
336 <bridgehead renderas="sect4">PDL::IO::Browser</bridgehead>
337
[dae2ba0b]338 <para>The <application>PDL</application>::IO::Browser module
[7dac9f1]339 is a 2D cursor terminal data browser for piddles.</para>
340
[dae2ba0b]341 <para>There is no additional software required to use the module. However,
342 the default is to not install the module because some platforms don't provide
343 a curses compatible library. To enable the module, issue the following
[7dac9f1]344 command:</para>
345
346<screen><userinput>sed -i -e "s/WITH_IO_BROWSER =&gt; 0/WITH_IO_BROWSER =&gt; 1/" \
347 perldl.conf</userinput></screen>
348
349 <bridgehead renderas="sect4">PDL::IO::NDF</bridgehead>
350
[dae2ba0b]351 <para>The <application>PDL</application>::IO::NDF module adds the ability to
[7dac9f1]352 read and write Starlink N-dimensional data files as N-dimensional piddles.</para>
353
354 <itemizedlist spacing='compact'>
355 <listitem>
[dae2ba0b]356 <para><ulink
[7dac9f1]357 url="http://www.cpan.org/authors/id/A/AA/AALLAN/Astro-FITS-Header-&Astro-FITS-Header-version;.tar.gz">
358 Astro-FITS-Header-&Astro-FITS-Header-version;</ulink></para>
359 <itemizedlist>
360 <listitem>
[dae2ba0b]361 <para><ulink
[7dac9f1]362 url="http://www.cpan.org/authors/id/P/PR/PRATZLAFF/Astro-FITS-CFITSIO-&Astro-FITS-CFITSIO-version;.tar.gz">
363 Astro-FITS-CFITSIO-&Astro-FITS-CFITSIO-version;</ulink></para>
364 <itemizedlist>
365 <listitem>
[dae2ba0b]366 <para><ulink
[7dac9f1]367 url="http://heasarc.gsfc.nasa.gov/docs/software/fitsio/">CFITSIO</ulink></para>
368 </listitem>
369 </itemizedlist>
370 </listitem>
371 <listitem>
[dae2ba0b]372 <para><ulink
[7dac9f1]373 url="ftp://ftp.starlink.rl.ac.uk/pub/ussc/store/starperl/starperl.tar.Z">
374 NDFPERL-&NDF-version;</ulink></para>
375 <itemizedlist>
376 <listitem>
[dae2ba0b]377 <para><ulink
[7dac9f1]378 url="ftp://ftp.starlink.rl.ac.uk/pub/ussc/store/starperl/starperl.tar.Z">
379 Starlink-Config-&Starlink-Config-version;</ulink></para>
380 <itemizedlist>
381 <listitem>
382 <para><ulink url="http://star-www.rl.ac.uk/">Starlink IMG</ulink></para>
383 <itemizedlist>
384 <listitem>
385 <para><ulink url="http://star-www.rl.ac.uk/">Starlink NDF</ulink></para>
386 <itemizedlist>
387 <listitem>
388 <para><xref linkend="gcc"/> (Fortran compiler)</para>
389 </listitem>
390 </itemizedlist>
391 </listitem>
392 </itemizedlist>
393 </listitem>
394 </itemizedlist>
395 </listitem>
396 </itemizedlist>
397 </listitem>
398 <listitem>
[dae2ba0b]399 <para><ulink
[7dac9f1]400 url="ftp://ftp.starlink.rl.ac.uk/pub/ussc/store/starperl/starperl.tar.Z">
401 GSDPERL-&GSD-version;</ulink></para>
402 <itemizedlist>
403 <listitem>
[dae2ba0b]404 <para><ulink
[7dac9f1]405 url="ftp://ftp.starlink.rl.ac.uk/pub/ussc/store/starperl/starperl.tar.Z">
406 Starlink-Config-&Starlink-Config-version;</ulink></para>
407 <itemizedlist>
408 <listitem>
[dae2ba0b]409 <para><ulink
[7dac9f1]410 url="http://star-www.rl.ac.uk/">Starlink GSD</ulink></para>
411 <itemizedlist>
412 <listitem>
413 <para><xref linkend="gcc"/> (Fortran compiler)</para>
414 </listitem>
415 </itemizedlist>
416 </listitem>
417 </itemizedlist>
418 </listitem>
419 </itemizedlist>
420 </listitem>
421 </itemizedlist>
422 </listitem>
423 </itemizedlist>
424
[1039de3]425 <para condition="html" role="usernotes">User Notes:
426 <ulink url="&blfs-wiki;/pdl"/></para>
427
[7dac9f1]428 </sect2>
429
430 <sect2 role="installation">
431 <title>Installation of PDL</title>
432
[dae2ba0b]433 <para>Install <application>PDL</application> (and all the dependency
[7dac9f1]434 <application>Perl</application> modules) by running the following commands:</para>
435
436<screen><userinput>perl Makefile.PL &amp;&amp;
[bd23186f]437make &amp;&amp;
[7dac9f1]438make test</userinput></screen>
439
440 <para>Now, as the <systemitem class="username">root</systemitem> user:</para>
441
442<screen role="root"><userinput>make install</userinput></screen>
443
444 </sect2>
445
446 <sect2 role="configuration">
447 <title>Configuring PDL</title>
448
449 <sect3 id="pdl-config">
450 <title>Config Files</title>
451
[dae2ba0b]452 <para><filename>~/.perldlrc</filename> and
[7dac9f1]453 <filename>local.perldlrc</filename> in the current directory</para>
454
455 <indexterm zone="pdl pdl-config">
456 <primary sortas="e-AA.perldlrc">~/.perldlrc</primary>
457 </indexterm>
458
459 <indexterm zone="pdl pdl-config">
460 <primary sortas="e-local.perldlrc">local.perldlrc</primary>
461 </indexterm>
462
463 </sect3>
464
465 <sect3>
466 <title>Configuration Information</title>
467
[dae2ba0b]468 <para>See <ulink
[0619e6d]469 url="http://pdl.sourceforge.net/PDLdocs/perldl.html#the startup file ~/.perldlrc"/>
[dae2ba0b]470 for information about configuring <command>perldl</command> to suit your
[7dac9f1]471 needs.</para>
472
473 </sect3>
474
475 </sect2>
476
477 <sect2 role="content">
478 <title>Contents</title>
479
480 <segmentedlist>
481 <segtitle>Installed Programs</segtitle>
482 <segtitle>Installed Modules</segtitle>
483 <segtitle>Installed Directories</segtitle>
484
485 <seglistitem>
486 <seg>pdl, pdldoc, perldl, and pptemplate</seg>
487 <seg>90+ individual <application>Perl</application> modules</seg>
[55fb7f56]488 <seg>/usr/lib/perl5/site_perl/&lfs-perl-version;/i686-linux/{,auto/}PDL</seg>
[7dac9f1]489 </seglistitem>
490 </segmentedlist>
491
492 <variablelist>
493 <bridgehead renderas="sect3">Short Descriptions</bridgehead>
494 <?dbfo list-presentation="list"?>
495 <?dbhtml list-presentation="table"?>
496
497 <varlistentry id="pdl-prog">
498 <term><command>pdl</command></term>
499 <listitem>
[dae2ba0b]500 <para>is a binary program called from
[7dac9f1]501 <application>PDL</application> scripts which is used to
502 interface <command>perldl</command>.</para>
503 <indexterm zone="pdl pdl-prog">
504 <primary sortas="b-pdl">pdl</primary>
505 </indexterm>
506 </listitem>
507 </varlistentry>
508
509 <varlistentry id="pdldoc">
510 <term><command>pdldoc</command></term>
511 <listitem>
512 <para>is a shell interface to
513 <application>PDL</application> documentation.</para>
514 <indexterm zone="pdl pdldoc">
515 <primary sortas="b-pdldoc">pdldoc</primary>
516 </indexterm>
517 </listitem>
518 </varlistentry>
519
520 <varlistentry id="perldl">
521 <term><command>perldl</command></term>
522 <listitem>
[dae2ba0b]523 <para>is a simple shell (written in <application>Perl</application>)
[7dac9f1]524 for interactive use of <application>PDL</application>.</para>
525 <indexterm zone="pdl perldl">
526 <primary sortas="b-perldl">perldl</primary>
527 </indexterm>
528 </listitem>
529 </varlistentry>
530
531 <varlistentry id="pptemplate">
532 <term><command>pptemplate</command></term>
533 <listitem>
[0619e6d]534 <para>is a script to generate <filename>Makefile.PL</filename>
[7dac9f1]535 and PP file skeletons.</para>
536 <indexterm zone="pdl pptemplate">
537 <primary sortas="b-pptemplate">pptemplate</primary>
538 </indexterm>
539 </listitem>
540 </varlistentry>
541
542 </variablelist>
543
544 </sect2>
[bd23186f]545
546</sect1>
Note: See TracBrowser for help on using the repository browser.