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/zaz: ChangeLog zaz-0.3.3.ebuild
Date: Tue, 23 Feb 2010 00:22:51
Message-Id: E1NjiY3-0003nO-Vx@stork.gentoo.org
1 mr_bones_ 10/02/23 00:22:47
2
3 Modified: ChangeLog
4 Added: zaz-0.3.3.ebuild
5 Log:
6 version bump
7 (Portage version: 2.1.7.16/cvs/Linux i686)
8
9 Revision Changes Path
10 1.6 games-puzzle/zaz/ChangeLog
11
12 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/games-puzzle/zaz/ChangeLog?rev=1.6&view=markup
13 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/games-puzzle/zaz/ChangeLog?rev=1.6&content-type=text/plain
14 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/games-puzzle/zaz/ChangeLog?r1=1.5&r2=1.6
15
16 Index: ChangeLog
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/games-puzzle/zaz/ChangeLog,v
19 retrieving revision 1.5
20 retrieving revision 1.6
21 diff -u -r1.5 -r1.6
22 --- ChangeLog 16 Nov 2009 22:10:47 -0000 1.5
23 +++ ChangeLog 23 Feb 2010 00:22:47 -0000 1.6
24 @@ -1,6 +1,13 @@
25 # ChangeLog for games-puzzle/zaz
26 -# Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
27 -# $Header: /var/cvsroot/gentoo-x86/games-puzzle/zaz/ChangeLog,v 1.5 2009/11/16 22:10:47 maekke Exp $
28 +# Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
29 +# $Header: /var/cvsroot/gentoo-x86/games-puzzle/zaz/ChangeLog,v 1.6 2010/02/23 00:22:47 mr_bones_ Exp $
30 +
31 +*zaz-0.3.3 (23 Feb 2010)
32 +
33 + 23 Feb 2010; Michael Sterrett <mr_bones_@g.o>
34 + -files/zaz-0.2.9-build.patch, +zaz-0.3.3.ebuild,
35 + +files/zaz-0.3.3-build.patch:
36 + version bump
37
38 16 Nov 2009; Markus Meier <maekke@g.o> zaz-0.3.0.ebuild:
39 amd64/x86 stable, bug #292591
40
41
42
43 1.1 games-puzzle/zaz/zaz-0.3.3.ebuild
44
45 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/games-puzzle/zaz/zaz-0.3.3.ebuild?rev=1.1&view=markup
46 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/games-puzzle/zaz/zaz-0.3.3.ebuild?rev=1.1&content-type=text/plain
47
48 Index: zaz-0.3.3.ebuild
49 ===================================================================
50 # Copyright 1999-2010 Gentoo Foundation
51 # Distributed under the terms of the GNU General Public License v2
52 # $Header: /var/cvsroot/gentoo-x86/games-puzzle/zaz/zaz-0.3.3.ebuild,v 1.1 2010/02/23 00:22:47 mr_bones_ Exp $
53
54 EAPI=2
55 inherit autotools eutils games
56
57 DESCRIPTION="A puzzle game where the player has to arrange balls in triplets"
58 HOMEPAGE="http://sourceforge.net/projects/zaz/"
59 SRC_URI="mirror://sourceforge/zaz/${P}.tar.gz"
60
61 LICENSE="GPL-3 CCPL-Attribution-ShareAlike-3.0"
62 SLOT="0"
63 KEYWORDS="~amd64 ~x86"
64 IUSE="nls"
65
66 RDEPEND="virtual/opengl
67 virtual/glu
68 media-libs/libsdl[X,audio,video]
69 media-libs/sdl-image[png]
70 media-libs/libvorbis
71 media-libs/libtheora
72 media-libs/ftgl
73 virtual/libintl"
74 DEPEND="${RDEPEND}
75 dev-util/pkgconfig
76 nls? ( sys-devel/gettext )"
77
78 src_prepare() {
79 epatch "${FILESDIR}"/${P}-build.patch
80 eautoreconf
81 }
82
83 src_configure() {
84 egamesconf \
85 --disable-dependency-tracking \
86 --with-applicationdir=/usr/share/applications \
87 --with-icondir=/usr/share/pixmaps \
88 --localedir=/usr/share/locale \
89 $(use_enable nls)
90 }
91
92 src_install() {
93 emake DESTDIR="${D}" install || die "emake failed"
94 dodoc AUTHORS ChangeLog
95 prepgamesdirs
96 }