diff options
author | 2004-06-04 02:36:12 +0000 | |
---|---|---|
committer | 2004-06-04 02:36:12 +0000 | |
commit | 44bbefbb22a23b54eaf4fe34c555541a27d57124 (patch) | |
tree | f4c07535c3cb8ab99489745c24158d87e39e232b /app-sci/mpqc | |
parent | bug #52935 .. 2004.1 will always be 3.3 etc etc based (diff) | |
download | gentoo-2-44bbefbb22a23b54eaf4fe34c555541a27d57124.tar.gz gentoo-2-44bbefbb22a23b54eaf4fe34c555541a27d57124.tar.bz2 gentoo-2-44bbefbb22a23b54eaf4fe34c555541a27d57124.zip |
Version bump (#52646). Should now work on ppc.
Diffstat (limited to 'app-sci/mpqc')
-rw-r--r-- | app-sci/mpqc/ChangeLog | 7 | ||||
-rw-r--r-- | app-sci/mpqc/files/digest-mpqc-2.2.2 | 2 | ||||
-rw-r--r-- | app-sci/mpqc/mpqc-2.2.2.ebuild | 42 |
3 files changed, 50 insertions, 1 deletions
diff --git a/app-sci/mpqc/ChangeLog b/app-sci/mpqc/ChangeLog index 9dc01f737fb8..764302a1b732 100644 --- a/app-sci/mpqc/ChangeLog +++ b/app-sci/mpqc/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for app-sci/mpqc # Copyright 2002-2004 Gentoo Technologies, Inc.; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/app-sci/mpqc/ChangeLog,v 1.6 2004/03/30 05:14:17 spyderous Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-sci/mpqc/ChangeLog,v 1.7 2004/06/04 02:36:12 spyderous Exp $ + +*mpqc-2.2.2 (03 Jun 2004) + + 03 Jun 2004; Donnie Berkholz <spyderous@gentoo.org>; +mpqc-2.2.2.ebuild: + Version bump (#52646). Should now work on ppc. 30 Mar 2004; Donnie Berkholz <spyderous@gentoo.org>; mpqc-2.1.2.ebuild, mpqc-2.2.0.ebuild: diff --git a/app-sci/mpqc/files/digest-mpqc-2.2.2 b/app-sci/mpqc/files/digest-mpqc-2.2.2 new file mode 100644 index 000000000000..86aa62626884 --- /dev/null +++ b/app-sci/mpqc/files/digest-mpqc-2.2.2 @@ -0,0 +1,2 @@ +MD5 7f5d2e6340aa9eba76a6e37cebc5fb9d mpqc-2.2.2.tar.gz 2061755 +MD5 2602c914c9181e92c77153ce21e13116 mpqc-man-2.2.2.tar.gz 166450 diff --git a/app-sci/mpqc/mpqc-2.2.2.ebuild b/app-sci/mpqc/mpqc-2.2.2.ebuild new file mode 100644 index 000000000000..13841b0801d4 --- /dev/null +++ b/app-sci/mpqc/mpqc-2.2.2.ebuild @@ -0,0 +1,42 @@ +# Copyright 1999-2004 Gentoo Technologies, Inc. +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/app-sci/mpqc/mpqc-2.2.2.ebuild,v 1.1 2004/06/04 02:36:12 spyderous Exp $ + +DESCRIPTION="The Massively Parallel Quantum Chemistry Program" +HOMEPAGE="http://www.mpqc.org/" +SRC_URI="mirror://sourceforge/mpqc/${P}.tar.gz + doc? ( mirror://sourceforge/mpqc/${PN}-man-${PV}.tar.gz )" + +LICENSE="GPL-2" +SLOT="0" +# Should work on x86, amd64 and ppc, at least +KEYWORDS="~x86" +IUSE="doc X" + +DEPEND="sys-devel/flex + app-sci/blas + app-sci/lapack + dev-lang/perl + X? ( virtual/x11 )" + +src_compile() { + CFLAGS_SAVE=${CFLAGS}; CXXFLAGS_SAVE=${CXXFLAGS} + myconf="${myconf} --prefix=/usr" + use X && myconf="${myconf} --x-includes=/usr/X11R6/include \ + --x-libraries=/usr/X11R6/lib" + ./configure ${myconf} + sed -e "s:^CFLAGS =.*$:CFLAGS=${CFLAGS_SAVE}:" \ + -e "s:^FFLAGS =.*$:FFLAGS=${CFLAGS_SAVE}:" \ + -e "s:^CXXFLAGS =.*$:CXXFLAGS=${CXXFLAGS_SAVE}:" \ + lib/LocalMakefile > lib/LocalMakefile.foo + mv lib/LocalMakefile.foo lib/LocalMakefile + emake +} + +src_install() { + sed -e "s:^prefix=.*$:prefix=${D}/usr:" lib/LocalMakefile \ + > lib/LocalMakefile.foo + mv lib/LocalMakefile.foo lib/LocalMakefile + use doc && doman ${WORKDIR}/${PN}-man-${PV}/man3/* + make install install_devel install_inc +} |