blob: ddcc1da6561fb873b4eab838ac8c6b21177bbe37 (
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
|
# Copyright 1999-2016 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
EAPI=5
PYTHON_COMPAT=( python2_7 python3_4 )
inherit distutils-r1 virtualx
DESCRIPTION="Cross-platform windowing and multimedia library for Python"
HOMEPAGE="http://www.pyglet.org/"
SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
LICENSE="BSD"
SLOT="0"
KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux"
IUSE="alsa examples gtk +openal"
RDEPEND="
virtual/opengl
alsa? ( media-libs/alsa-lib[alisp] )
gtk? ( x11-libs/gtk+:2 )
openal? ( media-libs/openal )"
DEPEND="${RDEPEND}"
# ffmpeg? ( media-libs/avbin-bin )
# pyglet.gl.glx_info.GLXInfoException: pyglet requires an X server with GLX
RESTRICT=test
python_test() {
python_is_python3 && return
VIRTUALX_COMMAND="${PYTHON}"
virtualmake tests/test.py
}
python_install_all() {
DOCS=( NOTICE )
use examples && EXAMPLES=( examples )
distutils-r1_python_install_all
}
|