blob: 7cd0c2a3a36a2b455f1923b9d792f5a97118122f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
|
# Copyright 1999-2009 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/games-board/pokerth/pokerth-0.6.3.ebuild,v 1.5 2009/06/09 21:23:10 mr_bones_ Exp $
EAPI=2
inherit eutils qt4 games
MY_P="PokerTH-${PV}-2-src"
DESCRIPTION="Texas Hold'em poker game"
HOMEPAGE="http://www.pokerth.net/"
SRC_URI="mirror://sourceforge/pokerth/${MY_P}.tar.bz2"
LICENSE="GPL-1 GPL-2 GPL-3 BitstreamVera public-domain"
SLOT="0"
KEYWORDS="amd64 ~ppc x86"
IUSE="dedicated"
DEPEND="
|| ( >=dev-libs/boost-1.35.0-r5:0
~dev-libs/boost-1.34.1
~dev-libs/boost-1.33.1 )
>=net-libs/gnutls-2.2.2
>=net-misc/curl-7.16
!dedicated? (
media-libs/libsdl
media-libs/sdl-mixer[mikmod,vorbis]
>=sys-libs/zlib-1.2.3
x11-libs/qt-gui:4
)"
S=${WORKDIR}/${MY_P}
pkg_setup() {
games_pkg_setup
if has_version '>=dev-libs/boost-1.35.0-r5:0' ; then
local boost_ver=$(f=$(eselect boost show | tail -n1); echo $f)
if [[ "$boost_ver" != "boost-1_35" ]] ; then
ewarn "${P} requires boost to be set to version 1_35"
ewarn "use eselect to set boost to the required version"
die "Incorrect boost version currently selected (currently $boost_ver)"
fi
fi
}
src_prepare() {
if use dedicated ; then
sed -i \
-e 's/pokerth_game.pro//' \
pokerth.pro \
|| die "sed failed"
fi
sed -i \
-e '/no_dead_strip_inits_and_terms/d' \
*pro \
|| die 'sed failed'
}
src_configure() {
eqmake4
}
src_install() {
dogamesbin bin/pokerth_server || die
if ! use dedicated ; then
dogamesbin ${PN} || die
insinto "${GAMES_DATADIR}/${PN}"
doins -r data || die
domenu ${PN}.desktop
doicon ${PN}.png
fi
dodoc ChangeLog TODO docs/{net_protocol,server_setup_howto}.txt
prepgamesdirs
}
|