diff options
author | Austin English <wizardedit@gentoo.org> | 2016-08-02 16:04:28 -0500 |
---|---|---|
committer | Austin English <wizardedit@gentoo.org> | 2016-08-02 16:33:14 -0500 |
commit | c381fd611fb42f52876775b7479978e100ac1726 (patch) | |
tree | c000470790089a514c02dc8861102ce30f9a7641 /games-board/pokerth | |
parent | games-board/pychess: remove deprecated games eclass (diff) | |
download | gentoo-c381fd611fb42f52876775b7479978e100ac1726.tar.gz gentoo-c381fd611fb42f52876775b7479978e100ac1726.tar.bz2 gentoo-c381fd611fb42f52876775b7479978e100ac1726.zip |
games-board/pokerth: 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/pokerth')
-rw-r--r-- | games-board/pokerth/pokerth-1.1.1-r2.ebuild | 70 |
1 files changed, 70 insertions, 0 deletions
diff --git a/games-board/pokerth/pokerth-1.1.1-r2.ebuild b/games-board/pokerth/pokerth-1.1.1-r2.ebuild new file mode 100644 index 000000000000..32febcde5511 --- /dev/null +++ b/games-board/pokerth/pokerth-1.1.1-r2.ebuild @@ -0,0 +1,70 @@ +# Copyright 1999-2016 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +EAPI=6 +inherit flag-o-matic eutils qmake-utils + +MY_P="PokerTH-${PV}-src" +DESCRIPTION="Texas Hold'em poker game" +HOMEPAGE="http://www.pokerth.net/" +SRC_URI="mirror://sourceforge/pokerth/${MY_P}.tar.bz2" + +LICENSE="AGPL-3 GPL-1 GPL-2 GPL-3 BitstreamVera public-domain" +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="dedicated" + +RDEPEND="dev-db/sqlite:3 + dev-libs/boost:=[threads(+)] + dev-libs/libgcrypt:0 + dev-libs/protobuf + dev-libs/tinyxml[stl] + dev-qt/qtcore:5 + dev-qt/qtnetwork:5 + >=net-libs/libircclient-1.6-r2 + >=net-misc/curl-7.16 + virtual/gsasl + !dedicated? ( + dev-qt/qtgui:5 + dev-qt/qtwidgets:5 + media-libs/libsdl:0 + media-libs/sdl-mixer[mod,vorbis] + )" +DEPEND="${RDEPEND} + !dedicated? ( dev-qt/qtsql:5 ) + virtual/pkgconfig" + +S=${WORKDIR}/${MY_P} + +PATCHES=( + "${FILESDIR}/${P}-qt5.patch" + "${FILESDIR}/${P}-boost-1.60.patch" +) + +src_prepare() { + default + + if use dedicated ; then + sed -i -e 's/pokerth_game.pro//' pokerth.pro || die + fi + + sed -i -e '/no_dead_strip_inits_and_terms/d' *pro || die +} + +src_configure() { + eqmake5 pokerth.pro +} + +src_install() { + dobin bin/pokerth_server + if ! use dedicated ; then + dobin ${PN} + insinto /usr/share/${PN} + doins -r data + domenu ${PN}.desktop + doicon ${PN}.png + fi + doman docs/pokerth.1 + dodoc ChangeLog TODO docs/{gui_styling,server_setup}_howto.txt +} |