public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] gentoo-x86 commit in games-puzzle/zaz: ChangeLog zaz-0.7.0.ebuild
@ 2010-05-25 14:51 Michael Sterrett (mr_bones_)
  0 siblings, 0 replies; 3+ messages in thread
From: Michael Sterrett (mr_bones_) @ 2010-05-25 14:51 UTC (permalink / raw
  To: gentoo-commits

mr_bones_    10/05/25 14:51:27

  Modified:             ChangeLog
  Added:                zaz-0.7.0.ebuild
  Log:
  version bump (bug #319527)
  (Portage version: 2.1.8.3/cvs/Linux i686)

Revision  Changes    Path
1.9                  games-puzzle/zaz/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-puzzle/zaz/ChangeLog?rev=1.9&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-puzzle/zaz/ChangeLog?rev=1.9&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-puzzle/zaz/ChangeLog?r1=1.8&r2=1.9

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/games-puzzle/zaz/ChangeLog,v
retrieving revision 1.8
retrieving revision 1.9
diff -u -r1.8 -r1.9
--- ChangeLog	23 May 2010 19:47:14 -0000	1.8
+++ ChangeLog	25 May 2010 14:51:27 -0000	1.9
@@ -1,6 +1,12 @@
 # ChangeLog for games-puzzle/zaz
 # Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/games-puzzle/zaz/ChangeLog,v 1.8 2010/05/23 19:47:14 pacho Exp $
+# $Header: /var/cvsroot/gentoo-x86/games-puzzle/zaz/ChangeLog,v 1.9 2010/05/25 14:51:27 mr_bones_ Exp $
+
+*zaz-0.7.0 (25 May 2010)
+
+  25 May 2010; Michael Sterrett <mr_bones_@gentoo.org> +zaz-0.7.0.ebuild,
+  +files/zaz-0.7.0-build.patch:
+  version bump (bug #319527)
 
   23 May 2010; Pacho Ramos <pacho@gentoo.org> zaz-0.3.3.ebuild:
   stable amd64, bug 311261



1.1                  games-puzzle/zaz/zaz-0.7.0.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-puzzle/zaz/zaz-0.7.0.ebuild?rev=1.1&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-puzzle/zaz/zaz-0.7.0.ebuild?rev=1.1&content-type=text/plain

Index: zaz-0.7.0.ebuild
===================================================================
# Copyright 1999-2010 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/games-puzzle/zaz/zaz-0.7.0.ebuild,v 1.1 2010/05/25 14:51:27 mr_bones_ Exp $

EAPI=2
inherit autotools eutils games

DESCRIPTION="A puzzle game where the player has to arrange balls in triplets"
HOMEPAGE="http://sourceforge.net/projects/zaz/"
SRC_URI="mirror://sourceforge/zaz/${P}.tar.bz2"

LICENSE="GPL-3 CCPL-Attribution-ShareAlike-3.0"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE="nls"

RDEPEND="virtual/opengl
	virtual/glu
	media-libs/libsdl[X,audio,video]
	media-libs/sdl-image[jpeg,png]
	media-libs/libvorbis
	media-libs/libtheora
	media-libs/ftgl
	virtual/libintl"
DEPEND="${RDEPEND}
	dev-util/pkgconfig
	nls? ( sys-devel/gettext )"

src_prepare() {
	epatch "${FILESDIR}"/${P}-build.patch
	eautoreconf
}

src_configure() {
	egamesconf \
		--disable-dependency-tracking \
		--with-applicationdir=/usr/share/applications \
		--with-icondir=/usr/share/pixmaps \
		--localedir=/usr/share/locale \
		$(use_enable nls)
}

src_install() {
	emake DESTDIR="${D}" install || die "emake failed"
	dodoc AUTHORS ChangeLog
	prepgamesdirs
}






^ permalink raw reply	[flat|nested] 3+ messages in thread

* [gentoo-commits] gentoo-x86 commit in games-puzzle/zaz: ChangeLog zaz-0.7.0.ebuild
@ 2010-06-26 18:12 Christoph Mende (angelos)
  0 siblings, 0 replies; 3+ messages in thread
From: Christoph Mende (angelos) @ 2010-06-26 18:12 UTC (permalink / raw
  To: gentoo-commits

angelos     10/06/26 18:12:49

  Modified:             ChangeLog zaz-0.7.0.ebuild
  Log:
  Stable on amd64 wrt bug #325367
  (Portage version: 2.1.8.3/cvs/Linux x86_64)

Revision  Changes    Path
1.10                 games-puzzle/zaz/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-puzzle/zaz/ChangeLog?rev=1.10&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-puzzle/zaz/ChangeLog?rev=1.10&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-puzzle/zaz/ChangeLog?r1=1.9&r2=1.10

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/games-puzzle/zaz/ChangeLog,v
retrieving revision 1.9
retrieving revision 1.10
diff -u -r1.9 -r1.10
--- ChangeLog	25 May 2010 14:51:27 -0000	1.9
+++ ChangeLog	26 Jun 2010 18:12:49 -0000	1.10
@@ -1,6 +1,9 @@
 # ChangeLog for games-puzzle/zaz
 # Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/games-puzzle/zaz/ChangeLog,v 1.9 2010/05/25 14:51:27 mr_bones_ Exp $
+# $Header: /var/cvsroot/gentoo-x86/games-puzzle/zaz/ChangeLog,v 1.10 2010/06/26 18:12:49 angelos Exp $
+
+  26 Jun 2010; Christoph Mende <angelos@gentoo.org> zaz-0.7.0.ebuild:
+  Stable on amd64 wrt bug #325367
 
 *zaz-0.7.0 (25 May 2010)
 



1.2                  games-puzzle/zaz/zaz-0.7.0.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-puzzle/zaz/zaz-0.7.0.ebuild?rev=1.2&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-puzzle/zaz/zaz-0.7.0.ebuild?rev=1.2&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-puzzle/zaz/zaz-0.7.0.ebuild?r1=1.1&r2=1.2

Index: zaz-0.7.0.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/games-puzzle/zaz/zaz-0.7.0.ebuild,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- zaz-0.7.0.ebuild	25 May 2010 14:51:27 -0000	1.1
+++ zaz-0.7.0.ebuild	26 Jun 2010 18:12:49 -0000	1.2
@@ -1,6 +1,6 @@
 # Copyright 1999-2010 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/games-puzzle/zaz/zaz-0.7.0.ebuild,v 1.1 2010/05/25 14:51:27 mr_bones_ Exp $
+# $Header: /var/cvsroot/gentoo-x86/games-puzzle/zaz/zaz-0.7.0.ebuild,v 1.2 2010/06/26 18:12:49 angelos Exp $
 
 EAPI=2
 inherit autotools eutils games
@@ -11,7 +11,7 @@
 
 LICENSE="GPL-3 CCPL-Attribution-ShareAlike-3.0"
 SLOT="0"
-KEYWORDS="~amd64 ~x86"
+KEYWORDS="amd64 ~x86"
 IUSE="nls"
 
 RDEPEND="virtual/opengl






^ permalink raw reply	[flat|nested] 3+ messages in thread

* [gentoo-commits] gentoo-x86 commit in games-puzzle/zaz: ChangeLog zaz-0.7.0.ebuild
@ 2010-07-11 12:34 Christian Faulhammer (fauli)
  0 siblings, 0 replies; 3+ messages in thread
From: Christian Faulhammer (fauli) @ 2010-07-11 12:34 UTC (permalink / raw
  To: gentoo-commits

fauli       10/07/11 12:34:33

  Modified:             ChangeLog zaz-0.7.0.ebuild
  Log:
  stable x86, bug 325367
  (Portage version: 2.1.8.3/cvs/Linux i686)

Revision  Changes    Path
1.11                 games-puzzle/zaz/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-puzzle/zaz/ChangeLog?rev=1.11&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-puzzle/zaz/ChangeLog?rev=1.11&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-puzzle/zaz/ChangeLog?r1=1.10&r2=1.11

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/games-puzzle/zaz/ChangeLog,v
retrieving revision 1.10
retrieving revision 1.11
diff -u -r1.10 -r1.11
--- ChangeLog	26 Jun 2010 18:12:49 -0000	1.10
+++ ChangeLog	11 Jul 2010 12:34:33 -0000	1.11
@@ -1,6 +1,9 @@
 # ChangeLog for games-puzzle/zaz
 # Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/games-puzzle/zaz/ChangeLog,v 1.10 2010/06/26 18:12:49 angelos Exp $
+# $Header: /var/cvsroot/gentoo-x86/games-puzzle/zaz/ChangeLog,v 1.11 2010/07/11 12:34:33 fauli Exp $
+
+  11 Jul 2010; Christian Faulhammer <fauli@gentoo.org> zaz-0.7.0.ebuild:
+  stable x86, bug 325367
 
   26 Jun 2010; Christoph Mende <angelos@gentoo.org> zaz-0.7.0.ebuild:
   Stable on amd64 wrt bug #325367



1.3                  games-puzzle/zaz/zaz-0.7.0.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-puzzle/zaz/zaz-0.7.0.ebuild?rev=1.3&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-puzzle/zaz/zaz-0.7.0.ebuild?rev=1.3&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-puzzle/zaz/zaz-0.7.0.ebuild?r1=1.2&r2=1.3

Index: zaz-0.7.0.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/games-puzzle/zaz/zaz-0.7.0.ebuild,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- zaz-0.7.0.ebuild	26 Jun 2010 18:12:49 -0000	1.2
+++ zaz-0.7.0.ebuild	11 Jul 2010 12:34:33 -0000	1.3
@@ -1,6 +1,6 @@
 # Copyright 1999-2010 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/games-puzzle/zaz/zaz-0.7.0.ebuild,v 1.2 2010/06/26 18:12:49 angelos Exp $
+# $Header: /var/cvsroot/gentoo-x86/games-puzzle/zaz/zaz-0.7.0.ebuild,v 1.3 2010/07/11 12:34:33 fauli Exp $
 
 EAPI=2
 inherit autotools eutils games
@@ -11,7 +11,7 @@
 
 LICENSE="GPL-3 CCPL-Attribution-ShareAlike-3.0"
 SLOT="0"
-KEYWORDS="amd64 ~x86"
+KEYWORDS="amd64 x86"
 IUSE="nls"
 
 RDEPEND="virtual/opengl






^ permalink raw reply	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2010-07-11 12:34 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2010-06-26 18:12 [gentoo-commits] gentoo-x86 commit in games-puzzle/zaz: ChangeLog zaz-0.7.0.ebuild Christoph Mende (angelos)
  -- strict thread matches above, loose matches on Subject: below --
2010-07-11 12:34 Christian Faulhammer (fauli)
2010-05-25 14:51 Michael Sterrett (mr_bones_)

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox