diff options
author | Steve Arnold <nerdboy@gentoo.org> | 2009-04-20 01:01:54 +0000 |
---|---|---|
committer | Steve Arnold <nerdboy@gentoo.org> | 2009-04-20 01:01:54 +0000 |
commit | 08f171b2db45afe5a113ef9a951a729374b28008 (patch) | |
tree | 22a1f33fdca761b916c983dd7326042541cedbc9 /sci-libs | |
parent | old (diff) | |
download | gentoo-2-08f171b2db45afe5a113ef9a951a729374b28008.tar.gz gentoo-2-08f171b2db45afe5a113ef9a951a729374b28008.tar.bz2 gentoo-2-08f171b2db45afe5a113ef9a951a729374b28008.zip |
Enabled additional 64bit configure option for large NetCDF files.
(Portage version: 2.2_rc30/cvs/Linux x86_64)
Diffstat (limited to 'sci-libs')
-rw-r--r-- | sci-libs/libnc-dap/ChangeLog | 5 | ||||
-rw-r--r-- | sci-libs/libnc-dap/libnc-dap-3.7.3.ebuild | 9 |
2 files changed, 9 insertions, 5 deletions
diff --git a/sci-libs/libnc-dap/ChangeLog b/sci-libs/libnc-dap/ChangeLog index df4901d23eca..bd9195f28608 100644 --- a/sci-libs/libnc-dap/ChangeLog +++ b/sci-libs/libnc-dap/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for sci-libs/libnc-dap # Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/sci-libs/libnc-dap/ChangeLog,v 1.1 2009/04/19 22:38:31 nerdboy Exp $ +# $Header: /var/cvsroot/gentoo-x86/sci-libs/libnc-dap/ChangeLog,v 1.2 2009/04/20 01:01:54 nerdboy Exp $ + + 20 Apr 2009; Steve Arnold <nerdboy@gentoo.org> libnc-dap-3.7.3.ebuild: + Enabled additional 64bit configure option for large NetCDF files. *libnc-dap-3.7.3 (19 Apr 2009) diff --git a/sci-libs/libnc-dap/libnc-dap-3.7.3.ebuild b/sci-libs/libnc-dap/libnc-dap-3.7.3.ebuild index 26d33910fdcd..0a9bb3dbe680 100644 --- a/sci-libs/libnc-dap/libnc-dap-3.7.3.ebuild +++ b/sci-libs/libnc-dap/libnc-dap-3.7.3.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/libnc-dap/libnc-dap-3.7.3.ebuild,v 1.1 2009/04/19 22:38:31 nerdboy Exp $ +# $Header: /var/cvsroot/gentoo-x86/sci-libs/libnc-dap/libnc-dap-3.7.3.ebuild,v 1.2 2009/04/20 01:01:54 nerdboy Exp $ inherit eutils flag-o-matic fortran @@ -52,10 +52,11 @@ src_unpack() { src_compile() { local test_conf="${DAP_TEST_OPTS}" - local myconf="--disable-dependency-tracking --enable-largefile" - + local myconf="--disable-dependency-tracking --enable-largefile \ + --enable-64bit" # debug can be set to 2 for extra verbosity use debug && myconf="${myconf} --enable-debug=1" + econf ${myconf} ${test_conf} || die "econf failed" emake -j1 || die "emake failed" @@ -64,7 +65,7 @@ src_compile() { src_test() { if use full-test; then cd "${S}"/nc_test - # These tests should all pass, but the non-local pass can take + # These tests should all pass, but the non-local tests can take # several hours to complete. make check || die "Regression tests failed!" cd "${S}" |