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-arcade/crack-attack: crack-attack-1.1.14-r1.ebuild ChangeLog
Date: Fri, 25 Jun 2010 21:45:00
Message-Id: 20100625214457.662BB2CF69@corvid.gentoo.org
1 mr_bones_ 10/06/25 21:44:57
2
3 Modified: crack-attack-1.1.14-r1.ebuild ChangeLog
4 Log:
5 EAPI=2; add pkgconfig dep
6 (Portage version: 2.1.8.3/cvs/Linux i686)
7
8 Revision Changes Path
9 1.6 games-arcade/crack-attack/crack-attack-1.1.14-r1.ebuild
10
11 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-arcade/crack-attack/crack-attack-1.1.14-r1.ebuild?rev=1.6&view=markup
12 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-arcade/crack-attack/crack-attack-1.1.14-r1.ebuild?rev=1.6&content-type=text/plain
13 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-arcade/crack-attack/crack-attack-1.1.14-r1.ebuild?r1=1.5&r2=1.6
14
15 Index: crack-attack-1.1.14-r1.ebuild
16 ===================================================================
17 RCS file: /var/cvsroot/gentoo-x86/games-arcade/crack-attack/crack-attack-1.1.14-r1.ebuild,v
18 retrieving revision 1.5
19 retrieving revision 1.6
20 diff -u -r1.5 -r1.6
21 --- crack-attack-1.1.14-r1.ebuild 30 Apr 2008 21:54:40 -0000 1.5
22 +++ crack-attack-1.1.14-r1.ebuild 25 Jun 2010 21:44:57 -0000 1.6
23 @@ -1,7 +1,8 @@
24 -# Copyright 1999-2008 Gentoo Foundation
25 +# Copyright 1999-2010 Gentoo Foundation
26 # Distributed under the terms of the GNU General Public License v2
27 -# $Header: /var/cvsroot/gentoo-x86/games-arcade/crack-attack/crack-attack-1.1.14-r1.ebuild,v 1.5 2008/04/30 21:54:40 nyhm Exp $
28 +# $Header: /var/cvsroot/gentoo-x86/games-arcade/crack-attack/crack-attack-1.1.14-r1.ebuild,v 1.6 2010/06/25 21:44:57 mr_bones_ Exp $
29
30 +EAPI=2
31 inherit eutils games
32
33 DESCRIPTION="Addictive OpenGL-based block game"
34 @@ -13,26 +14,25 @@
35 KEYWORDS="amd64 arm hppa ia64 ppc sparc x86"
36 IUSE="gtk sdl"
37
38 -DEPEND="virtual/glut
39 - sdl? ( media-libs/libsdl media-libs/sdl-mixer )
40 - gtk? ( >=x11-libs/gtk+-2.6 )"
41 -
42 -src_unpack() {
43 - unpack ${A}
44 - cd "${S}"
45 +RDEPEND="virtual/glut
46 + sdl? ( media-libs/libsdl
47 + media-libs/sdl-mixer )
48 + gtk? ( >=x11-libs/gtk+-2.6:2 )"
49 +DEPEND="${RDEPEND}
50 + dev-util/pkgconfig"
51 +
52 +src_prepare() {
53 epatch \
54 "${FILESDIR}"/${P}-glut.patch \
55 "${FILESDIR}"/${P}-gcc43.patch
56 touch * */*
57 }
58
59 -src_compile() {
60 +src_configure() {
61 egamesconf \
62 --disable-binreloc \
63 $(use_enable sdl sound) \
64 - $(use_enable gtk) \
65 - || die
66 - emake || die "emake failed"
67 + $(use_enable gtk)
68 }
69
70 src_install() {
71
72
73
74 1.24 games-arcade/crack-attack/ChangeLog
75
76 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-arcade/crack-attack/ChangeLog?rev=1.24&view=markup
77 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-arcade/crack-attack/ChangeLog?rev=1.24&content-type=text/plain
78 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-arcade/crack-attack/ChangeLog?r1=1.23&r2=1.24
79
80 Index: ChangeLog
81 ===================================================================
82 RCS file: /var/cvsroot/gentoo-x86/games-arcade/crack-attack/ChangeLog,v
83 retrieving revision 1.23
84 retrieving revision 1.24
85 diff -u -r1.23 -r1.24
86 --- ChangeLog 30 Apr 2008 21:54:40 -0000 1.23
87 +++ ChangeLog 25 Jun 2010 21:44:57 -0000 1.24
88 @@ -1,6 +1,10 @@
89 # ChangeLog for games-arcade/crack-attack
90 -# Copyright 1999-2008 Gentoo Foundation; Distributed under the GPL v2
91 -# $Header: /var/cvsroot/gentoo-x86/games-arcade/crack-attack/ChangeLog,v 1.23 2008/04/30 21:54:40 nyhm Exp $
92 +# Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
93 +# $Header: /var/cvsroot/gentoo-x86/games-arcade/crack-attack/ChangeLog,v 1.24 2010/06/25 21:44:57 mr_bones_ Exp $
94 +
95 + 25 Jun 2010; Michael Sterrett <mr_bones_@g.o>
96 + crack-attack-1.1.14-r1.ebuild:
97 + EAPI=2; add pkgconfig dep
98
99 30 Apr 2008; Tristan Heaven <nyhm@g.o>
100 +files/crack-attack-1.1.14-gcc43.patch, crack-attack-1.1.14-r1.ebuild: