blob: b6a85f3f7abeb230a3f5f78894c646bc4a1c2f53 (
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
35
36
37
38
39
40
41
42
43
44
45
|
# Copyright 1999-2010 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/games-simulation/qct/qct-0.7.ebuild,v 1.9 2010/04/08 08:48:11 tupone Exp $
EAPI=2
PYTHON_DEPEND="2"
inherit eutils python games
DESCRIPTION="Quiet Console Town puts you in the place of the mayor of a budding new console RPG city"
HOMEPAGE="http://llynmir.net/qct"
SRC_URI="http://www.sourcefiles.org/Games/Role_Play/${P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="amd64 ppc x86"
IUSE=""
RDEPEND=">=dev-python/pygame-1.5.5"
DEPEND="${RDEPEND}"
S=${WORKDIR}/${PN}
src_prepare() {
epatch "${FILESDIR}"/${P}-constant.patch
python_convert_shebangs -r 2 .
}
src_install() {
local destdir="${GAMES_DATADIR}/${PN}"
insinto "${destdir}"
exeinto "${destdir}"
dodoc README
doins *.py *.png
doexe qct.py
games_make_wrapper qct "./qct.py" "${destdir}"
prepgamesdirs
}
pkg_setup() {
python_set_active_version 2
games_pkg_setup
}
|