summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDavid Seifert <soap@gentoo.org>2017-12-20 22:30:13 +0100
committerDavid Seifert <soap@gentoo.org>2017-12-21 02:35:12 +0100
commit8e7d09c134bace6d3ebbf253f3f87812072a739c (patch)
tree8c56882ce8f70c1150279ceb07135d0ee670235f /games-board
parentgames-board/camato: Remove old (diff)
downloadgentoo-8e7d09c134bace6d3ebbf253f3f87812072a739c.tar.gz
gentoo-8e7d09c134bace6d3ebbf253f3f87812072a739c.tar.bz2
gentoo-8e7d09c134bace6d3ebbf253f3f87812072a739c.zip
games-board/capicity: Remove old
Package-Manager: Portage-2.3.16, Repoman-2.3.6
Diffstat (limited to 'games-board')
-rw-r--r--games-board/capicity/capicity-1.0.ebuild67
1 files changed, 0 insertions, 67 deletions
diff --git a/games-board/capicity/capicity-1.0.ebuild b/games-board/capicity/capicity-1.0.ebuild
deleted file mode 100644
index 6ce5f5881816..000000000000
--- a/games-board/capicity/capicity-1.0.ebuild
+++ /dev/null
@@ -1,67 +0,0 @@
-# Copyright 1999-2014 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=5
-inherit eutils gnome2-utils qmake-utils games
-
-DESCRIPTION="Monopd compatible boardgame for Monopoly-like games, previously named capitalism"
-HOMEPAGE="http://linux-ecke.de/CapiCity/"
-SRC_URI="dedicated? ( mirror://sourceforge/project/capitalism/Capi%20City/${PV}/Capid_${PV}.tar.gz )
- !dedicated? ( mirror://sourceforge/project/capitalism/Capi%20City/${PV}/CapiCity_${PV}.tar.gz )"
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-IUSE="dedicated"
-
-RDEPEND="
- dev-qt/qtcore:4
- dev-qt/qtscript:4
- !dedicated? ( dev-qt/qtgui:4 )"
-DEPEND="${RDEPEND}"
-
-src_unpack() {
- default
- S=${WORKDIR}/$(usex dedicated Capid CapiCity)_${PV}
-}
-
-src_configure() {
- if use dedicated ; then
- eqmake4 Capid.pro
- else
- eqmake4 CapiCity.pro
- fi
-}
-
-src_install() {
- local res
-
- if use dedicated ; then
- dogamesbin Capid
- dodoc doc/*
- else
- dogamesbin CapiCity
- dodoc changelog README
-
- for res in 16 22 24 32 48 64; do
- newicon -s ${res} icons/${res}x${res}.png ${PN}.png
- done
-
- make_desktop_entry CapiCity "Capi City"
- fi
- prepgamesdirs
-}
-
-pkg_preinst() {
- games_pkg_preinst
- use dedicated || gnome2_icon_savelist
-}
-
-pkg_postinst() {
- games_pkg_postinst
- use dedicated || gnome2_icon_cache_update
-}
-
-pkg_postrm() {
- use dedicated || gnome2_icon_cache_update
-}