35 lines
1 KiB
Bash
35 lines
1 KiB
Bash
# Copyright 1999-2013 Gentoo Foundation
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
# $Header: /var/cvsroot/gentoo-x86/dev-python/logilab-constraint/logilab-constraint-0.5.0-r1.ebuild,v 1.2 2013/09/05 18:46:10 mgorny Exp $
|
|
|
|
EAPI=5
|
|
PYTHON_COMPAT=( python{2_6,2_7} )
|
|
|
|
inherit distutils-r1
|
|
|
|
DESCRIPTION="A finite domain constraints solver written in 100% pure Python"
|
|
HOMEPAGE="http://www.logilab.org/project/logilab-constraint"
|
|
SRC_URI="ftp://ftp.logilab.org/pub/constraint/${P}.tar.gz"
|
|
|
|
LICENSE="LGPL-2.1"
|
|
SLOT="0"
|
|
KEYWORDS="~amd64 ~sparc ~x86"
|
|
IUSE="doc examples"
|
|
|
|
DEPEND="dev-python/setuptools[${PYTHON_USEDEP}]"
|
|
RDEPEND="dev-python/logilab-common[${PYTHON_USEDEP}]"
|
|
|
|
DOCS=( doc/CONTRIBUTORS )
|
|
|
|
python_install() {
|
|
# Avoid collisions with dev-python/logilab-common.
|
|
rm -f "${D}$(python_get_sitedir)/logilab/__init__.py" || die
|
|
distutils-r1_python_install
|
|
}
|
|
|
|
python_install_all() {
|
|
use doc && dohtml doc/documentation.html
|
|
use examples && local EXAMPLES=( examples/. )
|
|
|
|
distutils-r1_python_install_all
|
|
}
|