The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.
Source: pdl
Section: math
Priority: optional
Maintainer: Henning Glawe <glaweh@debian.org>
Standards-Version: 3.9.3
Build-Depends:
 gfortran,
 dpkg-dev (>= 1.16.1~),
 x11proto-core-dev,
 libncurses-dev,
 perl (>= 5.8.0-3),
 debhelper (>= 9),
 libinline-perl (>= 0.43),
 libgsl0-dev,
 fftw-dev,
 libxext-dev,
 libhdf4-alt-dev | libhdf4g-dev,
 libproj-dev | proj,
 proj-bin | proj,
 libgd2-xpm-dev,
 libastro-fits-header-perl,
 sharutils,
 libopengl-perl (>= 0.65),
 libxi-dev,
 libxmu-dev,
 freeglut3-dev,
 libextutils-f77-perl,
 netpbm,
 libdevel-repl-perl (>=1.003011),
 libtest-warn-perl
Homepage: http://pdl.perl.org/

Package: pdl
Architecture: any
Depends:
 ${perl:Depends},
 libterm-readkey-perl,
 ${shlibs:Depends},
 libopengl-perl (>=0.62),
 ${misc:Depends}
Recommends:
 libterm-readline-gnu-perl | libterm-readline-perl-perl
Suggests:
 libpgplot-perl,
 netpbm | imagemagick,
 libastro-fits-header-perl,
 libinline-perl,
 doc-base,
 libextutils-f77-perl,
 proj-bin | proj,
 libdevel-repl-perl (>=1.003011)
Conflicts: r-pdl
Replaces: r-pdl
Provides:
 ${pdlapi:Provides}
Description: perl data language: Perl extensions for numerics
 PDL gives standard perl the ability to COMPACTLY
 store and SPEEDILY manipulate the large N-dimensional data arrays 
 which are the bread and butter of scientific computing.  The idea 
 is to turn perl in to a free, array-oriented, numerical language 
 in the same sense as commercial packages like IDL and MatLab. One
 can write simple perl expressions to manipulate entire numerical arrays 
 all at once. For example, using PDL the perl variable $a can hold a
 1024x1024 floating point image, it only takes 4Mb of memory to store
 it and expressions like $a=sqrt($a)+2 would manipulate the whole image 
 in a few seconds. 
 .
 A simple interactive shell (perldl) is provided for command line use 
 together with a module (PDL) for use in perl scripts.