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/grhino: ChangeLog grhino-0.16.1.ebuild
Date: Sat, 04 Sep 2010 07:31:53
Message-Id: 20100904073146.B777C20051@flycatcher.gentoo.org
1 mr_bones_ 10/09/04 07:31:46
2
3 Modified: ChangeLog
4 Added: grhino-0.16.1.ebuild
5 Log:
6 version bump
7 (Portage version: 2.1.8.3/cvs/Linux i686)
8
9 Revision Changes Path
10 1.10 games-board/grhino/ChangeLog
11
12 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-board/grhino/ChangeLog?rev=1.10&view=markup
13 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-board/grhino/ChangeLog?rev=1.10&content-type=text/plain
14 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-board/grhino/ChangeLog?r1=1.9&r2=1.10
15
16 Index: ChangeLog
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/games-board/grhino/ChangeLog,v
19 retrieving revision 1.9
20 retrieving revision 1.10
21 diff -u -r1.9 -r1.10
22 --- ChangeLog 25 Oct 2009 15:54:54 -0000 1.9
23 +++ ChangeLog 4 Sep 2010 07:31:46 -0000 1.10
24 @@ -1,6 +1,12 @@
25 # ChangeLog for games-board/grhino
26 -# Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
27 -# $Header: /var/cvsroot/gentoo-x86/games-board/grhino/ChangeLog,v 1.9 2009/10/25 15:54:54 maekke Exp $
28 +# Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
29 +# $Header: /var/cvsroot/gentoo-x86/games-board/grhino/ChangeLog,v 1.10 2010/09/04 07:31:46 mr_bones_ Exp $
30 +
31 +*grhino-0.16.1 (04 Sep 2010)
32 +
33 + 04 Sep 2010; Michael Sterrett <mr_bones_@g.o>
34 + +grhino-0.16.1.ebuild:
35 + version bump
36
37 25 Oct 2009; Markus Meier <maekke@g.o> grhino-0.16.0.ebuild:
38 amd64/x86 stable, bug #288917
39
40
41
42 1.1 games-board/grhino/grhino-0.16.1.ebuild
43
44 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-board/grhino/grhino-0.16.1.ebuild?rev=1.1&view=markup
45 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-board/grhino/grhino-0.16.1.ebuild?rev=1.1&content-type=text/plain
46
47 Index: grhino-0.16.1.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/games-board/grhino/grhino-0.16.1.ebuild,v 1.1 2010/09/04 07:31:46 mr_bones_ Exp $
52
53 EAPI=2
54 inherit eutils games
55
56 DESCRIPTION="Reversi game for GNOME, supporting the Go/Game Text Protocol"
57 HOMEPAGE="http://rhino.sourceforge.net/"
58 SRC_URI="mirror://sourceforge/rhino/${P}.tar.gz"
59
60 LICENSE="GPL-2"
61 SLOT="0"
62 KEYWORDS="~amd64 ~x86"
63 IUSE="gnome gtp nls"
64
65 RDEPEND="gnome? ( =gnome-base/libgnomeui-2* )
66 nls? ( virtual/libintl )"
67 DEPEND="${RDEPEND}
68 nls? ( sys-devel/gettext )"
69
70 src_prepare() {
71 sed -i '/^(\|locale\|help\|omf\|icon\|)/s:@datadir@:/usr/share:' \
72 Makefile.in \
73 || die "sed failed"
74 }
75
76 src_configure() {
77 if use gnome || use gtp; then
78 egamesconf \
79 --localedir=/usr/share/locale \
80 $(use_enable gnome) \
81 $(use_enable gtp) \
82 $(use_enable nls)
83 else
84 egamesconf \
85 --localedir=/usr/share/locale \
86 --enable-gtp \
87 --disable-gnome \
88 $(use_enable nls)
89 fi
90 }
91
92 src_install() {
93 emake DESTDIR="${D}" install || die "emake install failed"
94
95 dodoc ChangeLog NEWS README TODO
96
97 if use gnome; then
98 make_desktop_entry ${PN} GRhino
99 fi
100
101 prepgamesdirs
102 }