Gentoo Archives: gentoo-commits

From: "Alfredo Tupone (tupone)" <tupone@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in games-puzzle/wakkabox: ChangeLog wakkabox-1.1.0.ebuild
Date: Thu, 26 Feb 2015 23:07:57
Message-Id: 20150226230752.45CCC129EF@oystercatcher.gentoo.org
1 tupone 15/02/26 23:07:52
2
3 Modified: ChangeLog wakkabox-1.1.0.ebuild
4 Log:
5 EAPI 5
6 Underlink
7 Buffer overflow
8
9 (Portage version: 2.2.14/cvs/Linux x86_64, signed Manifest commit with key 0145142D)
10
11 Revision Changes Path
12 1.7 games-puzzle/wakkabox/ChangeLog
13
14 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-puzzle/wakkabox/ChangeLog?rev=1.7&view=markup
15 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-puzzle/wakkabox/ChangeLog?rev=1.7&content-type=text/plain
16 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-puzzle/wakkabox/ChangeLog?r1=1.6&r2=1.7
17
18 Index: ChangeLog
19 ===================================================================
20 RCS file: /var/cvsroot/gentoo-x86/games-puzzle/wakkabox/ChangeLog,v
21 retrieving revision 1.6
22 retrieving revision 1.7
23 diff -u -r1.6 -r1.7
24 --- ChangeLog 8 Feb 2007 21:20:36 -0000 1.6
25 +++ ChangeLog 26 Feb 2015 23:07:52 -0000 1.7
26 @@ -1,6 +1,10 @@
27 # ChangeLog for games-puzzle/wakkabox
28 -# Copyright 2000-2007 Gentoo Foundation; Distributed under the GPL v2
29 -# $Header: /var/cvsroot/gentoo-x86/games-puzzle/wakkabox/ChangeLog,v 1.6 2007/02/08 21:20:36 wolf31o2 Exp $
30 +# Copyright 2000-2015 Gentoo Foundation; Distributed under the GPL v2
31 +# $Header: /var/cvsroot/gentoo-x86/games-puzzle/wakkabox/ChangeLog,v 1.7 2015/02/26 23:07:52 tupone Exp $
32 +
33 + 26 Feb 2015; Tupone Alfredo <tupone@g.o> wakkabox-1.1.0.ebuild,
34 + +files/wakkabox-1.1.0-gentoo.patch:
35 + EAPI 5 - underlinking and buffer overflow
36
37 08 Feb 2007; Chris Gianelloni <wolf31o2@g.o> ChangeLog:
38 Regenerate digest in Manifest2 format.
39
40
41
42 1.9 games-puzzle/wakkabox/wakkabox-1.1.0.ebuild
43
44 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-puzzle/wakkabox/wakkabox-1.1.0.ebuild?rev=1.9&view=markup
45 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-puzzle/wakkabox/wakkabox-1.1.0.ebuild?rev=1.9&content-type=text/plain
46 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-puzzle/wakkabox/wakkabox-1.1.0.ebuild?r1=1.8&r2=1.9
47
48 Index: wakkabox-1.1.0.ebuild
49 ===================================================================
50 RCS file: /var/cvsroot/gentoo-x86/games-puzzle/wakkabox/wakkabox-1.1.0.ebuild,v
51 retrieving revision 1.8
52 retrieving revision 1.9
53 diff -u -r1.8 -r1.9
54 --- wakkabox-1.1.0.ebuild 31 Oct 2005 08:55:43 -0000 1.8
55 +++ wakkabox-1.1.0.ebuild 26 Feb 2015 23:07:52 -0000 1.9
56 @@ -1,8 +1,9 @@
57 -# Copyright 1999-2004 Gentoo Foundation
58 +# Copyright 1999-2015 Gentoo Foundation
59 # Distributed under the terms of the GNU General Public License v2
60 -# $Header: /var/cvsroot/gentoo-x86/games-puzzle/wakkabox/wakkabox-1.1.0.ebuild,v 1.8 2005/10/31 08:55:43 mr_bones_ Exp $
61 +# $Header: /var/cvsroot/gentoo-x86/games-puzzle/wakkabox/wakkabox-1.1.0.ebuild,v 1.9 2015/02/26 23:07:52 tupone Exp $
62
63 -inherit games
64 +EAPI=5
65 +inherit eutils autotools games
66
67 DESCRIPTION="A simple block-pushing game"
68 HOMEPAGE="http://kenn.frap.net/wakkabox/"
69 @@ -14,9 +15,15 @@
70 IUSE=""
71
72 DEPEND=">=media-libs/libsdl-1.0.1"
73 +RDEPEND="${DEPEND}"
74 +
75 +src_prepare() {
76 + epatch "${FILESDIR}"/${P}-gentoo.patch
77 + rm aclocal.m4
78 + eautoreconf
79 +}
80
81 src_install() {
82 - make DESTDIR="${D}" install || die "make install failed"
83 - dodoc AUTHORS NEWS README
84 + default
85 prepgamesdirs
86 }