blob: 7e16468da0bda016c171d755f2136f57d0f3051f (
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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
|
# Copyright 1999-2011 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/sci-libs/hdf5/hdf5-1.8.7.ebuild,v 1.9 2011/07/13 15:49:01 xarthisius Exp $
EAPI=4
inherit autotools eutils fortran-2
DESCRIPTION="General purpose library and file format for storing scientific data"
HOMEPAGE="http://www.hdfgroup.org/HDF5/"
SRC_URI="http://www.hdfgroup.org/ftp/HDF5/current/src/${P}.tar.bz2"
LICENSE="NCSA-HDF"
SLOT="0"
KEYWORDS="~alpha ~amd64 ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~amd64-linux ~x86-linux"
IUSE="cxx debug examples fortran mpi szip threads zlib"
RDEPEND="
fortran? ( virtual/fortran )
mpi? ( virtual/mpi[romio] )
szip? ( >=sci-libs/szip-2.1 )
zlib? ( sys-libs/zlib )"
DEPEND="${RDEPEND}
sys-devel/libtool:2
sys-process/time"
pkg_setup() {
use fortran && fortran-2_pkg_setup
if use mpi; then
if has_version 'sci-libs/hdf5[-mpi]'; then
ewarn "Installing hdf5 with mpi enabled with a previous hdf5 with mpi disabled may fail."
ewarn "Try to uninstall the current hdf5 prior to enabling mpi support."
fi
if use cxx; then
ewarn "Simultaneous mpi and cxx is not supported by ${PN}"
ewarn "Will disable cxx interface"
fi
export CC=mpicc
use fortran && export FC=mpif90
elif has_version 'sci-libs/hdf5[mpi]'; then
ewarn "Installing hdf5 with mpi disabled while having hdf5 installed with mpi enabled may fail."
ewarn "Try to uninstall the current hdf5 prior to disabling mpi support."
fi
}
src_prepare() {
epatch \
"${FILESDIR}"/${PN}-1.8.3-as-needed.patch \
"${FILESDIR}"/${PN}-1.8.5-implicits.patch \
"${FILESDIR}"/${PN}-1.8.5-noreturn.patch \
"${FILESDIR}"/${PN}-1.8.4-scaleoffset.patch \
# respect gentoo examples directory
sed \
-e "s:hdf5_examples:doc/${PF}/examples:g" \
-i $(find . -name Makefile.am) $(find . -name "run*.sh.in") || die
sed \
-e '/docdir/d' \
-i config/commence.am || die
eautoreconf
# enable shared libs by default for h5cc config utility
sed -i -e "s/SHLIB:-no/SHLIB:-yes/g" tools/misc/h5cc.in \
|| die "sed h5cc.in failed"
}
src_configure() {
# threadsafe incompatible with many options
local myconf="--disable-threadsafe"
use debug && myconf="${myconf} --enable-codestack"
use threads && ! use fortran && ! use cxx && ! use mpi \
&& myconf="--enable-threadsafe"
if use mpi; then
myconf="${myconf} --disable-cxx"
else
# workaround for bug 285148
if use cxx; then
myconf="${myconf} $(use_enable cxx) CXX=$(tc-getCXX)"
fi
if use fortran; then
myconf="${myconf} FC=$(tc-getFC)"
fi
fi
econf \
--disable-sharedlib-rpath \
--enable-production \
--docdir="${EPREFIX}"/usr/share/doc/${PF} \
--enable-deprecated-symbols \
--enable-shared \
--disable-silent-rules \
$(use_enable debug debug all) \
$(use_enable fortran) \
$(use_enable mpi parallel) \
$(use_with szip szlib) \
$(use_with threads pthread) \
$(use_with zlib) \
${myconf}
}
src_install() {
default
if use examples; then
emake DESTDIR="${D}" install-examples
fi
}
|