blob: 0c287fe9bcd99b301b5f0ef9eb953a072e49ddd5 (
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
|
# Copyright 1999-2011 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: $
EAPI=3
PYTHON_DEPEND=2
inherit distutils
MY_P=mfe-${PV}
DESCRIPTION="A mednafen frontend / launcher"
HOMEPAGE="http://mednafenfe.sourceforge.net/"
SRC_URI="mirror://sourceforge/${PN}/${MY_P}.tar.gz"
LICENSE="MIT"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE=""
RDEPEND="games-emulation/mednafen
dev-python/configobj
dev-python/pygtk"
S=${WORKDIR}/${MY_P}
pkg_setup() {
python_set_active_version 2
}
pkg_postinst() {
elog "If you would like to have an integrated help viewer, please emerge:"
elog " dev-python/gtkmozembed-python"
}
|