blob: c8f6644f6a76d93199834f97a0c70eea232ec6a9 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
|
# Copyright 1999-2013 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-python/traitsbackendwx/traitsbackendwx-3.6.0-r1.ebuild,v 1.1 2013/04/14 07:21:08 idella4 Exp $
EAPI=5
PYTHON_COMPAT=python2_7
inherit distutils-r1
MY_PN="TraitsBackendWX"
MY_P="${MY_PN}-${PV}"
DESCRIPTION="WxPython backend for Traits and TraitsGUI (Pyface)"
HOMEPAGE="http://code.enthought.com/projects/traits_gui/"
SRC_URI="http://www.enthought.com/repo/ETS/${MY_P}.tar.gz"
LICENSE="BSD"
SLOT="0"
KEYWORDS="~amd64 ~ppc ~ppc64 ~x86 ~amd64-linux ~x86-linux"
IUSE="test"
DEPEND="dev-python/setuptools[${PYTHON_USEDEP}]
dev-python/wxpython:2.8[${PYTHON_USEDEP}]
test? ( dev-python/traitsui[${PYTHON_USEDEP}] )"
RDEPEND="dev-python/wxpython:2.8[${PYTHON_USEDEP}]"
S="${WORKDIR}/${MY_P}"
python_test() {
export ETS_TOOLKIT=wx
nosetests || die
}
python_install_all() {
find -name "*LICENSE.txt" -delete
distutils-r1_python_install_all
}
|