diff options
author | 2013-01-22 06:26:09 +0000 | |
---|---|---|
committer | 2013-01-22 06:26:09 +0000 | |
commit | 3ac252a5238385ae0f48faf755e9ef9f2c13978a (patch) | |
tree | 6b100a8a86abb03e93cd7a584b889f3b7eda59e2 /games-board/pokerth/pokerth-1.0.ebuild | |
parent | Bump (diff) | |
download | gentoo-2-3ac252a5238385ae0f48faf755e9ef9f2c13978a.tar.gz gentoo-2-3ac252a5238385ae0f48faf755e9ef9f2c13978a.tar.bz2 gentoo-2-3ac252a5238385ae0f48faf755e9ef9f2c13978a.zip |
version bump (bug #453470)
(Portage version: 2.1.11.31/cvs/Linux x86_64, unsigned Manifest commit)
Diffstat (limited to 'games-board/pokerth/pokerth-1.0.ebuild')
-rw-r--r-- | games-board/pokerth/pokerth-1.0.ebuild | 66 |
1 files changed, 66 insertions, 0 deletions
diff --git a/games-board/pokerth/pokerth-1.0.ebuild b/games-board/pokerth/pokerth-1.0.ebuild new file mode 100644 index 000000000000..d925dd8d54cd --- /dev/null +++ b/games-board/pokerth/pokerth-1.0.ebuild @@ -0,0 +1,66 @@ +# Copyright 1999-2013 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/games-board/pokerth/pokerth-1.0.ebuild,v 1.1 2013/01/22 06:26:09 mr_bones_ Exp $ + +EAPI=5 +inherit flag-o-matic eutils qt4-r2 games + +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 + dev-libs/tinyxml[stl] + net-libs/libircclient + >=net-misc/curl-7.16 + x11-libs/qt-core:4 + virtual/gsasl + !dedicated? ( + media-libs/libsdl + media-libs/sdl-mixer[mod,vorbis] + x11-libs/qt-gui:4 + )" +DEPEND="${RDEPEND} + !dedicated? ( x11-libs/qt-sql:4 )" + +S=${WORKDIR}/${MY_P} + +src_prepare() { + 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 + + epatch "${FILESDIR}"/${P}-underlinking.patch +} + +src_configure() { + eqmake4 +} + +src_install() { + dogamesbin bin/pokerth_server + if ! use dedicated ; then + dogamesbin ${PN} + insinto "${GAMES_DATADIR}/${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 + prepgamesdirs +} |