* [gentoo-commits] gentoo-x86 commit in games-roguelike/crossfire-client: ChangeLog crossfire-client-1.12.0.ebuild
@ 2009-10-15 6:16 Michael Sterrett (mr_bones_)
0 siblings, 0 replies; 9+ messages in thread
From: Michael Sterrett (mr_bones_) @ 2009-10-15 6:16 UTC (permalink / raw
To: gentoo-commits
mr_bones_ 09/10/15 06:16:21
Modified: ChangeLog
Added: crossfire-client-1.12.0.ebuild
Log:
version bump
(Portage version: 2.1.6.13/cvs/Linux i686)
Revision Changes Path
1.20 games-roguelike/crossfire-client/ChangeLog
file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/games-roguelike/crossfire-client/ChangeLog?rev=1.20&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/games-roguelike/crossfire-client/ChangeLog?rev=1.20&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/games-roguelike/crossfire-client/ChangeLog?r1=1.19&r2=1.20
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/games-roguelike/crossfire-client/ChangeLog,v
retrieving revision 1.19
retrieving revision 1.20
diff -u -r1.19 -r1.20
--- ChangeLog 11 Feb 2008 06:08:25 -0000 1.19
+++ ChangeLog 15 Oct 2009 06:16:20 -0000 1.20
@@ -1,6 +1,12 @@
# ChangeLog for games-roguelike/crossfire-client
-# Copyright 1999-2008 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/games-roguelike/crossfire-client/ChangeLog,v 1.19 2008/02/11 06:08:25 mr_bones_ Exp $
+# Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/games-roguelike/crossfire-client/ChangeLog,v 1.20 2009/10/15 06:16:20 mr_bones_ Exp $
+
+*crossfire-client-1.12.0 (15 Oct 2009)
+
+ 15 Oct 2009; Michael Sterrett <mr_bones_@gentoo.org>
+ +crossfire-client-1.12.0.ebuild:
+ Version bump
*crossfire-client-1.11.0 (11 Feb 2008)
1.1 games-roguelike/crossfire-client/crossfire-client-1.12.0.ebuild
file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/games-roguelike/crossfire-client/crossfire-client-1.12.0.ebuild?rev=1.1&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/games-roguelike/crossfire-client/crossfire-client-1.12.0.ebuild?rev=1.1&content-type=text/plain
Index: crossfire-client-1.12.0.ebuild
===================================================================
# Copyright 1999-2009 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/games-roguelike/crossfire-client/crossfire-client-1.12.0.ebuild,v 1.1 2009/10/15 06:16:20 mr_bones_ Exp $
EAPI=2
inherit games
DESCRIPTION="Client for the nethack-style but more in the line of UO"
HOMEPAGE="http://crossfire.real-time.com/"
SRC_URI="mirror://sourceforge/crossfire/${P}.tar.bz2"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~amd64 ~ppc ~x86"
IUSE="alsa gtk oss sdl"
RDEPEND="alsa? ( media-libs/alsa-lib )
gtk? ( x11-libs/gtk+:2
sdl? ( media-libs/libsdl
media-libs/sdl-image ) )
virtual/glut
media-libs/libpng
sys-libs/zlib"
DEPEND="${RDEPEND}
dev-util/pkgconfig"
src_prepare() {
sed -i \
-r '/^.TH/s:$: 6:' \
$(find . -name "*man") \
|| die "sed failed"
}
src_configure() {
# bugs in configure script so we cant use $(use_enable ...)
local myconf="--disable-dependency-tracking"
if use gtk ; then
use sdl || myconf="${myconf} --disable-sdl"
else
myconf="${myconf} --disable-gtk"
fi
if ! use alsa ; then
myconf="${myconf} --disable-alsa9 --disable-alsa"
fi
if ! use alsa && ! use oss ; then
myconf="${myconf} --disable-sound"
fi
egamesconf ${myconf}
}
src_compile() {
# bug 139785
if use alsa || use oss ; then
emake -j1 -C sound-src || die "sound building failed"
fi
emake || die "emake failed"
}
src_install() {
emake DESTDIR="${D}" install || die "emake install failed"
dodoc AUTHORS ChangeLog README TODO
prepgamesdirs
}
^ permalink raw reply [flat|nested] 9+ messages in thread
* [gentoo-commits] gentoo-x86 commit in games-roguelike/crossfire-client: ChangeLog crossfire-client-1.12.0.ebuild
@ 2009-12-22 1:05 Michael Sterrett (mr_bones_)
0 siblings, 0 replies; 9+ messages in thread
From: Michael Sterrett (mr_bones_) @ 2009-12-22 1:05 UTC (permalink / raw
To: gentoo-commits
mr_bones_ 09/12/22 01:05:51
Modified: ChangeLog crossfire-client-1.12.0.ebuild
Log:
add patch from Tim Hentenaar to fix compile warning from lua (bug #296697)
(Portage version: 2.1.6.13/cvs/Linux i686)
Revision Changes Path
1.21 games-roguelike/crossfire-client/ChangeLog
file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/games-roguelike/crossfire-client/ChangeLog?rev=1.21&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/games-roguelike/crossfire-client/ChangeLog?rev=1.21&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/games-roguelike/crossfire-client/ChangeLog?r1=1.20&r2=1.21
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/games-roguelike/crossfire-client/ChangeLog,v
retrieving revision 1.20
retrieving revision 1.21
diff -u -r1.20 -r1.21
--- ChangeLog 15 Oct 2009 06:16:20 -0000 1.20
+++ ChangeLog 22 Dec 2009 01:05:51 -0000 1.21
@@ -1,6 +1,10 @@
# ChangeLog for games-roguelike/crossfire-client
# Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/games-roguelike/crossfire-client/ChangeLog,v 1.20 2009/10/15 06:16:20 mr_bones_ Exp $
+# $Header: /var/cvsroot/gentoo-x86/games-roguelike/crossfire-client/ChangeLog,v 1.21 2009/12/22 01:05:51 mr_bones_ Exp $
+
+ 22 Dec 2009; Michael Sterrett <mr_bones_@gentoo.org>
+ crossfire-client-1.12.0.ebuild, +files/crossfire-client-1.12.0-lua.patch:
+ add patch from Tim Hentenaar to fix compile warning from lua (bug #296697)
*crossfire-client-1.12.0 (15 Oct 2009)
1.2 games-roguelike/crossfire-client/crossfire-client-1.12.0.ebuild
file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/games-roguelike/crossfire-client/crossfire-client-1.12.0.ebuild?rev=1.2&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/games-roguelike/crossfire-client/crossfire-client-1.12.0.ebuild?rev=1.2&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/games-roguelike/crossfire-client/crossfire-client-1.12.0.ebuild?r1=1.1&r2=1.2
Index: crossfire-client-1.12.0.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/games-roguelike/crossfire-client/crossfire-client-1.12.0.ebuild,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- crossfire-client-1.12.0.ebuild 15 Oct 2009 06:16:20 -0000 1.1
+++ crossfire-client-1.12.0.ebuild 22 Dec 2009 01:05:51 -0000 1.2
@@ -1,9 +1,9 @@
# Copyright 1999-2009 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/games-roguelike/crossfire-client/crossfire-client-1.12.0.ebuild,v 1.1 2009/10/15 06:16:20 mr_bones_ Exp $
+# $Header: /var/cvsroot/gentoo-x86/games-roguelike/crossfire-client/crossfire-client-1.12.0.ebuild,v 1.2 2009/12/22 01:05:51 mr_bones_ Exp $
EAPI=2
-inherit games
+inherit eutils games
DESCRIPTION="Client for the nethack-style but more in the line of UO"
HOMEPAGE="http://crossfire.real-time.com/"
@@ -16,7 +16,7 @@
RDEPEND="alsa? ( media-libs/alsa-lib )
gtk? ( x11-libs/gtk+:2
- sdl? ( media-libs/libsdl
+ sdl? ( media-libs/libsdl[video]
media-libs/sdl-image ) )
virtual/glut
media-libs/libpng
@@ -29,6 +29,7 @@
-r '/^.TH/s:$: 6:' \
$(find . -name "*man") \
|| die "sed failed"
+ epatch "${FILESDIR}/${P}-lua.patch"
}
src_configure() {
^ permalink raw reply [flat|nested] 9+ messages in thread
* [gentoo-commits] gentoo-x86 commit in games-roguelike/crossfire-client: ChangeLog crossfire-client-1.12.0.ebuild
@ 2010-01-24 23:01 Brent Baude (ranger)
0 siblings, 0 replies; 9+ messages in thread
From: Brent Baude (ranger) @ 2010-01-24 23:01 UTC (permalink / raw
To: gentoo-commits
ranger 10/01/24 23:01:37
Modified: ChangeLog crossfire-client-1.12.0.ebuild
Log:
stable ppc, bug 301869
(Portage version: 2.1.6.13/cvs/Linux ppc64)
Revision Changes Path
1.22 games-roguelike/crossfire-client/ChangeLog
file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/games-roguelike/crossfire-client/ChangeLog?rev=1.22&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/games-roguelike/crossfire-client/ChangeLog?rev=1.22&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/games-roguelike/crossfire-client/ChangeLog?r1=1.21&r2=1.22
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/games-roguelike/crossfire-client/ChangeLog,v
retrieving revision 1.21
retrieving revision 1.22
diff -u -r1.21 -r1.22
--- ChangeLog 22 Dec 2009 01:05:51 -0000 1.21
+++ ChangeLog 24 Jan 2010 23:01:37 -0000 1.22
@@ -1,6 +1,10 @@
# ChangeLog for games-roguelike/crossfire-client
-# Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/games-roguelike/crossfire-client/ChangeLog,v 1.21 2009/12/22 01:05:51 mr_bones_ Exp $
+# Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/games-roguelike/crossfire-client/ChangeLog,v 1.22 2010/01/24 23:01:37 ranger Exp $
+
+ 24 Jan 2010; Brent Baude <ranger@gentoo.org>
+ crossfire-client-1.12.0.ebuild:
+ stable ppc, bug 301869
22 Dec 2009; Michael Sterrett <mr_bones_@gentoo.org>
crossfire-client-1.12.0.ebuild, +files/crossfire-client-1.12.0-lua.patch:
1.3 games-roguelike/crossfire-client/crossfire-client-1.12.0.ebuild
file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/games-roguelike/crossfire-client/crossfire-client-1.12.0.ebuild?rev=1.3&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/games-roguelike/crossfire-client/crossfire-client-1.12.0.ebuild?rev=1.3&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/games-roguelike/crossfire-client/crossfire-client-1.12.0.ebuild?r1=1.2&r2=1.3
Index: crossfire-client-1.12.0.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/games-roguelike/crossfire-client/crossfire-client-1.12.0.ebuild,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- crossfire-client-1.12.0.ebuild 22 Dec 2009 01:05:51 -0000 1.2
+++ crossfire-client-1.12.0.ebuild 24 Jan 2010 23:01:37 -0000 1.3
@@ -1,6 +1,6 @@
-# Copyright 1999-2009 Gentoo Foundation
+# Copyright 1999-2010 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/games-roguelike/crossfire-client/crossfire-client-1.12.0.ebuild,v 1.2 2009/12/22 01:05:51 mr_bones_ Exp $
+# $Header: /var/cvsroot/gentoo-x86/games-roguelike/crossfire-client/crossfire-client-1.12.0.ebuild,v 1.3 2010/01/24 23:01:37 ranger Exp $
EAPI=2
inherit eutils games
@@ -11,7 +11,7 @@
LICENSE="GPL-2"
SLOT="0"
-KEYWORDS="~amd64 ~ppc ~x86"
+KEYWORDS="~amd64 ppc ~x86"
IUSE="alsa gtk oss sdl"
RDEPEND="alsa? ( media-libs/alsa-lib )
^ permalink raw reply [flat|nested] 9+ messages in thread
* [gentoo-commits] gentoo-x86 commit in games-roguelike/crossfire-client: ChangeLog crossfire-client-1.12.0.ebuild
@ 2010-02-11 14:17 Christian Faulhammer (fauli)
0 siblings, 0 replies; 9+ messages in thread
From: Christian Faulhammer (fauli) @ 2010-02-11 14:17 UTC (permalink / raw
To: gentoo-commits
fauli 10/02/11 14:17:16
Modified: ChangeLog crossfire-client-1.12.0.ebuild
Log:
stable x86, bug 301869
(Portage version: 2.1.7.16/cvs/Linux i686)
Revision Changes Path
1.23 games-roguelike/crossfire-client/ChangeLog
file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/games-roguelike/crossfire-client/ChangeLog?rev=1.23&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/games-roguelike/crossfire-client/ChangeLog?rev=1.23&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/games-roguelike/crossfire-client/ChangeLog?r1=1.22&r2=1.23
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/games-roguelike/crossfire-client/ChangeLog,v
retrieving revision 1.22
retrieving revision 1.23
diff -u -r1.22 -r1.23
--- ChangeLog 24 Jan 2010 23:01:37 -0000 1.22
+++ ChangeLog 11 Feb 2010 14:17:15 -0000 1.23
@@ -1,6 +1,10 @@
# ChangeLog for games-roguelike/crossfire-client
# Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/games-roguelike/crossfire-client/ChangeLog,v 1.22 2010/01/24 23:01:37 ranger Exp $
+# $Header: /var/cvsroot/gentoo-x86/games-roguelike/crossfire-client/ChangeLog,v 1.23 2010/02/11 14:17:15 fauli Exp $
+
+ 11 Feb 2010; Christian Faulhammer <fauli@gentoo.org>
+ crossfire-client-1.12.0.ebuild:
+ stable x86, bug 301869
24 Jan 2010; Brent Baude <ranger@gentoo.org>
crossfire-client-1.12.0.ebuild:
1.4 games-roguelike/crossfire-client/crossfire-client-1.12.0.ebuild
file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/games-roguelike/crossfire-client/crossfire-client-1.12.0.ebuild?rev=1.4&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/games-roguelike/crossfire-client/crossfire-client-1.12.0.ebuild?rev=1.4&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/games-roguelike/crossfire-client/crossfire-client-1.12.0.ebuild?r1=1.3&r2=1.4
Index: crossfire-client-1.12.0.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/games-roguelike/crossfire-client/crossfire-client-1.12.0.ebuild,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- crossfire-client-1.12.0.ebuild 24 Jan 2010 23:01:37 -0000 1.3
+++ crossfire-client-1.12.0.ebuild 11 Feb 2010 14:17:15 -0000 1.4
@@ -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-roguelike/crossfire-client/crossfire-client-1.12.0.ebuild,v 1.3 2010/01/24 23:01:37 ranger Exp $
+# $Header: /var/cvsroot/gentoo-x86/games-roguelike/crossfire-client/crossfire-client-1.12.0.ebuild,v 1.4 2010/02/11 14:17:15 fauli Exp $
EAPI=2
inherit eutils games
@@ -11,7 +11,7 @@
LICENSE="GPL-2"
SLOT="0"
-KEYWORDS="~amd64 ppc ~x86"
+KEYWORDS="~amd64 ppc x86"
IUSE="alsa gtk oss sdl"
RDEPEND="alsa? ( media-libs/alsa-lib )
^ permalink raw reply [flat|nested] 9+ messages in thread
* [gentoo-commits] gentoo-x86 commit in games-roguelike/crossfire-client: ChangeLog crossfire-client-1.12.0.ebuild
@ 2010-09-16 16:57 Tomas Chvatal (scarabeus)
0 siblings, 0 replies; 9+ messages in thread
From: Tomas Chvatal (scarabeus) @ 2010-09-16 16:57 UTC (permalink / raw
To: gentoo-commits
scarabeus 10/09/16 16:57:08
Modified: ChangeLog crossfire-client-1.12.0.ebuild
Log:
virtual/glut -> media-libs/glut
(Portage version: 2.2_rc83/cvs/Linux x86_64)
Revision Changes Path
1.24 games-roguelike/crossfire-client/ChangeLog
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-roguelike/crossfire-client/ChangeLog?rev=1.24&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-roguelike/crossfire-client/ChangeLog?rev=1.24&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-roguelike/crossfire-client/ChangeLog?r1=1.23&r2=1.24
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/games-roguelike/crossfire-client/ChangeLog,v
retrieving revision 1.23
retrieving revision 1.24
diff -u -r1.23 -r1.24
--- ChangeLog 11 Feb 2010 14:17:15 -0000 1.23
+++ ChangeLog 16 Sep 2010 16:57:08 -0000 1.24
@@ -1,6 +1,10 @@
# ChangeLog for games-roguelike/crossfire-client
# Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/games-roguelike/crossfire-client/ChangeLog,v 1.23 2010/02/11 14:17:15 fauli Exp $
+# $Header: /var/cvsroot/gentoo-x86/games-roguelike/crossfire-client/ChangeLog,v 1.24 2010/09/16 16:57:08 scarabeus Exp $
+
+ 16 Sep 2010; Tomáš Chvátal <scarabeus@gentoo.org>
+ crossfire-client-1.12.0.ebuild:
+ virtual/glut -> media-libs/glut
11 Feb 2010; Christian Faulhammer <fauli@gentoo.org>
crossfire-client-1.12.0.ebuild:
1.5 games-roguelike/crossfire-client/crossfire-client-1.12.0.ebuild
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-roguelike/crossfire-client/crossfire-client-1.12.0.ebuild?rev=1.5&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-roguelike/crossfire-client/crossfire-client-1.12.0.ebuild?rev=1.5&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-roguelike/crossfire-client/crossfire-client-1.12.0.ebuild?r1=1.4&r2=1.5
Index: crossfire-client-1.12.0.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/games-roguelike/crossfire-client/crossfire-client-1.12.0.ebuild,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -r1.4 -r1.5
--- crossfire-client-1.12.0.ebuild 11 Feb 2010 14:17:15 -0000 1.4
+++ crossfire-client-1.12.0.ebuild 16 Sep 2010 16:57:08 -0000 1.5
@@ -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-roguelike/crossfire-client/crossfire-client-1.12.0.ebuild,v 1.4 2010/02/11 14:17:15 fauli Exp $
+# $Header: /var/cvsroot/gentoo-x86/games-roguelike/crossfire-client/crossfire-client-1.12.0.ebuild,v 1.5 2010/09/16 16:57:08 scarabeus Exp $
EAPI=2
inherit eutils games
@@ -18,7 +18,7 @@
gtk? ( x11-libs/gtk+:2
sdl? ( media-libs/libsdl[video]
media-libs/sdl-image ) )
- virtual/glut
+ media-libs/freeglut
media-libs/libpng
sys-libs/zlib"
DEPEND="${RDEPEND}
^ permalink raw reply [flat|nested] 9+ messages in thread
* [gentoo-commits] gentoo-x86 commit in games-roguelike/crossfire-client: ChangeLog crossfire-client-1.12.0.ebuild
@ 2011-06-14 10:42 Alfredo Tupone (tupone)
0 siblings, 0 replies; 9+ messages in thread
From: Alfredo Tupone (tupone) @ 2011-06-14 10:42 UTC (permalink / raw
To: gentoo-commits
tupone 11/06/14 10:42:55
Modified: ChangeLog crossfire-client-1.12.0.ebuild
Log:
Fix underlink. Bug #368889
(Portage version: 2.1.10.2/cvs/Linux x86_64)
Revision Changes Path
1.25 games-roguelike/crossfire-client/ChangeLog
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-roguelike/crossfire-client/ChangeLog?rev=1.25&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-roguelike/crossfire-client/ChangeLog?rev=1.25&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-roguelike/crossfire-client/ChangeLog?r1=1.24&r2=1.25
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/games-roguelike/crossfire-client/ChangeLog,v
retrieving revision 1.24
retrieving revision 1.25
diff -u -r1.24 -r1.25
--- ChangeLog 16 Sep 2010 16:57:08 -0000 1.24
+++ ChangeLog 14 Jun 2011 10:42:55 -0000 1.25
@@ -1,6 +1,11 @@
# ChangeLog for games-roguelike/crossfire-client
-# Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/games-roguelike/crossfire-client/ChangeLog,v 1.24 2010/09/16 16:57:08 scarabeus Exp $
+# Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/games-roguelike/crossfire-client/ChangeLog,v 1.25 2011/06/14 10:42:55 tupone Exp $
+
+ 14 Jun 2011; Tupone Alfredo <tupone@gentoo.org>
+ crossfire-client-1.12.0.ebuild,
+ +files/crossfire-client-1.12.0-underlink.patch:
+ Fix underlink. Bug #368889 by Diego Elio Pettenò
16 Sep 2010; Tomáš Chvátal <scarabeus@gentoo.org>
crossfire-client-1.12.0.ebuild:
1.6 games-roguelike/crossfire-client/crossfire-client-1.12.0.ebuild
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-roguelike/crossfire-client/crossfire-client-1.12.0.ebuild?rev=1.6&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-roguelike/crossfire-client/crossfire-client-1.12.0.ebuild?rev=1.6&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-roguelike/crossfire-client/crossfire-client-1.12.0.ebuild?r1=1.5&r2=1.6
Index: crossfire-client-1.12.0.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/games-roguelike/crossfire-client/crossfire-client-1.12.0.ebuild,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -r1.5 -r1.6
--- crossfire-client-1.12.0.ebuild 16 Sep 2010 16:57:08 -0000 1.5
+++ crossfire-client-1.12.0.ebuild 14 Jun 2011 10:42:55 -0000 1.6
@@ -1,9 +1,9 @@
-# Copyright 1999-2010 Gentoo Foundation
+# Copyright 1999-2011 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/games-roguelike/crossfire-client/crossfire-client-1.12.0.ebuild,v 1.5 2010/09/16 16:57:08 scarabeus Exp $
+# $Header: /var/cvsroot/gentoo-x86/games-roguelike/crossfire-client/crossfire-client-1.12.0.ebuild,v 1.6 2011/06/14 10:42:55 tupone Exp $
EAPI=2
-inherit eutils games
+inherit eutils autotools games
DESCRIPTION="Client for the nethack-style but more in the line of UO"
HOMEPAGE="http://crossfire.real-time.com/"
@@ -29,7 +29,9 @@
-r '/^.TH/s:$: 6:' \
$(find . -name "*man") \
|| die "sed failed"
- epatch "${FILESDIR}/${P}-lua.patch"
+ epatch "${FILESDIR}/${P}-lua.patch" \
+ "${FILESDIR}"/${P}-underlink.patch
+ eautoreconf
}
src_configure() {
^ permalink raw reply [flat|nested] 9+ messages in thread
* [gentoo-commits] gentoo-x86 commit in games-roguelike/crossfire-client: ChangeLog crossfire-client-1.12.0.ebuild
@ 2011-08-07 6:45 Christoph Mende (angelos)
0 siblings, 0 replies; 9+ messages in thread
From: Christoph Mende (angelos) @ 2011-08-07 6:45 UTC (permalink / raw
To: gentoo-commits
angelos 11/08/07 06:45:58
Modified: ChangeLog crossfire-client-1.12.0.ebuild
Log:
Add missing curl dependency and fix compilation with curl-7.21.7 (bug #378035)
(Portage version: 2.2.0_alpha50/cvs/Linux x86_64)
Revision Changes Path
1.26 games-roguelike/crossfire-client/ChangeLog
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-roguelike/crossfire-client/ChangeLog?rev=1.26&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-roguelike/crossfire-client/ChangeLog?rev=1.26&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-roguelike/crossfire-client/ChangeLog?r1=1.25&r2=1.26
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/games-roguelike/crossfire-client/ChangeLog,v
retrieving revision 1.25
retrieving revision 1.26
diff -u -r1.25 -r1.26
--- ChangeLog 14 Jun 2011 10:42:55 -0000 1.25
+++ ChangeLog 7 Aug 2011 06:45:58 -0000 1.26
@@ -1,6 +1,12 @@
# ChangeLog for games-roguelike/crossfire-client
# Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/games-roguelike/crossfire-client/ChangeLog,v 1.25 2011/06/14 10:42:55 tupone Exp $
+# $Header: /var/cvsroot/gentoo-x86/games-roguelike/crossfire-client/ChangeLog,v 1.26 2011/08/07 06:45:58 angelos Exp $
+
+ 07 Aug 2011; Christoph Mende <angelos@gentoo.org>
+ crossfire-client-1.12.0.ebuild,
+ +files/crossfire-client-1.12.0-curl-headers.patch:
+ Add missing curl dependency and fix compilation with curl-7.21.7 (bug
+ #378035)
14 Jun 2011; Tupone Alfredo <tupone@gentoo.org>
crossfire-client-1.12.0.ebuild,
1.7 games-roguelike/crossfire-client/crossfire-client-1.12.0.ebuild
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-roguelike/crossfire-client/crossfire-client-1.12.0.ebuild?rev=1.7&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-roguelike/crossfire-client/crossfire-client-1.12.0.ebuild?rev=1.7&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-roguelike/crossfire-client/crossfire-client-1.12.0.ebuild?r1=1.6&r2=1.7
Index: crossfire-client-1.12.0.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/games-roguelike/crossfire-client/crossfire-client-1.12.0.ebuild,v
retrieving revision 1.6
retrieving revision 1.7
diff -u -r1.6 -r1.7
--- crossfire-client-1.12.0.ebuild 14 Jun 2011 10:42:55 -0000 1.6
+++ crossfire-client-1.12.0.ebuild 7 Aug 2011 06:45:58 -0000 1.7
@@ -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-roguelike/crossfire-client/crossfire-client-1.12.0.ebuild,v 1.6 2011/06/14 10:42:55 tupone Exp $
+# $Header: /var/cvsroot/gentoo-x86/games-roguelike/crossfire-client/crossfire-client-1.12.0.ebuild,v 1.7 2011/08/07 06:45:58 angelos Exp $
EAPI=2
inherit eutils autotools games
@@ -18,6 +18,7 @@
gtk? ( x11-libs/gtk+:2
sdl? ( media-libs/libsdl[video]
media-libs/sdl-image ) )
+ net-misc/curl
media-libs/freeglut
media-libs/libpng
sys-libs/zlib"
@@ -30,7 +31,8 @@
$(find . -name "*man") \
|| die "sed failed"
epatch "${FILESDIR}/${P}-lua.patch" \
- "${FILESDIR}"/${P}-underlink.patch
+ "${FILESDIR}"/${P}-underlink.patch \
+ "${FILESDIR}"/${P}-curl-headers.patch
eautoreconf
}
^ permalink raw reply [flat|nested] 9+ messages in thread
* [gentoo-commits] gentoo-x86 commit in games-roguelike/crossfire-client: ChangeLog crossfire-client-1.12.0.ebuild
@ 2011-09-15 3:01 Samuli Suominen (ssuominen)
0 siblings, 0 replies; 9+ messages in thread
From: Samuli Suominen (ssuominen) @ 2011-09-15 3:01 UTC (permalink / raw
To: gentoo-commits
ssuominen 11/09/15 03:01:36
Modified: ChangeLog crossfire-client-1.12.0.ebuild
Log:
Fix building with libpng15 wrt #378409 by Diego Elio Pettenò
(Portage version: 2.2.0_alpha55/cvs/Linux x86_64)
Revision Changes Path
1.27 games-roguelike/crossfire-client/ChangeLog
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-roguelike/crossfire-client/ChangeLog?rev=1.27&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-roguelike/crossfire-client/ChangeLog?rev=1.27&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-roguelike/crossfire-client/ChangeLog?r1=1.26&r2=1.27
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/games-roguelike/crossfire-client/ChangeLog,v
retrieving revision 1.26
retrieving revision 1.27
diff -u -r1.26 -r1.27
--- ChangeLog 7 Aug 2011 06:45:58 -0000 1.26
+++ ChangeLog 15 Sep 2011 03:01:36 -0000 1.27
@@ -1,6 +1,11 @@
# ChangeLog for games-roguelike/crossfire-client
# Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/games-roguelike/crossfire-client/ChangeLog,v 1.26 2011/08/07 06:45:58 angelos Exp $
+# $Header: /var/cvsroot/gentoo-x86/games-roguelike/crossfire-client/ChangeLog,v 1.27 2011/09/15 03:01:36 ssuominen Exp $
+
+ 15 Sep 2011; Samuli Suominen <ssuominen@gentoo.org>
+ crossfire-client-1.12.0.ebuild,
+ +files/crossfire-client-1.12.0-libpng15.patch:
+ Fix building with libpng15 wrt #378409 by Diego Elio Pettenò
07 Aug 2011; Christoph Mende <angelos@gentoo.org>
crossfire-client-1.12.0.ebuild,
1.8 games-roguelike/crossfire-client/crossfire-client-1.12.0.ebuild
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-roguelike/crossfire-client/crossfire-client-1.12.0.ebuild?rev=1.8&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-roguelike/crossfire-client/crossfire-client-1.12.0.ebuild?rev=1.8&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-roguelike/crossfire-client/crossfire-client-1.12.0.ebuild?r1=1.7&r2=1.8
Index: crossfire-client-1.12.0.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/games-roguelike/crossfire-client/crossfire-client-1.12.0.ebuild,v
retrieving revision 1.7
retrieving revision 1.8
diff -u -r1.7 -r1.8
--- crossfire-client-1.12.0.ebuild 7 Aug 2011 06:45:58 -0000 1.7
+++ crossfire-client-1.12.0.ebuild 15 Sep 2011 03:01:36 -0000 1.8
@@ -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-roguelike/crossfire-client/crossfire-client-1.12.0.ebuild,v 1.7 2011/08/07 06:45:58 angelos Exp $
+# $Header: /var/cvsroot/gentoo-x86/games-roguelike/crossfire-client/crossfire-client-1.12.0.ebuild,v 1.8 2011/09/15 03:01:36 ssuominen Exp $
EAPI=2
inherit eutils autotools games
@@ -30,9 +30,11 @@
-r '/^.TH/s:$: 6:' \
$(find . -name "*man") \
|| die "sed failed"
- epatch "${FILESDIR}/${P}-lua.patch" \
+ epatch \
+ "${FILESDIR}"/${P}-lua.patch \
"${FILESDIR}"/${P}-underlink.patch \
- "${FILESDIR}"/${P}-curl-headers.patch
+ "${FILESDIR}"/${P}-curl-headers.patch \
+ "${FILESDIR}"/${P}-libpng15.patch
eautoreconf
}
^ permalink raw reply [flat|nested] 9+ messages in thread
* [gentoo-commits] gentoo-x86 commit in games-roguelike/crossfire-client: ChangeLog crossfire-client-1.12.0.ebuild
@ 2014-08-28 6:51 Michael Sterrett (mr_bones_)
0 siblings, 0 replies; 9+ messages in thread
From: Michael Sterrett (mr_bones_) @ 2014-08-28 6:51 UTC (permalink / raw
To: gentoo-commits
mr_bones_ 14/08/28 06:51:25
Modified: ChangeLog
Removed: crossfire-client-1.12.0.ebuild
Log:
old
(Portage version: 2.2.8-r1/cvs/Linux x86_64, unsigned Manifest commit)
Revision Changes Path
1.37 games-roguelike/crossfire-client/ChangeLog
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-roguelike/crossfire-client/ChangeLog?rev=1.37&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-roguelike/crossfire-client/ChangeLog?rev=1.37&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-roguelike/crossfire-client/ChangeLog?r1=1.36&r2=1.37
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/games-roguelike/crossfire-client/ChangeLog,v
retrieving revision 1.36
retrieving revision 1.37
diff -u -r1.36 -r1.37
--- ChangeLog 28 Jan 2013 08:24:58 -0000 1.36
+++ ChangeLog 28 Aug 2014 06:51:25 -0000 1.37
@@ -1,6 +1,14 @@
# ChangeLog for games-roguelike/crossfire-client
-# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/games-roguelike/crossfire-client/ChangeLog,v 1.36 2013/01/28 08:24:58 hasufell Exp $
+# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/games-roguelike/crossfire-client/ChangeLog,v 1.37 2014/08/28 06:51:25 mr_bones_ Exp $
+
+ 28 Aug 2014; Michael Sterrett <mr_bones_@gentoo.org>
+ -crossfire-client-1.12.0.ebuild,
+ -files/crossfire-client-1.12.0-curl-headers.patch,
+ -files/crossfire-client-1.12.0-libpng15.patch,
+ -files/crossfire-client-1.12.0-lua.patch,
+ -files/crossfire-client-1.12.0-underlink.patch:
+ old
*crossfire-client-1.70.0-r1 (28 Jan 2013)
^ permalink raw reply [flat|nested] 9+ messages in thread
end of thread, other threads:[~2014-08-28 6:51 UTC | newest]
Thread overview: 9+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2014-08-28 6:51 [gentoo-commits] gentoo-x86 commit in games-roguelike/crossfire-client: ChangeLog crossfire-client-1.12.0.ebuild Michael Sterrett (mr_bones_)
-- strict thread matches above, loose matches on Subject: below --
2011-09-15 3:01 Samuli Suominen (ssuominen)
2011-08-07 6:45 Christoph Mende (angelos)
2011-06-14 10:42 Alfredo Tupone (tupone)
2010-09-16 16:57 Tomas Chvatal (scarabeus)
2010-02-11 14:17 Christian Faulhammer (fauli)
2010-01-24 23:01 Brent Baude (ranger)
2009-12-22 1:05 Michael Sterrett (mr_bones_)
2009-10-15 6:16 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