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-puzzle/groundhog: ChangeLog groundhog-1.4.ebuild
Date: Fri, 11 Sep 2009 00:25:48
Message-Id: E1MltxR-00067D-P5@stork.gentoo.org
1 mr_bones_ 09/09/11 00:25:45
2
3 Modified: ChangeLog groundhog-1.4.ebuild
4 Log:
5 EAPI=2
6 (Portage version: 2.1.6.13/cvs/Linux i686)
7
8 Revision Changes Path
9 1.15 games-puzzle/groundhog/ChangeLog
10
11 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/games-puzzle/groundhog/ChangeLog?rev=1.15&view=markup
12 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/games-puzzle/groundhog/ChangeLog?rev=1.15&content-type=text/plain
13 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/games-puzzle/groundhog/ChangeLog?r1=1.14&r2=1.15
14
15 Index: ChangeLog
16 ===================================================================
17 RCS file: /var/cvsroot/gentoo-x86/games-puzzle/groundhog/ChangeLog,v
18 retrieving revision 1.14
19 retrieving revision 1.15
20 diff -u -r1.14 -r1.15
21 --- ChangeLog 14 Oct 2008 18:20:22 -0000 1.14
22 +++ ChangeLog 11 Sep 2009 00:25:45 -0000 1.15
23 @@ -1,6 +1,9 @@
24 # ChangeLog for games-puzzle/groundhog
25 -# Copyright 1999-2008 Gentoo Foundation; Distributed under the GPL v2
26 -# $Header: /var/cvsroot/gentoo-x86/games-puzzle/groundhog/ChangeLog,v 1.14 2008/10/14 18:20:22 mr_bones_ Exp $
27 +# Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
28 +# $Header: /var/cvsroot/gentoo-x86/games-puzzle/groundhog/ChangeLog,v 1.15 2009/09/11 00:25:45 mr_bones_ Exp $
29 +
30 + 11 Sep 2009; Michael Sterrett <mr_bones_@g.o> groundhog-1.4.ebuild:
31 + EAPI=2
32
33 14 Oct 2008; Michael Sterrett <mr_bones_@g.o> groundhog-1.4.ebuild:
34 add dev-util/pkgconfig dep (bug #239709)
35
36
37
38 1.22 games-puzzle/groundhog/groundhog-1.4.ebuild
39
40 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/games-puzzle/groundhog/groundhog-1.4.ebuild?rev=1.22&view=markup
41 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/games-puzzle/groundhog/groundhog-1.4.ebuild?rev=1.22&content-type=text/plain
42 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/games-puzzle/groundhog/groundhog-1.4.ebuild?r1=1.21&r2=1.22
43
44 Index: groundhog-1.4.ebuild
45 ===================================================================
46 RCS file: /var/cvsroot/gentoo-x86/games-puzzle/groundhog/groundhog-1.4.ebuild,v
47 retrieving revision 1.21
48 retrieving revision 1.22
49 diff -u -r1.21 -r1.22
50 --- groundhog-1.4.ebuild 14 Oct 2008 18:20:22 -0000 1.21
51 +++ groundhog-1.4.ebuild 11 Sep 2009 00:25:45 -0000 1.22
52 @@ -1,7 +1,8 @@
53 -# Copyright 1999-2008 Gentoo Foundation
54 +# Copyright 1999-2009 Gentoo Foundation
55 # Distributed under the terms of the GNU General Public License v2
56 -# $Header: /var/cvsroot/gentoo-x86/games-puzzle/groundhog/groundhog-1.4.ebuild,v 1.21 2008/10/14 18:20:22 mr_bones_ Exp $
57 +# $Header: /var/cvsroot/gentoo-x86/games-puzzle/groundhog/groundhog-1.4.ebuild,v 1.22 2009/09/11 00:25:45 mr_bones_ Exp $
58
59 +EAPI=2
60 inherit eutils autotools games
61
62 DEB_VER="9"
63 @@ -15,15 +16,15 @@
64 KEYWORDS="amd64 ppc x86"
65 IUSE="nls"
66
67 -RDEPEND="=x11-libs/gtk+-2*
68 +RDEPEND="x11-libs/gtk+:2
69 nls? ( virtual/libintl )"
70 DEPEND="${RDEPEND}
71 dev-util/pkgconfig
72 nls? ( sys-devel/gettext )"
73
74 -src_unpack() {
75 - unpack ${A}
76 - epatch "${WORKDIR}"/groundhog_${PV}-${DEB_VER}.diff
77 +src_prepare() {
78 + cd "${WORKDIR}"
79 + epatch groundhog_${PV}-${DEB_VER}.diff
80 cd "${S}"
81 epatch $(sed -e 's:^:debian/patches/:' debian/patches/series)
82 AT_M4DIR="m4" eautoreconf
83 @@ -32,9 +33,12 @@
84 || die "sed failed"
85 }
86
87 -src_compile() {
88 +src_configure() {
89 egamesconf $(use_enable nls) || die
90 - emake CXXFLAGS="${CXXFLAGS}" || die "emake failed"
91 +}
92 +
93 +src_compile() {
94 + emake -j1 || die
95 }
96
97 src_install() {