summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMarkus Rothe <corsair@gentoo.org>2005-06-11 16:24:38 +0000
committerMarkus Rothe <corsair@gentoo.org>2005-06-11 16:24:38 +0000
commite6df5628710af74772cd2649fc24eede130281da (patch)
tree8ecf4d40f1c2f4218e10fc45e02e9df890ca1641 /sci-chemistry/mpqc
parentVersion bump, closes bug #95179. (diff)
downloadgentoo-2-e6df5628710af74772cd2649fc24eede130281da.tar.gz
gentoo-2-e6df5628710af74772cd2649fc24eede130281da.tar.bz2
gentoo-2-e6df5628710af74772cd2649fc24eede130281da.zip
added ~ppc64 and use --enable-shared on ppc64
(Portage version: 2.0.51.19)
Diffstat (limited to 'sci-chemistry/mpqc')
-rw-r--r--sci-chemistry/mpqc/ChangeLog5
-rw-r--r--sci-chemistry/mpqc/mpqc-2.2.3.ebuild10
2 files changed, 12 insertions, 3 deletions
diff --git a/sci-chemistry/mpqc/ChangeLog b/sci-chemistry/mpqc/ChangeLog
index 8df52b2f91fc..b19adc7029b7 100644
--- a/sci-chemistry/mpqc/ChangeLog
+++ b/sci-chemistry/mpqc/ChangeLog
@@ -1,6 +1,9 @@
# ChangeLog for sci-chemistry/mpqc
# Copyright 2002-2005 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sci-chemistry/mpqc/ChangeLog,v 1.4 2005/05/24 22:01:20 spyderous Exp $
+# $Header: /var/cvsroot/gentoo-x86/sci-chemistry/mpqc/ChangeLog,v 1.5 2005/06/11 16:24:38 corsair Exp $
+
+ 11 Jun 2005; Markus Rothe <corsair@gentoo.org> mpqc-2.2.3.ebuild:
+ Added ~ppc64 and solved bug #62124: ppc64 needs --enable-shared
24 May 2005; Donnie Berkholz <spyderous@gentoo.org>; mpqc-2.2.2-r1.ebuild,
mpqc-2.2.3.ebuild:
diff --git a/sci-chemistry/mpqc/mpqc-2.2.3.ebuild b/sci-chemistry/mpqc/mpqc-2.2.3.ebuild
index 7eec6207368b..05e16bab23ee 100644
--- a/sci-chemistry/mpqc/mpqc-2.2.3.ebuild
+++ b/sci-chemistry/mpqc/mpqc-2.2.3.ebuild
@@ -1,6 +1,6 @@
# Copyright 1999-2005 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/sci-chemistry/mpqc/mpqc-2.2.3.ebuild,v 1.2 2005/05/24 22:01:20 spyderous Exp $
+# $Header: /var/cvsroot/gentoo-x86/sci-chemistry/mpqc/mpqc-2.2.3.ebuild,v 1.3 2005/06/11 16:24:38 corsair Exp $
inherit fortran
@@ -12,7 +12,7 @@ SRC_URI="mirror://sourceforge/mpqc/${P}.tar.bz2
LICENSE="GPL-2"
SLOT="0"
# Should work on x86, amd64 and ppc, at least
-KEYWORDS="~x86 ~ppc ~amd64"
+KEYWORDS="~amd64 ~ppc ~ppc64 ~x86"
IUSE="doc X threads"
DEPEND="sys-devel/flex
@@ -28,6 +28,12 @@ src_compile() {
use X \
&& myconf="${myconf} --x-includes=/usr/X11R6/include \
--x-libraries=/usr/X11R6/lib"
+
+ # only shared will work on ppc64 - bug #62124
+ if use ppc64; then
+ myconf="${myconf} --enable-shared"
+ fi
+
./configure \
$(use_enable threads) \
${myconf} || die "configure failed"