59 lines
1.5 KiB
Bash
59 lines
1.5 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/enaml/enaml-0.6.8.ebuild,v 1.2 2013/05/10 04:34:39 patrick Exp $
|
|
|
|
EAPI=4
|
|
|
|
# someone needs to figure out how to tape virtualx eclass on to the tests ...
|
|
RESTRICT="test"
|
|
|
|
SUPPORT_PYTHON_ABIS="1"
|
|
RESTRICT_PYTHON_ABIS="3* *-jython 2.7-pypy-*"
|
|
DISTUTILS_SRC_TEST="nosetests"
|
|
|
|
inherit distutils eutils
|
|
|
|
DESCRIPTION="Enthought Tool Suite: framework for writing declarative interfaces"
|
|
HOMEPAGE="http://code.enthought.com/projects/enaml/ http://pypi.python.org/pypi/enaml"
|
|
SRC_URI="http://www.enthought.com/repo/ets/${P}.tar.gz"
|
|
|
|
LICENSE="BSD"
|
|
SLOT="0"
|
|
KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux"
|
|
IUSE="doc examples test"
|
|
|
|
RDEPEND="
|
|
dev-python/casuarius
|
|
dev-python/ply
|
|
dev-python/traits
|
|
|| ( dev-python/wxpython dev-python/PyQt4 dev-python/pyside )"
|
|
|
|
DEPEND="${RDEPEND}
|
|
dev-python/setuptools
|
|
doc? ( dev-python/sphinx )
|
|
test? ( dev-python/python-dateutil
|
|
dev-python/wxpython
|
|
|| ( dev-python/PyQt4 dev-python/pyside ) )"
|
|
|
|
src_prepare() {
|
|
# crash doc and gone upstream (> 0.2.0)
|
|
sed -i -e '/enthought.debug.api/d' enamldoc/sphinx_ext.py || die
|
|
}
|
|
|
|
src_compile() {
|
|
distutils_src_compile
|
|
use doc && PYTHONPATH="$(ls -1d ${S}/build*/lib* | head -n1)" \
|
|
emake -C docs html
|
|
}
|
|
|
|
src_install() {
|
|
find -name "*LICENSE*.txt" -delete
|
|
distutils_src_install
|
|
|
|
use doc && dohtml -r docs/build/html/*
|
|
|
|
if use examples; then
|
|
insinto /usr/share/doc/${PF}
|
|
doins -r examples
|
|
fi
|
|
}
|