diff options
Diffstat (limited to 'dev-python/pyelemental/pyelemental-1.2.0-r1.ebuild')
-rw-r--r-- | dev-python/pyelemental/pyelemental-1.2.0-r1.ebuild | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/dev-python/pyelemental/pyelemental-1.2.0-r1.ebuild b/dev-python/pyelemental/pyelemental-1.2.0-r1.ebuild new file mode 100644 index 00000000000..a815361614a --- /dev/null +++ b/dev-python/pyelemental/pyelemental-1.2.0-r1.ebuild @@ -0,0 +1,28 @@ +# Copyright 1999-2015 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +EAPI=5 +PYTHON_COMPAT=( python2_7 ) + +inherit distutils-r1 + +DESCRIPTION="Python bindings for libelemental (sci-chemistry/gelemental)" +HOMEPAGE="http://freecode.com/projects/gelemental/" +SRC_URI="http://www.kdau.com/files/${P}.tar.bz2" + +LICENSE="GPL-3" +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="doc" + +RDEPEND=">=sci-chemistry/gelemental-1.2.0" +DEPEND="${RDEPEND} + virtual/pkgconfig" + +PATCHES=( "${FILESDIR}"/${P}-gcc-4.7.patch ) + +python_install_all() { + use doc && local HTML_DOCS=( docs/html/. ) + distutils-r1_python_install_all +} |