diff options
Diffstat (limited to 'dev-python/lp_solve/lp_solve-5.5.2.0-r1.ebuild')
-rw-r--r-- | dev-python/lp_solve/lp_solve-5.5.2.0-r1.ebuild | 48 |
1 files changed, 48 insertions, 0 deletions
diff --git a/dev-python/lp_solve/lp_solve-5.5.2.0-r1.ebuild b/dev-python/lp_solve/lp_solve-5.5.2.0-r1.ebuild new file mode 100644 index 00000000000..4941a9c6d42 --- /dev/null +++ b/dev-python/lp_solve/lp_solve-5.5.2.0-r1.ebuild @@ -0,0 +1,48 @@ +# 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 eutils + +DESCRIPTION="Python wrappers for lpsolve linear programming library" +HOMEPAGE="http://lpsolve.sourceforge.net/5.5/Python.htm" +SRC_URI="mirror://sourceforge/lpsolve/${PN}_${PV}_Python_source.tar.gz" + +LICENSE="LGPL-2.1" +SLOT="0" +KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux" +IUSE="doc examples" + +RDEPEND=" + dev-python/numpy[${PYTHON_USEDEP}] + sci-mathematics/lpsolve" +DEPEND="${RDEPEND} + dev-python/setuptools[${PYTHON_USEDEP}]" + +S="${WORKDIR}/${PN}_5.5/extra/Python/" + +PATCHES=( "${FILESDIR}"/${P}-setup.patch ) + +python_prepare_all() { + if use examples; then + mkdir examples || die + mv ex*py examples || die + fi + distutils-r1_python_prepare_all +} + +python_test() { + "${PYTHON}" lpdemo.py || die +} + +python_install_all() { + dodoc changes + use doc && dohtml Python.htm + use examples && local EXAMPLES=( examples/. ) + + distutils-r1_python_install_all +} |