diff options
Diffstat (limited to 'app-sci/gromacs/gromacs-3.1.3.ebuild')
-rw-r--r-- | app-sci/gromacs/gromacs-3.1.3.ebuild | 40 |
1 files changed, 0 insertions, 40 deletions
diff --git a/app-sci/gromacs/gromacs-3.1.3.ebuild b/app-sci/gromacs/gromacs-3.1.3.ebuild deleted file mode 100644 index b4d06080d0ce..000000000000 --- a/app-sci/gromacs/gromacs-3.1.3.ebuild +++ /dev/null @@ -1,40 +0,0 @@ -# Copyright 1999-2003 Gentoo Technologies, Inc. -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/app-sci/gromacs/gromacs-3.1.3.ebuild,v 1.9 2003/09/06 22:23:05 msterret Exp $ - -DESCRIPTION="The ultimate Molecular Dynamics simulation package" - -SRC_URI="ftp://ftp.gromacs.org/pub/gromacs/${P}.tar.gz" - -HOMEPAGE="http://www.gromacs.org/" - -LICENSE="GPL-2" -SLOT="0" -KEYWORDS="x86" - -DEPEND=">=dev-libs/fftw-2.1.3 - >=sys-devel/binutils-2.10.91.0.2" - - -src_compile() { - ./configure \ - --host=${CHOST} \ - --prefix=/usr/gromacs \ - --includedir=/usr/include/gromacs \ - --infodir=/usr/share/info \ - --enable-fortran \ - --mandir=/usr/share/man || die "./configure failed" - emake || die -} - -src_install () { - make DESTDIR=${D} install || die - - # Install documentation. - dodoc AUTHORS COPYING INSTALL README - - #move html docs under /usr/share/doc - #and leave examples and templates under /usr/gromacs... - mv ${D}/usr/gromacs/share/html ${D}/usr/share/doc/${P} - -} |