57 lines
1.4 KiB
Bash
57 lines
1.4 KiB
Bash
# Copyright 1999-2013 Gentoo Foundation
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
# $Header: /var/cvsroot/gentoo-x86/sci-libs/hdf/hdf-4.2.9.ebuild,v 1.1 2013/02/19 11:27:09 xarthisius Exp $
|
|
|
|
EAPI=4
|
|
|
|
FORTRAN_NEEDED=fortran
|
|
|
|
inherit eutils fortran-2 toolchain-funcs autotools flag-o-matic
|
|
|
|
MYP=${P/_p/-patch}
|
|
|
|
DESCRIPTION="General purpose library and format for storing scientific data"
|
|
HOMEPAGE="http://www.hdfgroup.org/hdf4.html"
|
|
SRC_URI="http://www.hdfgroup.org/ftp/HDF/HDF_Current/src/${MYP}.tar.bz2"
|
|
|
|
SLOT="0"
|
|
LICENSE="NCSA-HDF"
|
|
KEYWORDS="~amd64 ~ppc ~x86 ~amd64-linux ~x86-linux"
|
|
IUSE="fortran szip static-libs"
|
|
|
|
RDEPEND="
|
|
sys-libs/zlib
|
|
virtual/jpeg
|
|
szip? ( >=sci-libs/szip-2 )"
|
|
DEPEND="${RDEPEND}"
|
|
|
|
S=${WORKDIR}/${MYP}
|
|
|
|
src_prepare() {
|
|
epatch "${FILESDIR}"/${P}-autotools.patch \
|
|
"${FILESDIR}"/${PN}-ppc.patch
|
|
sed -i -e 's/-R/-L/g' config/commence.am || die #rpath
|
|
eautoreconf
|
|
[[ $(tc-getFC) = *gfortran ]] && append-fflags -fno-range-check
|
|
}
|
|
|
|
src_configure() {
|
|
econf \
|
|
--enable-shared \
|
|
--enable-production=gentoo \
|
|
--disable-netcdf \
|
|
$(use_enable fortran) \
|
|
$(use_enable static-libs static) \
|
|
$(use_with szip szlib) \
|
|
CC="$(tc-getCC)"
|
|
}
|
|
|
|
src_install() {
|
|
default
|
|
dodoc release_notes/{RELEASE,HISTORY,bugs_fixed,misc_docs}.txt
|
|
cd "${ED}"usr
|
|
mv bin/ncgen{,-hdf} || die
|
|
mv bin/ncdump{,-hdf} || die
|
|
mv share/man/man1/ncgen{,-hdf}.1 || die
|
|
mv share/man/man1/ncdump{,-hdf}.1 || die
|
|
}
|