summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSebastien Fabbro <bicatali@gentoo.org>2009-09-17 22:45:00 +0000
committerSebastien Fabbro <bicatali@gentoo.org>2009-09-17 22:45:00 +0000
commitb4dd8f013d0a02ed611f97d38bdeb45f78014f10 (patch)
tree605a4d22dff9ced034fc3299b95b8129de118732 /sci-libs/hdf5
parentVersion bump, removed old. Note gsl-1.9-r1 is kept for GPL-2 compat until we ... (diff)
downloadgentoo-2-b4dd8f013d0a02ed611f97d38bdeb45f78014f10.tar.gz
gentoo-2-b4dd8f013d0a02ed611f97d38bdeb45f78014f10.tar.bz2
gentoo-2-b4dd8f013d0a02ed611f97d38bdeb45f78014f10.zip
Removed the forced PIC configure line which was compiling static libraries with PIC
(Portage version: 2.2_rc40/cvs/Linux x86_64)
Diffstat (limited to 'sci-libs/hdf5')
-rw-r--r--sci-libs/hdf5/ChangeLog6
-rw-r--r--sci-libs/hdf5/hdf5-1.8.3-r1.ebuild12
2 files changed, 9 insertions, 9 deletions
diff --git a/sci-libs/hdf5/ChangeLog b/sci-libs/hdf5/ChangeLog
index d59680fbbc38..fa8fa3e91494 100644
--- a/sci-libs/hdf5/ChangeLog
+++ b/sci-libs/hdf5/ChangeLog
@@ -1,6 +1,10 @@
# 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.37 2009/09/15 06:40:44 nerdboy Exp $
+# $Header: /var/cvsroot/gentoo-x86/sci-libs/hdf5/ChangeLog,v 1.38 2009/09/17 22:45:00 bicatali Exp $
+
+ 17 Sep 2009; Sébastien Fabbro <bicatali@gentoo.org> hdf5-1.8.3-r1.ebuild:
+ Removed the forced PIC configure line which was compiling static libraries
+ with PIC
*hdf5-1.8.3-r1 (15 Sep 2009)
diff --git a/sci-libs/hdf5/hdf5-1.8.3-r1.ebuild b/sci-libs/hdf5/hdf5-1.8.3-r1.ebuild
index 2d75c43d21cd..50183f6333d7 100644
--- a/sci-libs/hdf5/hdf5-1.8.3-r1.ebuild
+++ b/sci-libs/hdf5/hdf5-1.8.3-r1.ebuild
@@ -1,9 +1,9 @@
# 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-r1.ebuild,v 1.1 2009/09/15 06:40:44 nerdboy Exp $
+# $Header: /var/cvsroot/gentoo-x86/sci-libs/hdf5/hdf5-1.8.3-r1.ebuild,v 1.2 2009/09/17 22:45:00 bicatali Exp $
EAPI=2
-inherit eutils autotools flag-o-matic
+inherit eutils autotools
DESCRIPTION="General purpose library and file format for storing scientific data"
HOMEPAGE="http://www.hdfgroup.org/HDF5/"
@@ -49,15 +49,12 @@ 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)
+ # 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"
+ || die "sed h5cc.in failed"
}
src_configure() {
- filter_flags -
# threadsafe incompatible with many options
local myconf="--disable-threadsafe"
use threads && ! use fortran && ! use cxx && ! use mpi \
@@ -75,7 +72,6 @@ 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) \