aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'sci-libs/pymmlib/pymmlib-1.0.0.ebuild')
-rw-r--r--sci-libs/pymmlib/pymmlib-1.0.0.ebuild39
1 files changed, 0 insertions, 39 deletions
diff --git a/sci-libs/pymmlib/pymmlib-1.0.0.ebuild b/sci-libs/pymmlib/pymmlib-1.0.0.ebuild
deleted file mode 100644
index d598a56..0000000
--- a/sci-libs/pymmlib/pymmlib-1.0.0.ebuild
+++ /dev/null
@@ -1,39 +0,0 @@
-# Copyright 1999-2007 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/sci-libs/pymmlib/pymmlib-0.9.8.ebuild,v 1.6 2007/07/22 07:01:45 dberkholz Exp $
-
-inherit multilib distutils
-
-DESCRIPTION="Software toolkit and library of routines for the analysis and manipulation of macromolecular structural models"
-HOMEPAGE="http://pymmlib.sourceforge.net/"
-SRC_URI="mirror://sourceforge/pymmlib/${P}.tar.gz"
-LICENSE="Artistic"
-SLOT="0"
-KEYWORDS="~amd64 ppc x86"
-IUSE=""
-RDEPEND="virtual/glut
- dev-python/pygtkglext
- >=dev-python/numpy-0.9.8
- virtual/opengl
- virtual/glu
- x11-libs/libXmu"
-DEPEND="${RDEPEND}"
-
-src_install() {
- python setup.py install --prefix="${D}/usr" || die "install failed"
- dobin ${S}/applications/* ${S}/examples/*
- dodoc ${S}/README.txt
- dohtml -r ${S}/doc
-
- # numpy >= 0.9.8 moved lost of numpy.linalg methods to numpy.linalg.old
-# local b="numpy.linalg"
-# ebegin "Updating for numpy >= 0.9.8"
-# find ${D} -name '*.py' \
-# | xargs sed -i \
-# -e "s:\(${b}.\)\(determinant\):\1old.\2:g" \
-# -e "s:\(${b}.\)\(eigenvalues\):\1old.\2:g" \
-# -e "s:\(${b}.\)\(eigenvectors\):\1old.\2:g" \
-# -e "s:\(${b}.\)\(inverse\):\1old.\2:g" \
-# -e "s:\(import numpy\):\1\nimport numpy.linalg.old:g"
-# eend $?
-}