Gentoo Archives: gentoo-commits

From: "Michael Sterrett (mr_bones_)" <mr_bones_@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in games-board/pokerth: pokerth-1.1.1.ebuild ChangeLog
Date: Wed, 22 Jan 2014 06:35:49
Message-Id: 20140122063546.309172004C@flycatcher.gentoo.org
1 mr_bones_ 14/01/22 06:35:46
2
3 Modified: ChangeLog
4 Added: pokerth-1.1.1.ebuild
5 Log:
6 version bump
7
8 (Portage version: 2.2.7/cvs/Linux x86_64, unsigned Manifest commit)
9
10 Revision Changes Path
11 1.60 games-board/pokerth/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-board/pokerth/ChangeLog?rev=1.60&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-board/pokerth/ChangeLog?rev=1.60&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-board/pokerth/ChangeLog?r1=1.59&r2=1.60
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/games-board/pokerth/ChangeLog,v
20 retrieving revision 1.59
21 retrieving revision 1.60
22 diff -u -r1.59 -r1.60
23 --- ChangeLog 7 Nov 2013 17:01:02 -0000 1.59
24 +++ ChangeLog 22 Jan 2014 06:35:45 -0000 1.60
25 @@ -1,6 +1,12 @@
26 # ChangeLog for games-board/pokerth
27 -# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/games-board/pokerth/ChangeLog,v 1.59 2013/11/07 17:01:02 hasufell Exp $
29 +# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
30 +# $Header: /var/cvsroot/gentoo-x86/games-board/pokerth/ChangeLog,v 1.60 2014/01/22 06:35:45 mr_bones_ Exp $
31 +
32 +*pokerth-1.1.1 (22 Jan 2014)
33 +
34 + 22 Jan 2014; Michael Sterrett <mr_bones_@g.o>
35 + +files/pokerth-1.1.1-underlinking.patch, +pokerth-1.1.1.ebuild:
36 + version bump
37
38 07 Nov 2013; Julian Ospald <hasufell@g.o> -pokerth-1.0.ebuild,
39 +pokerth-1.0.1.ebuild:
40
41
42
43 1.1 games-board/pokerth/pokerth-1.1.1.ebuild
44
45 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-board/pokerth/pokerth-1.1.1.ebuild?rev=1.1&view=markup
46 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-board/pokerth/pokerth-1.1.1.ebuild?rev=1.1&content-type=text/plain
47
48 Index: pokerth-1.1.1.ebuild
49 ===================================================================
50 # Copyright 1999-2014 Gentoo Foundation
51 # Distributed under the terms of the GNU General Public License v2
52 # $Header: /var/cvsroot/gentoo-x86/games-board/pokerth/pokerth-1.1.1.ebuild,v 1.1 2014/01/22 06:35:45 mr_bones_ Exp $
53
54 EAPI=5
55 inherit flag-o-matic eutils qt4-r2 games
56
57 MY_P="PokerTH-${PV}-src"
58 DESCRIPTION="Texas Hold'em poker game"
59 HOMEPAGE="http://www.pokerth.net/"
60 SRC_URI="mirror://sourceforge/pokerth/${MY_P}.tar.bz2"
61
62 LICENSE="AGPL-3 GPL-1 GPL-2 GPL-3 BitstreamVera public-domain"
63 SLOT="0"
64 KEYWORDS="~amd64 ~ppc ~x86"
65 IUSE="dedicated"
66
67 RDEPEND="dev-db/sqlite:3
68 dev-libs/boost[threads(+)]
69 dev-libs/protobuf
70 dev-libs/libgcrypt
71 dev-libs/tinyxml[stl]
72 amd64? ( net-libs/libircclient )
73 ppc? ( >=net-libs/libircclient-1.6-r2 )
74 x86? ( net-libs/libircclient )
75 >=net-misc/curl-7.16
76 dev-qt/qtcore:4
77 virtual/gsasl
78 !dedicated? (
79 media-libs/libsdl:0
80 media-libs/sdl-mixer[mod,vorbis]
81 dev-qt/qtgui:4
82 )"
83 DEPEND="${RDEPEND}
84 !dedicated? ( dev-qt/qtsql:4 )
85 virtual/pkgconfig"
86
87 S=${WORKDIR}/${MY_P}
88
89 src_prepare() {
90 if use dedicated ; then
91 sed -i \
92 -e 's/pokerth_game.pro//' \
93 pokerth.pro || die
94 fi
95
96 sed -i \
97 -e '/no_dead_strip_inits_and_terms/d' \
98 *pro || die
99
100 #epatch "${FILESDIR}"/${P}-underlinking.patch
101 }
102
103 src_configure() {
104 eqmake4
105 }
106
107 src_install() {
108 dogamesbin bin/pokerth_server
109 if ! use dedicated ; then
110 dogamesbin ${PN}
111 insinto "${GAMES_DATADIR}/${PN}"
112 doins -r data
113 domenu ${PN}.desktop
114 doicon ${PN}.png
115 fi
116 doman docs/pokerth.1
117 dodoc ChangeLog TODO docs/{gui_styling,server_setup}_howto.txt
118 prepgamesdirs
119 }