diff options
author | Olivier Fisette <ribosome@gentoo.org> | 2005-06-25 21:57:19 +0000 |
---|---|---|
committer | Olivier Fisette <ribosome@gentoo.org> | 2005-06-25 21:57:19 +0000 |
commit | c876abe04a3808923037c2f3e1e8821f2abe09de (patch) | |
tree | 48eb7597464f6fe49253646ec2a2ef568cc70767 /sci-chemistry/mpqc | |
parent | adding ~s390 (diff) | |
download | gentoo-2-c876abe04a3808923037c2f3e1e8821f2abe09de.tar.gz gentoo-2-c876abe04a3808923037c2f3e1e8821f2abe09de.tar.bz2 gentoo-2-c876abe04a3808923037c2f3e1e8821f2abe09de.zip |
Removed obsolete version
(Portage version: 2.0.51.19)
Diffstat (limited to 'sci-chemistry/mpqc')
-rw-r--r-- | sci-chemistry/mpqc/files/digest-mpqc-2.2.2-r1 | 2 | ||||
-rw-r--r-- | sci-chemistry/mpqc/mpqc-2.2.2-r1.ebuild | 44 |
2 files changed, 0 insertions, 46 deletions
diff --git a/sci-chemistry/mpqc/files/digest-mpqc-2.2.2-r1 b/sci-chemistry/mpqc/files/digest-mpqc-2.2.2-r1 deleted file mode 100644 index 86aa62626884..000000000000 --- a/sci-chemistry/mpqc/files/digest-mpqc-2.2.2-r1 +++ /dev/null @@ -1,2 +0,0 @@ -MD5 7f5d2e6340aa9eba76a6e37cebc5fb9d mpqc-2.2.2.tar.gz 2061755 -MD5 2602c914c9181e92c77153ce21e13116 mpqc-man-2.2.2.tar.gz 166450 diff --git a/sci-chemistry/mpqc/mpqc-2.2.2-r1.ebuild b/sci-chemistry/mpqc/mpqc-2.2.2-r1.ebuild deleted file mode 100644 index 80f9d888c2ca..000000000000 --- a/sci-chemistry/mpqc/mpqc-2.2.2-r1.ebuild +++ /dev/null @@ -1,44 +0,0 @@ -# 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.2-r1.ebuild,v 1.2 2005/05/24 22:01:20 spyderous Exp $ - -inherit fortran - -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 ~ppc ~amd64" -IUSE="doc X" - -DEPEND="sys-devel/flex - virtual/blas - virtual/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} || die "configure failed" - 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 || die "emake failed" -} - -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 || die "install failed" -} |