public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] gentoo-x86 commit in games-strategy/ufo-ai: ufo-ai-2.4.ebuild ChangeLog
@ 2012-05-01  9:10 Tomas Chvatal (scarabeus)
  0 siblings, 0 replies; 7+ messages in thread
From: Tomas Chvatal (scarabeus) @ 2012-05-01  9:10 UTC (permalink / raw
  To: gentoo-commits

scarabeus    12/05/01 09:10:28

  Modified:             ChangeLog
  Added:                ufo-ai-2.4.ebuild
  Log:
  Version bump to the latest release. Upstream now use hand-crafted build system :/ Fix locale init.
  
  (Portage version: 2.2.0_alpha101/cvs/Linux x86_64)

Revision  Changes    Path
1.37                 games-strategy/ufo-ai/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/games-strategy/ufo-ai/ChangeLog,v
retrieving revision 1.36
retrieving revision 1.37
diff -u -r1.36 -r1.37
--- ChangeLog	22 Jan 2012 16:35:28 -0000	1.36
+++ ChangeLog	1 May 2012 09:10:28 -0000	1.37
@@ -1,6 +1,13 @@
 # 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.36 2012/01/22 16:35:28 ssuominen Exp $
+# $Header: /var/cvsroot/gentoo-x86/games-strategy/ufo-ai/ChangeLog,v 1.37 2012/05/01 09:10:28 scarabeus Exp $
+
+*ufo-ai-2.4 (01 May 2012)
+
+  01 May 2012; Tomáš Chvátal <scarabeus@gentoo.org>
+  +files/ufo-ai-2.4-locale.patch, +ufo-ai-2.4.ebuild:
+  Version bump to the latest release. Upstream now use hand-crafted build system
+  :/ Fix locale init.
 
   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



1.1                  games-strategy/ufo-ai/ufo-ai-2.4.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-strategy/ufo-ai/ufo-ai-2.4.ebuild?rev=1.1&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-strategy/ufo-ai/ufo-ai-2.4.ebuild?rev=1.1&content-type=text/plain

Index: ufo-ai-2.4.ebuild
===================================================================
# 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.4.ebuild,v 1.1 2012/05/01 09:10:28 scarabeus Exp $

EAPI=3

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 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
		virtual/jpeg
		media-libs/libpng:0
		media-libs/libogg
		media-libs/libvorbis
		x11-proto/xf86vidmodeproto
	)
	net-misc/curl
	sys-devel/gettext
	sys-libs/zlib
	editor? (
		dev-libs/libxml2
		virtual/jpeg
		media-libs/openal
		x11-libs/gtkglext
		x11-libs/gtksourceview:2.0
	)"

DEPEND="${RDEPEND}"

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}-locale.patch

	cp "${DISTDIR}"/1maps.pk3 "${WORKDIR}"/base/ || die
	mv "${WORKDIR}"/base/ "${S}"/ || die
}

src_configure() {
	local myconf
	# they are special and provide hand batched configure file
	myconf="
		--disable-dependency-tracking
		$(use_enable !debug release)
		$(use_enable editor ufo2map)
		$(use_enable editor uforadiant)
		--enable-ufoded
		--bindir="${GAMES_BINDIR}"
		--libdir="$(games_get_libdir)"
		--datadir="${GAMES_DATADIR}/${PN/-}"
		--localedir="${EPREFIX}/usr/share/locale/"
		--prefix="${GAMES_PREFIX}"
	"
	echo "./configure ${myconf}"
	./configure ${myconf} || die
}

src_compile() {
	emake || die
	emake lang || die

	if use editor; then
		emake uforadiant || die
	fi
}

src_install() {
	newicon src/ports/linux/ufo.png ${PN}.png || die
	dobin ufoded || die
	make_desktop_entry ufoded "UFO: Alien Invasion Server" ${PN}
	if ! use dedicated; then
		dobin ufo || die
		make_desktop_entry ufo "UFO: Alien Invasion" ${PN}
	fi

	if use editor; then
		dobin ufo2map ufomodel || die
	fi

	# install data
	insinto "${GAMES_DATADIR}"/${PN/-}
	doins -r base || die
	rm -rf "${ED}/${GAMES_DATADIR}/${PN/-}/base/game.so"
	dogameslib base/game.so

	# move translations where they belong
	dodir "${GAMES_DATADIR_BASE}/locale" || die
	mv "${ED}/${GAMES_DATADIR}/${PN/-}/base/i18n/"* \
		"${ED}/${GAMES_DATADIR_BASE}/locale/" || die
	rm -rf "${ED}/${GAMES_DATADIR}/${PN/-}/base/i18n/" || die

	prepgamesdirs
}






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

