diff options
Diffstat (limited to 'dev-python/pyglet/pyglet-1.1.4-r2.ebuild')
-rw-r--r-- | dev-python/pyglet/pyglet-1.1.4-r2.ebuild | 34 |
1 files changed, 34 insertions, 0 deletions
diff --git a/dev-python/pyglet/pyglet-1.1.4-r2.ebuild b/dev-python/pyglet/pyglet-1.1.4-r2.ebuild new file mode 100644 index 000000000000..131ecd341480 --- /dev/null +++ b/dev-python/pyglet/pyglet-1.1.4-r2.ebuild @@ -0,0 +1,34 @@ +# Copyright 1999-2015 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +EAPI=5 + +PYTHON_COMPAT=( python2_7 ) + +inherit distutils-r1 + +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" + +python_install_all() { + use doc && HTML_DOCS=( doc/html/. ) + use examples && EXAMPLES=( examples ) + distutils-r1_python_install_all +} |