diff options
author | 2014-10-24 11:35:50 +0000 | |
---|---|---|
committer | 2014-10-24 11:35:50 +0000 | |
commit | 271d7b0aec1d0bae268fd73c1063663f20680c75 (patch) | |
tree | 7577b6b42654b55397752feb0b58de74db24650d /sci-chemistry/apbs | |
parent | sci-chemistry/pdb2pqr: optimize py code (diff) | |
download | gentoo-2-271d7b0aec1d0bae268fd73c1063663f20680c75.tar.gz gentoo-2-271d7b0aec1d0bae268fd73c1063663f20680c75.tar.bz2 gentoo-2-271d7b0aec1d0bae268fd73c1063663f20680c75.zip |
sci-chemistry/apbs: Add workaround for parallel build issue, #526210
(Portage version: 2.2.14/cvs/Linux x86_64, signed Manifest commit with key B9D4F231BD1558AB!)
Diffstat (limited to 'sci-chemistry/apbs')
-rw-r--r-- | sci-chemistry/apbs/ChangeLog | 5 | ||||
-rw-r--r-- | sci-chemistry/apbs/apbs-1.4.1.ebuild | 5 |
2 files changed, 7 insertions, 3 deletions
diff --git a/sci-chemistry/apbs/ChangeLog b/sci-chemistry/apbs/ChangeLog index d1aed31a4dd0..a74a658fbac2 100644 --- a/sci-chemistry/apbs/ChangeLog +++ b/sci-chemistry/apbs/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for sci-chemistry/apbs # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/sci-chemistry/apbs/ChangeLog,v 1.65 2014/08/21 08:50:50 jlec Exp $ +# $Header: /var/cvsroot/gentoo-x86/sci-chemistry/apbs/ChangeLog,v 1.66 2014/10/24 11:35:50 jlec Exp $ + + 24 Oct 2014; Justin Lecher <jlec@gentoo.org> apbs-1.4.1.ebuild: + Add workaround for parallel build issue, #526210 21 Aug 2014; Justin Lecher <jlec@gentoo.org> apbs-1.4.1.ebuild, +files/apbs-1.4.1-manip.patch, files/apbs-1.4.1-multilib.patch: diff --git a/sci-chemistry/apbs/apbs-1.4.1.ebuild b/sci-chemistry/apbs/apbs-1.4.1.ebuild index 943640b6747d..727d5e4242fe 100644 --- a/sci-chemistry/apbs/apbs-1.4.1.ebuild +++ b/sci-chemistry/apbs/apbs-1.4.1.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2014 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/sci-chemistry/apbs/apbs-1.4.1.ebuild,v 1.2 2014/08/21 08:50:50 jlec Exp $ +# $Header: /var/cvsroot/gentoo-x86/sci-chemistry/apbs/apbs-1.4.1.ebuild,v 1.3 2014/10/24 11:35:50 jlec Exp $ EAPI=5 @@ -55,11 +55,12 @@ src_prepare() { sed \ -e "s:-lblas:$($(tc-getPKG_CONFIG) --libs blas):g" \ -i CMakeLists.txt || die + use doc && MAKEOPTS+=" -j1" } src_configure() { local mycmakeargs=( - -DSYS_LIBPATHS="${EPREFIX}"/usr/$(get_libdir) + -DSYS_LIBPATHS="${EPREFIX}"/usr/$(get_libdir) -DLIBRARY_INSTALL_PATH=$(get_libdir) -DFETK_PATH="${EPREFIX}"/usr/ -DBUILD_SHARED_LIBS=ON |