* [gentoo-commits] gentoo-x86 commit in games-strategy/ufo-ai: ufo-ai-2.4.ebuild ChangeLog
@ 2012-05-31 19:31 Michael Sterrett (mr_bones_)
  0 siblings, 0 replies; 7+ messages in thread
From: Michael Sterrett (mr_bones_) @ 2012-05-31 19:31 UTC (permalink / raw
  To: gentoo-commits

mr_bones_    12/05/31 19:31:05

  Modified:             ufo-ai-2.4.ebuild ChangeLog
  Log:
  tidy
  
  (Portage version: 2.1.10.49/cvs/Linux x86_64)

Revision  Changes    Path
1.2                  games-strategy/ufo-ai/ufo-ai-2.4.ebuild

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

Index: ufo-ai-2.4.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/games-strategy/ufo-ai/ufo-ai-2.4.ebuild,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- ufo-ai-2.4.ebuild	1 May 2012 09:10:28 -0000	1.1
+++ ufo-ai-2.4.ebuild	31 May 2012 19:31:05 -0000	1.2
@@ -1,9 +1,8 @@
 # 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.4.ebuild,v 1.1 2012/05/01 09:10:28 scarabeus Exp $
+# $Header: /var/cvsroot/gentoo-x86/games-strategy/ufo-ai/ufo-ai-2.4.ebuild,v 1.2 2012/05/31 19:31:05 mr_bones_ Exp $
 
 EAPI=3
-
 inherit eutils flag-o-matic games
 
 MY_P=${P/o-a/oa}
@@ -21,7 +20,7 @@
 
 # Dependencies and more instructions can be found here:
 # http://ufoai.ninex.info/wiki/index.php/Compile_for_Linux
-RDEPEND="!dedicated? (
+DEPEND="!dedicated? (
 		virtual/opengl
 		virtual/glu
 		media-libs/libsdl
@@ -45,8 +44,6 @@
 		x11-libs/gtksourceview:2.0
 	)"
 
