Gentoo Archives: gentoo-commits

From: "Jeroen Roovers (jer)" <jer@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in games-puzzle/seatris: seatris-0.0.14.ebuild ChangeLog
Date: Thu, 30 Oct 2014 22:18:37
Message-Id: 20141030221833.566039199@oystercatcher.gentoo.org
1 jer 14/10/30 22:18:33
2
3 Modified: seatris-0.0.14.ebuild ChangeLog
4 Log:
5 Fix building against sys-libs/ncurses[tinfo] (bug #526582).
6
7 (Portage version: 2.2.14/cvs/Linux x86_64, signed Manifest commit with key A792A613)
8
9 Revision Changes Path
10 1.11 games-puzzle/seatris/seatris-0.0.14.ebuild
11
12 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-puzzle/seatris/seatris-0.0.14.ebuild?rev=1.11&view=markup
13 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-puzzle/seatris/seatris-0.0.14.ebuild?rev=1.11&content-type=text/plain
14 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-puzzle/seatris/seatris-0.0.14.ebuild?r1=1.10&r2=1.11
15
16 Index: seatris-0.0.14.ebuild
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/games-puzzle/seatris/seatris-0.0.14.ebuild,v
19 retrieving revision 1.10
20 retrieving revision 1.11
21 diff -u -r1.10 -r1.11
22 --- seatris-0.0.14.ebuild 10 Feb 2009 11:55:04 -0000 1.10
23 +++ seatris-0.0.14.ebuild 30 Oct 2014 22:18:33 -0000 1.11
24 @@ -1,9 +1,9 @@
25 -# Copyright 1999-2009 Gentoo Foundation
26 +# Copyright 1999-2014 Gentoo Foundation
27 # Distributed under the terms of the GNU General Public License v2
28 -# $Header: /var/cvsroot/gentoo-x86/games-puzzle/seatris/seatris-0.0.14.ebuild,v 1.10 2009/02/10 11:55:04 tupone Exp $
29 +# $Header: /var/cvsroot/gentoo-x86/games-puzzle/seatris/seatris-0.0.14.ebuild,v 1.11 2014/10/30 22:18:33 jer Exp $
30
31 -EAPI=2
32 -inherit eutils games
33 +EAPI=5
34 +inherit eutils games toolchain-funcs
35
36 DESCRIPTION="A color ncurses tetris clone"
37 HOMEPAGE="http://www.earth.li/projectpurple/progs/seatris.html"
38 @@ -12,20 +12,24 @@
39 LICENSE="GPL-2"
40 SLOT="0"
41 KEYWORDS="amd64 ~ppc ppc64 x86"
42 -IUSE=""
43
44 -DEPEND="sys-libs/ncurses"
45 +RDEPEND="sys-libs/ncurses"
46 +DEPEND="${DEPEND}"
47
48 src_prepare() {
49 sed -i \
50 -e "s:/var/lib/games:${GAMES_STATEDIR}:" \
51 - scoring.h seatris.6 \
52 - || die "sed failed"
53 + scoring.h seatris.6 || die
54 +
55 epatch "${FILESDIR}"/${P}-as-needed.patch
56 }
57
58 +src_compile() {
59 + emake LIBS="$( $(tc-getPKG_CONFIG) --libs ncurses )"
60 +}
61 +
62 src_install () {
63 - dogamesbin seatris || die "dogamesbin failed"
64 + dogamesbin seatris || die
65 doman seatris.6
66 dodoc ACKNOWLEDGEMENTS HISTORY README TODO example.seatrisrc
67 dodir "${GAMES_STATEDIR}"
68
69
70
71 1.9 games-puzzle/seatris/ChangeLog
72
73 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-puzzle/seatris/ChangeLog?rev=1.9&view=markup
74 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-puzzle/seatris/ChangeLog?rev=1.9&content-type=text/plain
75 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-puzzle/seatris/ChangeLog?r1=1.8&r2=1.9
76
77 Index: ChangeLog
78 ===================================================================
79 RCS file: /var/cvsroot/gentoo-x86/games-puzzle/seatris/ChangeLog,v
80 retrieving revision 1.8
81 retrieving revision 1.9
82 diff -u -r1.8 -r1.9
83 --- ChangeLog 10 Feb 2009 11:55:04 -0000 1.8
84 +++ ChangeLog 30 Oct 2014 22:18:33 -0000 1.9
85 @@ -1,6 +1,10 @@
86 # ChangeLog for games-puzzle/seatris
87 -# Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
88 -# $Header: /var/cvsroot/gentoo-x86/games-puzzle/seatris/ChangeLog,v 1.8 2009/02/10 11:55:04 tupone Exp $
89 +# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
90 +# $Header: /var/cvsroot/gentoo-x86/games-puzzle/seatris/ChangeLog,v 1.9 2014/10/30 22:18:33 jer Exp $
91 +
92 + 30 Oct 2014; Jeroen Roovers <jer@g.o>
93 + files/seatris-0.0.14-as-needed.patch, seatris-0.0.14.ebuild:
94 + Fix building against sys-libs/ncurses[tinfo] (bug #526582).
95
96 10 Feb 2009; Alfredo Tupone <tupone@g.o>
97 +files/seatris-0.0.14-as-needed.patch, seatris-0.0.14.ebuild:
98 @@ -30,4 +34,3 @@
99 11 Dec 2004; Michael Sterrett <mr_bones_@g.o> +metadata.xml,
100 +seatris-0.0.14.ebuild:
101 initial commit - in response to bug #54939
102 -