Building Metlibs and Diana with Autotools
OUTDATED: This page is no longer up to date, diana and metlibs are now built using cmake.
This document describes how to build the Diana application and its main dependencies (Fimex and Metlibs) from source code, focusing on Ubuntu 12.04 (Precise) and Fedora 20. We provide commands to install further dependencies as they are needed, but this assumes that previous steps have been followed. For example, we list the common dependencies between Metlibs and Fimex as Fimex dependencies.
General Prerequisites
This section describes the basic set of packages that will be required to build the software.
Ubuntu 12.04 (Precise)
On a clean stock Ubuntu Precise (12.04) install, you will first need to install build tools:
sudo apt-get install build-essential autoconf automake libtool subversion \ gfortran flex bison
Fedora 20
On Fedora 20, this command has been found to install a reasonable base set of tools:
sudo yum install gcc-c++ make wget tar subversion autoconf automake \ findutils libtool flex bison autoconf-archive \ gcc-gfortran file
Obtaining the source code
Obtain the latest source code from the source code repositories. Currently, fimex, metlibs and Diana are held in git repositories:
fimex:
git clone https://github.com/metno/fimex.git
metlibs:
git clone https://github.com/metno/metlibs-milogger.git git clone https://github.com/metno/metlibs-puctools.git git clone https://github.com/metno/metlibs-putools.git git clone https://github.com/metno/metlibs-pudatatypes.git git clone https://github.com/metno/metlibs-qutilities.git git clone https://github.com/metno/metlibs-coserver.git
Diana:
git clone https://github.com/metno/diana.git
Fimex
Ubuntu 12.04 (Precise)
Install the dependencies using the following command:
sudo apt-get install libxml2-dev libproj-dev libudunits2-dev \ libnetcdf-dev libgrib-api-dev libjasper-dev libpng12-dev \ libjpeg-dev libpq-dev liblog4cpp5-dev \ libboost-filesystem-dev libboost-system-dev \ libboost-iostreams-dev libboost-program-options-dev \ libboost-regex-dev libboost-test-dev \ libboost-date-time-dev
Fedora 20
Install the dependencies using the following command:
sudo yum install boost-devel libxml2-devel udunits2-devel \ netcdf-devel grib_api-devel jasper-devel libpng-devel \ libjpeg-turbo-devel libpqxx-devel log4cpp-devel \ proj-devel udunits-devel
Metlibs
Next, you will need to install various third-party libraries that Metlibs and Diana depend on:
Ubuntu 12.04 (Precise)
Without optional libraries:
sudo apt-get install ftgl-dev libhdf4g-dev libtiff4-dev libqt4-dev proj \ libmysqlclient-dev liblog4cpp5-dev libcurl4-gnutls-dev \ libgeotiff-dev libboost-thread-dev
With optional libraries:
sudo apt-get install ftgl-dev libhdf4g-dev libhdf5-serial-dev libtiff4-dev \ libqt4-dev proj libmysqlclient-dev libpqxx-dev \ libomniorb4-dev omniidl4 libldap2-dev liblog4cpp5-dev \ libcurl4-gnutls-dev libgeotiff-dev libboost-thread-dev
Fedora 20
sudo yum install ftgl-devel libgeotiff-devel mesa-libGL-devel mesa-libGLU-devel \ qt-devel
Diana
Diana can be configured to be used for creating animations. If this is desired then libavformat and its development headers need to be installed. On Ubuntu 12.04, a package exists for the optional EMOSLIB dependency, required to support viewing of observation files. However, it is not available for every distribution.
Ubuntu 12.04 (Precise)
sudo apt-get install libemos-dev libgrib-api-dev libshp-dev libxt-dev
Fedora 20
For observation buffer support in Diana, install EMOSLIB from source.
sudo yum install grib_api-devel shapelib-devel
Installing Fimex
Enter the fimex
directory and configure the library with the following command:
./configure
If you want to install the library in an alternative location, specify it using the --prefix option; for example, use the following command to specify a directory inside the user's home directory:
./configure --prefix=$HOME/diana
Build and install the library with the following commands:
make make install
You may need root privileges to install the library unless you specified a prefix in the configuration step.
Installing Metlibs
Enter the subdirectories for each of the metlibs modules, configuring, building and installing them using the scripts listed below. Note that, by default, the libraries will be installed under /usr/local
unless you specify a prefix to the configure script, such as --prefix=$HOME/diana to install the libraries in the diana
directory inside the user's home directory.
#/bin/sh set -e THIS_DIR=`pwd` # uncomment next line on Fedora #PREFIX="--prefix=/usr/local" SUDO=sudo for l in milogger puctools putools pudatatypes qutilities coserver; do cd "$THIS_DIR/metlibs-$l" ./autogen.sh && ./configure $PREFIX && make $SUDO make install done
Installing Diana
Note: By default, support for observation buffers is conditionally enabled and video export is enabled. To disable video support, append the --disable-video-support option to the command line you use to configure the build.
Ubuntu 12.04 (Precise)
Enter the diana
directory. If you have root privileges on your system, configure the library by running the configure script:
./autogen.sh ./configure --enable-xlib --enable-geotiff
To configure the library for installation in a directory where you have permission to write files (for example, $HOME/diana for a directory in the user's home directory), use the --prefix option to specify the installation directory:
./autogen.sh ./configure --enable-xlib --enable-geotiff --prefix=$HOME/diana
Fedora 20
Enter the diana
directory. If you have root privileges on your system, configure the library by running the configure script:
./autogen.sh ./configure --enable-xlib --enable-geotiff --prefix=/usr/local \ --with-png-libdir=/usr/lib64 --enable-vcross-v2 --with-udunits2-includedir=/usr/include/udunits2
To configure the library for installation in a directory where you have permission to write files (for example, $HOME/diana for a directory in the user's home directory), use the --prefix option to specify the installation directory:
./autogen.sh ./configure --enable-xlib --enable-geotiff --prefix=$HOME/diana \ --with-png-libdir=/usr/lib64 --enable-vcross-v2 --with-udunits2-includedir=/usr/include/udunits2
Building
Build and install the application with the following commands:
make make install
You may need root privileges to install the application unless you specified a prefix in the configuration step.
If you want to use the video export function, you have to install the avconv
utility.
- Ubuntu/Debian:
sudo apt-get install libav-tools
Next Steps
See the Installing Data Files section of the Getting Started document for instructions about configuring and running Diana.