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/gnugo: ChangeLog gnugo-3.7.13.ebuild
Date: Sat, 24 Jan 2009 05:22:52
Message-Id: E1LQayn-0006T9-Pg@stork.gentoo.org
1 mr_bones_ 09/01/24 05:22:49
2
3 Modified: ChangeLog
4 Added: gnugo-3.7.13.ebuild
5 Log:
6 version bump (bug #256144)
7 (Portage version: 2.1.6.4/cvs/Linux 2.6.28.1 i686)
8
9 Revision Changes Path
10 1.17 games-board/gnugo/ChangeLog
11
12 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/games-board/gnugo/ChangeLog?rev=1.17&view=markup
13 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/games-board/gnugo/ChangeLog?rev=1.17&content-type=text/plain
14 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/games-board/gnugo/ChangeLog?r1=1.16&r2=1.17
15
16 Index: ChangeLog
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/games-board/gnugo/ChangeLog,v
19 retrieving revision 1.16
20 retrieving revision 1.17
21 diff -u -r1.16 -r1.17
22 --- ChangeLog 24 Jun 2008 01:51:17 -0000 1.16
23 +++ ChangeLog 24 Jan 2009 05:22:49 -0000 1.17
24 @@ -1,6 +1,11 @@
25 # ChangeLog for games-board/gnugo
26 -# Copyright 2002-2008 Gentoo Foundation; Distributed under the GPL v2
27 -# $Header: /var/cvsroot/gentoo-x86/games-board/gnugo/ChangeLog,v 1.16 2008/06/24 01:51:17 mr_bones_ Exp $
28 +# Copyright 2002-2009 Gentoo Foundation; Distributed under the GPL v2
29 +# $Header: /var/cvsroot/gentoo-x86/games-board/gnugo/ChangeLog,v 1.17 2009/01/24 05:22:49 mr_bones_ Exp $
30 +
31 +*gnugo-3.7.13 (24 Jan 2009)
32 +
33 + 24 Jan 2009; Michael Sterrett <mr_bones_@g.o> +gnugo-3.7.13.ebuild:
34 + version bump (bug #256144)
35
36 *gnugo-3.7.12 (24 Jun 2008)
37
38
39
40
41 1.1 games-board/gnugo/gnugo-3.7.13.ebuild
42
43 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/games-board/gnugo/gnugo-3.7.13.ebuild?rev=1.1&view=markup
44 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/games-board/gnugo/gnugo-3.7.13.ebuild?rev=1.1&content-type=text/plain
45
46 Index: gnugo-3.7.13.ebuild
47 ===================================================================
48 # Copyright 1999-2009 Gentoo Foundation
49 # Distributed under the terms of the GNU General Public License v2
50 # $Header: /var/cvsroot/gentoo-x86/games-board/gnugo/gnugo-3.7.13.ebuild,v 1.1 2009/01/24 05:22:49 mr_bones_ Exp $
51
52 EAPI=2
53 inherit games
54
55 DESCRIPTION="A Go-playing program"
56 HOMEPAGE="http://www.gnu.org/software/gnugo/devel.html"
57 SRC_URI="http://match.stanford.edu/gnugo/archive/${P}.tar.gz"
58
59 LICENSE="GPL-3"
60 SLOT="0"
61 KEYWORDS="~alpha ~amd64 ~ppc ~x86"
62 IUSE="readline"
63
64 DEPEND=">=sys-libs/ncurses-5.2-r3
65 readline? ( sys-libs/readline )"
66
67 src_configure() {
68 egamesconf \
69 $(use_with readline) \
70 --disable-dependency-tracking \
71 --enable-cache-size=32 || die
72 }
73
74 src_install() {
75 emake DESTDIR="${D}" install || die "emake install failed"
76 dodoc AUTHORS ChangeLog NEWS README THANKS TODO
77 prepgamesdirs
78 }