diff options
author | Justin Lecher <jlec@gentoo.org> | 2014-02-21 11:09:29 +0000 |
---|---|---|
committer | Justin Lecher <jlec@gentoo.org> | 2014-02-21 11:09:29 +0000 |
commit | bd22d8475662b69f53d0a5521af6bda049286310 (patch) | |
tree | 09185406a64b5f1e513a8c1965451e33bba16fb5 /sci-libs/pymmlib | |
parent | dev-python/numexpr: Version Bump (diff) | |
download | gentoo-2-bd22d8475662b69f53d0a5521af6bda049286310.tar.gz gentoo-2-bd22d8475662b69f53d0a5521af6bda049286310.tar.bz2 gentoo-2-bd22d8475662b69f53d0a5521af6bda049286310.zip |
sci-libs/pymmlib: Version Bump
(Portage version: 2.2.8-r1/cvs/Linux x86_64, signed Manifest commit with key B9D4F231BD1558AB!)
Diffstat (limited to 'sci-libs/pymmlib')
-rw-r--r-- | sci-libs/pymmlib/ChangeLog | 9 | ||||
-rw-r--r-- | sci-libs/pymmlib/pymmlib-1.2.1.ebuild | 45 |
2 files changed, 52 insertions, 2 deletions
diff --git a/sci-libs/pymmlib/ChangeLog b/sci-libs/pymmlib/ChangeLog index 196922aa2fd8..a732afbbb6e4 100644 --- a/sci-libs/pymmlib/ChangeLog +++ b/sci-libs/pymmlib/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for sci-libs/pymmlib -# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/sci-libs/pymmlib/ChangeLog,v 1.26 2013/12/02 11:03:55 jlec Exp $ +# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/sci-libs/pymmlib/ChangeLog,v 1.27 2014/02/21 11:09:29 jlec Exp $ + +*pymmlib-1.2.1 (21 Feb 2014) + + 21 Feb 2014; Justin Lecher <jlec@gentoo.org> +pymmlib-1.2.1.ebuild: + Version Bump *pymmlib-1.2.0-r1 (02 Dec 2013) diff --git a/sci-libs/pymmlib/pymmlib-1.2.1.ebuild b/sci-libs/pymmlib/pymmlib-1.2.1.ebuild new file mode 100644 index 000000000000..2dcbc5d32c81 --- /dev/null +++ b/sci-libs/pymmlib/pymmlib-1.2.1.ebuild @@ -0,0 +1,45 @@ +# Copyright 1999-2014 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/sci-libs/pymmlib/pymmlib-1.2.1.ebuild,v 1.1 2014/02/21 11:09:29 jlec Exp $ + +EAPI=5 + +PYTHON_COMPAT=( python{2_6,2_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://github/masci/mmLib/${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() { + use doc && esetup.py doc +} + +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 +} |