diff options
author | Steve Arnold <nerdboy@gentoo.org> | 2009-09-15 06:40:44 +0000 |
---|---|---|
committer | Steve Arnold <nerdboy@gentoo.org> | 2009-09-15 06:40:44 +0000 |
commit | fe7f2144a4928f93f558e77af23e6ad2de45d4a4 (patch) | |
tree | 166cd8c4bfc4fb4a9242be999875c33b756d98ef /sci-libs | |
parent | Add missing keywords (#284068) (diff) | |
download | gentoo-2-fe7f2144a4928f93f558e77af23e6ad2de45d4a4.tar.gz gentoo-2-fe7f2144a4928f93f558e77af23e6ad2de45d4a4.tar.bz2 gentoo-2-fe7f2144a4928f93f558e77af23e6ad2de45d4a4.zip |
Updated to build and install the missing .so shared lib files.
(Portage version: 2.2_rc33/cvs/Linux x86_64)
Diffstat (limited to 'sci-libs')
-rw-r--r-- | sci-libs/hdf5/ChangeLog | 9 | ||||
-rw-r--r-- | sci-libs/hdf5/hdf5-1.8.3-r1.ebuild (renamed from sci-libs/hdf5/hdf5-1.8.3.ebuild) | 8 |
2 files changed, 15 insertions, 2 deletions
diff --git a/sci-libs/hdf5/ChangeLog b/sci-libs/hdf5/ChangeLog index 701f43e5b71c..d59680fbbc38 100644 --- a/sci-libs/hdf5/ChangeLog +++ b/sci-libs/hdf5/ChangeLog @@ -1,6 +1,13 @@ # ChangeLog for sci-libs/hdf5 # Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/sci-libs/hdf5/ChangeLog,v 1.36 2009/09/11 02:29:30 bicatali Exp $ +# $Header: /var/cvsroot/gentoo-x86/sci-libs/hdf5/ChangeLog,v 1.37 2009/09/15 06:40:44 nerdboy Exp $ + +*hdf5-1.8.3-r1 (15 Sep 2009) + + 15 Sep 2009; Steve Arnold <nerdboy@gentoo.org> -hdf5-1.8.3.ebuild, + +hdf5-1.8.3-r1.ebuild: + Updated to install the shared libs correctly. This allows other packages + that link against hdf5 to actually build... 11 Sep 2009; Sébastien Fabbro <bicatali@gentoo.org> hdf5-1.8.3.ebuild, files/hdf5-1.8.3-as-needed.patch: diff --git a/sci-libs/hdf5/hdf5-1.8.3.ebuild b/sci-libs/hdf5/hdf5-1.8.3-r1.ebuild index 40a4e2aeb078..2d75c43d21cd 100644 --- a/sci-libs/hdf5/hdf5-1.8.3.ebuild +++ b/sci-libs/hdf5/hdf5-1.8.3-r1.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2009 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/sci-libs/hdf5/hdf5-1.8.3.ebuild,v 1.3 2009/09/11 02:29:30 bicatali Exp $ +# $Header: /var/cvsroot/gentoo-x86/sci-libs/hdf5/hdf5-1.8.3-r1.ebuild,v 1.1 2009/09/15 06:40:44 nerdboy Exp $ EAPI=2 inherit eutils autotools flag-o-matic @@ -49,6 +49,11 @@ src_prepare() { -e 's:$(docdir)/hdf5:$(docdir):' \ $(find . -name Makefile.am) || die eautoreconf + + # need to install the shared libs or other things fail + # see below for --enable-shared (the default is *not* yes) + sed -i -e "s/SHLIB:-no/SHLIB:-yes/g" tools/misc/h5cc.in \ + || die "sed h5cc.in failed" } src_configure() { @@ -70,6 +75,7 @@ src_configure() { --enable-production \ --enable-strict-format-checks \ --enable-deprecated-symbols \ + --enable-shared --with-pic \ $(use_enable fortran) \ $(use_enable mpi parallel) \ $(use_with szip szlib) \ |