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: metadata.xml ChangeLog zaz-0.2.8.ebuild
Date: Wed, 26 Aug 2009 20:32:11
Message-Id: E1MgBOu-0007Ze-0S@stork.gentoo.org
1 mr_bones_ 09/08/26 05:50:28
2
3 Added: metadata.xml ChangeLog zaz-0.2.8.ebuild
4 Log:
5 Initial commit (bug #282349)
6 (Portage version: 2.1.6.13/cvs/Linux i686)
7
8 Revision Changes Path
9 1.1 games-puzzle/zaz/metadata.xml
10
11 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/games-puzzle/zaz/metadata.xml?rev=1.1&view=markup
12 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/games-puzzle/zaz/metadata.xml?rev=1.1&content-type=text/plain
13
14 Index: metadata.xml
15 ===================================================================
16 <?xml version="1.0" encoding="UTF-8"?>
17 <!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
18 <pkgmetadata>
19 <herd>games</herd>
20 </pkgmetadata>
21
22
23
24 1.1 games-puzzle/zaz/ChangeLog
25
26 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/games-puzzle/zaz/ChangeLog?rev=1.1&view=markup
27 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/games-puzzle/zaz/ChangeLog?rev=1.1&content-type=text/plain
28
29 Index: ChangeLog
30 ===================================================================
31 # ChangeLog for games-puzzle/zaz
32 # Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
33 # $Header: /var/cvsroot/gentoo-x86/games-puzzle/zaz/ChangeLog,v 1.1 2009/08/26 05:50:27 mr_bones_ Exp $
34
35 *zaz-0.2.8 (26 Aug 2009)
36
37 26 Aug 2009; Michael Sterrett <mr_bones_@g.o> +zaz-0.2.8.ebuild,
38 +files/zaz-0.2.8-build.patch, +metadata.xml:
39 Initial commit (bug #282349)
40
41
42
43
44 1.1 games-puzzle/zaz/zaz-0.2.8.ebuild
45
46 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/games-puzzle/zaz/zaz-0.2.8.ebuild?rev=1.1&view=markup
47 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/games-puzzle/zaz/zaz-0.2.8.ebuild?rev=1.1&content-type=text/plain
48
49 Index: zaz-0.2.8.ebuild
50 ===================================================================
51 # Copyright 1999-2009 Gentoo Foundation
52 # Distributed under the terms of the GNU General Public License v2
53 # $Header: /var/cvsroot/gentoo-x86/games-puzzle/zaz/zaz-0.2.8.ebuild,v 1.1 2009/08/26 05:50:27 mr_bones_ Exp $
54
55 EAPI=2
56 inherit autotools eutils games
57
58 DESCRIPTION="A puzzle game where the player has to arrange balls in triplets"
59 HOMEPAGE="http://sourceforge.net/projects/zaz/"
60 SRC_URI="mirror://sourceforge/zaz/${P}.tar.gz"
61
62 LICENSE="GPL-3"
63 SLOT="0"
64 KEYWORDS="~x86"
65 IUSE=""
66
67 DEPEND="virtual/opengl
68 virtual/glu
69 media-libs/libsdl[X,audio,video]
70 media-libs/sdl-image[png]
71 media-libs/libvorbis
72 media-libs/libtheora
73 media-libs/ftgl"
74
75 src_prepare() {
76 epatch "${FILESDIR}"/${P}-build.patch
77 eautoreconf
78 }
79
80 src_install() {
81 emake DESTDIR="${D}" install || die "emake failed"
82 dodoc AUTHORS ChangeLog
83 prepgamesdirs
84 }