* [gentoo-commits] gentoo-x86 commit in games-strategy/ufo-ai: ChangeLog ufo-ai-2.3.1-r1.ebuild
@ 2010-12-20 5:09 Michael Sterrett (mr_bones_)
0 siblings, 0 replies; 6+ messages in thread
From: Michael Sterrett (mr_bones_) @ 2010-12-20 5:09 UTC (permalink / raw
To: gentoo-commits
mr_bones_ 10/12/20 05:09:05
Modified: ChangeLog
Added: ufo-ai-2.3.1-r1.ebuild
Log:
rev bump to get upstream hot fix
(Portage version: 2.1.9.24/cvs/Linux i686)
Revision Changes Path
1.30 games-strategy/ufo-ai/ChangeLog
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-strategy/ufo-ai/ChangeLog?rev=1.30&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-strategy/ufo-ai/ChangeLog?rev=1.30&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-strategy/ufo-ai/ChangeLog?r1=1.29&r2=1.30
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/games-strategy/ufo-ai/ChangeLog,v
retrieving revision 1.29
retrieving revision 1.30
diff -u -r1.29 -r1.30
--- ChangeLog 30 Nov 2010 21:14:55 -0000 1.29
+++ ChangeLog 20 Dec 2010 05:09:05 -0000 1.30
@@ -1,6 +1,12 @@
# ChangeLog for games-strategy/ufo-ai
# Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/games-strategy/ufo-ai/ChangeLog,v 1.29 2010/11/30 21:14:55 mr_bones_ Exp $
+# $Header: /var/cvsroot/gentoo-x86/games-strategy/ufo-ai/ChangeLog,v 1.30 2010/12/20 05:09:05 mr_bones_ Exp $
+
+*ufo-ai-2.3.1-r1 (20 Dec 2010)
+
+ 20 Dec 2010; Michael Sterrett <mr_bones_@gentoo.org>
+ +ufo-ai-2.3.1-r1.ebuild:
+ rev bump to get upstream hot fix
*ufo-ai-2.3.1 (30 Nov 2010)
1.1 games-strategy/ufo-ai/ufo-ai-2.3.1-r1.ebuild
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-strategy/ufo-ai/ufo-ai-2.3.1-r1.ebuild?rev=1.1&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-strategy/ufo-ai/ufo-ai-2.3.1-r1.ebuild?rev=1.1&content-type=text/plain
Index: ufo-ai-2.3.1-r1.ebuild
===================================================================
# Copyright 1999-2010 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/games-strategy/ufo-ai/ufo-ai-2.3.1-r1.ebuild,v 1.1 2010/12/20 05:09:05 mr_bones_ Exp $
EAPI=2
inherit eutils flag-o-matic games
MY_P="${P/o-a/oa}"
DESCRIPTION="UFO: Alien Invasion - X-COM inspired strategy game"
HOMEPAGE="http://ufoai.sourceforge.net/"
SRC_URI="mirror://sourceforge/ufoai/${MY_P}-source.tar.bz2
mirror://sourceforge/ufoai/${MY_P}-data.tar
http://mattn.ninex.info/1maps.pk3"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~amd64 ~ppc ~x86"
IUSE="debug dedicated doc editor"
# Dependencies and more instructions can be found here:
# http://ufoai.ninex.info/wiki/index.php/Compile_for_Linux
RDEPEND="!dedicated? (
virtual/opengl
virtual/glu
media-libs/libsdl
media-libs/sdl-image[jpeg,png]
media-libs/sdl-ttf
media-libs/sdl-mixer
media-libs/jpeg
media-libs/libpng
media-libs/libogg
media-libs/libvorbis
x11-proto/xf86vidmodeproto
)
net-misc/curl
sys-devel/gettext
sys-libs/zlib
editor? (
dev-libs/libxml2
media-libs/jpeg
media-libs/openal
x11-libs/gtkglext
x11-libs/gtksourceview
)"
DEPEND="${RDEPEND}
doc? (
virtual/latex-base
dev-tex/pdftex
dev-texlive/texlive-latexextra
)"
S=${WORKDIR}/${MY_P}-source
src_prepare() {
cp "${DISTDIR}"/1maps.pk3 "${WORKDIR}"/base/ || die
mv "${WORKDIR}"/base/ "${S}"/ || die "Moving data failed"
}
src_configure() {
strip-flags # bug #330381
egamesconf \
$(use_enable !debug release) \
$(use_enable editor ufo2map) \
$(use_enable editor uforadiant) \
--enable-dedicated \
$(use_enable !dedicated client) \
--bindir="${GAMES_BINDIR}" \
--datarootdir="${GAMES_DATADIR_BASE}" \
--datadir="${GAMES_DATADIR}" \
--localedir="${GAMES_DATADIR}/${PN/-}/base/i18n/"
}
src_compile() {
if use doc ; then
emake pdf-manual || die "emake pdf-manual failed"
fi
emake || die "emake failed"
emake lang || die "emake lang failed"
if use editor; then
emake uforadiant || die "emake uforadiant failed"
fi
}
src_install() {
emake DESTDIR="${D}" install_exec || die
newicon src/ports/linux/ufo.png ${PN}.png || die
make_desktop_entry ufoded "UFO: Alien Invasion Server" ${PN}
if ! use dedicated ; then
make_desktop_entry ufo "UFO: Alien Invasion" ${PN}
fi
# install data
insinto "${GAMES_DATADIR}"/${PN/-}/base/
doins base/*.pk3 || die
if use doc ; then
dodoc src/docs/tex/ufo-manual_EN.pdf || die
fi
# move translations where they belong
dodir "${GAMES_DATADIR_BASE}/locale" || die
mv "${D}/${GAMES_DATADIR}/${PN/-}/base/i18n/"* \
"${D}/${GAMES_DATADIR_BASE}/locale/" || die
rm -rf "${D}/${GAMES_DATADIR}/${PN/-}/base/i18n/" || die
dosym "${GAMES_DATADIR_BASE}/locale/" "${GAMES_DATADIR}/${PN/-}/base/i18n" || die
prepgamesdirs
}
^ permalink raw reply [flat|nested] 6+ messages in thread
* [gentoo-commits] gentoo-x86 commit in games-strategy/ufo-ai: ChangeLog ufo-ai-2.3.1-r1.ebuild
@ 2011-02-19 13:01 Thomas Kahle (tomka)
0 siblings, 0 replies; 6+ messages in thread
From: Thomas Kahle (tomka) @ 2011-02-19 13:01 UTC (permalink / raw
To: gentoo-commits
tomka 11/02/19 13:01:10
Modified: ChangeLog ufo-ai-2.3.1-r1.ebuild
Log:
x86 stable per bug 352158
(Portage version: 2.1.9.40/cvs/Linux i686)
Revision Changes Path
1.31 games-strategy/ufo-ai/ChangeLog
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-strategy/ufo-ai/ChangeLog?rev=1.31&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-strategy/ufo-ai/ChangeLog?rev=1.31&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-strategy/ufo-ai/ChangeLog?r1=1.30&r2=1.31
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/games-strategy/ufo-ai/ChangeLog,v
retrieving revision 1.30
retrieving revision 1.31
diff -u -r1.30 -r1.31
--- ChangeLog 20 Dec 2010 05:09:05 -0000 1.30
+++ ChangeLog 19 Feb 2011 13:01:10 -0000 1.31
@@ -1,6 +1,9 @@
# ChangeLog for games-strategy/ufo-ai
-# Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/games-strategy/ufo-ai/ChangeLog,v 1.30 2010/12/20 05:09:05 mr_bones_ Exp $
+# Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/games-strategy/ufo-ai/ChangeLog,v 1.31 2011/02/19 13:01:10 tomka Exp $
+
+ 19 Feb 2011; Thomas Kahle <tomka@gentoo.org> ufo-ai-2.3.1-r1.ebuild:
+ x86 stable per bug 352158
*ufo-ai-2.3.1-r1 (20 Dec 2010)
1.2 games-strategy/ufo-ai/ufo-ai-2.3.1-r1.ebuild
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-strategy/ufo-ai/ufo-ai-2.3.1-r1.ebuild?rev=1.2&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-strategy/ufo-ai/ufo-ai-2.3.1-r1.ebuild?rev=1.2&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-strategy/ufo-ai/ufo-ai-2.3.1-r1.ebuild?r1=1.1&r2=1.2
Index: ufo-ai-2.3.1-r1.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/games-strategy/ufo-ai/ufo-ai-2.3.1-r1.ebuild,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- ufo-ai-2.3.1-r1.ebuild 20 Dec 2010 05:09:05 -0000 1.1
+++ ufo-ai-2.3.1-r1.ebuild 19 Feb 2011 13:01:10 -0000 1.2
@@ -1,6 +1,6 @@
-# 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-strategy/ufo-ai/ufo-ai-2.3.1-r1.ebuild,v 1.1 2010/12/20 05:09:05 mr_bones_ Exp $
+# $Header: /var/cvsroot/gentoo-x86/games-strategy/ufo-ai/ufo-ai-2.3.1-r1.ebuild,v 1.2 2011/02/19 13:01:10 tomka Exp $
EAPI=2
inherit eutils flag-o-matic games
@@ -15,7 +15,7 @@
LICENSE="GPL-2"
SLOT="0"
-KEYWORDS="~amd64 ~ppc ~x86"
+KEYWORDS="~amd64 ~ppc x86"
IUSE="debug dedicated doc editor"
# Dependencies and more instructions can be found here:
^ permalink raw reply [flat|nested] 6+ messages in thread
* [gentoo-commits] gentoo-x86 commit in games-strategy/ufo-ai: ChangeLog ufo-ai-2.3.1-r1.ebuild
@ 2011-04-02 17:45 Alfredo Tupone (tupone)
0 siblings, 0 replies; 6+ messages in thread
From: Alfredo Tupone (tupone) @ 2011-04-02 17:45 UTC (permalink / raw
To: gentoo-commits
tupone 11/04/02 17:45:50
Modified: ChangeLog ufo-ai-2.3.1-r1.ebuild
Log:
Fix build with media-libs/libpng-1.5 Bug #356843
(Portage version: 2.1.9.42/cvs/Linux x86_64)
Revision Changes Path
1.34 games-strategy/ufo-ai/ChangeLog
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-strategy/ufo-ai/ChangeLog?rev=1.34&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-strategy/ufo-ai/ChangeLog?rev=1.34&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-strategy/ufo-ai/ChangeLog?r1=1.33&r2=1.34
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/games-strategy/ufo-ai/ChangeLog,v
retrieving revision 1.33
retrieving revision 1.34
diff -u -r1.33 -r1.34
--- ChangeLog 23 Mar 2011 16:48:32 -0000 1.33
+++ ChangeLog 2 Apr 2011 17:45:50 -0000 1.34
@@ -1,6 +1,10 @@
# ChangeLog for games-strategy/ufo-ai
# Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/games-strategy/ufo-ai/ChangeLog,v 1.33 2011/03/23 16:48:32 eva Exp $
+# $Header: /var/cvsroot/gentoo-x86/games-strategy/ufo-ai/ChangeLog,v 1.34 2011/04/02 17:45:50 tupone Exp $
+
+ 02 Apr 2011; Alfredo Tupone <tupone@gentoo.org> ufo-ai-2.3.1-r1.ebuild,
+ +files/ufo-ai-2.3.1-libpng15.patch:
+ Fix build with media-libs/libpng-1.5 Bug #356843 by Alexis Ballier
23 Mar 2011; Gilles Dartiguelongue <eva@gentoo.org> ufo-ai-2.3.ebuild,
ufo-ai-2.3.1-r1.ebuild:
1.5 games-strategy/ufo-ai/ufo-ai-2.3.1-r1.ebuild
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-strategy/ufo-ai/ufo-ai-2.3.1-r1.ebuild?rev=1.5&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-strategy/ufo-ai/ufo-ai-2.3.1-r1.ebuild?rev=1.5&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-strategy/ufo-ai/ufo-ai-2.3.1-r1.ebuild?r1=1.4&r2=1.5
Index: ufo-ai-2.3.1-r1.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/games-strategy/ufo-ai/ufo-ai-2.3.1-r1.ebuild,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -r1.4 -r1.5
--- ufo-ai-2.3.1-r1.ebuild 23 Mar 2011 16:48:32 -0000 1.4
+++ ufo-ai-2.3.1-r1.ebuild 2 Apr 2011 17:45:50 -0000 1.5
@@ -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-strategy/ufo-ai/ufo-ai-2.3.1-r1.ebuild,v 1.4 2011/03/23 16:48:32 eva Exp $
+# $Header: /var/cvsroot/gentoo-x86/games-strategy/ufo-ai/ufo-ai-2.3.1-r1.ebuild,v 1.5 2011/04/02 17:45:50 tupone Exp $
EAPI=2
inherit eutils flag-o-matic games
@@ -54,6 +54,7 @@
S=${WORKDIR}/${MY_P}-source
src_prepare() {
+ epatch "${FILESDIR}"/${P}-libpng15.patch
cp "${DISTDIR}"/1maps.pk3 "${WORKDIR}"/base/ || die
mv "${WORKDIR}"/base/ "${S}"/ || die "Moving data failed"
}
^ permalink raw reply [flat|nested] 6+ messages in thread
* [gentoo-commits] gentoo-x86 commit in games-strategy/ufo-ai: ChangeLog ufo-ai-2.3.1-r1.ebuild
@ 2011-08-20 8:08 Alexis Ballier (aballier)
0 siblings, 0 replies; 6+ messages in thread
From: Alexis Ballier (aballier) @ 2011-08-20 8:08 UTC (permalink / raw
To: gentoo-commits
aballier 11/08/20 08:08:34
Modified: ChangeLog ufo-ai-2.3.1-r1.ebuild
Log:
virtual/latex-base provides pdftex, drop useless pdftex dep
(Portage version: 2.2.0_alpha51/cvs/Linux x86_64)
Revision Changes Path
1.35 games-strategy/ufo-ai/ChangeLog
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-strategy/ufo-ai/ChangeLog?rev=1.35&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-strategy/ufo-ai/ChangeLog?rev=1.35&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-strategy/ufo-ai/ChangeLog?r1=1.34&r2=1.35
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/games-strategy/ufo-ai/ChangeLog,v
retrieving revision 1.34
retrieving revision 1.35
diff -u -r1.34 -r1.35
--- ChangeLog 2 Apr 2011 17:45:50 -0000 1.34
+++ ChangeLog 20 Aug 2011 08:08:34 -0000 1.35
@@ -1,6 +1,9 @@
# ChangeLog for games-strategy/ufo-ai
# Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/games-strategy/ufo-ai/ChangeLog,v 1.34 2011/04/02 17:45:50 tupone Exp $
+# $Header: /var/cvsroot/gentoo-x86/games-strategy/ufo-ai/ChangeLog,v 1.35 2011/08/20 08:08:34 aballier Exp $
+
+ 20 Aug 2011; Alexis Ballier <aballier@gentoo.org> ufo-ai-2.3.1-r1.ebuild:
+ virtual/latex-base provides pdftex, drop useless pdftex dep
02 Apr 2011; Alfredo Tupone <tupone@gentoo.org> ufo-ai-2.3.1-r1.ebuild,
+files/ufo-ai-2.3.1-libpng15.patch:
1.6 games-strategy/ufo-ai/ufo-ai-2.3.1-r1.ebuild
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-strategy/ufo-ai/ufo-ai-2.3.1-r1.ebuild?rev=1.6&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-strategy/ufo-ai/ufo-ai-2.3.1-r1.ebuild?rev=1.6&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-strategy/ufo-ai/ufo-ai-2.3.1-r1.ebuild?r1=1.5&r2=1.6
Index: ufo-ai-2.3.1-r1.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/games-strategy/ufo-ai/ufo-ai-2.3.1-r1.ebuild,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -r1.5 -r1.6
--- ufo-ai-2.3.1-r1.ebuild 2 Apr 2011 17:45:50 -0000 1.5
+++ ufo-ai-2.3.1-r1.ebuild 20 Aug 2011 08:08:34 -0000 1.6
@@ -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-strategy/ufo-ai/ufo-ai-2.3.1-r1.ebuild,v 1.5 2011/04/02 17:45:50 tupone Exp $
+# $Header: /var/cvsroot/gentoo-x86/games-strategy/ufo-ai/ufo-ai-2.3.1-r1.ebuild,v 1.6 2011/08/20 08:08:34 aballier Exp $
EAPI=2
inherit eutils flag-o-matic games
@@ -47,7 +47,6 @@
DEPEND="${RDEPEND}
doc? (
virtual/latex-base
- dev-tex/pdftex
dev-texlive/texlive-latexextra
)"
^ permalink raw reply [flat|nested] 6+ messages in thread
* [gentoo-commits] gentoo-x86 commit in games-strategy/ufo-ai: ChangeLog ufo-ai-2.3.1-r1.ebuild
@ 2012-01-22 16:35 Samuli Suominen (ssuominen)
0 siblings, 0 replies; 6+ messages in thread
From: Samuli Suominen (ssuominen) @ 2012-01-22 16:35 UTC (permalink / raw
To: gentoo-commits
ssuominen 12/01/22 16:35:28
Modified: ChangeLog ufo-ai-2.3.1-r1.ebuild
Log:
Fix building with sys-libs/zlib >= 1.2.5.1-r1 (OF change) wrt #383179
(Portage version: 2.2.0_alpha84/cvs/Linux x86_64)
Revision Changes Path
1.36 games-strategy/ufo-ai/ChangeLog
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-strategy/ufo-ai/ChangeLog?rev=1.36&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-strategy/ufo-ai/ChangeLog?rev=1.36&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-strategy/ufo-ai/ChangeLog?r1=1.35&r2=1.36
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/games-strategy/ufo-ai/ChangeLog,v
retrieving revision 1.35
retrieving revision 1.36
diff -u -r1.35 -r1.36
--- ChangeLog 20 Aug 2011 08:08:34 -0000 1.35
+++ ChangeLog 22 Jan 2012 16:35:28 -0000 1.36
@@ -1,6 +1,9 @@
# ChangeLog for games-strategy/ufo-ai
-# Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/games-strategy/ufo-ai/ChangeLog,v 1.35 2011/08/20 08:08:34 aballier Exp $
+# Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/games-strategy/ufo-ai/ChangeLog,v 1.36 2012/01/22 16:35:28 ssuominen Exp $
+
+ 22 Jan 2012; Samuli Suominen <ssuominen@gentoo.org> ufo-ai-2.3.1-r1.ebuild:
+ Fix building with sys-libs/zlib >= 1.2.5.1-r1 (OF change) wrt #383179
20 Aug 2011; Alexis Ballier <aballier@gentoo.org> ufo-ai-2.3.1-r1.ebuild:
virtual/latex-base provides pdftex, drop useless pdftex dep
1.7 games-strategy/ufo-ai/ufo-ai-2.3.1-r1.ebuild
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-strategy/ufo-ai/ufo-ai-2.3.1-r1.ebuild?rev=1.7&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-strategy/ufo-ai/ufo-ai-2.3.1-r1.ebuild?rev=1.7&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-strategy/ufo-ai/ufo-ai-2.3.1-r1.ebuild?r1=1.6&r2=1.7
Index: ufo-ai-2.3.1-r1.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/games-strategy/ufo-ai/ufo-ai-2.3.1-r1.ebuild,v
retrieving revision 1.6
retrieving revision 1.7
diff -u -r1.6 -r1.7
--- ufo-ai-2.3.1-r1.ebuild 20 Aug 2011 08:08:34 -0000 1.6
+++ ufo-ai-2.3.1-r1.ebuild 22 Jan 2012 16:35:28 -0000 1.7
@@ -1,11 +1,11 @@
-# Copyright 1999-2011 Gentoo Foundation
+# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/games-strategy/ufo-ai/ufo-ai-2.3.1-r1.ebuild,v 1.6 2011/08/20 08:08:34 aballier Exp $
+# $Header: /var/cvsroot/gentoo-x86/games-strategy/ufo-ai/ufo-ai-2.3.1-r1.ebuild,v 1.7 2012/01/22 16:35:28 ssuominen Exp $
EAPI=2
inherit eutils flag-o-matic games
-MY_P="${P/o-a/oa}"
+MY_P=${P/o-a/oa}
DESCRIPTION="UFO: Alien Invasion - X-COM inspired strategy game"
HOMEPAGE="http://ufoai.sourceforge.net/"
@@ -28,7 +28,7 @@
media-libs/sdl-ttf
media-libs/sdl-mixer
virtual/jpeg
- media-libs/libpng
+ media-libs/libpng:0
media-libs/libogg
media-libs/libvorbis
x11-proto/xf86vidmodeproto
@@ -37,7 +37,7 @@
sys-devel/gettext
sys-libs/zlib
editor? (
- dev-libs/libxml2:2
+ dev-libs/libxml2
virtual/jpeg
media-libs/openal
x11-libs/gtkglext
@@ -53,9 +53,11 @@
S=${WORKDIR}/${MY_P}-source
src_prepare() {
+ has_version '>=sys-libs/zlib-1.2.5.1-r1' && sed -i \
+ -e '1i#define OF(x) x' src/common/ioapi.h
epatch "${FILESDIR}"/${P}-libpng15.patch
cp "${DISTDIR}"/1maps.pk3 "${WORKDIR}"/base/ || die
- mv "${WORKDIR}"/base/ "${S}"/ || die "Moving data failed"
+ mv "${WORKDIR}"/base/ "${S}"/ || die
}
src_configure() {
@@ -73,15 +75,15 @@
}
src_compile() {
- if use doc ; then
- emake pdf-manual || die "emake pdf-manual failed"
+ if use doc; then
+ emake pdf-manual || die
fi
- emake || die "emake failed"
- emake lang || die "emake lang failed"
+ emake || die
+ emake lang || die
if use editor; then
- emake uforadiant || die "emake uforadiant failed"
+ emake uforadiant || die
fi
}
@@ -90,7 +92,7 @@
newicon src/ports/linux/ufo.png ${PN}.png || die
make_desktop_entry ufoded "UFO: Alien Invasion Server" ${PN}
- if ! use dedicated ; then
+ if ! use dedicated; then
make_desktop_entry ufo "UFO: Alien Invasion" ${PN}
fi
^ permalink raw reply [flat|nested] 6+ messages in thread
* [gentoo-commits] gentoo-x86 commit in games-strategy/ufo-ai: ChangeLog ufo-ai-2.3.1-r1.ebuild
@ 2012-07-16 19:05 Michael Sterrett (mr_bones_)
0 siblings, 0 replies; 6+ messages in thread
From: Michael Sterrett (mr_bones_) @ 2012-07-16 19:05 UTC (permalink / raw
To: gentoo-commits
mr_bones_ 12/07/16 19:05:07
Modified: ChangeLog
Removed: ufo-ai-2.3.1-r1.ebuild
Log:
old
(Portage version: 2.1.10.65/cvs/Linux x86_64)
Revision Changes Path
1.40 games-strategy/ufo-ai/ChangeLog
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-strategy/ufo-ai/ChangeLog?rev=1.40&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-strategy/ufo-ai/ChangeLog?rev=1.40&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-strategy/ufo-ai/ChangeLog?r1=1.39&r2=1.40
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/games-strategy/ufo-ai/ChangeLog,v
retrieving revision 1.39
retrieving revision 1.40
diff -u -r1.39 -r1.40
--- ChangeLog 8 Jun 2012 11:48:07 -0000 1.39
+++ ChangeLog 16 Jul 2012 19:05:07 -0000 1.40
@@ -1,6 +1,10 @@
# ChangeLog for games-strategy/ufo-ai
# Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/games-strategy/ufo-ai/ChangeLog,v 1.39 2012/06/08 11:48:07 phajdan.jr Exp $
+# $Header: /var/cvsroot/gentoo-x86/games-strategy/ufo-ai/ChangeLog,v 1.40 2012/07/16 19:05:07 mr_bones_ Exp $
+
+ 16 Jul 2012; Michael Sterrett <mr_bones_@gentoo.org>
+ -files/ufo-ai-2.3.1-libpng15.patch, -ufo-ai-2.3.1-r1.ebuild:
+ old
08 Jun 2012; Pawel Hajdan jr <phajdan.jr@gentoo.org> ufo-ai-2.4.ebuild:
x86 stable wrt bug #418429
^ permalink raw reply [flat|nested] 6+ messages in thread
end of thread, other threads:[~2012-07-16 19:05 UTC | newest]
Thread overview: 6+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2010-12-20 5:09 [gentoo-commits] gentoo-x86 commit in games-strategy/ufo-ai: ChangeLog ufo-ai-2.3.1-r1.ebuild Michael Sterrett (mr_bones_)
-- strict thread matches above, loose matches on Subject: below --
2011-02-19 13:01 Thomas Kahle (tomka)
2011-04-02 17:45 Alfredo Tupone (tupone)
2011-08-20 8:08 Alexis Ballier (aballier)
2012-01-22 16:35 Samuli Suominen (ssuominen)
2012-07-16 19: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