public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] gentoo-x86 commit in games-emulation/sdlmametools: sdlmametools-0.149.ebuild ChangeLog
@ 2013-06-26 13:17 Julian Ospald (hasufell)
  0 siblings, 0 replies; 2+ messages in thread
From: Julian Ospald (hasufell) @ 2013-06-26 13:17 UTC (permalink / raw
  To: gentoo-commits

hasufell    13/06/26 13:17:17

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

Revision  Changes    Path
1.2                  games-emulation/sdlmametools/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/games-emulation/sdlmametools/ChangeLog,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- ChangeLog	15 Mar 2013 19:36:48 -0000	1.1
+++ ChangeLog	26 Jun 2013 13:17:17 -0000	1.2
@@ -1,6 +1,15 @@
 # ChangeLog for games-emulation/sdlmametools
 # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/games-emulation/sdlmametools/ChangeLog,v 1.1 2013/03/15 19:36:48 hasufell Exp $
+# $Header: /var/cvsroot/gentoo-x86/games-emulation/sdlmametools/ChangeLog,v 1.2 2013/06/26 13:17:17 hasufell Exp $
+
+*sdlmametools-0.149 (26 Jun 2013)
+
+  26 Jun 2013; Julian Ospald <hasufell@gentoo.org> +sdlmametools-0.149.ebuild,
+  +files/sdlmametools-0.149-QA.patch,
+  +files/sdlmametools-0.149-debugger-linking.patch,
+  +files/sdlmametools-0.149-no-opengl.patch,
+  +files/sdlmametools-0.149-system-lua.patch:
+  version bump
 
 *sdlmametools-0.148_p1 (15 Mar 2013)
 



1.1                  games-emulation/sdlmametools/sdlmametools-0.149.ebuild

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

Index: sdlmametools-0.149.ebuild
===================================================================
# Copyright 1999-2013 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/games-emulation/sdlmametools/sdlmametools-0.149.ebuild,v 1.1 2013/06/26 13:17:17 hasufell Exp $

EAPI=5
PYTHON_COMPAT=( python2_6 python2_7 )
inherit eutils flag-o-matic python-any-r1 games

MY_PV=${PV/.}
MY_P=${PN%tools}${MY_PV}
MY_P=${MY_P%%_p*}

# patches
SRC_URI="$(for PATCH_VER in $(seq 1 ${PV##*_p}) ; do echo "http://dev.gentoo.org/~hasufell/distfiles/${MY_P}u${PATCH_VER}_diff.zip"; done)"

DESCRIPTION="Set of development tools shared between sdlmame and sdlmess"
HOMEPAGE="http://mamedev.org/"
# Upstream doesn't allow fetching with unknown User-Agent such as wget
SRC_URI="$SRC_URI http://dev.gentoo.org/~hasufell/distfiles/${MY_P/sdl}s.zip"

LICENSE="XMAME"
SLOT="0"
KEYWORDS="~amd64 ~ppc ~x86"
IUSE=""

RDEPEND="
	dev-libs/expat
	media-libs/flac
	>=media-libs/libsdl-1.2.10
	media-libs/sdl-ttf
	sys-libs/zlib"
DEPEND="${RDEPEND}
	${PYTHON_DEPS}
	app-arch/unzip
	virtual/pkgconfig"

S=${WORKDIR}

# Function to disable a makefile option
disable_feature() {
	sed -i \
		-e "/$1.*=/s:^:# :" \
		"${S}"/${2:-makefile} \
		|| die "sed failed"
}

# Function to enable a makefile option
enable_feature() {
	sed -i \
		-e "/^#.*$1.*=/s:^#::"  \
		"${S}"/${2:-makefile} \
		|| die "sed failed"
}

pkg_setup() {
	games_pkg_setup
	python-any-r1_pkg_setup
}

src_unpack() {
	default
	unpack ./mame.zip
	rm -f mame.zip
}

src_prepare() {
	if [[ $PV == *_p* ]] ; then
		edos2unix $(find $(grep +++ *diff | awk '{ print $2 }' | sort -u) 2>/dev/null) *diff
		einfo "Patching release with source updates"
		epatch ${MY_PV%%_p*}*.diff
	fi
	edos2unix makefile src/osd/sdl/{osdsdl.h,sdl.mak}

	epatch \
		"${FILESDIR}"/${P}-QA.patch \
		"${FILESDIR}"/${P}-system-lua.patch \
		"${FILESDIR}"/${P}-no-opengl.patch \
		"${FILESDIR}"/${P}-debugger-linking.patch

	# Don't compile zlib and expat
	einfo "Disabling embedded libraries: expat, flac, jpeg, zlib, lua"
	disable_feature BUILD_EXPAT
	disable_feature BUILD_FLAC
	disable_feature BUILD_JPEG
	disable_feature BUILD_ZLIB

	# unused, avoid linking
#	disable_feature BUILD_LUA

	if use amd64; then
		einfo "Enabling 64-bit support"
		enable_feature PTR64
	fi

	if use ppc; then
		einfo "Enabling PPC support"
		enable_feature BIGENDIAN
	fi

	enable_feature NO_USE_MIDI src/osd/sdl/sdl.mak
	enable_feature NO_USE_QTDEBUG src/osd/sdl/sdl.mak
	enable_feature NO_OPENGL src/osd/sdl/sdl.mak
	enable_feature NO_X11 src/osd/sdl/sdl.mak
}

src_compile() {
	emake \
		NO_DEBUGGER=1 tools
}

src_install() {
	for i in chdman jedutil ldresample ldverify romcmp testkeys ; do
		newgamesbin ${i} sdlmame-${i}
		nonfatal newman src/osd/sdl/man/${i}.1 sdlmame-${i}.1
	done

	prepgamesdirs
}





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

* [gentoo-commits] gentoo-x86 commit in games-emulation/sdlmametools: sdlmametools-0.149.ebuild ChangeLog
@ 2015-06-04 16:14 Michael Sterrett (mr_bones_)
  0 siblings, 0 replies; 2+ messages in thread
From: Michael Sterrett (mr_bones_) @ 2015-06-04 16:14 UTC (permalink / raw
  To: gentoo-commits

mr_bones_    15/06/04 16:14:10

  Modified:             sdlmametools-0.149.ebuild ChangeLog
  Log:
  remove pointless nonfatal (bug #551170)
  
  (Portage version: 2.2.18/cvs/Linux x86_64, unsigned Manifest commit)

Revision  Changes    Path
1.3                  games-emulation/sdlmametools/sdlmametools-0.149.ebuild

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

Index: sdlmametools-0.149.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/games-emulation/sdlmametools/sdlmametools-0.149.ebuild,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- sdlmametools-0.149.ebuild	8 Apr 2015 18:10:41 -0000	1.2
+++ sdlmametools-0.149.ebuild	4 Jun 2015 16:14:10 -0000	1.3
@@ -1,6 +1,6 @@
 # Copyright 1999-2015 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/games-emulation/sdlmametools/sdlmametools-0.149.ebuild,v 1.2 2015/04/08 18:10:41 mgorny Exp $
+# $Header: /var/cvsroot/gentoo-x86/games-emulation/sdlmametools/sdlmametools-0.149.ebuild,v 1.3 2015/06/04 16:14:10 mr_bones_ Exp $
 
 EAPI=5
 PYTHON_COMPAT=( python2_7 )
@@ -111,7 +111,7 @@
 src_install() {
 	for i in chdman jedutil ldresample ldverify romcmp testkeys ; do
 		newgamesbin ${i} sdlmame-${i}
-		nonfatal newman src/osd/sdl/man/${i}.1 sdlmame-${i}.1
+		newman src/osd/sdl/man/${i}.1 sdlmame-${i}.1
 	done
 
 	prepgamesdirs



1.6                  games-emulation/sdlmametools/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-emulation/sdlmametools/ChangeLog?rev=1.6&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-emulation/sdlmametools/ChangeLog?rev=1.6&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-emulation/sdlmametools/ChangeLog?r1=1.5&r2=1.6

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/games-emulation/sdlmametools/ChangeLog,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -r1.5 -r1.6
--- ChangeLog	8 Apr 2015 18:10:41 -0000	1.5
+++ ChangeLog	4 Jun 2015 16:14:10 -0000	1.6
@@ -1,6 +1,10 @@
 # ChangeLog for games-emulation/sdlmametools
 # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/games-emulation/sdlmametools/ChangeLog,v 1.5 2015/04/08 18:10:41 mgorny Exp $
+# $Header: /var/cvsroot/gentoo-x86/games-emulation/sdlmametools/ChangeLog,v 1.6 2015/06/04 16:14:10 mr_bones_ Exp $
+
+  04 Jun 2015; Michael Sterrett <mr_bones_@gentoo.org>
+  sdlmametools-0.149.ebuild:
+  remove pointless nonfatal (bug #551170)
 
   08 Apr 2015; Michał Górny <mgorny@gentoo.org> sdlmametools-0.148_p1.ebuild,
   sdlmametools-0.149.ebuild:





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

end of thread, other threads:[~2015-06-04 16:14 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2015-06-04 16:14 [gentoo-commits] gentoo-x86 commit in games-emulation/sdlmametools: sdlmametools-0.149.ebuild ChangeLog Michael Sterrett (mr_bones_)
  -- strict thread matches above, loose matches on Subject: below --
2013-06-26 13:17 Julian Ospald (hasufell)

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