summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSebastien Fabbro <bicatali@gentoo.org>2012-08-03 19:09:42 +0000
committerSebastien Fabbro <bicatali@gentoo.org>2012-08-03 19:09:42 +0000
commitfbc61238a2304e2c3f40e5047d855e396cfdf754 (patch)
treef48d72bbdccf534e13c6ea2abe43409b7955ee06 /sci-libs/grib_api/grib_api-1.9.5-r1.ebuild
parentStable for amd64, wrt bug #422015 (diff)
downloadgentoo-2-fbc61238a2304e2c3f40e5047d855e396cfdf754.tar.gz
gentoo-2-fbc61238a2304e2c3f40e5047d855e396cfdf754.tar.bz2
gentoo-2-fbc61238a2304e2c3f40e5047d855e396cfdf754.zip
Fixed a shell script, jpeg2k (bug #413703, thanks jer), and keyword amd64-linux x86-linux
(Portage version: 2.2.01.20796-prefix/cvs/Linux x86_64)
Diffstat (limited to 'sci-libs/grib_api/grib_api-1.9.5-r1.ebuild')
-rw-r--r--sci-libs/grib_api/grib_api-1.9.5-r1.ebuild56
1 files changed, 0 insertions, 56 deletions
diff --git a/sci-libs/grib_api/grib_api-1.9.5-r1.ebuild b/sci-libs/grib_api/grib_api-1.9.5-r1.ebuild
deleted file mode 100644
index 5b210beae76d..000000000000
--- a/sci-libs/grib_api/grib_api-1.9.5-r1.ebuild
+++ /dev/null
@@ -1,56 +0,0 @@
-# Copyright 1999-2011 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/sci-libs/grib_api/grib_api-1.9.5-r1.ebuild,v 1.4 2011/06/21 15:18:12 jlec Exp $
-
-EAPI=2
-inherit eutils fortran-2 autotools
-
-DESCRIPTION="Library for decoding WMO FM-92 GRIB messages"
-HOMEPAGE="http://www.ecmwf.int/products/data/software/grib_api.html"
-SRC_URI="http://www.ecmwf.int/products/data/software/download/software_files/${P}.tar.gz"
-
-LICENSE="LGPL-3"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-IUSE="doc examples fortran jpeg2k openmp png perl python static-libs"
-
-DEPEND="
- fortran? ( virtual/fortran )
- jpeg2k? ( || ( media-libs/jasper media-libs/openjpeg ) )
- png? ( media-libs/libpng )
- python? ( dev-python/numpy )"
-RDEPEND="${DEPEND}"
-
-src_prepare() {
- epatch \
- "${FILESDIR}"/${P}-autotools.patch \
- "${FILESDIR}"/${P}-32bit.patch
- eautoreconf
-}
-
-src_configure() {
- econf \
- --enable-install-system-perl \
- $(use_enable fortran) \
- $(use_enable jpeg2k jpeg) \
- $(use_enable openmp omp-packing) \
- $(use_enable python) \
- $(use_enable python numpy) \
- $(use_enable static-libs static) \
- $(use_with perl) \
- $(use_with png png-support)
-
-}
-
-src_install() {
- emake DESTDIR="${D}" install || die "emake install failed"
- dodoc AUTHORS ChangeLog README
- if use doc; then
- dohtml html/* || die
- fi
- if use examples; then
- insinto /usr/share/doc/${PF}/examples
- emake clean
- doins -r * || die
- fi
-}