You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
gentoo-overlay/sci-libs/pymmlib/pymmlib-1.2.0-r1.ebuild

48 lines
1.2 KiB

# Copyright 1999-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/sci-libs/pymmlib/pymmlib-1.2.0-r1.ebuild,v 1.2 2015/04/08 18:49:16 mgorny Exp $
EAPI=5
PYTHON_COMPAT=( python2_7 )
inherit distutils-r1 multilib
DESCRIPTION="Toolkit and library 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 ~amd64-linux ~x86-linux"
IUSE="doc"
RDEPEND="
dev-python/numpy[${PYTHON_USEDEP}]
dev-python/pygtkglext[${PYTHON_USEDEP}]
media-libs/freeglut
virtual/glu
virtual/opengl
x11-libs/libXmu"
DEPEND="${RDEPEND}
doc? ( dev-python/epydoc[${PYTHON_USEDEP}] )"
python_prepare_all() {
rm mmLib/NumericCompat.py || die
distutils-r1_python_prepare_all
}
python_compile_all() {
if use doc; then
${EPYTHON} setup.py doc || die
fi
}
python_install_all() {
DOCS=( "${S}"/README.txt )
use doc && HTML_DOCS=( "${S}"/doc/. )
distutils-r1_python_install_all
python_foreach_impl python_doscript "${S}"/applications/* "${S}"/examples/*.py
}