public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] proj/gamerlay:master commit in: games-engines/fife/
@ 2011-07-02  9:43 Bernhard Mallinger
  0 siblings, 0 replies; 6+ messages in thread
From: Bernhard Mallinger @ 2011-07-02  9:43 UTC (permalink / raw
  To: gentoo-commits

commit:     9f028ebde052d66cfed983298a5ac40b21fbfa62
Author:     totycro <totycro <AT> unknown-horizons <DOT> org>
AuthorDate: Sat Jul  2 09:43:49 2011 +0000
Commit:     Bernhard Mallinger <b.mallinger <AT> gmx <DOT> at>
CommitDate: Sat Jul  2 09:43:49 2011 +0000
URL:        http://git.overlays.gentoo.org/gitweb/?p=proj/gamerlay.git;a=commit;h=9f028ebd

Made building fife-0.3.2.2.ebuild work when boost-1.46 is installed

---
 games-engines/fife/fife-0.3.2.2.ebuild |    1 +
 1 files changed, 1 insertions(+), 0 deletions(-)

diff --git a/games-engines/fife/fife-0.3.2.2.ebuild b/games-engines/fife/fife-0.3.2.2.ebuild
index 789454b..2f97422 100644
--- a/games-engines/fife/fife-0.3.2.2.ebuild
+++ b/games-engines/fife/fife-0.3.2.2.ebuild
@@ -47,6 +47,7 @@ src_prepare() {
 SCONSOPTS="-j1"
 
 src_compile() {
+	export CXXFLAGS="$CXXFLAGS -DBOOST_FILESYSTEM_VERSION=2"
 	escons \
 		--python-prefix="${D}/$(python_get_sitedir)" \
 		--prefix="${D}/usr" \



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

* [gentoo-commits] proj/gamerlay:master commit in: games-engines/fife/
@ 2011-07-10 21:18 Bernhard Mallinger
  0 siblings, 0 replies; 6+ messages in thread
From: Bernhard Mallinger @ 2011-07-10 21:18 UTC (permalink / raw
  To: gentoo-commits

commit:     059eb6719249ceb0664d44ea3917ba7a289d7c32
Author:     totycro <totycro <AT> unknown-horizons <DOT> org>
AuthorDate: Sun Jul 10 21:17:58 2011 +0000
Commit:     Bernhard Mallinger <b.mallinger <AT> gmx <DOT> at>
CommitDate: Sun Jul 10 21:17:58 2011 +0000
URL:        http://git.overlays.gentoo.org/gitweb/?p=proj/gamerlay.git;a=commit;h=059eb671

Fixed game-engines/fife-0.3.2.2 configure when sdl-useflag is not set by default

---
 games-engines/fife/fife-0.3.2.2.ebuild |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/games-engines/fife/fife-0.3.2.2.ebuild b/games-engines/fife/fife-0.3.2.2.ebuild
index 2f97422..57901e5 100644
--- a/games-engines/fife/fife-0.3.2.2.ebuild
+++ b/games-engines/fife/fife-0.3.2.2.ebuild
@@ -31,7 +31,7 @@ RDEPEND="dev-libs/boost
 	sys-libs/zlib
 	x11-libs/libXcursor
 	x11-libs/libXext
-	dev-games/guichan
+	dev-games/guichan[sdl]
 	opengl? ( virtual/opengl virtual/glu )"
 DEPEND="${RDEPEND}
 	dev-lang/swig"



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

* [gentoo-commits] proj/gamerlay:master commit in: games-engines/fife/
@ 2012-03-20 20:24 Bernhard Mallinger
  0 siblings, 0 replies; 6+ messages in thread
From: Bernhard Mallinger @ 2012-03-20 20:24 UTC (permalink / raw
  To: gentoo-commits

commit:     7569f16a1fdffe3cf0cc3532be7d96c73a8cd286
Author:     totycro <totycro <AT> unknown-horizons <DOT> org>
AuthorDate: Tue Mar 20 20:24:15 2012 +0000
Commit:     Bernhard Mallinger <b.mallinger <AT> gmx <DOT> at>
CommitDate: Tue Mar 20 20:24:15 2012 +0000
URL:        http://git.overlays.gentoo.org/gitweb/?p=proj/gamerlay.git;a=commit;h=7569f16a

Drop opengl useflag for games-engines/fife
Compiling without it doesn't make any sense anymore due to misc developments.

---
 games-engines/fife/fife-0.3.2.2.ebuild  |   10 +++++-----
 games-engines/fife/fife-0.3.3-r2.ebuild |   10 +++++-----
 games-engines/fife/fife-9999.ebuild     |   14 +++++++-------
 3 files changed, 17 insertions(+), 17 deletions(-)

diff --git a/games-engines/fife/fife-0.3.2.2.ebuild b/games-engines/fife/fife-0.3.2.2.ebuild
index 57901e5..baf05a7 100644
--- a/games-engines/fife/fife-0.3.2.2.ebuild
+++ b/games-engines/fife/fife-0.3.2.2.ebuild
@@ -18,7 +18,7 @@ LICENSE="GPL-2"
 
 KEYWORDS="~amd64 ~x86"
 SLOT="0"
-IUSE="opengl debug profile"
+IUSE="debug profile"
 
 RDEPEND="dev-libs/boost
 	dev-python/pyyaml
@@ -31,8 +31,9 @@ RDEPEND="dev-libs/boost
 	sys-libs/zlib
 	x11-libs/libXcursor
 	x11-libs/libXext
-	dev-games/guichan[sdl]
-	opengl? ( virtual/opengl virtual/glu )"
+	dev-games/guichan[sdl,opengl]
+	virtual/opengl
+	virtual/glu"
 DEPEND="${RDEPEND}
 	dev-lang/swig"
 
@@ -43,7 +44,7 @@ src_prepare() {
 	epatch "${FILESDIR}/${P}-unbundle-libpng.patch"
 }
 
-# Can compiles only with one thread
+# Compiles only with one thread
 SCONSOPTS="-j1"
 
 src_compile() {
@@ -53,7 +54,6 @@ src_compile() {
 		--prefix="${D}/usr" \
 		$(use_scons debug) \
 		$(use_scons debug log log) \
-		$(use_scons opengl) \
 		$(use_scons profile) \
 		|| die "scons failed"
 }

diff --git a/games-engines/fife/fife-0.3.3-r2.ebuild b/games-engines/fife/fife-0.3.3-r2.ebuild
index 97ca694..f5b3b59 100644
--- a/games-engines/fife/fife-0.3.3-r2.ebuild
+++ b/games-engines/fife/fife-0.3.3-r2.ebuild
@@ -18,7 +18,7 @@ LICENSE="GPL-2"
 
 KEYWORDS="~amd64 ~x86"
 SLOT="0"
-IUSE="opengl debug profile"
+IUSE="debug profile"
 
 RDEPEND="dev-libs/boost
 	dev-python/pyyaml
@@ -31,8 +31,9 @@ RDEPEND="dev-libs/boost
 	sys-libs/zlib
 	x11-libs/libXcursor
 	x11-libs/libXext
-	dev-games/guichan[sdl]
-	opengl? ( virtual/opengl virtual/glu )"
+	dev-games/guichan[sdl,opengl]
+	virtual/opengl
+	virtual/glu"
 DEPEND="${RDEPEND}
 	dev-lang/swig"
 
@@ -43,7 +44,7 @@ src_prepare() {
 	epatch "${FILESDIR}/${P}-unbundle-libpng.patch"
 }
 
-# Can compile only with one thread
+# Compiles only with one thread
 SCONSOPTS="-j1"
 
 src_compile() {
@@ -53,7 +54,6 @@ src_compile() {
 		--prefix="${D}/usr" \
 		$(use_scons debug) \
 		$(use_scons debug log log) \
-		$(use_scons opengl) \
 		$(use_scons profile) \
 		|| die "scons failed"
 }

diff --git a/games-engines/fife/fife-9999.ebuild b/games-engines/fife/fife-9999.ebuild
index e5b374a..6f40beb 100644
--- a/games-engines/fife/fife-9999.ebuild
+++ b/games-engines/fife/fife-9999.ebuild
@@ -16,7 +16,7 @@ ESVN_REPO_URI="http://fife.svn.cvsdude.com/engine/trunk"
 LICENSE="LGPL-2"
 
 SLOT="0"
-IUSE="opengl debug profile"
+IUSE="debug profile"
 
 RDEPEND="dev-libs/boost
 	dev-python/pyyaml
@@ -28,8 +28,9 @@ RDEPEND="dev-libs/boost
 	media-libs/openal
 	sys-libs/zlib
 	x11-libs/libXcursor
-	opengl? ( virtual/opengl virtual/glu dev-games/guichan[opengl] )
-	dev-games/guichan[sdl]
+	virtual/opengl
+	virtual/glu
+	dev-games/guichan[sdl,opengl]
 	media-libs/libpng
 	x11-libs/libXext
 "
@@ -45,16 +46,15 @@ src_prepare() {
 	epatch "${FILESDIR}/${PN}-0.3.1-unbundle-libpng.patch"
 }
 
+# Compiles only with one thread
+SCONSOPTS="-j1"
+
 src_compile() {
 	local SCONS_ARGS=""
 	if use debug; then
 		SCONS_ARGS="$SCONS_ARGS --enable-debug"
 	fi
 
-	if ! use opengl; then
-		SCONS_ARGS="$SCONS_ARGS --disable-opengl"
-	fi
-
 	if use profile; then
 		SCONS_ARGS="$SCONS_ARGS --enable-profile"
 	fi



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

* [gentoo-commits] proj/gamerlay:master commit in: games-engines/fife/
@ 2012-04-21 21:13 Bernhard Mallinger
  0 siblings, 0 replies; 6+ messages in thread
From: Bernhard Mallinger @ 2012-04-21 21:13 UTC (permalink / raw
  To: gentoo-commits

commit:     1f3dbebf5f1107ee8a677fc14786772d2d7ad1c0
Author:     totycro <totycro <AT> unknown-horizons <DOT> org>
AuthorDate: Sat Apr 21 21:13:41 2012 +0000
Commit:     Bernhard Mallinger <b.mallinger <AT> gmx <DOT> at>
CommitDate: Sat Apr 21 21:13:41 2012 +0000
URL:        http://git.overlays.gentoo.org/gitweb/?p=proj/gamerlay.git;a=commit;h=1f3dbebf

Added ebuild for new fife release (0.3.3-r3)

---
 games-engines/fife/fife-0.3.3-r3.ebuild |   62 +++++++++++++++++++++++++++++++
 1 files changed, 62 insertions(+), 0 deletions(-)

diff --git a/games-engines/fife/fife-0.3.3-r3.ebuild b/games-engines/fife/fife-0.3.3-r3.ebuild
new file mode 100644
index 0000000..94e6450
--- /dev/null
+++ b/games-engines/fife/fife-0.3.3-r3.ebuild
@@ -0,0 +1,62 @@
+# Copyright 1999-2011 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Header: $
+
+EAPI="3"
+
+PYTHON_DEPEND="2:2.7"
+
+inherit eutils python scons-utils versionator
+
+DESCRIPTION="Flexible Isometric Free Engine, 2D"
+HOMEPAGE="http://fifengine.de"
+SRC_URI="http://downloads.sourceforge.net/project/${PN}/active/src/${PN}_${PV}${PR}.tar.gz"
+
+LICENSE="GPL-2"
+
+KEYWORDS="~amd64 ~x86"
+SLOT="0"
+IUSE="debug profile"
+
+RDEPEND="dev-libs/boost
+	dev-python/pyyaml
+	media-libs/libsdl
+	media-libs/sdl-ttf
+	media-libs/sdl-image[png]
+	media-libs/libvorbis
+	media-libs/libogg
+	media-libs/openal
+	sys-libs/zlib
+	x11-libs/libXcursor
+	x11-libs/libXext
+	dev-games/guichan[sdl,opengl]
+	virtual/opengl
+	virtual/glu"
+DEPEND="${RDEPEND}
+	dev-lang/swig"
+
+S=${WORKDIR}/${PN}_${PV}${PR}
+
+src_prepare() {
+	rm -r ext #delete bundled libs
+	epatch "${FILESDIR}/${P}-unbundle-libpng.patch"
+}
+
+# Compiles only with one thread
+SCONSOPTS="-j1"
+
+src_compile() {
+	export CXXFLAGS="$CXXFLAGS -DBOOST_FILESYSTEM_VERSION=2"
+	escons \
+		--python-prefix="${D}/$(python_get_sitedir)" \
+		--prefix="${D}/usr" \
+		$(use_scons debug) \
+		$(use_scons debug log log) \
+		$(use_scons profile) \
+		|| die "scons failed"
+}
+
+src_install() {
+	escons install-python --python-prefix="${D}/$(python_get_sitedir)" \
+		--prefix="${D}/usr" || die "install failed"
+}



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

* [gentoo-commits] proj/gamerlay:master commit in: games-engines/fife/
@ 2013-01-02 18:50 Bernhard Mallinger
  0 siblings, 0 replies; 6+ messages in thread
From: Bernhard Mallinger @ 2013-01-02 18:50 UTC (permalink / raw
  To: gentoo-commits

commit:     02f0c1fc7a7aa1bd10a7189f2e11468edd2e9ee0
Author:     totycro <totycro <AT> unknown-horizons <DOT> org>
AuthorDate: Wed Jan  2 18:48:06 2013 +0000
Commit:     Bernhard Mallinger <b.mallinger <AT> gmx <DOT> at>
CommitDate: Wed Jan  2 18:48:06 2013 +0000
URL:        http://git.overlays.gentoo.org/gitweb/?p=proj/gamerlay.git;a=commit;h=02f0c1fc

Drop BOOST_FILESYSTEM_VERSION-define as it was only necessary during the transition from 2 to 3

---
 games-engines/fife/fife-0.3.2.2.ebuild  |    1 -
 games-engines/fife/fife-0.3.3-r2.ebuild |    1 -
 games-engines/fife/fife-0.3.3-r3.ebuild |    1 -
 3 files changed, 0 insertions(+), 3 deletions(-)

diff --git a/games-engines/fife/fife-0.3.2.2.ebuild b/games-engines/fife/fife-0.3.2.2.ebuild
index baf05a7..f9671ec 100644
--- a/games-engines/fife/fife-0.3.2.2.ebuild
+++ b/games-engines/fife/fife-0.3.2.2.ebuild
@@ -48,7 +48,6 @@ src_prepare() {
 SCONSOPTS="-j1"
 
 src_compile() {
-	export CXXFLAGS="$CXXFLAGS -DBOOST_FILESYSTEM_VERSION=2"
 	escons \
 		--python-prefix="${D}/$(python_get_sitedir)" \
 		--prefix="${D}/usr" \

diff --git a/games-engines/fife/fife-0.3.3-r2.ebuild b/games-engines/fife/fife-0.3.3-r2.ebuild
index f5b3b59..2edf4f7 100644
--- a/games-engines/fife/fife-0.3.3-r2.ebuild
+++ b/games-engines/fife/fife-0.3.3-r2.ebuild
@@ -48,7 +48,6 @@ src_prepare() {
 SCONSOPTS="-j1"
 
 src_compile() {
-	export CXXFLAGS="$CXXFLAGS -DBOOST_FILESYSTEM_VERSION=2"
 	escons \
 		--python-prefix="${D}/$(python_get_sitedir)" \
 		--prefix="${D}/usr" \

diff --git a/games-engines/fife/fife-0.3.3-r3.ebuild b/games-engines/fife/fife-0.3.3-r3.ebuild
index 94e6450..b69ab0b 100644
--- a/games-engines/fife/fife-0.3.3-r3.ebuild
+++ b/games-engines/fife/fife-0.3.3-r3.ebuild
@@ -46,7 +46,6 @@ src_prepare() {
 SCONSOPTS="-j1"
 
 src_compile() {
-	export CXXFLAGS="$CXXFLAGS -DBOOST_FILESYSTEM_VERSION=2"
 	escons \
 		--python-prefix="${D}/$(python_get_sitedir)" \
 		--prefix="${D}/usr" \


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

* [gentoo-commits] proj/gamerlay:master commit in: games-engines/fife/
@ 2014-06-04 10:36 Mario Kicherer
  0 siblings, 0 replies; 6+ messages in thread
From: Mario Kicherer @ 2014-06-04 10:36 UTC (permalink / raw
  To: gentoo-commits

commit:     9ff00458f44367601778b5646c6e5ef289615c52
Author:     Mario Kicherer <dev <AT> kicherer <DOT> org>
AuthorDate: Wed Jun  4 10:36:45 2014 +0000
Commit:     Mario Kicherer <dev <AT> kicherer <DOT> org>
CommitDate: Wed Jun  4 10:36:45 2014 +0000
URL:        http://git.overlays.gentoo.org/gitweb/?p=proj/gamerlay.git;a=commit;h=9ff00458

[games-engines/fife] remove unused qt4 useflag

---
 games-engines/fife/fife-0.3.5.ebuild | 5 ++---
 1 file changed, 2 insertions(+), 3 deletions(-)

diff --git a/games-engines/fife/fife-0.3.5.ebuild b/games-engines/fife/fife-0.3.5.ebuild
index e19ac28..c89cb3f 100644
--- a/games-engines/fife/fife-0.3.5.ebuild
+++ b/games-engines/fife/fife-0.3.5.ebuild
@@ -17,7 +17,7 @@ LICENSE="GPL-2"
 
 KEYWORDS=""
 SLOT="0"
-IUSE="debug profile qt4"
+IUSE="debug profile"
 
 RDEPEND=">=dev-libs/boost-1.33.1
 	dev-python/pyyaml
@@ -32,8 +32,7 @@ RDEPEND=">=dev-libs/boost-1.33.1
 	x11-libs/libXext
 	dev-games/guichan[sdl,opengl]
 	virtual/opengl
-	virtual/glu
-	qt4? ( dev-qt/qtgui:4 )"
+	virtual/glu"
 DEPEND="${RDEPEND}
 	>=dev-lang/swig-1.3.40"
 


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

end of thread, other threads:[~2014-06-04 10:36 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2011-07-10 21:18 [gentoo-commits] proj/gamerlay:master commit in: games-engines/fife/ Bernhard Mallinger
  -- strict thread matches above, loose matches on Subject: below --
2014-06-04 10:36 Mario Kicherer
2013-01-02 18:50 Bernhard Mallinger
2012-04-21 21:13 Bernhard Mallinger
2012-03-20 20:24 Bernhard Mallinger
2011-07-02  9:43 Bernhard Mallinger

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