diff options
Diffstat (limited to 'dev-python/pyglet/pyglet-1.1.4-r1.ebuild')
-rw-r--r-- | dev-python/pyglet/pyglet-1.1.4-r1.ebuild | 40 |
1 files changed, 40 insertions, 0 deletions
diff --git a/dev-python/pyglet/pyglet-1.1.4-r1.ebuild b/dev-python/pyglet/pyglet-1.1.4-r1.ebuild new file mode 100644 index 000000000000..4c4dde35ce40 --- /dev/null +++ b/dev-python/pyglet/pyglet-1.1.4-r1.ebuild @@ -0,0 +1,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-r1.ebuild,v 1.1 2012/04/10 23:58:20 floppym Exp $ + +EAPI=4 + +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="${REDEPEND}" +# ffmpeg? ( media-libs/avbin-bin ) + +DOCS="NOTICE" + +src_install() { + distutils_src_install + if use doc; then + dohtml -r doc/html/* + fi + if use examples; then + dodoc -r examples + docompress -x /usr/share/doc/${PF}/examples + fi +} |