summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Sterrett <mr_bones_@gentoo.org>2016-01-28 00:45:38 -0500
committerMichael Sterrett <mr_bones_@gentoo.org>2016-01-28 00:50:04 -0500
commit6522475f9fd95622eaafe9f24a8f4273a0d2dd1e (patch)
tree5fb0d9fdf5f8da46f801fed1b1d7ca4eb2b627e9 /games-simulation
parentdev-libs/zziplib: add REQUIRED_USE (bug #572940) (diff)
downloadgentoo-6522475f9fd95622eaafe9f24a8f4273a0d2dd1e.tar.gz
gentoo-6522475f9fd95622eaafe9f24a8f4273a0d2dd1e.tar.bz2
gentoo-6522475f9fd95622eaafe9f24a8f4273a0d2dd1e.zip
games-simulation/qct: games-simulation/qct is gone
Diffstat (limited to 'games-simulation')
-rw-r--r--games-simulation/qct/Manifest1
-rw-r--r--games-simulation/qct/files/qct-0.7-constant.patch21
-rw-r--r--games-simulation/qct/metadata.xml8
-rw-r--r--games-simulation/qct/qct-0.7-r1.ebuild49
4 files changed, 0 insertions, 79 deletions
diff --git a/games-simulation/qct/Manifest b/games-simulation/qct/Manifest
deleted file mode 100644
index a16b1be45d10..000000000000
--- a/games-simulation/qct/Manifest
+++ /dev/null
@@ -1 +0,0 @@
-DIST qct-0.7.tar.gz 98126 SHA256 d24d72c594e0af188876622aa2f9ce46e5e288bb66826aedb3ee3244fe8dd87b SHA512 89784607be3420f62ee1c94610f0df1e2ef57e237aa24ca2bf6583c17470ded91e8b5eff4171d93471a35c99951a98721eba2e9facb0757461c4343fbffe8bac WHIRLPOOL 21f27e3590edecbcdeb40a3dcc0c72a2cfc7413d0f27f508387590429b3920344f5fc581b6cecc671fa4e4382ff231cf4e13a29da754a986685216d782d07faa
diff --git a/games-simulation/qct/files/qct-0.7-constant.patch b/games-simulation/qct/files/qct-0.7-constant.patch
deleted file mode 100644
index 43a01ea1a4a9..000000000000
--- a/games-simulation/qct/files/qct-0.7-constant.patch
+++ /dev/null
@@ -1,21 +0,0 @@
-Fix traceback from using wrong name.
-
-Patch by Peter `MathFox' Roozemaal.
-
-http://bugs.gentoo.org/97762
-http://sourceforge.net/tracker/index.php?func=detail&aid=801329&group_id=74836&atid=542163
-
---- qct/specializations.py
-+++ qct/specializations.py
-@@ -131,9 +131,9 @@
- mods = self.getModsFor('incomeMod', employer)
- if resident:
- if resident.job == trainer:
-- return prospect.level * INCOMEMULT * mods
-+ return prospect.level * constants.INCOMEMULT * mods
- else:
-- return prospect.level * INCOMEMULT / 2 * mods
-+ return prospect.level * constants.INCOMEMULT / 2 * mods
- else:
- return 0
-
diff --git a/games-simulation/qct/metadata.xml b/games-simulation/qct/metadata.xml
deleted file mode 100644
index 78274e0fa550..000000000000
--- a/games-simulation/qct/metadata.xml
+++ /dev/null
@@ -1,8 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
-<pkgmetadata>
-<maintainer type="project">
- <email>games@gentoo.org</email>
- <name>Gentoo Games Project</name>
-</maintainer>
-</pkgmetadata>
diff --git a/games-simulation/qct/qct-0.7-r1.ebuild b/games-simulation/qct/qct-0.7-r1.ebuild
deleted file mode 100644
index 0875470b67bd..000000000000
--- a/games-simulation/qct/qct-0.7-r1.ebuild
+++ /dev/null
@@ -1,49 +0,0 @@
-# Copyright 1999-2015 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-EAPI=5
-PYTHON_COMPAT=( python2_7 )
-inherit eutils python-single-r1 games
-
-DESCRIPTION="Quiet Console Town puts you in the place of the mayor of a budding new console RPG city"
-HOMEPAGE="https://packages.gentoo.org/package/games-simulation/qct"
-SRC_URI="http://www.sourcefiles.org/Games/Role_Play/${P}.tar.gz"
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="amd64 ppc x86"
-IUSE=""
-
-DEPEND=">=dev-python/pygame-1.5.5[${PYTHON_USEDEP}]"
-RDEPEND=${RDEPEND}
-REQUIRED_USE=${PYTHON_REQUIRED_USE}
-
-S=${WORKDIR}/${PN}
-
-src_prepare() {
- epatch "${FILESDIR}"/${P}-constant.patch
- python_fix_shebang .
-}
-
-src_install() {
- # Ug. Someone fix this to install in $(games_get_libdir)/${PN} instead
- local destdir="${GAMES_DATADIR}/${PN}"
- insinto "${destdir}"
- exeinto "${destdir}"
-
- dodoc README
- doins *.py *.png
- doexe qct.py
-
- python_optimize "${D}${GAMES_DATADIR}/${PN}"
-
- games_make_wrapper qct "./qct.py" "${destdir}"
-
- prepgamesdirs
-}
-
-pkg_setup() {
- python-single-r1_pkg_setup
- games_pkg_setup
-}