36 lines
910 B
Bash
36 lines
910 B
Bash
# Copyright 1999-2011 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.ebuild,v 1.6 2011/04/01 16:31:27 xarthisius Exp $
|
|
|
|
EAPI="3"
|
|
PYTHON_DEPEND="2"
|
|
SUPPORT_PYTHON_ABIS="1"
|
|
RESTRICT_PYTHON_ABIS="3.* *-jython"
|
|
|
|
inherit distutils
|
|
|
|
MY_PN="TraitsBackendWX"
|
|
MY_P="${MY_PN}-${PV}"
|
|
|
|
DESCRIPTION="WxPython backend for Traits and TraitsGUI (Pyface)"
|
|
HOMEPAGE="http://code.enthought.com/projects/traits_gui/ http://pypi.python.org/pypi/TraitsBackendWX"
|
|
SRC_URI="http://www.enthought.com/repo/ETS/${MY_P}.tar.gz"
|
|
|
|
LICENSE="BSD"
|
|
SLOT="0"
|
|
KEYWORDS="amd64 ppc ~ppc64 x86"
|
|
IUSE=""
|
|
|
|
DEPEND="dev-python/setuptools
|
|
dev-python/wxpython:2.8"
|
|
RDEPEND="${DEPEND}"
|
|
|
|
S="${WORKDIR}/${MY_P}"
|
|
|
|
DOCS="docs/*.txt"
|
|
PYTHON_MODNAME="enthought"
|
|
|
|
src_install() {
|
|
find -name "*LICENSE.txt" -delete
|
|
distutils_src_install
|
|
}
|