blob: d6302cfce62b4d5d2788369a081e6b91c969363e (
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-2009 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: $
EAPI="1"
inherit distutils
DESCRIPTION="Karaoke player for Linux"
HOMEPAGE="http://www.kibosh.org/pykaraoke/index.php"
SRC_URI="mirror://sourceforge/${PN}/${P}.zip"
LICENSE="LGPL-2"
SLOT="0"
KEYWORDS="~x86"
IUSE=""
DEPEND="app-arch/unzip"
RDEPEND=">=dev-python/pygame-1.6.2
>=dev-python/wxpython-2.6.1.0:2.6
>=dev-python/numeric-23.7
>=media-libs/libsdl-1.2.8-r1"
src_install() {
distutils_src_install
}
|