public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] gentoo-x86 commit in games-action/openclonk: ChangeLog openclonk-5.3.3.ebuild
@ 2013-03-11 23:47 Julian Ospald (hasufell)
  0 siblings, 0 replies; 3+ messages in thread
From: Julian Ospald (hasufell) @ 2013-03-11 23:47 UTC (permalink / raw
  To: gentoo-commits

hasufell    13/03/11 23:47:13

  Modified:             ChangeLog
  Added:                openclonk-5.3.3.ebuild
  Log:
  version bump
  
  (Portage version: 2.2.0_alpha166/cvs/Linux x86_64, signed Manifest commit with key E73C35B3)

Revision  Changes    Path
1.8                  games-action/openclonk/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-action/openclonk/ChangeLog?rev=1.8&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-action/openclonk/ChangeLog?rev=1.8&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-action/openclonk/ChangeLog?r1=1.7&r2=1.8

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/games-action/openclonk/ChangeLog,v
retrieving revision 1.7
retrieving revision 1.8
diff -u -r1.7 -r1.8
--- ChangeLog	29 Jul 2012 12:00:46 -0000	1.7
+++ ChangeLog	11 Mar 2013 23:47:13 -0000	1.8
@@ -1,6 +1,11 @@
 # ChangeLog for games-action/openclonk
-# Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/games-action/openclonk/ChangeLog,v 1.7 2012/07/29 12:00:46 hasufell Exp $
+# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/games-action/openclonk/ChangeLog,v 1.8 2013/03/11 23:47:13 hasufell Exp $
+
+*openclonk-5.3.3 (11 Mar 2013)
+
+  11 Mar 2013; Julian Ospald <hasufell@gentoo.org> +openclonk-5.3.3.ebuild:
+  version bump
 
   29 Jul 2012; Julian Ospald <hasufell@gentoo.org> openclonk-5.2.2.ebuild,
   +files/openclonk-5.2.2-zlib-1.2.6.patch:



1.1                  games-action/openclonk/openclonk-5.3.3.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-action/openclonk/openclonk-5.3.3.ebuild?rev=1.1&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-action/openclonk/openclonk-5.3.3.ebuild?rev=1.1&content-type=text/plain

Index: openclonk-5.3.3.ebuild
===================================================================
# Copyright 1999-2013 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/games-action/openclonk/openclonk-5.3.3.ebuild,v 1.1 2013/03/11 23:47:13 hasufell Exp $

EAPI=5

PYTHON_COMPAT=( python2_5 python2_6 python2_7 )
inherit autotools eutils flag-o-matic gnome2-utils python-any-r1 games

MY_P=${PN}-release-${PV}-src

DESCRIPTION="A free multiplayer action game where you control clonks"
HOMEPAGE="http://openclonk.org/"
SRC_URI="http://dev.gentoo.org/~hasufell/distfiles/${P}.tar.xz
	http://${PN}.org/homepage/icon.png -> ${PN}.png"

LICENSE="BSD ISC CLONK-trademark LGPL-2.1 POSTGRESQL"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE="dedicated doc mp3 sound upnp"

RDEPEND="
	media-libs/libpng:0
	sys-libs/zlib
	virtual/jpeg
	!dedicated? (
		media-libs/freetype:2
		media-libs/glew
		media-libs/libsdl[X,opengl,video]
		virtual/opengl
		virtual/glu
		x11-libs/cairo
		x11-libs/gdk-pixbuf
		x11-libs/gtk+:3
		x11-libs/libXrandr
		x11-libs/libX11
		sound? (
			media-libs/libsdl[audio]
			media-libs/sdl-mixer[mp3?,vorbis,wav]
		)
	)
	dedicated? ( sys-libs/readline:0 )
	upnp? ( net-libs/libupnp )"
DEPEND="${RDEPEND}
	>=dev-libs/boost-1.40
	virtual/pkgconfig
	doc? (
		${PYTHON_DEPS}
		dev-libs/libxml2[python]
		sys-devel/gettext
		)"

pkg_setup() {
	games_pkg_setup
	use doc && python-any-r1_pkg_setup
}

src_prepare() {
	# remove license files
	sed \
		-e '/dist_doc_DATA/s#planet/COPYING ##' \
		-e '/dist_doc_DATA/s#licenses/LGPL.txt ##' \
		-i Makefile.am || die

	eautoreconf
}

src_configure() {
	egamesconf \
		--docdir=/usr/share/doc/${PF} \
		$(use_enable dedicated console) \
		$(use_enable sound) \
		$(use_enable mp3) \
		$(usex dedicated "--with-gtk=no" "--with-gtk=3.0") \
		$(use_with upnp) \
		--without-openal \
		--disable-autoupdate
}

src_compile() {
	emake

	if use doc ; then
		emake -C docs
	fi
}

src_install() {
	emake DESTDIR="${D}" install

	if ! use dedicated; then
		newgamesbin "${FILESDIR}"/${PN}-wrapper-script.sh ${PN}
		doicon -s 64 "${DISTDIR}"/${PN}.png
		make_desktop_entry ${PN}
	fi
	use doc && dohtml -r docs/online/*

	prepgamesdirs
}

pkg_preinst() {
	games_pkg_preinst
	gnome2_icon_savelist
}

pkg_postinst() {
	games_pkg_postinst
	gnome2_icon_cache_update
}

pkg_postrm() {
	gnome2_icon_cache_update
}





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

* [gentoo-commits] gentoo-x86 commit in games-action/openclonk: ChangeLog openclonk-5.3.3.ebuild
@ 2013-06-25 23:50 Julian Ospald (hasufell)
  0 siblings, 0 replies; 3+ messages in thread
From: Julian Ospald (hasufell) @ 2013-06-25 23:50 UTC (permalink / raw
  To: gentoo-commits

hasufell    13/06/25 23:50:10

  Modified:             ChangeLog openclonk-5.3.3.ebuild
  Log:
  respect AR wrt #474786
  
  (Portage version: 2.2.0_alpha185/cvs/Linux x86_64, signed Manifest commit with key E73C35B3)

Revision  Changes    Path
1.9                  games-action/openclonk/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-action/openclonk/ChangeLog?rev=1.9&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-action/openclonk/ChangeLog?rev=1.9&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-action/openclonk/ChangeLog?r1=1.8&r2=1.9

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/games-action/openclonk/ChangeLog,v
retrieving revision 1.8
retrieving revision 1.9
diff -u -r1.8 -r1.9
--- ChangeLog	11 Mar 2013 23:47:13 -0000	1.8
+++ ChangeLog	25 Jun 2013 23:50:10 -0000	1.9
@@ -1,6 +1,9 @@
 # ChangeLog for games-action/openclonk
 # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/games-action/openclonk/ChangeLog,v 1.8 2013/03/11 23:47:13 hasufell Exp $
+# $Header: /var/cvsroot/gentoo-x86/games-action/openclonk/ChangeLog,v 1.9 2013/06/25 23:50:10 hasufell Exp $
+
+  25 Jun 2013; Julian Ospald <hasufell@gentoo.org> openclonk-5.3.3.ebuild:
+  respect AR wrt #474786
 
 *openclonk-5.3.3 (11 Mar 2013)
 



1.2                  games-action/openclonk/openclonk-5.3.3.ebuild

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

Index: openclonk-5.3.3.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/games-action/openclonk/openclonk-5.3.3.ebuild,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- openclonk-5.3.3.ebuild	11 Mar 2013 23:47:13 -0000	1.1
+++ openclonk-5.3.3.ebuild	25 Jun 2013 23:50:10 -0000	1.2
@@ -1,11 +1,11 @@
 # Copyright 1999-2013 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/games-action/openclonk/openclonk-5.3.3.ebuild,v 1.1 2013/03/11 23:47:13 hasufell Exp $
+# $Header: /var/cvsroot/gentoo-x86/games-action/openclonk/openclonk-5.3.3.ebuild,v 1.2 2013/06/25 23:50:10 hasufell Exp $
 
 EAPI=5
 
 PYTHON_COMPAT=( python2_5 python2_6 python2_7 )
-inherit autotools eutils flag-o-matic gnome2-utils python-any-r1 games
+inherit autotools eutils flag-o-matic gnome2-utils python-any-r1 toolchain-funcs games
 
 MY_P=${PN}-release-${PV}-src
 
@@ -78,7 +78,7 @@
 }
 
 src_compile() {
-	emake
+	emake AR=$(tc-getAR)
 
 	if use doc ; then
 		emake -C docs





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

* [gentoo-commits] gentoo-x86 commit in games-action/openclonk: ChangeLog openclonk-5.3.3.ebuild
@ 2015-01-27  7:27 Michael Sterrett (mr_bones_)
  0 siblings, 0 replies; 3+ messages in thread
From: Michael Sterrett (mr_bones_) @ 2015-01-27  7:27 UTC (permalink / raw
  To: gentoo-commits

mr_bones_    15/01/27 07:27:16

  Modified:             ChangeLog
  Removed:              openclonk-5.3.3.ebuild
  Log:
  old
  
  (Portage version: 2.2.14/cvs/Linux x86_64, unsigned Manifest commit)

Revision  Changes    Path
1.21                 games-action/openclonk/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-action/openclonk/ChangeLog?rev=1.21&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-action/openclonk/ChangeLog?rev=1.21&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-action/openclonk/ChangeLog?r1=1.20&r2=1.21

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/games-action/openclonk/ChangeLog,v
retrieving revision 1.20
retrieving revision 1.21
diff -u -r1.20 -r1.21
--- ChangeLog	2 Jan 2015 17:19:01 -0000	1.20
+++ ChangeLog	27 Jan 2015 07:27:16 -0000	1.21
@@ -1,6 +1,9 @@
 # ChangeLog for games-action/openclonk
 # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/games-action/openclonk/ChangeLog,v 1.20 2015/01/02 17:19:01 tupone Exp $
+# $Header: /var/cvsroot/gentoo-x86/games-action/openclonk/ChangeLog,v 1.21 2015/01/27 07:27:16 mr_bones_ Exp $
+
+  27 Jan 2015; Michael Sterrett <mr_bones_@gentoo.org> -openclonk-5.3.3.ebuild:
+  old
 
   02 Jan 2015; Tupone Alfredo <tupone@gentoo.org> openclonk-5.3.3-r1.ebuild,
   openclonk-5.5.1.ebuild, +files/openclonk-5.3.3-jpeg9.patch,





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

end of thread, other threads:[~2015-01-27  7:27 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2013-03-11 23:47 [gentoo-commits] gentoo-x86 commit in games-action/openclonk: ChangeLog openclonk-5.3.3.ebuild Julian Ospald (hasufell)
  -- strict thread matches above, loose matches on Subject: below --
2013-06-25 23:50 Julian Ospald (hasufell)
2015-01-27  7:27 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