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/gweled: ChangeLog gweled-0.9.1-r1.ebuild
Date: Wed, 04 Jun 2014 06:39:41
Message-Id: 20140604063934.A9B072004E@flycatcher.gentoo.org
1 tupone 14/06/04 06:39:34
2
3 Modified: ChangeLog
4 Added: gweled-0.9.1-r1.ebuild
5 Log:
6 Respect GAMES variables. Bug #494198
7
8 (Portage version: 2.2.8-r1/cvs/Linux x86_64, signed Manifest commit with key 0145142D)
9
10 Revision Changes Path
11 1.22 games-puzzle/gweled/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-puzzle/gweled/ChangeLog?rev=1.22&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-puzzle/gweled/ChangeLog?rev=1.22&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-puzzle/gweled/ChangeLog?r1=1.21&r2=1.22
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/games-puzzle/gweled/ChangeLog,v
20 retrieving revision 1.21
21 retrieving revision 1.22
22 diff -u -r1.21 -r1.22
23 --- ChangeLog 22 Jan 2013 20:10:30 -0000 1.21
24 +++ ChangeLog 4 Jun 2014 06:39:34 -0000 1.22
25 @@ -1,6 +1,12 @@
26 # ChangeLog for games-puzzle/gweled
27 -# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/games-puzzle/gweled/ChangeLog,v 1.21 2013/01/22 20:10:30 mr_bones_ Exp $
29 +# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
30 +# $Header: /var/cvsroot/gentoo-x86/games-puzzle/gweled/ChangeLog,v 1.22 2014/06/04 06:39:34 tupone Exp $
31 +
32 +*gweled-0.9.1-r1 (04 Jun 2014)
33 +
34 + 04 Jun 2014; Tupone Alfredo <tupone@g.o> +gweled-0.9.1-r1.ebuild,
35 + +files/gweled-0.9.1-gentoo.patch:
36 + Respect GAMES variables. Bug #494198 by Julian Ospald (hasufell)
37
38 22 Jan 2013; Michael Sterrett <mr_bones_@g.o> -gweled-0.7.ebuild:
39 old
40
41
42
43 1.1 games-puzzle/gweled/gweled-0.9.1-r1.ebuild
44
45 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-puzzle/gweled/gweled-0.9.1-r1.ebuild?rev=1.1&view=markup
46 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-puzzle/gweled/gweled-0.9.1-r1.ebuild?rev=1.1&content-type=text/plain
47
48 Index: gweled-0.9.1-r1.ebuild
49 ===================================================================
50 # Copyright 1999-2014 Gentoo Foundation
51 # Distributed under the terms of the GNU General Public License v2
52 # $Header: /var/cvsroot/gentoo-x86/games-puzzle/gweled/gweled-0.9.1-r1.ebuild,v 1.1 2014/06/04 06:39:34 tupone Exp $
53
54 EAPI=2
55 inherit flag-o-matic autotools games
56
57 DESCRIPTION="Bejeweled clone game"
58 HOMEPAGE="http://www.gweled.org/"
59 SRC_URI="http://launchpad.net/gweled/trunk/${PV}/+download/${P}.tar.gz"
60
61 LICENSE="GPL-2"
62 SLOT="0"
63 KEYWORDS="~amd64 ~ppc ~x86"
64 IUSE=""
65
66 RDEPEND="x11-libs/gtk+:2
67 media-libs/libmikmod
68 gnome-base/librsvg:2"
69 DEPEND="${RDEPEND}
70 virtual/pkgconfig"
71
72 src_prepare() {
73 epatch "${FILESDIR}"/${P}-gentoo.patch
74 eautoreconf
75 }
76
77 src_configure() {
78 filter-flags -fomit-frame-pointer
79 append-ldflags -Wl,--export-dynamic
80 egamesconf \
81 --disable-dependency-tracking \
82 --disable-setgid
83 }
84
85 src_install() {
86 emake DESTDIR="${D}" install || die
87 # FIXME: /var/lib is hard-coded. Need to patch this.
88 touch "${D}/var/games/gweled/gweled.timed.scores"
89 fperms 664 /var/lib/games/gweled.timed.scores
90 gamesowners -R "${D}/var/games/gweled"
91 dodoc AUTHORS NEWS
92 prepgamesdirs
93 }