* [gentoo-commits] gentoo-x86 commit in games-strategy/wesnoth: ChangeLog wesnoth-1.4.2.ebuild
@ 2008-05-05 16:06 Michael Sterrett (mr_bones_)
0 siblings, 0 replies; 6+ messages in thread
From: Michael Sterrett (mr_bones_) @ 2008-05-05 16:06 UTC (permalink / raw
To: gentoo-commits
mr_bones_ 08/05/05 16:06:02
Modified: ChangeLog
Added: wesnoth-1.4.2.ebuild
Log:
version bump
(Portage version: 2.1.4.4)
Revision Changes Path
1.120 games-strategy/wesnoth/ChangeLog
file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/games-strategy/wesnoth/ChangeLog?rev=1.120&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/games-strategy/wesnoth/ChangeLog?rev=1.120&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/games-strategy/wesnoth/ChangeLog?r1=1.119&r2=1.120
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/games-strategy/wesnoth/ChangeLog,v
retrieving revision 1.119
retrieving revision 1.120
diff -u -r1.119 -r1.120
--- ChangeLog 6 Apr 2008 01:12:52 -0000 1.119
+++ ChangeLog 5 May 2008 16:06:01 -0000 1.120
@@ -1,6 +1,9 @@
# ChangeLog for games-strategy/wesnoth
# Copyright 2000-2008 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/games-strategy/wesnoth/ChangeLog,v 1.119 2008/04/06 01:12:52 mr_bones_ Exp $
+# $Header: /var/cvsroot/gentoo-x86/games-strategy/wesnoth/ChangeLog,v 1.120 2008/05/05 16:06:01 mr_bones_ Exp $
+
+ 05 May 2008; Michael Sterrett <mr_bones_@gentoo.org> ChangeLog:
+ version bump
*wesnoth-1.4.1 (06 Apr 2008)
1.1 games-strategy/wesnoth/wesnoth-1.4.2.ebuild
file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/games-strategy/wesnoth/wesnoth-1.4.2.ebuild?rev=1.1&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/games-strategy/wesnoth/wesnoth-1.4.2.ebuild?rev=1.1&content-type=text/plain
Index: wesnoth-1.4.2.ebuild
===================================================================
# Copyright 1999-2008 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/games-strategy/wesnoth/wesnoth-1.4.2.ebuild,v 1.1 2008/05/05 16:06:01 mr_bones_ Exp $
inherit eutils toolchain-funcs flag-o-matic games
MY_PV=${PV/_/}
DESCRIPTION="Battle for Wesnoth - A fantasy turn-based strategy game"
HOMEPAGE="http://www.wesnoth.org/"
SRC_URI="mirror://sourceforge/wesnoth/${PN}-${MY_PV}.tar.bz2"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~amd64 ~ppc ~ppc64 ~sparc ~x86 ~x86-fbsd"
IUSE="dedicated editor lite nls server static tools"
RDEPEND=">=media-libs/libsdl-1.2.7
media-libs/sdl-net
dev-libs/boost
!dedicated? (
x11-libs/libX11
>=media-libs/sdl-mixer-1.2
>=media-libs/sdl-image-1.2
dev-lang/python
>=media-libs/freetype-2 )
nls? ( virtual/libintl )"
# the configure script is broken and checks for freetype even if
# it won't be used. until it's either patched out or upstream fixes
# it, just make it a DEPEND.
# reported by Miika Linnapuomi
DEPEND="${RDEPEND}
dedicated? (
>=media-libs/sdl-mixer-1.2
>=media-libs/sdl-image-1.2
>=media-libs/freetype-2 )
nls? ( sys-devel/gettext )"
S=${WORKDIR}/${PN}-${MY_PV}
pkg_setup() {
if ! built_with_use media-libs/sdl-mixer vorbis ; then
die "Please emerge media-libs/sdl-mixer with USE=vorbis"
fi
if ! built_with_use media-libs/sdl-image png ; then
die "Please emerge media-libs/sdl-image with USE=png"
fi
if ! use dedicated && ! built_with_use media-libs/libsdl X ; then
die "Please emerge media-libs/libsdl with USE=X"
fi
games_pkg_setup
}
src_unpack() {
unpack ${A}
if use dedicated || use server ; then
sed \
-e "s:GAMES_BINDIR:${GAMES_BINDIR}:" \
-e "s:GAMES_STATEDIR:${GAMES_STATEDIR}:" \
-e "s/GAMES_USER_DED/${GAMES_USER_DED}/" \
-e "s/GAMES_GROUP/${GAMES_GROUP}/" "${FILESDIR}"/wesnothd.rc \
> "${T}"/wesnothd \
|| die "sed failed"
fi
if ! use nls ; then
cd "${S}"
sed -i \
-e '/^MAN_LANG/d' \
doc/man/Makefile.in \
|| die "sed failed"
fi
}
src_compile() {
local myconf
filter-flags -ftracer -fomit-frame-pointer
if [[ $(gcc-major-version) -eq 3 ]] ; then
filter-flags -fstack-protector
append-flags -fno-stack-protector
fi
if use dedicated || use server ; then
myconf="${myconf} --enable-server"
myconf="${myconf} --enable-campaign-server"
myconf="${myconf} --with-server-uid=${GAMES_USER_DED}"
myconf="${myconf} --with-server-gid=${GAMES_GROUP}"
fi
egamesconf \
--disable-dependency-tracking \
--without-fribidi \
--with-localedir=/usr/share/locale \
--with-icondir=/usr/share/icons \
--with-desktopdir=/usr/share/applications \
--docdir=/usr/share/doc/${PF} \
--enable-python-install \
$(use_enable lite) \
$(use_enable static) \
$(use_enable editor) \
$(use_enable tools) \
$(use_enable nls) \
$(use_enable nls dummy-locales) \
$(use_enable !dedicated game) \
${myconf} \
|| die
emake || die "emake failed"
}
src_install() {
emake DESTDIR="${D}" install || die "emake install failed"
dodoc changelog
if use dedicated || use server; then
keepdir "${GAMES_STATEDIR}/run/wesnothd"
doinitd "${T}"/wesnothd || die "doinitd failed"
fi
prepgamesdirs
}
--
gentoo-commits@lists.gentoo.org mailing list
^ permalink raw reply [flat|nested] 6+ messages in thread
* [gentoo-commits] gentoo-x86 commit in games-strategy/wesnoth: ChangeLog wesnoth-1.4.2.ebuild
@ 2008-05-09 20:00 Markus Meier (maekke)
0 siblings, 0 replies; 6+ messages in thread
From: Markus Meier (maekke) @ 2008-05-09 20:00 UTC (permalink / raw
To: gentoo-commits
maekke 08/05/09 20:00:36
Modified: ChangeLog wesnoth-1.4.2.ebuild
Log:
amd64/x86 stable, bug #220957
(Portage version: 2.1.5_rc8)
Revision Changes Path
1.121 games-strategy/wesnoth/ChangeLog
file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/games-strategy/wesnoth/ChangeLog?rev=1.121&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/games-strategy/wesnoth/ChangeLog?rev=1.121&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/games-strategy/wesnoth/ChangeLog?r1=1.120&r2=1.121
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/games-strategy/wesnoth/ChangeLog,v
retrieving revision 1.120
retrieving revision 1.121
diff -u -r1.120 -r1.121
--- ChangeLog 5 May 2008 16:06:01 -0000 1.120
+++ ChangeLog 9 May 2008 20:00:36 -0000 1.121
@@ -1,6 +1,9 @@
# ChangeLog for games-strategy/wesnoth
# Copyright 2000-2008 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/games-strategy/wesnoth/ChangeLog,v 1.120 2008/05/05 16:06:01 mr_bones_ Exp $
+# $Header: /var/cvsroot/gentoo-x86/games-strategy/wesnoth/ChangeLog,v 1.121 2008/05/09 20:00:36 maekke Exp $
+
+ 09 May 2008; Markus Meier <maekke@gentoo.org> wesnoth-1.4.2.ebuild:
+ amd64/x86 stable, bug #220957
05 May 2008; Michael Sterrett <mr_bones_@gentoo.org> ChangeLog:
version bump
1.2 games-strategy/wesnoth/wesnoth-1.4.2.ebuild
file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/games-strategy/wesnoth/wesnoth-1.4.2.ebuild?rev=1.2&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/games-strategy/wesnoth/wesnoth-1.4.2.ebuild?rev=1.2&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/games-strategy/wesnoth/wesnoth-1.4.2.ebuild?r1=1.1&r2=1.2
Index: wesnoth-1.4.2.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/games-strategy/wesnoth/wesnoth-1.4.2.ebuild,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- wesnoth-1.4.2.ebuild 5 May 2008 16:06:01 -0000 1.1
+++ wesnoth-1.4.2.ebuild 9 May 2008 20:00:36 -0000 1.2
@@ -1,6 +1,6 @@
# Copyright 1999-2008 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/games-strategy/wesnoth/wesnoth-1.4.2.ebuild,v 1.1 2008/05/05 16:06:01 mr_bones_ Exp $
+# $Header: /var/cvsroot/gentoo-x86/games-strategy/wesnoth/wesnoth-1.4.2.ebuild,v 1.2 2008/05/09 20:00:36 maekke Exp $
inherit eutils toolchain-funcs flag-o-matic games
@@ -11,7 +11,7 @@
LICENSE="GPL-2"
SLOT="0"
-KEYWORDS="~amd64 ~ppc ~ppc64 ~sparc ~x86 ~x86-fbsd"
+KEYWORDS="amd64 ~ppc ~ppc64 ~sparc x86 ~x86-fbsd"
IUSE="dedicated editor lite nls server static tools"
RDEPEND=">=media-libs/libsdl-1.2.7
--
gentoo-commits@lists.gentoo.org mailing list
^ permalink raw reply [flat|nested] 6+ messages in thread
* [gentoo-commits] gentoo-x86 commit in games-strategy/wesnoth: ChangeLog wesnoth-1.4.2.ebuild
@ 2008-05-11 16:42 Markus Rothe (corsair)
0 siblings, 0 replies; 6+ messages in thread
From: Markus Rothe (corsair) @ 2008-05-11 16:42 UTC (permalink / raw
To: gentoo-commits
corsair 08/05/11 16:42:27
Modified: ChangeLog wesnoth-1.4.2.ebuild
Log:
Stable on ppc64; bug #220957
(Portage version: 2.1.4.4)
Revision Changes Path
1.122 games-strategy/wesnoth/ChangeLog
file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/games-strategy/wesnoth/ChangeLog?rev=1.122&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/games-strategy/wesnoth/ChangeLog?rev=1.122&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/games-strategy/wesnoth/ChangeLog?r1=1.121&r2=1.122
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/games-strategy/wesnoth/ChangeLog,v
retrieving revision 1.121
retrieving revision 1.122
diff -u -r1.121 -r1.122
--- ChangeLog 9 May 2008 20:00:36 -0000 1.121
+++ ChangeLog 11 May 2008 16:42:27 -0000 1.122
@@ -1,6 +1,9 @@
# ChangeLog for games-strategy/wesnoth
# Copyright 2000-2008 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/games-strategy/wesnoth/ChangeLog,v 1.121 2008/05/09 20:00:36 maekke Exp $
+# $Header: /var/cvsroot/gentoo-x86/games-strategy/wesnoth/ChangeLog,v 1.122 2008/05/11 16:42:27 corsair Exp $
+
+ 11 May 2008; Markus Rothe <corsair@gentoo.org> wesnoth-1.4.2.ebuild:
+ Stable on ppc64; bug #220957
09 May 2008; Markus Meier <maekke@gentoo.org> wesnoth-1.4.2.ebuild:
amd64/x86 stable, bug #220957
1.3 games-strategy/wesnoth/wesnoth-1.4.2.ebuild
file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/games-strategy/wesnoth/wesnoth-1.4.2.ebuild?rev=1.3&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/games-strategy/wesnoth/wesnoth-1.4.2.ebuild?rev=1.3&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/games-strategy/wesnoth/wesnoth-1.4.2.ebuild?r1=1.2&r2=1.3
Index: wesnoth-1.4.2.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/games-strategy/wesnoth/wesnoth-1.4.2.ebuild,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- wesnoth-1.4.2.ebuild 9 May 2008 20:00:36 -0000 1.2
+++ wesnoth-1.4.2.ebuild 11 May 2008 16:42:27 -0000 1.3
@@ -1,6 +1,6 @@
# Copyright 1999-2008 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/games-strategy/wesnoth/wesnoth-1.4.2.ebuild,v 1.2 2008/05/09 20:00:36 maekke Exp $
+# $Header: /var/cvsroot/gentoo-x86/games-strategy/wesnoth/wesnoth-1.4.2.ebuild,v 1.3 2008/05/11 16:42:27 corsair Exp $
inherit eutils toolchain-funcs flag-o-matic games
@@ -11,7 +11,7 @@
LICENSE="GPL-2"
SLOT="0"
-KEYWORDS="amd64 ~ppc ~ppc64 ~sparc x86 ~x86-fbsd"
+KEYWORDS="amd64 ~ppc ppc64 ~sparc x86 ~x86-fbsd"
IUSE="dedicated editor lite nls server static tools"
RDEPEND=">=media-libs/libsdl-1.2.7
--
gentoo-commits@lists.gentoo.org mailing list
^ permalink raw reply [flat|nested] 6+ messages in thread
* [gentoo-commits] gentoo-x86 commit in games-strategy/wesnoth: ChangeLog wesnoth-1.4.2.ebuild
@ 2008-05-13 14:24 Ferris McCormick (fmccor)
0 siblings, 0 replies; 6+ messages in thread
From: Ferris McCormick (fmccor) @ 2008-05-13 14:24 UTC (permalink / raw
To: gentoo-commits
fmccor 08/05/13 14:24:03
Modified: ChangeLog wesnoth-1.4.2.ebuild
Log:
Sparc stable --- Bug #220957 --- plays for me.
(Portage version: 2.2_pre6)
Revision Changes Path
1.123 games-strategy/wesnoth/ChangeLog
file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/games-strategy/wesnoth/ChangeLog?rev=1.123&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/games-strategy/wesnoth/ChangeLog?rev=1.123&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/games-strategy/wesnoth/ChangeLog?r1=1.122&r2=1.123
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/games-strategy/wesnoth/ChangeLog,v
retrieving revision 1.122
retrieving revision 1.123
diff -u -r1.122 -r1.123
--- ChangeLog 11 May 2008 16:42:27 -0000 1.122
+++ ChangeLog 13 May 2008 14:24:03 -0000 1.123
@@ -1,6 +1,9 @@
# ChangeLog for games-strategy/wesnoth
# Copyright 2000-2008 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/games-strategy/wesnoth/ChangeLog,v 1.122 2008/05/11 16:42:27 corsair Exp $
+# $Header: /var/cvsroot/gentoo-x86/games-strategy/wesnoth/ChangeLog,v 1.123 2008/05/13 14:24:03 fmccor Exp $
+
+ 13 May 2008; Ferris McCormick <fmccor@gentoo.org> wesnoth-1.4.2.ebuild:
+ Sparc stable --- Bug #220957 --- plays for me.
11 May 2008; Markus Rothe <corsair@gentoo.org> wesnoth-1.4.2.ebuild:
Stable on ppc64; bug #220957
1.4 games-strategy/wesnoth/wesnoth-1.4.2.ebuild
file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/games-strategy/wesnoth/wesnoth-1.4.2.ebuild?rev=1.4&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/games-strategy/wesnoth/wesnoth-1.4.2.ebuild?rev=1.4&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/games-strategy/wesnoth/wesnoth-1.4.2.ebuild?r1=1.3&r2=1.4
Index: wesnoth-1.4.2.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/games-strategy/wesnoth/wesnoth-1.4.2.ebuild,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- wesnoth-1.4.2.ebuild 11 May 2008 16:42:27 -0000 1.3
+++ wesnoth-1.4.2.ebuild 13 May 2008 14:24:03 -0000 1.4
@@ -1,6 +1,6 @@
# Copyright 1999-2008 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/games-strategy/wesnoth/wesnoth-1.4.2.ebuild,v 1.3 2008/05/11 16:42:27 corsair Exp $
+# $Header: /var/cvsroot/gentoo-x86/games-strategy/wesnoth/wesnoth-1.4.2.ebuild,v 1.4 2008/05/13 14:24:03 fmccor Exp $
inherit eutils toolchain-funcs flag-o-matic games
@@ -11,7 +11,7 @@
LICENSE="GPL-2"
SLOT="0"
-KEYWORDS="amd64 ~ppc ppc64 ~sparc x86 ~x86-fbsd"
+KEYWORDS="amd64 ~ppc ppc64 sparc x86 ~x86-fbsd"
IUSE="dedicated editor lite nls server static tools"
RDEPEND=">=media-libs/libsdl-1.2.7
--
gentoo-commits@lists.gentoo.org mailing list
^ permalink raw reply [flat|nested] 6+ messages in thread
* [gentoo-commits] gentoo-x86 commit in games-strategy/wesnoth: ChangeLog wesnoth-1.4.2.ebuild
@ 2008-05-20 5:50 Michael Sterrett (mr_bones_)
0 siblings, 0 replies; 6+ messages in thread
From: Michael Sterrett (mr_bones_) @ 2008-05-20 5:50 UTC (permalink / raw
To: gentoo-commits
mr_bones_ 08/05/20 05:50:02
Modified: ChangeLog wesnoth-1.4.2.ebuild
Log:
force the built_with_use check for USE=X with libsdl (bug #222033)
(Portage version: 2.1.4.4)
Revision Changes Path
1.124 games-strategy/wesnoth/ChangeLog
file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/games-strategy/wesnoth/ChangeLog?rev=1.124&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/games-strategy/wesnoth/ChangeLog?rev=1.124&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/games-strategy/wesnoth/ChangeLog?r1=1.123&r2=1.124
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/games-strategy/wesnoth/ChangeLog,v
retrieving revision 1.123
retrieving revision 1.124
diff -u -r1.123 -r1.124
--- ChangeLog 13 May 2008 14:24:03 -0000 1.123
+++ ChangeLog 20 May 2008 05:50:01 -0000 1.124
@@ -1,6 +1,9 @@
# ChangeLog for games-strategy/wesnoth
# Copyright 2000-2008 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/games-strategy/wesnoth/ChangeLog,v 1.123 2008/05/13 14:24:03 fmccor Exp $
+# $Header: /var/cvsroot/gentoo-x86/games-strategy/wesnoth/ChangeLog,v 1.124 2008/05/20 05:50:01 mr_bones_ Exp $
+
+ 20 May 2008; Michael Sterrett <mr_bones_@gentoo.org> wesnoth-1.4.2.ebuild:
+ force the built_with_use check for USE=X with libsdl (bug #222033)
13 May 2008; Ferris McCormick <fmccor@gentoo.org> wesnoth-1.4.2.ebuild:
Sparc stable --- Bug #220957 --- plays for me.
1.5 games-strategy/wesnoth/wesnoth-1.4.2.ebuild
file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/games-strategy/wesnoth/wesnoth-1.4.2.ebuild?rev=1.5&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/games-strategy/wesnoth/wesnoth-1.4.2.ebuild?rev=1.5&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/games-strategy/wesnoth/wesnoth-1.4.2.ebuild?r1=1.4&r2=1.5
Index: wesnoth-1.4.2.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/games-strategy/wesnoth/wesnoth-1.4.2.ebuild,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -r1.4 -r1.5
--- wesnoth-1.4.2.ebuild 13 May 2008 14:24:03 -0000 1.4
+++ wesnoth-1.4.2.ebuild 20 May 2008 05:50:01 -0000 1.5
@@ -1,6 +1,6 @@
# Copyright 1999-2008 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/games-strategy/wesnoth/wesnoth-1.4.2.ebuild,v 1.4 2008/05/13 14:24:03 fmccor Exp $
+# $Header: /var/cvsroot/gentoo-x86/games-strategy/wesnoth/wesnoth-1.4.2.ebuild,v 1.5 2008/05/20 05:50:01 mr_bones_ Exp $
inherit eutils toolchain-funcs flag-o-matic games
@@ -44,7 +44,8 @@
if ! built_with_use media-libs/sdl-image png ; then
die "Please emerge media-libs/sdl-image with USE=png"
fi
- if ! use dedicated && ! built_with_use media-libs/libsdl X ; then
+ # dedicated also needs USE=X for libsdl: bug #222033
+ if ! built_with_use media-libs/libsdl X ; then
die "Please emerge media-libs/libsdl with USE=X"
fi
games_pkg_setup
--
gentoo-commits@lists.gentoo.org mailing list
^ permalink raw reply [flat|nested] 6+ messages in thread
* [gentoo-commits] gentoo-x86 commit in games-strategy/wesnoth: ChangeLog wesnoth-1.4.2.ebuild
@ 2008-06-02 7:30 Markus Rothe (corsair)
0 siblings, 0 replies; 6+ messages in thread
From: Markus Rothe (corsair) @ 2008-06-02 7:30 UTC (permalink / raw
To: gentoo-commits
corsair 08/06/02 07:30:24
Modified: ChangeLog wesnoth-1.4.2.ebuild
Log:
Stable on ppc; bug #220957
(Portage version: 2.1.4.4)
Revision Changes Path
1.125 games-strategy/wesnoth/ChangeLog
file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/games-strategy/wesnoth/ChangeLog?rev=1.125&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/games-strategy/wesnoth/ChangeLog?rev=1.125&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/games-strategy/wesnoth/ChangeLog?r1=1.124&r2=1.125
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/games-strategy/wesnoth/ChangeLog,v
retrieving revision 1.124
retrieving revision 1.125
diff -u -r1.124 -r1.125
--- ChangeLog 20 May 2008 05:50:01 -0000 1.124
+++ ChangeLog 2 Jun 2008 07:30:24 -0000 1.125
@@ -1,6 +1,9 @@
# ChangeLog for games-strategy/wesnoth
# Copyright 2000-2008 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/games-strategy/wesnoth/ChangeLog,v 1.124 2008/05/20 05:50:01 mr_bones_ Exp $
+# $Header: /var/cvsroot/gentoo-x86/games-strategy/wesnoth/ChangeLog,v 1.125 2008/06/02 07:30:24 corsair Exp $
+
+ 02 Jun 2008; Markus Rothe <corsair@gentoo.org> wesnoth-1.4.2.ebuild:
+ Stable on ppc; bug #220957
20 May 2008; Michael Sterrett <mr_bones_@gentoo.org> wesnoth-1.4.2.ebuild:
force the built_with_use check for USE=X with libsdl (bug #222033)
1.6 games-strategy/wesnoth/wesnoth-1.4.2.ebuild
file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/games-strategy/wesnoth/wesnoth-1.4.2.ebuild?rev=1.6&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/games-strategy/wesnoth/wesnoth-1.4.2.ebuild?rev=1.6&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/games-strategy/wesnoth/wesnoth-1.4.2.ebuild?r1=1.5&r2=1.6
Index: wesnoth-1.4.2.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/games-strategy/wesnoth/wesnoth-1.4.2.ebuild,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -r1.5 -r1.6
--- wesnoth-1.4.2.ebuild 20 May 2008 05:50:01 -0000 1.5
+++ wesnoth-1.4.2.ebuild 2 Jun 2008 07:30:24 -0000 1.6
@@ -1,6 +1,6 @@
# Copyright 1999-2008 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/games-strategy/wesnoth/wesnoth-1.4.2.ebuild,v 1.5 2008/05/20 05:50:01 mr_bones_ Exp $
+# $Header: /var/cvsroot/gentoo-x86/games-strategy/wesnoth/wesnoth-1.4.2.ebuild,v 1.6 2008/06/02 07:30:24 corsair Exp $
inherit eutils toolchain-funcs flag-o-matic games
@@ -11,7 +11,7 @@
LICENSE="GPL-2"
SLOT="0"
-KEYWORDS="amd64 ~ppc ppc64 sparc x86 ~x86-fbsd"
+KEYWORDS="amd64 ppc ppc64 sparc x86 ~x86-fbsd"
IUSE="dedicated editor lite nls server static tools"
RDEPEND=">=media-libs/libsdl-1.2.7
--
gentoo-commits@lists.gentoo.org mailing list
^ permalink raw reply [flat|nested] 6+ messages in thread
end of thread, other threads:[~2008-06-02 7:30 UTC | newest]
Thread overview: 6+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2008-05-20 5:50 [gentoo-commits] gentoo-x86 commit in games-strategy/wesnoth: ChangeLog wesnoth-1.4.2.ebuild Michael Sterrett (mr_bones_)
-- strict thread matches above, loose matches on Subject: below --
2008-06-02 7:30 Markus Rothe (corsair)
2008-05-13 14:24 Ferris McCormick (fmccor)
2008-05-11 16:42 Markus Rothe (corsair)
2008-05-09 20:00 Markus Meier (maekke)
2008-05-05 16:06 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