-DEPEND="${RDEPEND}"
-
 S=${WORKDIR}/${MY_P}-source
 
 src_prepare() {
@@ -60,9 +57,8 @@
 }
 
 src_configure() {
-	local myconf
 	# they are special and provide hand batched configure file
-	myconf="
+	local myconf="
 		--disable-dependency-tracking
 		$(use_enable !debug release)
 		$(use_enable editor ufo2map)



1.38                 games-strategy/ufo-ai/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/games-strategy/ufo-ai/ChangeLog,v
retrieving revision 1.37
retrieving revision 1.38
diff -u -r1.37 -r1.38
--- ChangeLog	1 May 2012 09:10:28 -0000	1.37
+++ ChangeLog	31 May 2012 19:31:05 -0000	1.38
@@ -1,6 +1,9 @@
 # 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.37 2012/05/01 09:10:28 scarabeus Exp $
+# $Header: /var/cvsroot/gentoo-x86/games-strategy/ufo-ai/ChangeLog,v 1.38 2012/05/31 19:31:05 mr_bones_ Exp $
+
+  31 May 2012; Michael Sterrett <mr_bones_@gentoo.org> ufo-ai-2.4.ebuild:
+  tidy
 
 *ufo-ai-2.4 (01 May 2012)
 






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

* [gentoo-commits] gentoo-x86 commit in games-strategy/ufo-ai: ufo-ai-2.4.ebuild ChangeLog
@ 2012-06-08 11:48 PaweA Hajdan (phajdan.jr)
  0 siblings, 0 replies; 7+ messages in thread
From: PaweA Hajdan (phajdan.jr) @ 2012-06-08 11:48 UTC (permalink / raw
  To: gentoo-commits

phajdan.jr    12/06/08 11:48:07

  Modified:             ufo-ai-2.4.ebuild ChangeLog
  Log:
  x86 stable wrt bug #418429
  
  (Portage version: 2.1.10.49/cvs/Linux i686)

Revision  Changes    Path
1.3                  games-strategy/ufo-ai/ufo-ai-2.4.ebuild

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

Index: ufo-ai-2.4.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/games-strategy/ufo-ai/ufo-ai-2.4.ebuild,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- ufo-ai-2.4.ebuild	31 May 2012 19:31:05 -0000	1.2
+++ ufo-ai-2.4.ebuild	8 Jun 2012 11:48:07 -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/ufo-ai/ufo-ai-2.4.ebuild,v 1.2 2012/05/31 19:31:05 mr_bones_ Exp $
+# $Header: /var/cvsroot/gentoo-x86/games-strategy/ufo-ai/ufo-ai-2.4.ebuild,v 1.3 2012/06/08 11:48:07 phajdan.jr Exp $
 
 EAPI=3
 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 editor"
 
 # Dependencies and more instructions can be found here:



1.39                 games-strategy/ufo-ai/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/games-strategy/ufo-ai/ChangeLog,v
retrieving revision 1.38
retrieving revision 1.39
diff -u -r1.38 -r1.39
--- ChangeLog	31 May 2012 19:31:05 -0000	1.38
+++ ChangeLog	8 Jun 2012 11:48:07 -0000	1.39
@@ -1,6 +1,9 @@
 # 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.38 2012/05/31 19:31:05 mr_bones_ Exp $
+# $Header: /var/cvsroot/gentoo-x86/games-strategy/ufo-ai/ChangeLog,v 1.39 2012/06/08 11:48:07 phajdan.jr Exp $
+
+  08 Jun 2012; Pawel Hajdan jr <phajdan.jr@gentoo.org> ufo-ai-2.4.ebuild:
+  x86 stable wrt bug #418429
 
   31 May 2012; Michael Sterrett <mr_bones_@gentoo.org> ufo-ai-2.4.ebuild:
   tidy






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

* [gentoo-commits] gentoo-x86 commit in games-strategy/ufo-ai: ufo-ai-2.4.ebuild ChangeLog
@ 2012-11-04  6:02 Michael Sterrett (mr_bones_)
  0 siblings, 0 replies; 7+ messages in thread
From: Michael Sterrett (mr_bones_) @ 2012-11-04  6:02 UTC (permalink / raw
  To: gentoo-commits

mr_bones_    12/11/04 06:02:13

  Modified:             ufo-ai-2.4.ebuild ChangeLog
  Log:
  don't try to use the system mini-xml (bug #440026)
  
  (Portage version: 2.1.11.9/cvs/Linux x86_64)

Revision  Changes    Path
1.4                  games-strategy/ufo-ai/ufo-ai-2.4.ebuild

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

Index: ufo-ai-2.4.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/games-strategy/ufo-ai/ufo-ai-2.4.ebuild,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- ufo-ai-2.4.ebuild	8 Jun 2012 11:48:07 -0000	1.3
+++ ufo-ai-2.4.ebuild	4 Nov 2012 06:02:12 -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/ufo-ai/ufo-ai-2.4.ebuild,v 1.3 2012/06/08 11:48:07 phajdan.jr Exp $
+# $Header: /var/cvsroot/gentoo-x86/games-strategy/ufo-ai/ufo-ai-2.4.ebuild,v 1.4 2012/11/04 06:02:12 mr_bones_ Exp $
 
 EAPI=3
 inherit eutils flag-o-matic games
@@ -47,8 +47,12 @@
 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
+	if has_version '>=sys-libs/zlib-1.2.5.1-r1' ; then
+		sed -i -e '1i#define OF(x) x' src/common/ioapi.h || die
+	fi
+
+	# don't try to use the system mini-xml
+	sed -i -e '/mxml/d' configure || die
 
 	epatch "${FILESDIR}"/${P}-locale.patch
 



1.41                 games-strategy/ufo-ai/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/games-strategy/ufo-ai/ChangeLog,v
retrieving revision 1.40
retrieving revision 1.41
diff -u -r1.40 -r1.41
--- ChangeLog	16 Jul 2012 19:05:07 -0000	1.40
+++ ChangeLog	4 Nov 2012 06:02:12 -0000	1.41
@@ -1,6 +1,9 @@
 # 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.40 2012/07/16 19:05:07 mr_bones_ Exp $
+# $Header: /var/cvsroot/gentoo-x86/games-strategy/ufo-ai/ChangeLog,v 1.41 2012/11/04 06:02:12 mr_bones_ Exp $
+
+  04 Nov 2012; Michael Sterrett <mr_bones_@gentoo.org> ufo-ai-2.4.ebuild:
+  don't try to use the system mini-xml (bug #440026)
 
   16 Jul 2012; Michael Sterrett <mr_bones_@gentoo.org>
   -files/ufo-ai-2.3.1-libpng15.patch, -ufo-ai-2.3.1-r1.ebuild:
@@ -160,4 +163,3 @@
   ufo-ai-0.10.040218.ebuild, files/0.10.040218-Makefile.patch:
   Initial import. Ebuild submitted by Pol <blenderman@tiscali.be>. Closing bug
   #42418.
-





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

* [gentoo-commits] gentoo-x86 commit in games-strategy/ufo-ai: ufo-ai-2.4.ebuild ChangeLog
@ 2014-05-10  5:40 Samuli Suominen (ssuominen)
  0 siblings, 0 replies; 7+ messages in thread
From: Samuli Suominen (ssuominen) @ 2014-05-10  5:40 UTC (permalink / raw
  To: gentoo-commits

ssuominen    14/05/10 05:40:33

  Modified:             ufo-ai-2.4.ebuild ChangeLog
  Log:
  Link against mathlib for cos(), sin() and more wrt #509928 by Stefan Kalis
  
  (Portage version: 2.2.10/cvs/Linux x86_64, signed Manifest commit with key 4868F14D)

Revision  Changes    Path
1.5                  games-strategy/ufo-ai/ufo-ai-2.4.ebuild

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

Index: ufo-ai-2.4.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/games-strategy/ufo-ai/ufo-ai-2.4.ebuild,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -r1.4 -r1.5
--- ufo-ai-2.4.ebuild	4 Nov 2012 06:02:12 -0000	1.4
+++ ufo-ai-2.4.ebuild	10 May 2014 05:40:33 -0000	1.5
@@ -1,6 +1,6 @@
-# Copyright 1999-2012 Gentoo Foundation
+# Copyright 1999-2014 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.4.ebuild,v 1.4 2012/11/04 06:02:12 mr_bones_ Exp $
+# $Header: /var/cvsroot/gentoo-x86/games-strategy/ufo-ai/ufo-ai-2.4.ebuild,v 1.5 2014/05/10 05:40:33 ssuominen Exp $
 
 EAPI=3
 inherit eutils flag-o-matic games
@@ -54,7 +54,9 @@
 	# don't try to use the system mini-xml
 	sed -i -e '/mxml/d' configure || die
 
-	epatch "${FILESDIR}"/${P}-locale.patch
+	epatch \
+		"${FILESDIR}"/${P}-mathlib.patch \
+		"${FILESDIR}"/${P}-locale.patch
 
 	cp "${DISTDIR}"/1maps.pk3 "${WORKDIR}"/base/ || die
 	mv "${WORKDIR}"/base/ "${S}"/ || die



1.42                 games-strategy/ufo-ai/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/games-strategy/ufo-ai/ChangeLog,v
retrieving revision 1.41
retrieving revision 1.42
diff -u -r1.41 -r1.42
--- ChangeLog	4 Nov 2012 06:02:12 -0000	1.41
+++ ChangeLog	10 May 2014 05:40:33 -0000	1.42
@@ -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.41 2012/11/04 06:02:12 mr_bones_ Exp $
+# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/games-strategy/ufo-ai/ChangeLog,v 1.42 2014/05/10 05:40:33 ssuominen Exp $
+
+  10 May 2014; Samuli Suominen <ssuominen@gentoo.org>
+  +files/ufo-ai-2.4-mathlib.patch, ufo-ai-2.4.ebuild:
+  Link against mathlib for cos(), sin() and more wrt #509928 by Stefan Kalis
 
   04 Nov 2012; Michael Sterrett <mr_bones_@gentoo.org> ufo-ai-2.4.ebuild:
   don't try to use the system mini-xml (bug #440026)





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

* [gentoo-commits] gentoo-x86 commit in games-strategy/ufo-ai: ufo-ai-2.4.ebuild ChangeLog
@ 2014-10-22  6:45 Alfredo Tupone (tupone)
  0 siblings, 0 replies; 7+ messages in thread
From: Alfredo Tupone (tupone) @ 2014-10-22  6:45 UTC (permalink / raw
  To: gentoo-commits

tupone      14/10/22 06:45:48

  Modified:             ufo-ai-2.4.ebuild ChangeLog
  Log:
  Fix build as per Bug #481678
  
  (Portage version: 2.2.8-r2/cvs/Linux x86_64, signed Manifest commit with key 0145142D)

Revision  Changes    Path
1.6                  games-strategy/ufo-ai/ufo-ai-2.4.ebuild

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

Index: ufo-ai-2.4.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/games-strategy/ufo-ai/ufo-ai-2.4.ebuild,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -r1.5 -r1.6
--- ufo-ai-2.4.ebuild	10 May 2014 05:40:33 -0000	1.5
+++ ufo-ai-2.4.ebuild	22 Oct 2014 06:45:48 -0000	1.6
@@ -1,8 +1,8 @@
 # Copyright 1999-2014 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.4.ebuild,v 1.5 2014/05/10 05:40:33 ssuominen Exp $
+# $Header: /var/cvsroot/gentoo-x86/games-strategy/ufo-ai/ufo-ai-2.4.ebuild,v 1.6 2014/10/22 06:45:48 tupone Exp $
 
-EAPI=3
+EAPI=5
 inherit eutils flag-o-matic games
 
 MY_P=${P/o-a/oa}
@@ -56,6 +56,7 @@
 
 	epatch \
 		"${FILESDIR}"/${P}-mathlib.patch \
+		"${FILESDIR}"/${P}-anon.patch \
 		"${FILESDIR}"/${P}-locale.patch
 
 	cp "${DISTDIR}"/1maps.pk3 "${WORKDIR}"/base/ || die
@@ -81,35 +82,35 @@
 }
 
 src_compile() {
-	emake || die
-	emake lang || die
+	emake
+	emake lang
 
 	if use editor; then
-		emake uforadiant || die
+		emake uforadiant
 	fi
 }
 
 src_install() {
-	newicon src/ports/linux/ufo.png ${PN}.png || die
-	dobin ufoded || die
+	newicon src/ports/linux/ufo.png ${PN}.png
+	dobin ufoded
 	make_desktop_entry ufoded "UFO: Alien Invasion Server" ${PN}
 	if ! use dedicated; then
-		dobin ufo || die
+		dobin ufo
 		make_desktop_entry ufo "UFO: Alien Invasion" ${PN}
 	fi
 
 	if use editor; then
-		dobin ufo2map ufomodel || die
+		dobin ufo2map ufomodel
 	fi
 
 	# install data
 	insinto "${GAMES_DATADIR}"/${PN/-}
-	doins -r base || die
+	doins -r base
 	rm -rf "${ED}/${GAMES_DATADIR}/${PN/-}/base/game.so"
 	dogameslib base/game.so
 
 	# move translations where they belong
-	dodir "${GAMES_DATADIR_BASE}/locale" || die
+	dodir "${GAMES_DATADIR_BASE}/locale"
 	mv "${ED}/${GAMES_DATADIR}/${PN/-}/base/i18n/"* \
 		"${ED}/${GAMES_DATADIR_BASE}/locale/" || die
 	rm -rf "${ED}/${GAMES_DATADIR}/${PN/-}/base/i18n/" || die



1.44                 games-strategy/ufo-ai/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/games-strategy/ufo-ai/ChangeLog,v
retrieving revision 1.43
retrieving revision 1.44
diff -u -r1.43 -r1.44
--- ChangeLog	9 Sep 2014 11:50:08 -0000	1.43
+++ ChangeLog	22 Oct 2014 06:45:48 -0000	1.44
@@ -1,6 +1,10 @@
 # ChangeLog for games-strategy/ufo-ai
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/games-strategy/ufo-ai/ChangeLog,v 1.43 2014/09/09 11:50:08 ssuominen Exp $
+# $Header: /var/cvsroot/gentoo-x86/games-strategy/ufo-ai/ChangeLog,v 1.44 2014/10/22 06:45:48 tupone Exp $
+
+  22 Oct 2014; Alfredo Tupone <tupone@gentoo.org> ufo-ai-2.4.ebuild,
+  +files/ufo-ai-2.4-anon.patch:
+  Fix build as per Bug #481678 by Torsten Kaiser
 
   09 Sep 2014; Samuli Suominen <ssuominen@gentoo.org>
   files/ufo-ai-2.4-mathlib.patch:





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

* [gentoo-commits] gentoo-x86 commit in games-strategy/ufo-ai: ufo-ai-2.4.ebuild ChangeLog
@ 2015-05-21 10:47 Agostino Sarubbo (ago)
  0 siblings, 0 replies; 7+ messages in thread
From: Agostino Sarubbo (ago) @ 2015-05-21 10:47 UTC (permalink / raw
  To: gentoo-commits

ago         15/05/21 10:47:25

  Modified:             ufo-ai-2.4.ebuild ChangeLog
  Log:
  Stable for amd64, wrt bug #542372
  
  (Portage version: 2.2.18/cvs/Linux x86_64, RepoMan options: --include-arches="amd64", signed Manifest commit with key 7194459F)

Revision  Changes    Path
1.7                  games-strategy/ufo-ai/ufo-ai-2.4.ebuild

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

Index: ufo-ai-2.4.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/games-strategy/ufo-ai/ufo-ai-2.4.ebuild,v
retrieving revision 1.6
retrieving revision 1.7
diff -u -r1.6 -r1.7
--- ufo-ai-2.4.ebuild	22 Oct 2014 06:45:48 -0000	1.6
+++ ufo-ai-2.4.ebuild	21 May 2015 10:47:25 -0000	1.7
@@ -1,6 +1,6 @@
-# Copyright 1999-2014 Gentoo Foundation
+# Copyright 1999-2015 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.4.ebuild,v 1.6 2014/10/22 06:45:48 tupone Exp $
+# $Header: /var/cvsroot/gentoo-x86/games-strategy/ufo-ai/ufo-ai-2.4.ebuild,v 1.7 2015/05/21 10:47:25 ago Exp $
 
 EAPI=5
 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 editor"
 
 # Dependencies and more instructions can be found here:



1.45                 games-strategy/ufo-ai/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/games-strategy/ufo-ai/ChangeLog,v
retrieving revision 1.44
retrieving revision 1.45
diff -u -r1.44 -r1.45
--- ChangeLog	22 Oct 2014 06:45:48 -0000	1.44
+++ ChangeLog	21 May 2015 10:47:25 -0000	1.45
@@ -1,6 +1,9 @@
 # ChangeLog for games-strategy/ufo-ai
-# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/games-strategy/ufo-ai/ChangeLog,v 1.44 2014/10/22 06:45:48 tupone Exp $
+# Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/games-strategy/ufo-ai/ChangeLog,v 1.45 2015/05/21 10:47:25 ago Exp $
+
+  21 May 2015; Agostino Sarubbo <ago@gentoo.org> ufo-ai-2.4.ebuild:
+  Stable for amd64, wrt bug #542372
 
   22 Oct 2014; Alfredo Tupone <tupone@gentoo.org> ufo-ai-2.4.ebuild,
   +files/ufo-ai-2.4-anon.patch:





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

end of thread, other threads:[~2015-05-21 10:47 UTC | newest]

Thread overview: 7+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2014-10-22  6:45 [gentoo-commits] gentoo-x86 commit in games-strategy/ufo-ai: ufo-ai-2.4.ebuild ChangeLog Alfredo Tupone (tupone)
  -- strict thread matches above, loose matches on Subject: below --
2015-05-21 10:47 Agostino Sarubbo (ago)
2014-05-10  5:40 Samuli Suominen (ssuominen)
2012-11-04  6:02 Michael Sterrett (mr_bones_)
2012-06-08 11:48 PaweA Hajdan (phajdan.jr)
2012-05-31 19:31 Michael Sterrett (mr_bones_)
2012-05-01  9:10 Tomas Chvatal (scarabeus)

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