public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] gentoo-x86 commit in games-strategy/megaglest: megaglest-3.6.0.3.ebuild ChangeLog
@ 2012-09-08 21:49 Julian Ospald (hasufell)
  0 siblings, 0 replies; 5+ messages in thread
From: Julian Ospald (hasufell) @ 2012-09-08 21:49 UTC (permalink / raw
  To: gentoo-commits

hasufell    12/09/08 21:49:44

  Modified:             megaglest-3.6.0.3.ebuild ChangeLog
  Log:
  fix various compilation issues thanks to Arfrever
  
  (Portage version: 2.2.0_alpha124/cvs/Linux x86_64)

Revision  Changes    Path
1.5                  games-strategy/megaglest/megaglest-3.6.0.3.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-strategy/megaglest/megaglest-3.6.0.3.ebuild?rev=1.5&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-strategy/megaglest/megaglest-3.6.0.3.ebuild?rev=1.5&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-strategy/megaglest/megaglest-3.6.0.3.ebuild?r1=1.4&r2=1.5

Index: megaglest-3.6.0.3.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/games-strategy/megaglest/megaglest-3.6.0.3.ebuild,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -r1.4 -r1.5
--- megaglest-3.6.0.3.ebuild	7 Sep 2012 20:03:40 -0000	1.4
+++ megaglest-3.6.0.3.ebuild	8 Sep 2012 21:49:44 -0000	1.5
@@ -1,9 +1,10 @@
 # Copyright 1999-2012 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/games-strategy/megaglest/megaglest-3.6.0.3.ebuild,v 1.4 2012/09/07 20:03:40 hasufell Exp $
+# $Header: /var/cvsroot/gentoo-x86/games-strategy/megaglest/megaglest-3.6.0.3.ebuild,v 1.5 2012/09/08 21:49:44 hasufell Exp $
 
 EAPI=4
-inherit eutils flag-o-matic cmake-utils wxwidgets gnome2-utils games
+VIRTUALX_REQUIRED="manual"
+inherit eutils flag-o-matic cmake-utils virtualx wxwidgets gnome2-utils games
 
 DESCRIPTION="Cross-platform 3D realtime strategy game"
 HOMEPAGE="http://www.megaglest.org/"
@@ -23,6 +24,7 @@
 	media-libs/libvorbis
 	media-libs/openal
 	net-libs/gnutls
+	>=net-libs/libircclient-1.6-r1
 	sys-libs/zlib
 	virtual/opengl
 	virtual/glu
@@ -42,9 +44,10 @@
 		ftgl? ( media-libs/ftgl )
 	)"
 DEPEND="${RDEPEND}
-	net-libs/libircclient
 	sys-apps/help2man
 	virtual/pkgconfig
