blob: e62d54da2930bb29ac0848239001bb4e5f1b1f18 (
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
38
39
40
41
42
43
44
|
# Copyright 1999-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-python/Kivy/Kivy-1.8.0.ebuild,v 1.7 2015/04/08 08:05:08 mgorny Exp $
EAPI="5"
PYTHON_COMPAT=( python{2_7,3_3,3_4} )
inherit distutils-r1
DESCRIPTION="A software library for rapid development of hardware-accelerated multitouch applications."
HOMEPAGE="http://kivy.org/"
SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
LICENSE="MIT"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE="cairo camera doc examples garden gstreamer spell"
DEPEND="dev-python/cython
garden? ( dev-python/kivy-garden )
gstreamer? ( dev-python/gst-python:1.0 )
cairo? ( dev-python/pycairo )
spell? ( dev-python/pyenchant )
dev-python/pygame
dev-python/setuptools
camera? ( media-libs/opencv )
virtual/python-imaging
"
RDEPEND="${DEPEND}"
src_prepare() {
sed -e '/data_files=/d' -i "${S}/setup.py"
epatch "${FILESDIR}/cython-fixes.patch"
if has_version '>=dev-python/cython-0.22' ; then
epatch "${FILESDIR}/cython-0.22.patch"
fi
}
src_install() {
distutils-r1_src_install
use doc && dodoc -r doc/sources/*
use examples && insinto "/usr/share/doc/${PF}/" && doins -r examples
}
|