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/gnushogi: gnushogi-1.4.1.ebuild ChangeLog
Date: Wed, 22 Jan 2014 03:20:17
Message-Id: 20140122032010.ECFE52004B@flycatcher.gentoo.org
1 mr_bones_ 14/01/22 03:20:10
2
3 Modified: ChangeLog
4 Added: gnushogi-1.4.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.18 games-board/gnushogi/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-board/gnushogi/ChangeLog?rev=1.18&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-board/gnushogi/ChangeLog?rev=1.18&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-board/gnushogi/ChangeLog?r1=1.17&r2=1.18
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/games-board/gnushogi/ChangeLog,v
20 retrieving revision 1.17
21 retrieving revision 1.18
22 diff -u -r1.17 -r1.18
23 --- ChangeLog 27 Oct 2010 09:33:04 -0000 1.17
24 +++ ChangeLog 22 Jan 2014 03:20:10 -0000 1.18
25 @@ -1,6 +1,11 @@
26 # ChangeLog for games-board/gnushogi
27 -# Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/games-board/gnushogi/ChangeLog,v 1.17 2010/10/27 09:33:04 tupone Exp $
29 +# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
30 +# $Header: /var/cvsroot/gentoo-x86/games-board/gnushogi/ChangeLog,v 1.18 2014/01/22 03:20:10 mr_bones_ Exp $
31 +
32 +*gnushogi-1.4.1 (22 Jan 2014)
33 +
34 + 22 Jan 2014; Michael Sterrett <mr_bones_@g.o> +gnushogi-1.4.1.ebuild:
35 + version bump
36
37 27 Oct 2010; Tupone Alfredo <tupone@g.o> gnushogi-1.3.ebuild,
38 +files/gnushogi-1.3-ovflfix.patch:
39
40
41
42 1.1 games-board/gnushogi/gnushogi-1.4.1.ebuild
43
44 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-board/gnushogi/gnushogi-1.4.1.ebuild?rev=1.1&view=markup
45 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-board/gnushogi/gnushogi-1.4.1.ebuild?rev=1.1&content-type=text/plain
46
47 Index: gnushogi-1.4.1.ebuild
48 ===================================================================
49 # Copyright 1999-2014 Gentoo Foundation
50 # Distributed under the terms of the GNU General Public License v2
51 # $Header: /var/cvsroot/gentoo-x86/games-board/gnushogi/gnushogi-1.4.1.ebuild,v 1.1 2014/01/22 03:20:10 mr_bones_ Exp $
52
53 EAPI=5
54 inherit eutils games
55
56 DESCRIPTION="Japanese version of chess (commandline + X-Version)"
57 HOMEPAGE="http://www.gnu.org/directory/games/gnushogi.html"
58 SRC_URI="mirror://gnu/${PN}/${P}.tar.gz"
59
60 LICENSE="GPL-3"
61 SLOT="0"
62 KEYWORDS="~amd64 ~ppc ~x86"
63 IUSE="X"
64
65 RDEPEND="sys-libs/ncurses
66 X? ( x11-libs/libXaw )"
67 DEPEND="${RDEPEND}
68 >=sys-devel/bison-1.34
69 >=sys-devel/flex-2.5"
70
71 src_prepare() {
72 sed -i \
73 -e '/^bbk:/s/$/ gnushogi_compile pat2inc sizetest/' \
74 Makefile.in || die
75 sed -i \
76 -e "/^LIBDIR/s:=.*:=\"$(games_get_libdir)\":" \
77 gnushogi/Makefile.in || die
78 }
79
80 src_configure() {
81 egamesconf \
82 $(use_with X x) \
83 $(use_enable X xshogi)
84 }
85
86 src_install() {
87 dogamesbin gnushogi/gnushogi
88 doman doc/gnushogi.6
89 doinfo doc/gnushogi.info
90 if use X ; then
91 dogamesbin xshogi/xshogi
92 doman doc/xshogi.6
93 make_desktop_entry xshogi XShogi
94 fi
95 dogameslib gnushogi/gnushogi.bbk
96 dodoc README NEWS CONTRIB
97 dohtml doc/gnushogi/*.html
98 prepgamesdirs
99 }