diff options
author | Markus Rothe <corsair@gentoo.org> | 2005-06-11 16:24:38 +0000 |
---|---|---|
committer | Markus Rothe <corsair@gentoo.org> | 2005-06-11 16:24:38 +0000 |
commit | 1df18745ebcc1217c6cb4c058b21592be138e5c4 (patch) | |
tree | 1e35b620412c7c1fac777e292d989a307e458530 /sci-chemistry | |
parent | Version bump, closes bug #95179. (diff) | |
download | historical-1df18745ebcc1217c6cb4c058b21592be138e5c4.tar.gz historical-1df18745ebcc1217c6cb4c058b21592be138e5c4.tar.bz2 historical-1df18745ebcc1217c6cb4c058b21592be138e5c4.zip |
added ~ppc64 and use --enable-shared on ppc64
Package-Manager: portage-2.0.51.19
Diffstat (limited to 'sci-chemistry')
-rw-r--r-- | sci-chemistry/mpqc/ChangeLog | 5 | ||||
-rw-r--r-- | sci-chemistry/mpqc/Manifest | 6 | ||||
-rw-r--r-- | sci-chemistry/mpqc/mpqc-2.2.3.ebuild | 10 |
3 files changed, 15 insertions, 6 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/Manifest b/sci-chemistry/mpqc/Manifest index 239e71266249..cecf7cce5e91 100644 --- a/sci-chemistry/mpqc/Manifest +++ b/sci-chemistry/mpqc/Manifest @@ -1,8 +1,8 @@ +MD5 a18f7460a40623b7e9d5bdf24acef9dd ChangeLog 2532 MD5 8c623e53daafa025137077c6b65815bd metadata.xml 156 -MD5 afa1fd6068f4634e1e6db2680de30e43 ChangeLog 2399 -MD5 e9d844071c64f7af1c83acc43ca9e81b mpqc-2.2.2.ebuild 1410 -MD5 ab82ce633bb1e392ce7010b70f8121e3 mpqc-2.2.3.ebuild 1351 MD5 fd8c7a881494849d54bcd223ccc4e85f mpqc-2.2.2-r1.ebuild 1431 +MD5 e9d844071c64f7af1c83acc43ca9e81b mpqc-2.2.2.ebuild 1410 +MD5 9e4726b21096a9de72c8f951fb17cc77 mpqc-2.2.3.ebuild 1466 MD5 ef8f7cc3214e84dfd6bec6d38eacb3a6 files/digest-mpqc-2.2.2 129 MD5 ef8f7cc3214e84dfd6bec6d38eacb3a6 files/digest-mpqc-2.2.2-r1 129 MD5 4a8b0c0ea1bc3bafc4302eceff353d0f files/digest-mpqc-2.2.3 131 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" |