+	editor? ( ${VIRTUALX_DEPEND} )
+	model-viewer? ( ${VIRTUALX_DEPEND} )
 	static? (
 		dev-libs/xerces-c[static-libs]
 		media-libs/glew[static-libs]
@@ -64,6 +67,13 @@
 	fi
 
 	epatch "${FILESDIR}"/${P}-{static-build,build,as-needed}.patch
+
+	# Workaround for glew >=1.9.0
+	# https://sourceforge.net/tracker/?func=detail&aid=3565658&group_id=300350&atid=1266776
+	sed \
+		-e "/<GL\/glew.h>/a #undef GL_TYPE" \
+		-i source/shared_lib/include/graphics/freetype-gl/vertex-buffer.h \
+		|| die "fixing vertex-buffer.h for glew >=1.9.0 failed"
 }
 
 src_configure() {
@@ -107,7 +117,11 @@
 }
 
 src_compile() {
-	cmake-utils_src_compile
+	if use editor || use model-viewer; then
+		VIRTUALX_COMMAND="cmake-utils_src_compile" virtualmake
+	else
+		cmake-utils_src_compile
+	fi
 }
 
 src_install() {



1.5                  games-strategy/megaglest/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-strategy/megaglest/ChangeLog?rev=1.5&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-strategy/megaglest/ChangeLog?rev=1.5&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-strategy/megaglest/ChangeLog?r1=1.4&r2=1.5

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/games-strategy/megaglest/ChangeLog,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -r1.4 -r1.5
--- ChangeLog	7 Sep 2012 20:03:40 -0000	1.4
+++ ChangeLog	8 Sep 2012 21:49:44 -0000	1.5
@@ -1,6 +1,9 @@
 # ChangeLog for games-strategy/megaglest
 # Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/games-strategy/megaglest/ChangeLog,v 1.4 2012/09/07 20:03:40 hasufell Exp $
+# $Header: /var/cvsroot/gentoo-x86/games-strategy/megaglest/ChangeLog,v 1.5 2012/09/08 21:49:44 hasufell Exp $
+
+  08 Sep 2012; Julian Ospald <hasufell@gentoo.org> megaglest-3.6.0.3.ebuild:
+  fix various compilation issues thanks to Arfrever
 
   07 Sep 2012; Julian Ospald <hasufell@gentoo.org> megaglest-3.6.0.3.ebuild:
   fix dependencies





^ permalink raw reply	[flat|nested] 5+ messages in thread
* [gentoo-commits] gentoo-x86 commit in games-strategy/megaglest: megaglest-3.6.0.3.ebuild ChangeLog
@ 2012-10-29 20:14 Julian Ospald (hasufell)
  0 siblings, 0 replies; 5+ messages in thread
From: Julian Ospald (hasufell) @ 2012-10-29 20:14 UTC (permalink / raw
  To: gentoo-commits

hasufell    12/10/29 20:14:48

  Modified:             megaglest-3.6.0.3.ebuild ChangeLog
  Log:
  fix compilation for gcc-4.7 wrt #440134
  
  (Portage version: 2.2.0_alpha142/cvs/Linux x86_64, signed Manifest commit with key E73C35B3)

Revision  Changes    Path
1.7                  games-strategy/megaglest/megaglest-3.6.0.3.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-strategy/megaglest/megaglest-3.6.0.3.ebuild?rev=1.7&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-strategy/megaglest/megaglest-3.6.0.3.ebuild?rev=1.7&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-strategy/megaglest/megaglest-3.6.0.3.ebuild?r1=1.6&r2=1.7

Index: megaglest-3.6.0.3.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/games-strategy/megaglest/megaglest-3.6.0.3.ebuild,v
retrieving revision 1.6
retrieving revision 1.7
diff -u -r1.6 -r1.7
--- megaglest-3.6.0.3.ebuild	17 Sep 2012 22:30:05 -0000	1.6
+++ megaglest-3.6.0.3.ebuild	29 Oct 2012 20:14:48 -0000	1.7
@@ -1,6 +1,6 @@
 # Copyright 1999-2012 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/games-strategy/megaglest/megaglest-3.6.0.3.ebuild,v 1.6 2012/09/17 22:30:05 hasufell Exp $
+# $Header: /var/cvsroot/gentoo-x86/games-strategy/megaglest/megaglest-3.6.0.3.ebuild,v 1.7 2012/10/29 20:14:48 hasufell Exp $
 
 EAPI=4
 VIRTUALX_REQUIRED="manual"
@@ -66,7 +66,7 @@
 		need-wxwidgets unicode
 	fi
 
-	epatch "${FILESDIR}"/${P}-{static-build,build,as-needed}.patch
+	epatch "${FILESDIR}"/${P}-{static-build,build,as-needed,gcc-4.7}.patch
 
 	# Workaround for glew >=1.9.0
 	# https://sourceforge.net/tracker/?func=detail&aid=3565658&group_id=300350&atid=1266776



1.7                  games-strategy/megaglest/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-strategy/megaglest/ChangeLog?rev=1.7&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-strategy/megaglest/ChangeLog?rev=1.7&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-strategy/megaglest/ChangeLog?r1=1.6&r2=1.7

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/games-strategy/megaglest/ChangeLog,v
retrieving revision 1.6
retrieving revision 1.7
diff -u -r1.6 -r1.7
--- ChangeLog	17 Sep 2012 22:30:05 -0000	1.6
+++ ChangeLog	29 Oct 2012 20:14:48 -0000	1.7
@@ -1,6 +1,10 @@
 # ChangeLog for games-strategy/megaglest
 # Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/games-strategy/megaglest/ChangeLog,v 1.6 2012/09/17 22:30:05 hasufell Exp $
+# $Header: /var/cvsroot/gentoo-x86/games-strategy/megaglest/ChangeLog,v 1.7 2012/10/29 20:14:48 hasufell Exp $
+
+  29 Oct 2012; Julian Ospald <hasufell@gentoo.org> megaglest-3.6.0.3.ebuild,
+  +files/megaglest-3.6.0.3-gcc-4.7.patch:
+  fix compilation for gcc-4.7 wrt #440134
 
   17 Sep 2012; Julian Ospald <hasufell@gentoo.org> megaglest-3.6.0.3.ebuild,
   metadata.xml:





^ permalink raw reply	[flat|nested] 5+ messages in thread
* [gentoo-commits] gentoo-x86 commit in games-strategy/megaglest: megaglest-3.6.0.3.ebuild ChangeLog
@ 2012-09-07 20:03 Julian Ospald (hasufell)
  0 siblings, 0 replies; 5+ messages in thread
From: Julian Ospald (hasufell) @ 2012-09-07 20:03 UTC (permalink / raw
  To: gentoo-commits

hasufell    12/09/07 20:03:40

  Modified:             megaglest-3.6.0.3.ebuild ChangeLog
  Log:
  fix dependencies
  
  (Portage version: 2.2.0_alpha124/cvs/Linux x86_64)

Revision  Changes    Path
1.4                  games-strategy/megaglest/megaglest-3.6.0.3.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-strategy/megaglest/megaglest-3.6.0.3.ebuild?rev=1.4&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-strategy/megaglest/megaglest-3.6.0.3.ebuild?rev=1.4&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-strategy/megaglest/megaglest-3.6.0.3.ebuild?r1=1.3&r2=1.4

Index: megaglest-3.6.0.3.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/games-strategy/megaglest/megaglest-3.6.0.3.ebuild,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- megaglest-3.6.0.3.ebuild	6 Sep 2012 20:57:28 -0000	1.3
+++ megaglest-3.6.0.3.ebuild	7 Sep 2012 20:03:40 -0000	1.4
@@ -1,6 +1,6 @@
 # Copyright 1999-2012 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/games-strategy/megaglest/megaglest-3.6.0.3.ebuild,v 1.3 2012/09/06 20:57:28 hasufell Exp $
+# $Header: /var/cvsroot/gentoo-x86/games-strategy/megaglest/megaglest-3.6.0.3.ebuild,v 1.4 2012/09/07 20:03:40 hasufell Exp $
 
 EAPI=4
 inherit eutils flag-o-matic cmake-utils wxwidgets gnome2-utils games
@@ -28,7 +28,7 @@
 	virtual/glu
 	x11-libs/libX11
 	x11-libs/libXext
-	editor? ( x11-libs/wxGTK:2.8[X] )
+	editor? ( x11-libs/wxGTK:2.8[X,opengl] )
 	freetype? ( media-libs/freetype )
 	model-viewer? ( x11-libs/wxGTK:2.8[X] )
 	!static? (



1.4                  games-strategy/megaglest/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-strategy/megaglest/ChangeLog?rev=1.4&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-strategy/megaglest/ChangeLog?rev=1.4&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-strategy/megaglest/ChangeLog?r1=1.3&r2=1.4

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/games-strategy/megaglest/ChangeLog,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- ChangeLog	6 Sep 2012 20:57:28 -0000	1.3
+++ ChangeLog	7 Sep 2012 20:03:40 -0000	1.4
@@ -1,6 +1,9 @@
 # ChangeLog for games-strategy/megaglest
 # Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/games-strategy/megaglest/ChangeLog,v 1.3 2012/09/06 20:57:28 hasufell Exp $
+# $Header: /var/cvsroot/gentoo-x86/games-strategy/megaglest/ChangeLog,v 1.4 2012/09/07 20:03:40 hasufell Exp $
+
+  07 Sep 2012; Julian Ospald <hasufell@gentoo.org> megaglest-3.6.0.3.ebuild:
+  fix dependencies
 
   06 Sep 2012; Julian Ospald <hasufell@gentoo.org> megaglest-3.6.0.3.ebuild:
   fix editor useflag thanks to Arfrever





^ permalink raw reply	[flat|nested] 5+ messages in thread
* [gentoo-commits] gentoo-x86 commit in games-strategy/megaglest: megaglest-3.6.0.3.ebuild ChangeLog
@ 2012-09-06 20:57 Julian Ospald (hasufell)
  0 siblings, 0 replies; 5+ messages in thread
From: Julian Ospald (hasufell) @ 2012-09-06 20:57 UTC (permalink / raw
  To: gentoo-commits

hasufell    12/09/06 20:57:28

  Modified:             megaglest-3.6.0.3.ebuild ChangeLog
  Log:
  fix editor useflag thanks to Arfrever
  
  (Portage version: 2.2.0_alpha124/cvs/Linux x86_64)

Revision  Changes    Path
1.3                  games-strategy/megaglest/megaglest-3.6.0.3.ebuild

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

Index: megaglest-3.6.0.3.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/games-strategy/megaglest/megaglest-3.6.0.3.ebuild,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- megaglest-3.6.0.3.ebuild	1 Sep 2012 00:08:16 -0000	1.2
+++ megaglest-3.6.0.3.ebuild	6 Sep 2012 20:57:28 -0000	1.3
@@ -1,6 +1,6 @@
 # Copyright 1999-2012 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/games-strategy/megaglest/megaglest-3.6.0.3.ebuild,v 1.2 2012/09/01 00:08:16 hasufell Exp $
+# $Header: /var/cvsroot/gentoo-x86/games-strategy/megaglest/megaglest-3.6.0.3.ebuild,v 1.3 2012/09/06 20:57:28 hasufell Exp $
 
 EAPI=4
 inherit eutils flag-o-matic cmake-utils wxwidgets gnome2-utils games
@@ -58,7 +58,7 @@
 PDEPEND="~games-strategy/${PN}-data-${PV}"
 
 src_prepare() {
-	if use use editor || use model-viewer ; then
+	if use editor || use model-viewer ; then
 		WX_GTK_VER="2.8"
 		need-wxwidgets unicode
 	fi



1.3                  games-strategy/megaglest/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/games-strategy/megaglest/ChangeLog,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- ChangeLog	1 Sep 2012 00:08:16 -0000	1.2
+++ ChangeLog	6 Sep 2012 20:57:28 -0000	1.3
@@ -1,6 +1,9 @@
 # ChangeLog for games-strategy/megaglest
 # Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/games-strategy/megaglest/ChangeLog,v 1.2 2012/09/01 00:08:16 hasufell Exp $
+# $Header: /var/cvsroot/gentoo-x86/games-strategy/megaglest/ChangeLog,v 1.3 2012/09/06 20:57:28 hasufell Exp $
+
+  06 Sep 2012; Julian Ospald <hasufell@gentoo.org> megaglest-3.6.0.3.ebuild:
+  fix editor useflag thanks to Arfrever
 
   01 Sep 2012; Julian Ospald <hasufell@gentoo.org> megaglest-3.6.0.3.ebuild,
   +files/megaglest-3.6.0.3-as-needed.patch:





^ permalink raw reply	[flat|nested] 5+ messages in thread
* [gentoo-commits] gentoo-x86 commit in games-strategy/megaglest: megaglest-3.6.0.3.ebuild ChangeLog
@ 2012-09-01  0:08 Julian Ospald (hasufell)
  0 siblings, 0 replies; 5+ messages in thread
From: Julian Ospald (hasufell) @ 2012-09-01  0:08 UTC (permalink / raw
  To: gentoo-commits

hasufell    12/09/01 00:08:16

  Modified:             megaglest-3.6.0.3.ebuild ChangeLog
  Log:
  fix as-needed
  
  (Portage version: 2.2.0_alpha123/cvs/Linux x86_64)

Revision  Changes    Path
1.2                  games-strategy/megaglest/megaglest-3.6.0.3.ebuild

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

Index: megaglest-3.6.0.3.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/games-strategy/megaglest/megaglest-3.6.0.3.ebuild,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- megaglest-3.6.0.3.ebuild	19 Aug 2012 21:15:08 -0000	1.1
+++ megaglest-3.6.0.3.ebuild	1 Sep 2012 00:08:16 -0000	1.2
@@ -1,6 +1,6 @@
 # Copyright 1999-2012 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/games-strategy/megaglest/megaglest-3.6.0.3.ebuild,v 1.1 2012/08/19 21:15:08 hasufell Exp $
+# $Header: /var/cvsroot/gentoo-x86/games-strategy/megaglest/megaglest-3.6.0.3.ebuild,v 1.2 2012/09/01 00:08:16 hasufell Exp $
 
 EAPI=4
 inherit eutils flag-o-matic cmake-utils wxwidgets gnome2-utils games
@@ -63,7 +63,7 @@
 		need-wxwidgets unicode
 	fi
 
-	epatch "${FILESDIR}"/${P}-{static-build,build}.patch
+	epatch "${FILESDIR}"/${P}-{static-build,build,as-needed}.patch
 }
 
 src_configure() {
@@ -102,9 +102,6 @@
 
 	# support CMAKE_BUILD_TYPE=Gentoo
 	append-cppflags '-DCUSTOM_DATA_INSTALL_PATH=\\\"'${GAMES_DATADIR}/${PN}/'\\\"'
-	# as-needed is broken for ld.bfd here
-	# ld.gold works either way
-	append-ldflags $(no-as-needed)
 
 	cmake-utils_src_configure
 }



1.2                  games-strategy/megaglest/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/games-strategy/megaglest/ChangeLog,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- ChangeLog	19 Aug 2012 21:15:08 -0000	1.1
+++ ChangeLog	1 Sep 2012 00:08:16 -0000	1.2
@@ -1,6 +1,10 @@
 # ChangeLog for games-strategy/megaglest
 # Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/games-strategy/megaglest/ChangeLog,v 1.1 2012/08/19 21:15:08 hasufell Exp $
+# $Header: /var/cvsroot/gentoo-x86/games-strategy/megaglest/ChangeLog,v 1.2 2012/09/01 00:08:16 hasufell Exp $
+
+  01 Sep 2012; Julian Ospald <hasufell@gentoo.org> megaglest-3.6.0.3.ebuild,
+  +files/megaglest-3.6.0.3-as-needed.patch:
+  fix as-needed
 
 *megaglest-3.6.0.3 (19 Aug 2012)
 





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

end of thread, other threads:[~2012-10-29 20:15 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2012-09-08 21:49 [gentoo-commits] gentoo-x86 commit in games-strategy/megaglest: megaglest-3.6.0.3.ebuild ChangeLog Julian Ospald (hasufell)
  -- strict thread matches above, loose matches on Subject: below --
2012-10-29 20:14 Julian Ospald (hasufell)
2012-09-07 20:03 Julian Ospald (hasufell)
2012-09-06 20:57 Julian Ospald (hasufell)
2012-09-01  0:08 Julian Ospald (hasufell)

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