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