aboutsummaryrefslogtreecommitdiff
blob: 1a22b53342af503b79d15ff0b2cbb31ca5c37bc5 (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
# Copyright 1999-2009 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: $

EAPI=2
NEED_PYTHON=2.4

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"
IUSE="alsa doc examples ffmpeg gtk +openal"

RDEPEND="virtual/opengl
	|| ( dev-python/ctypes >=dev-lang/python-2.5 )
	alsa? ( media-libs/alsa-lib[alisp,midi] )
	ffmpeg? ( media-libs/avbin-bin )
	gtk? ( x11-libs/gtk+:2 )
	openal? ( media-libs/openal )"

src_install() {
	DOCS="NOTICE"
	distutils_src_install
	insinto /usr/share/doc/${PF}
	if use doc; then
		doins -r doc/html || die
	fi
	if use examples; then
		doins -r examples || die
	fi
}