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 dev-games/poker-eval: ChangeLog poker-eval-138.0.ebuild
Date: Fri, 03 Sep 2010 08:11:16
Message-Id: 20100903081113.4086920051@flycatcher.gentoo.org
1 mr_bones_ 10/09/03 08:11:13
2
3 Modified: ChangeLog
4 Added: poker-eval-138.0.ebuild
5 Log:
6 version bump
7 (Portage version: 2.1.8.3/cvs/Linux i686)
8
9 Revision Changes Path
10 1.19 dev-games/poker-eval/ChangeLog
11
12 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-games/poker-eval/ChangeLog?rev=1.19&view=markup
13 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-games/poker-eval/ChangeLog?rev=1.19&content-type=text/plain
14 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-games/poker-eval/ChangeLog?r1=1.18&r2=1.19
15
16 Index: ChangeLog
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/dev-games/poker-eval/ChangeLog,v
19 retrieving revision 1.18
20 retrieving revision 1.19
21 diff -u -r1.18 -r1.19
22 --- ChangeLog 1 Oct 2009 20:30:26 -0000 1.18
23 +++ ChangeLog 3 Sep 2010 08:11:13 -0000 1.19
24 @@ -1,6 +1,12 @@
25 # ChangeLog for dev-games/poker-eval
26 -# Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
27 -# $Header: /var/cvsroot/gentoo-x86/dev-games/poker-eval/ChangeLog,v 1.18 2009/10/01 20:30:26 klausman Exp $
28 +# Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
29 +# $Header: /var/cvsroot/gentoo-x86/dev-games/poker-eval/ChangeLog,v 1.19 2010/09/03 08:11:13 mr_bones_ Exp $
30 +
31 +*poker-eval-138.0 (03 Sep 2010)
32 +
33 + 03 Sep 2010; Michael Sterrett <mr_bones_@g.o>
34 + +poker-eval-138.0.ebuild:
35 + version bump
36
37 01 Oct 2009; Tobias Klausmann <klausman@g.o>
38 poker-eval-136.0.ebuild:
39
40
41
42 1.1 dev-games/poker-eval/poker-eval-138.0.ebuild
43
44 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-games/poker-eval/poker-eval-138.0.ebuild?rev=1.1&view=markup
45 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-games/poker-eval/poker-eval-138.0.ebuild?rev=1.1&content-type=text/plain
46
47 Index: poker-eval-138.0.ebuild
48 ===================================================================
49 # Copyright 1999-2010 Gentoo Foundation
50 # Distributed under the terms of the GNU General Public License v2
51 # $Header: /var/cvsroot/gentoo-x86/dev-games/poker-eval/poker-eval-138.0.ebuild,v 1.1 2010/09/03 08:11:13 mr_bones_ Exp $
52
53 EAPI=2
54 inherit eutils
55
56 DESCRIPTION="A fast C library for evaluating poker hands"
57 HOMEPAGE="http://pokersource.info/"
58 SRC_URI="http://download.gna.org/pokersource/sources/${P}.tar.gz"
59
60 LICENSE="GPL-3"
61 SLOT="0"
62 KEYWORDS="~alpha ~amd64 ~x86"
63 IUSE="static-libs"
64
65 src_configure() {
66 econf \
67 --disable-dependency-tracking \
68 --without-ccache \
69 $(use_enable static-libs static) \
70 || die
71 }
72
73 src_install() {
74 emake DESTDIR="${D}" install || die "emake install failed"
75 dodoc AUTHORS ChangeLog NEWS README TODO WHATS-HERE
76 if ! use static-libs ; then
77 find "${D}" -type f -name '*.la' -exec rm {} + \
78 || die "la removal failed"
79 fi
80 }