diff options
author | Sebastien Fabbro <bicatali@gentoo.org> | 2007-11-05 11:54:55 +0000 |
---|---|---|
committer | Sebastien Fabbro <bicatali@gentoo.org> | 2007-11-05 11:54:55 +0000 |
commit | c6b34c53a1ab37a09c2f9cd76e092d138b9a0e80 (patch) | |
tree | 604ef73cc5089450ccfa009fb6e5de4d4983c25e /dev-lang/gdl/gdl-0.9_pre6.ebuild | |
parent | Stable for HPPA (bug #196860). (diff) | |
download | gentoo-2-c6b34c53a1ab37a09c2f9cd76e092d138b9a0e80.tar.gz gentoo-2-c6b34c53a1ab37a09c2f9cd76e092d138b9a0e80.tar.bz2 gentoo-2-c6b34c53a1ab37a09c2f9cd76e092d138b9a0e80.zip |
Version bump
(Portage version: 2.1.3.16)
Diffstat (limited to 'dev-lang/gdl/gdl-0.9_pre6.ebuild')
-rw-r--r-- | dev-lang/gdl/gdl-0.9_pre6.ebuild | 74 |
1 files changed, 74 insertions, 0 deletions
diff --git a/dev-lang/gdl/gdl-0.9_pre6.ebuild b/dev-lang/gdl/gdl-0.9_pre6.ebuild new file mode 100644 index 000000000000..8d1f4ae349cb --- /dev/null +++ b/dev-lang/gdl/gdl-0.9_pre6.ebuild @@ -0,0 +1,74 @@ +# Copyright 1999-2007 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/dev-lang/gdl/gdl-0.9_pre6.ebuild,v 1.1 2007/11/05 11:54:54 bicatali Exp $ + +inherit eutils flag-o-matic + +MYP=${P/_/} +DESCRIPTION="An Interactive Data Language compatible incremental compiler" +LICENSE="GPL-2" +HOMEPAGE="http://gnudatalanguage.sourceforge.net/" +SRC_URI="mirror://sourceforge/gnudatalanguage/${MYP}.tar.gz" + +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="python fftw hdf hdf5 netcdf imagemagick proj" + +RDEPEND=">=sys-libs/readline-4.3 + sci-libs/gsl + >=sci-libs/plplot-5.3 + imagemagick? ( media-gfx/imagemagick ) + hdf? ( sci-libs/hdf ) + hdf5? ( sci-libs/hdf5 ) + netcdf? ( sci-libs/netcdf ) + python? ( virtual/python + dev-python/numarray + dev-python/matplotlib ) + fftw? ( >=sci-libs/fftw-3 ) + proj? ( sci-libs/proj )" + +DEPEND="${RDEPEND} + sys-devel/libtool" + +S="${WORKDIR}/${MYP}" + +src_unpack() { + unpack ${A} + cd "${S}" + epatch "${FILESDIR}"/${P}-proj4.patch +} + +src_compile() { + use proj && append-cppflags -DPJ_LIB__ + econf \ + $(use_with python) \ + $(use_with fftw) \ + $(use_with hdf) \ + $(use_with hdf5) \ + $(use_with netcdf) \ + $(use_with imagemagick Magick) \ + $(use_with proj libproj4) \ + || die "econf failed" + + emake || die "emake failed" +} + +src_test() { + cd "${S}"/testsuite + PATH="${S}"/src gdl <<EOF +test_suite +EOF +} + +src_install() { + emake DESTDIR="${D}" install || die "emake install failed" + + insinto /usr/share/${PN} + doins -r src/pro src/py || die "install pro and py files failed" + dodoc README PYTHON.txt AUTHORS ChangeLog NEWS TODO HACKING || die + + # add GDL provided routines to IDL_PATH + echo "GDL_STARTUP=/usr/share/${PN}/pro" > 99gdl + echo "GDL_PATH=/usr/share/${PN}" >> 99gdl + doenvd 99gdl +} |