diff options
author | Austin English <wizardedit@gentoo.org> | 2016-09-08 16:50:53 -0500 |
---|---|---|
committer | Austin English <wizardedit@gentoo.org> | 2016-09-14 12:26:33 -0500 |
commit | d327d79fbb37be56f92e286ea706a81e46d849d5 (patch) | |
tree | 97ecc8276ee6dc49c70af1c6c90accd2c80a9bae /games-board | |
parent | games-board/camato: remove deprecated games eclass (diff) | |
download | gentoo-d327d79fbb37be56f92e286ea706a81e46d849d5.tar.gz gentoo-d327d79fbb37be56f92e286ea706a81e46d849d5.tar.bz2 gentoo-d327d79fbb37be56f92e286ea706a81e46d849d5.zip |
games-board/capicity: remove deprecated games eclass
Also update to EAPI 6
Gentoo-Bug: https://bugs.gentoo.org/574082
Package-Manager: portage-2.3.0
Diffstat (limited to 'games-board')
-rw-r--r-- | games-board/capicity/capicity-1.0-r1.ebuild | 65 |
1 files changed, 65 insertions, 0 deletions
diff --git a/games-board/capicity/capicity-1.0-r1.ebuild b/games-board/capicity/capicity-1.0-r1.ebuild new file mode 100644 index 000000000000..1b25e490a9e6 --- /dev/null +++ b/games-board/capicity/capicity-1.0-r1.ebuild @@ -0,0 +1,65 @@ +# Copyright 1999-2016 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +EAPI=6 +inherit eutils gnome2-utils qmake-utils + +DESCRIPTION="A monopd compatible boardgame to play 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 + dobin Capid + dodoc doc/* + else + dobin 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 +} + +pkg_preinst() { + use dedicated || gnome2_icon_savelist +} + +pkg_postinst() { + use dedicated || gnome2_icon_cache_update +} + +pkg_postrm() { + use dedicated || gnome2_icon_cache_update +} |