blob: c83080eae621856c08b96c0675364e3168b5f0fb (
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
|
# Copyright 1999-2004 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.3 2004/06/24 23:23:05 agriffis Exp $
inherit games
DESCRIPTION="Quiet Console Town puts you in the place of the mayor of a budding new console RPG city"
HOMEPAGE="http://sourceforge.net/projects/qct/"
SRC_URI="mirror://sourceforge/qct/${P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="x86 ~ppc"
IUSE=""
RDEPEND=">=dev-lang/python-2.2.1
>=dev-python/pygame-1.5.5"
S="${WORKDIR}/${PN}"
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
}
|