GDL
The Gnu Data Language (GDL) is a useful open-source alternative to IDL. Although for new astronomical scripting applications we prefer Python, the proprietary IDL system is widely used and there are many astronomical routines written for it that are freely available. This page is a guide to the installation of GDL on an OpenSuse Linux platform.
We assume that the base OpenSuse system has been installed with the packages that are often used to support scientific computing. There are some unusual dependencies to build a complete GDL. Additional procedures may be added after the fact since they are compiled as needed by GDL itself.
We recommend installing the version in the CVS repository since is likely to have many known issues corrected. However, the version 0.9.2 released on 2012-02-20 will compile and is largely compatible with IDL. These notes are based on an CVS verion of 2012-07-29 which updates that release.
Go to the Sourceforge website:
and click on the "Code" link in the top menubar rather than the "Download" button that provides the last stable release.
As superuser (su), copy this archive to the /usr/local/src tree on your Linux system:
cp gnudatalanguage-gdl_20120729.tar.gz /usr/local/src
cd /usr/local/src
tar xvzf gnudatalanguage-gdl_20120729.tar.gz
This will create a "gdl" directory in /usr/local/src containing the files you will compile.
cd gdl
./configure --without-hdf --with-hdf5
If the configuration does not successfully complete and generate Makefile in the top level directory, look at the list of errors generated during configuration for clues about missing packages.
Once those issues are resolved, try building the software with
make
We find that during the build you may see an error such as this one:
libtool: Version mismatch error.
which is corrected by running this command
aclocal; libtoolize --force; autoconf; automake -a
in the toplevel of gdl directory, and then repeating the configure and make commands.
The GDL team notes in their CVS version that they will be using cmake instead of autoconf in the future. The software can be compiled with cmake once you install the package for your distribution. The process would be something like this:
cd gdl mkdir build cd build ../cmake
modified to allow for variations in your installation requirements. Instructions are in the gdl INSTALL.cmake file.
After a successful make operation, install the binaries and library with
make install
Prepare a location for the procedures that you will add:
cd /usr/local/ mkdir gdl cd gdl cp -p -r /usr/local/src/gdl/src/pro ./