blob: 73dd6549631e9372a0c42cf411d19e6a8d7b796d (
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
|
# Copyright 1999-2010 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: $
EAPI=3
PYTHON_DEPEND="2:2.6"
inherit distutils eutils
DESCRIPTION="Python powered karaoke."
HOMEPAGE="http://kibosh.org/pykaraoke/index.php"
SRC_URI="http://prdownloads.sourceforge.net/${PN}/${P}.zip"
LICENSE="LGPL-3"
SLOT="0"
KEYWORDS="amd64"
IUSE="+mutagen"
DEPEND="virtual/python
dev-python/pygame
>=dev-python/wxpython-2.6
media-libs/libsdl"
RDEPEND="${DEPEND}
mutagen? ( media-libs/mutagen )"
|