blob: abedf6c0bd5f016225ee553a6d433989b8002126 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
|
# Copyright 1999-2006 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/sci-libs/hdf/hdf-4.2.0-r4.ebuild,v 1.2 2006/06/04 09:47:44 spyderous Exp $
inherit autotools flag-o-matic fortran
# substitute second dot by "r"
MY_PV="${PV/./X}"
TMP_PV="${MY_PV/./r}"
MY_PV="${TMP_PV/X/.}"
S="${WORKDIR}/${PN}${MY_PV}"
DESCRIPTION="HDF4 is a general purpose library and file format for storing scientific data."
SRC_URI="ftp://ftp.ncsa.uiuc.edu/HDF/pub/outgoing/hdf4/hdf${MY_PV}/hdf${MY_PV}.tar.gz"
HOMEPAGE="http://hdf.ncsa.uiuc.edu/hdf4.html"
LICENSE="NCSA-HDF"
KEYWORDS="~x86 ~amd64 ~ppc"
SLOT="0"
IUSE="szip"
DEPEND="sys-libs/zlib
media-libs/jpeg
>=sys-apps/sed-4
szip? ( sci-libs/szip )"
FORTRAN="g77 gfortran"
src_unpack() {
unpack ${A}
cd "${S}"
# We need shared libraries, see BUG #75415.
# Danny van Dyk <kugelfang@gentoo.org> 2005/01/24
epatch "${FILESDIR}"/${P}-shared-libs.patch
eautoreconf
}
src_compile() {
# BUG #75415, the shipped config/linux-gnu settings are broken.
# -Wsign-compare does not work with g77, causing lack of -fPIC for shared
# objects.
sed -e 's|-Wsign-compare||g' -i "${S}"/config/linux-gnu || die
local myconf="--enable-production"
use szip && myconf="${myconf} --with-szlib=/usr"
use ppc && append-flags -DSUN
econf \
${myconf} \
F77="${FORTRANC}" \
|| die "configure failed"
make LDFLAGS="${LDFLAGS} -lm" || die "make failed"
}
src_install() {
make DESTDIR="${D}" install || die "make install failed"
dodoc README release_notes/*.txt || die
cd "${D}"
einfo "Renaming included versions of ncdump and ncgen to hdfdump and hdfgen, respectively."
mv -v usr/bin/ncgen usr/bin/hdfgen || die
mv -v usr/bin/ncdump usr/bin/hdfdump || die
mv -v usr/share/man/man1/ncgen.1 usr/share/man/man1/hdfgen.1 || die
mv -v usr/share/man/man1/ncdump.1 usr/share/man/man1/hdfdump.1 || die
if has_version sci-libs/netcdf; then
einfo '"sci-libs/netcdf" is already installed - not installing netcdf related header files.'
rm -v usr/include/netcdf.inc || die
rm -v usr/include/netcdf.h || die
fi
}
|