blob: b78a83a36c6ca183c3cabd34baed553e75b29057 (
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
|
# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Id$
EAPI=5
inherit eutils cmake-utils games
DESCRIPTION="An open source poker client and server"
HOMEPAGE="http://www.holdingnuts.net/"
SRC_URI="http://downloads.sourceforge.net/${PN}/${P}.tar.bz2"
LICENSE="GPL-3"
SLOT="0"
KEYWORDS="amd64 ~ppc x86"
IUSE="alsa debug dedicated"
RDEPEND="
!dedicated? (
dev-qt/qtcore:4
dev-qt/qtgui:4
alsa? ( >=media-libs/libsdl-1.2.10:0[alsa] )
)"
DEPEND="${RDEPEND}
>=dev-util/cmake-2.6.3"
src_prepare() {
sed -i -e '/^Path/d' holdingnuts.desktop || die
epatch "${FILESDIR}"/${P}-wheel.patch # upstream patch (bug #307901)
}
src_configure() {
local mycmakeargs="$(cmake-utils_use_enable alsa AUDIO)
$(cmake-utils_use_enable !dedicated CLIENT)
$(cmake-utils_use_enable debug DEBUG)"
mycmakeargs="${mycmakeargs}
-DCMAKE_INSTALL_PREFIX=${GAMES_PREFIX}
-DCMAKE_DATA_PATH=${GAMES_DATADIR}"
cmake-utils_src_configure
}
src_install() {
cmake-utils_src_install
if ! use dedicated ; then
domenu ${PN}.desktop
doicon ${PN}.png
doman docs/${PN}.6
fi
dodoc ChangeLog docs/protocol_spec.txt
doman docs/${PN}-server.6
prepgamesdirs
}
|