blob: d1b1f9bdd539adbe15a7f2aeb27671f3cdfaabb7 (
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-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-python/pyglet/pyglet-1.1.4.ebuild,v 1.6 2012/04/11 00:03:31 floppym Exp $
EAPI=2
SUPPORT_PYTHON_ABIS="1"
RESTRICT_PYTHON_ABIS="3.* 2.7-pypy-*"
inherit distutils
DESCRIPTION="Cross-platform windowing and multimedia library for Python"
HOMEPAGE="http://www.pyglet.org/"
SRC_URI="http://pyglet.googlecode.com/files/${P}.tar.gz"
LICENSE="BSD"
SLOT="0"
KEYWORDS="amd64 x86 ~amd64-linux ~x86-linux"
IUSE="alsa doc 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 )
DOCS="NOTICE"
src_install() {
distutils_src_install
insinto /usr/share/${P}
if use doc; then
dohtml -r doc/html || die
fi
if use examples; then
doins -r examples || die
fi
}
|