* [gentoo-commits] gentoo-x86 commit in games-fps/xonotic: xonotic-0.5.0.ebuild ChangeLog
@ 2011-09-22 18:05 Michael Sterrett (mr_bones_)
0 siblings, 0 replies; 3+ messages in thread
From: Michael Sterrett (mr_bones_) @ 2011-09-22 18:05 UTC (permalink / raw
To: gentoo-commits
mr_bones_ 11/09/22 18:05:21
Modified: xonotic-0.5.0.ebuild ChangeLog
Log:
try to work around broken Makefiles (bug #383517)
(Portage version: 2.1.10.11/cvs/Linux i686)
Revision Changes Path
1.2 games-fps/xonotic/xonotic-0.5.0.ebuild
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-fps/xonotic/xonotic-0.5.0.ebuild?rev=1.2&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-fps/xonotic/xonotic-0.5.0.ebuild?rev=1.2&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-fps/xonotic/xonotic-0.5.0.ebuild?r1=1.1&r2=1.2
Index: xonotic-0.5.0.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/games-fps/xonotic/xonotic-0.5.0.ebuild,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- xonotic-0.5.0.ebuild 16 Sep 2011 21:52:12 -0000 1.1
+++ xonotic-0.5.0.ebuild 22 Sep 2011 18:05:20 -0000 1.2
@@ -1,6 +1,6 @@
# Copyright 1999-2011 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/games-fps/xonotic/xonotic-0.5.0.ebuild,v 1.1 2011/09/16 21:52:12 mr_bones_ Exp $
+# $Header: /var/cvsroot/gentoo-x86/games-fps/xonotic/xonotic-0.5.0.ebuild,v 1.2 2011/09/22 18:05:20 mr_bones_ Exp $
EAPI=2
inherit eutils check-reqs games
@@ -73,13 +73,14 @@
src_compile() {
local t="$(use debug && echo debug || echo release)"
+ local d
- emake \
- -C source/darkplaces \
- DP_LINK_TO_LIBJPEG=1 DP_FS_BASEDIR="${GAMES_DATADIR}/${PN}" \
- sv-${t} \
- $(use !dedicated && echo "cl-${t} $(use sdl && echo sdl-${t})") \
- || die
+ for d in sv-${t} $(use !dedicated && echo "cl-${t} $(use sdl && echo sdl-${t})")
+ do
+ emake \
+ DP_LINK_TO_LIBJPEG=1 DP_FS_BASEDIR="${GAMES_DATADIR}/${PN}" \
+ -C source/darkplaces ${d} || die
+ done
}
src_install() {
1.2 games-fps/xonotic/ChangeLog
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-fps/xonotic/ChangeLog?rev=1.2&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-fps/xonotic/ChangeLog?rev=1.2&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-fps/xonotic/ChangeLog?r1=1.1&r2=1.2
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/games-fps/xonotic/ChangeLog,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- ChangeLog 16 Sep 2011 21:52:12 -0000 1.1
+++ ChangeLog 22 Sep 2011 18:05:20 -0000 1.2
@@ -1,6 +1,9 @@
# ChangeLog for games-fps/xonotic
# Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/games-fps/xonotic/ChangeLog,v 1.1 2011/09/16 21:52:12 mr_bones_ Exp $
+# $Header: /var/cvsroot/gentoo-x86/games-fps/xonotic/ChangeLog,v 1.2 2011/09/22 18:05:20 mr_bones_ Exp $
+
+ 22 Sep 2011; Michael Sterrett <mr_bones_@gentoo.org> xonotic-0.5.0.ebuild:
+ try to work around broken Makefiles (bug #383517)
*xonotic-0.5.0 (16 Sep 2011)
^ permalink raw reply [flat|nested] 3+ messages in thread
* [gentoo-commits] gentoo-x86 commit in games-fps/xonotic: xonotic-0.5.0.ebuild ChangeLog
@ 2011-11-05 10:18 Markos Chandras (hwoarang)
0 siblings, 0 replies; 3+ messages in thread
From: Markos Chandras (hwoarang) @ 2011-11-05 10:18 UTC (permalink / raw
To: gentoo-commits
hwoarang 11/11/05 10:18:54
Modified: xonotic-0.5.0.ebuild ChangeLog
Log:
Stable on amd64 wrt bug #389269
(Portage version: 2.2.0_alpha71/cvs/Linux x86_64)
Revision Changes Path
1.3 games-fps/xonotic/xonotic-0.5.0.ebuild
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-fps/xonotic/xonotic-0.5.0.ebuild?rev=1.3&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-fps/xonotic/xonotic-0.5.0.ebuild?rev=1.3&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-fps/xonotic/xonotic-0.5.0.ebuild?r1=1.2&r2=1.3
Index: xonotic-0.5.0.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/games-fps/xonotic/xonotic-0.5.0.ebuild,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- xonotic-0.5.0.ebuild 22 Sep 2011 18:05:20 -0000 1.2
+++ xonotic-0.5.0.ebuild 5 Nov 2011 10:18:54 -0000 1.3
@@ -1,6 +1,6 @@
# Copyright 1999-2011 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/games-fps/xonotic/xonotic-0.5.0.ebuild,v 1.2 2011/09/22 18:05:20 mr_bones_ Exp $
+# $Header: /var/cvsroot/gentoo-x86/games-fps/xonotic/xonotic-0.5.0.ebuild,v 1.3 2011/11/05 10:18:54 hwoarang Exp $
EAPI=2
inherit eutils check-reqs games
@@ -12,7 +12,7 @@
LICENSE="GPL-2"
SLOT="0"
-KEYWORDS="~amd64 ~x86"
+KEYWORDS="amd64 ~x86"
IUSE="alsa debug dedicated doc sdl"
UIRDEPEND="
1.3 games-fps/xonotic/ChangeLog
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-fps/xonotic/ChangeLog?rev=1.3&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-fps/xonotic/ChangeLog?rev=1.3&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-fps/xonotic/ChangeLog?r1=1.2&r2=1.3
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/games-fps/xonotic/ChangeLog,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- ChangeLog 22 Sep 2011 18:05:20 -0000 1.2
+++ ChangeLog 5 Nov 2011 10:18:54 -0000 1.3
@@ -1,6 +1,9 @@
# ChangeLog for games-fps/xonotic
# Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/games-fps/xonotic/ChangeLog,v 1.2 2011/09/22 18:05:20 mr_bones_ Exp $
+# $Header: /var/cvsroot/gentoo-x86/games-fps/xonotic/ChangeLog,v 1.3 2011/11/05 10:18:54 hwoarang Exp $
+
+ 05 Nov 2011; Markos Chandras <hwoarang@gentoo.org> xonotic-0.5.0.ebuild:
+ Stable on amd64 wrt bug #389269
22 Sep 2011; Michael Sterrett <mr_bones_@gentoo.org> xonotic-0.5.0.ebuild:
try to work around broken Makefiles (bug #383517)
^ permalink raw reply [flat|nested] 3+ messages in thread
* [gentoo-commits] gentoo-x86 commit in games-fps/xonotic: xonotic-0.5.0.ebuild ChangeLog
@ 2011-11-11 9:20 PaweA Hajdan (phajdan.jr)
0 siblings, 0 replies; 3+ messages in thread
From: PaweA Hajdan (phajdan.jr) @ 2011-11-11 9:20 UTC (permalink / raw
To: gentoo-commits
phajdan.jr 11/11/11 09:20:06
Modified: xonotic-0.5.0.ebuild ChangeLog
Log:
x86 stable wrt bug #389269
(Portage version: 2.1.10.11/cvs/Linux i686)
Revision Changes Path
1.4 games-fps/xonotic/xonotic-0.5.0.ebuild
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-fps/xonotic/xonotic-0.5.0.ebuild?rev=1.4&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-fps/xonotic/xonotic-0.5.0.ebuild?rev=1.4&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-fps/xonotic/xonotic-0.5.0.ebuild?r1=1.3&r2=1.4
Index: xonotic-0.5.0.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/games-fps/xonotic/xonotic-0.5.0.ebuild,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- xonotic-0.5.0.ebuild 5 Nov 2011 10:18:54 -0000 1.3
+++ xonotic-0.5.0.ebuild 11 Nov 2011 09:20:06 -0000 1.4
@@ -1,6 +1,6 @@
# Copyright 1999-2011 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/games-fps/xonotic/xonotic-0.5.0.ebuild,v 1.3 2011/11/05 10:18:54 hwoarang Exp $
+# $Header: /var/cvsroot/gentoo-x86/games-fps/xonotic/xonotic-0.5.0.ebuild,v 1.4 2011/11/11 09:20:06 phajdan.jr Exp $
EAPI=2
inherit eutils check-reqs games
@@ -12,7 +12,7 @@
LICENSE="GPL-2"
SLOT="0"
-KEYWORDS="amd64 ~x86"
+KEYWORDS="amd64 x86"
IUSE="alsa debug dedicated doc sdl"
UIRDEPEND="
1.4 games-fps/xonotic/ChangeLog
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-fps/xonotic/ChangeLog?rev=1.4&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-fps/xonotic/ChangeLog?rev=1.4&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-fps/xonotic/ChangeLog?r1=1.3&r2=1.4
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/games-fps/xonotic/ChangeLog,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- ChangeLog 5 Nov 2011 10:18:54 -0000 1.3
+++ ChangeLog 11 Nov 2011 09:20:06 -0000 1.4
@@ -1,6 +1,9 @@
# ChangeLog for games-fps/xonotic
# Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/games-fps/xonotic/ChangeLog,v 1.3 2011/11/05 10:18:54 hwoarang Exp $
+# $Header: /var/cvsroot/gentoo-x86/games-fps/xonotic/ChangeLog,v 1.4 2011/11/11 09:20:06 phajdan.jr Exp $
+
+ 11 Nov 2011; Pawel Hajdan jr <phajdan.jr@gentoo.org> xonotic-0.5.0.ebuild:
+ x86 stable wrt bug #389269
05 Nov 2011; Markos Chandras <hwoarang@gentoo.org> xonotic-0.5.0.ebuild:
Stable on amd64 wrt bug #389269
^ permalink raw reply [flat|nested] 3+ messages in thread
end of thread, other threads:[~2011-11-11 9:20 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2011-11-05 10:18 [gentoo-commits] gentoo-x86 commit in games-fps/xonotic: xonotic-0.5.0.ebuild ChangeLog Markos Chandras (hwoarang)
-- strict thread matches above, loose matches on Subject: below --
2011-11-11 9:20 PaweA Hajdan (phajdan.jr)
2011-09-22 18:05 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