diff options
author | 2005-07-02 21:16:20 +0000 | |
---|---|---|
committer | 2005-07-02 21:16:20 +0000 | |
commit | ffba9639111e96ad858a03091a8ee2cdd9e926b2 (patch) | |
tree | 82f0e4f8b9982ffbc50d2b0a536a9c634b1f4950 /games-simulation/qct/qct-0.7.ebuild | |
parent | Removing obsolete ebuild (diff) | |
download | historical-ffba9639111e96ad858a03091a8ee2cdd9e926b2.tar.gz historical-ffba9639111e96ad858a03091a8ee2cdd9e926b2.tar.bz2 historical-ffba9639111e96ad858a03091a8ee2cdd9e926b2.zip |
Fix a traceback from using wrong var name #97762 by Peter Roozemaal.
Package-Manager: portage-2.0.51.22-r1
Diffstat (limited to 'games-simulation/qct/qct-0.7.ebuild')
-rw-r--r-- | games-simulation/qct/qct-0.7.ebuild | 16 |
1 files changed, 11 insertions, 5 deletions
diff --git a/games-simulation/qct/qct-0.7.ebuild b/games-simulation/qct/qct-0.7.ebuild index cd704e1c70f7..ae62e359b55b 100644 --- a/games-simulation/qct/qct-0.7.ebuild +++ b/games-simulation/qct/qct-0.7.ebuild @@ -1,8 +1,8 @@ -# Copyright 1999-2004 Gentoo Foundation +# Copyright 1999-2005 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.5 2004/12/16 15:58:49 josejx Exp $ +# $Header: /var/cvsroot/gentoo-x86/games-simulation/qct/qct-0.7.ebuild,v 1.6 2005/07/02 21:16:20 vapier Exp $ -inherit games +inherit games eutils 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/" @@ -10,13 +10,19 @@ SRC_URI="mirror://sourceforge/qct/${P}.tar.gz" LICENSE="GPL-2" SLOT="0" -KEYWORDS="x86 ppc ~amd64" +KEYWORDS="amd64 ppc x86" IUSE="" RDEPEND=">=dev-lang/python-2.2.1 >=dev-python/pygame-1.5.5" -S="${WORKDIR}/${PN}" +S=${WORKDIR}/${PN} + +src_unpack() { + unpack ${A} + cd "${S}" + epatch "${FILESDIR}"/${P}-constant.patch +} src_install() { local destdir="${GAMES_DATADIR}/${PN}" |