public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] gentoo-x86 commit in games-emulation/sdlmame: ChangeLog sdlmame-0.136.ebuild
@ 2010-01-04  9:04 Michael Sterrett (mr_bones_)
  0 siblings, 0 replies; 5+ messages in thread
From: Michael Sterrett (mr_bones_) @ 2010-01-04  9:04 UTC (permalink / raw
  To: gentoo-commits

mr_bones_    10/01/04 09:04:08

  Modified:             ChangeLog
  Added:                sdlmame-0.136.ebuild
  Log:
  version bump
  (Portage version: 2.1.6.13/cvs/Linux i686)

Revision  Changes    Path
1.26                 games-emulation/sdlmame/ChangeLog

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/games-emulation/sdlmame/ChangeLog?rev=1.26&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/games-emulation/sdlmame/ChangeLog?rev=1.26&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/games-emulation/sdlmame/ChangeLog?r1=1.25&r2=1.26

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/games-emulation/sdlmame/ChangeLog,v
retrieving revision 1.25
retrieving revision 1.26
diff -u -r1.25 -r1.26
--- ChangeLog	1 Nov 2009 07:54:13 -0000	1.25
+++ ChangeLog	4 Jan 2010 09:04:07 -0000	1.26
@@ -1,6 +1,12 @@
 # ChangeLog for games-emulation/sdlmame
-# Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/games-emulation/sdlmame/ChangeLog,v 1.25 2009/11/01 07:54:13 mr_bones_ Exp $
+# Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/games-emulation/sdlmame/ChangeLog,v 1.26 2010/01/04 09:04:07 mr_bones_ Exp $
+
+*sdlmame-0.136 (04 Jan 2010)
+
+  04 Jan 2010; Michael Sterrett <mr_bones_@gentoo.org>
+  +sdlmame-0.136.ebuild:
+  version bump
 
 *sdlmame-0.135 (01 Nov 2009)
 



1.1                  games-emulation/sdlmame/sdlmame-0.136.ebuild

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/games-emulation/sdlmame/sdlmame-0.136.ebuild?rev=1.1&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/games-emulation/sdlmame/sdlmame-0.136.ebuild?rev=1.1&content-type=text/plain

Index: sdlmame-0.136.ebuild
===================================================================
# Copyright 1999-2010 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/games-emulation/sdlmame/sdlmame-0.136.ebuild,v 1.1 2010/01/04 09:04:07 mr_bones_ Exp $

EAPI=2
inherit eutils flag-o-matic games

MY_PV=${PV/.}
MY_PV=${MY_PV/_p/u}
MY_P=${PN}${MY_PV}
MY_CONF_PN=${PN/sdl}
DESCRIPTION="Multiple Arcade Machine Emulator (SDL)"
HOMEPAGE="http://rbelmont.mameworld.info/?page_id=163"
# Upstream doesn't allow fetching with unknown User-Agent such as wget
SRC_URI="mirror://gentoo/${MY_P}.zip
	mirror://gentoo/${PN}-manpages.tar.gz"

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

RDEPEND=">=media-libs/libsdl-1.2.10[audio,joystick,opengl?,video]
	dev-libs/expat
	x11-libs/libXinerama
	x11-libs/gtk+:2
	gnome-base/gconf:2"
DEPEND="${RDEPEND}
	app-arch/unzip
	x11-proto/xineramaproto"

S=${WORKDIR}/${MY_P}

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

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

src_prepare() {
	sed -i \
		-e '/CFLAGS += -O$(OPTIMIZE)/s:^:# :' \
		-e '/CFLAGS += -pipe/s:^:# :' \
		-e '/LDFLAGS += -s/s:^:# :' \
		-e 's:-Werror::' \
		makefile \
		|| die "sed failed"
	# Don't compile zlib and expat
	einfo "Disabling embedded libraries: zlib and expat"
	disable_feature BUILD_ZLIB
	disable_feature BUILD_EXPAT

	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
}

src_compile() {
	local make_opts

	use opengl || make_opts="${make_opts} NO_OPENGL=1"

	emake \
		NAME="${PN}" \
		OPT_FLAGS='-DINI_PATH=\"\$$HOME/.'${PN}'\;'"${GAMES_SYSCONFDIR}/${PN}"'\"'" ${CFLAGS}" \
		SUFFIX="" \
		${make_opts} \
		|| die "emake failed"
}

src_install() {
	dogamesbin ${PN} || die "dogamesbin ${PN} failed"

	# Follows xmame ebuild, avoiding collision on /usr/games/bin/jedutil
	exeinto "$(games_get_libdir)/${PN}"
	local f
	for f in chdman ldverify jedutil romcmp testkeys; do
		doexe "${f}" || die "doexe ${f} failed"
	done

	insinto "${GAMES_DATADIR}/${PN}"
	doins ui.bdf || die "doins ui.bdf failed"
	doins -r keymaps || die "doins -r keymaps failed"

	insinto "${GAMES_SYSCONFDIR}/${PN}"
	doins "${FILESDIR}"/{joymap.dat,vector.ini} || die "doins joymap.dat vector.ini failed"

	sed \
		-e "s:@GAMES_SYSCONFDIR@:${GAMES_SYSCONFDIR}:" \
		-e "s:@GAMES_DATADIR@:${GAMES_DATADIR}:" \
		"${FILESDIR}"/mame.ini.in > "${D}/${GAMES_SYSCONFDIR}/${PN}/"mame.ini \
		|| die "sed failed"

	dodoc docs/{config,mame,newvideo}.txt *.txt
	doman "${WORKDIR}/${PN}-manpages"/*

	keepdir \
		"${GAMES_DATADIR}/${PN}"/{roms,samples,artwork} \
		"${GAMES_SYSCONFDIR}/${PN}"/ctrlr

	prepgamesdirs
}

pkg_postinst() {
	games_pkg_postinst

	elog "It's strongly recommended that you change either the system-wide"
	elog "${MY_CONF_PN}.ini at \"${GAMES_SYSCONFDIR}/${PN}\" or use a per-user setup at \$HOME/.${PN}"

	if use opengl; then
		echo
		elog "You built ${PN} with opengl support and should set"
		elog "\"video\" to \"opengl\" in ${MY_CONF_PN}.ini to take advantage of that"
	fi
}






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

* [gentoo-commits] gentoo-x86 commit in games-emulation/sdlmame: ChangeLog sdlmame-0.136.ebuild
@ 2010-03-04 15:06 PaweA Hajdan (phajdan.jr)
  0 siblings, 0 replies; 5+ messages in thread
From: PaweA Hajdan (phajdan.jr) @ 2010-03-04 15:06 UTC (permalink / raw
  To: gentoo-commits

phajdan.jr    10/03/04 15:06:00

  Modified:             ChangeLog sdlmame-0.136.ebuild
  Log:
  x86 stable wrt bug #303487
  (Portage version: 2.1.7.17/cvs/Linux i686)

Revision  Changes    Path
1.27                 games-emulation/sdlmame/ChangeLog

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/games-emulation/sdlmame/ChangeLog?rev=1.27&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/games-emulation/sdlmame/ChangeLog?rev=1.27&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/games-emulation/sdlmame/ChangeLog?r1=1.26&r2=1.27

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/games-emulation/sdlmame/ChangeLog,v
retrieving revision 1.26
retrieving revision 1.27
diff -u -r1.26 -r1.27
--- ChangeLog	4 Jan 2010 09:04:07 -0000	1.26
+++ ChangeLog	4 Mar 2010 15:05:59 -0000	1.27
@@ -1,6 +1,9 @@
 # ChangeLog for games-emulation/sdlmame
 # Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/games-emulation/sdlmame/ChangeLog,v 1.26 2010/01/04 09:04:07 mr_bones_ Exp $
+# $Header: /var/cvsroot/gentoo-x86/games-emulation/sdlmame/ChangeLog,v 1.27 2010/03/04 15:05:59 phajdan.jr Exp $
+
+  04 Mar 2010; Pawel Hajdan jr <phajdan.jr@gentoo.org> sdlmame-0.136.ebuild:
+  x86 stable wrt bug #303487
 
 *sdlmame-0.136 (04 Jan 2010)
 



1.2                  games-emulation/sdlmame/sdlmame-0.136.ebuild

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/games-emulation/sdlmame/sdlmame-0.136.ebuild?rev=1.2&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/games-emulation/sdlmame/sdlmame-0.136.ebuild?rev=1.2&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/games-emulation/sdlmame/sdlmame-0.136.ebuild?r1=1.1&r2=1.2

Index: sdlmame-0.136.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/games-emulation/sdlmame/sdlmame-0.136.ebuild,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- sdlmame-0.136.ebuild	4 Jan 2010 09:04:07 -0000	1.1
+++ sdlmame-0.136.ebuild	4 Mar 2010 15:05:59 -0000	1.2
@@ -1,6 +1,6 @@
 # Copyright 1999-2010 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/games-emulation/sdlmame/sdlmame-0.136.ebuild,v 1.1 2010/01/04 09:04:07 mr_bones_ Exp $
+# $Header: /var/cvsroot/gentoo-x86/games-emulation/sdlmame/sdlmame-0.136.ebuild,v 1.2 2010/03/04 15:05:59 phajdan.jr Exp $
 
 EAPI=2
 inherit eutils flag-o-matic games
@@ -17,7 +17,7 @@
 
 LICENSE="XMAME"
 SLOT="0"
-KEYWORDS="~amd64 ~ppc ~x86"
+KEYWORDS="~amd64 ~ppc x86"
 IUSE="opengl"
 
 RDEPEND=">=media-libs/libsdl-1.2.10[audio,joystick,opengl?,video]






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

* [gentoo-commits] gentoo-x86 commit in games-emulation/sdlmame: ChangeLog sdlmame-0.136.ebuild
@ 2010-03-24 14:12 Brent Baude (ranger)
  0 siblings, 0 replies; 5+ messages in thread
From: Brent Baude (ranger) @ 2010-03-24 14:12 UTC (permalink / raw
  To: gentoo-commits

ranger      10/03/24 14:12:15

  Modified:             ChangeLog sdlmame-0.136.ebuild
  Log:
  stable ppc, bug 303487
  (Portage version: 2.1.7.17/cvs/Linux ppc64)

Revision  Changes    Path
1.28                 games-emulation/sdlmame/ChangeLog

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/games-emulation/sdlmame/ChangeLog?rev=1.28&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/games-emulation/sdlmame/ChangeLog?rev=1.28&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/games-emulation/sdlmame/ChangeLog?r1=1.27&r2=1.28

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/games-emulation/sdlmame/ChangeLog,v
retrieving revision 1.27
retrieving revision 1.28
diff -u -r1.27 -r1.28
--- ChangeLog	4 Mar 2010 15:05:59 -0000	1.27
+++ ChangeLog	24 Mar 2010 14:12:15 -0000	1.28
@@ -1,6 +1,9 @@
 # ChangeLog for games-emulation/sdlmame
 # Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/games-emulation/sdlmame/ChangeLog,v 1.27 2010/03/04 15:05:59 phajdan.jr Exp $
+# $Header: /var/cvsroot/gentoo-x86/games-emulation/sdlmame/ChangeLog,v 1.28 2010/03/24 14:12:15 ranger Exp $
+
+  24 Mar 2010; Brent Baude <ranger@gentoo.org> sdlmame-0.136.ebuild:
+  stable ppc, bug 303487
 
   04 Mar 2010; Pawel Hajdan jr <phajdan.jr@gentoo.org> sdlmame-0.136.ebuild:
   x86 stable wrt bug #303487



1.3                  games-emulation/sdlmame/sdlmame-0.136.ebuild

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/games-emulation/sdlmame/sdlmame-0.136.ebuild?rev=1.3&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/games-emulation/sdlmame/sdlmame-0.136.ebuild?rev=1.3&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/games-emulation/sdlmame/sdlmame-0.136.ebuild?r1=1.2&r2=1.3

Index: sdlmame-0.136.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/games-emulation/sdlmame/sdlmame-0.136.ebuild,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- sdlmame-0.136.ebuild	4 Mar 2010 15:05:59 -0000	1.2
+++ sdlmame-0.136.ebuild	24 Mar 2010 14:12:15 -0000	1.3
@@ -1,6 +1,6 @@
 # Copyright 1999-2010 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/games-emulation/sdlmame/sdlmame-0.136.ebuild,v 1.2 2010/03/04 15:05:59 phajdan.jr Exp $
+# $Header: /var/cvsroot/gentoo-x86/games-emulation/sdlmame/sdlmame-0.136.ebuild,v 1.3 2010/03/24 14:12:15 ranger Exp $
 
 EAPI=2
 inherit eutils flag-o-matic games
@@ -17,7 +17,7 @@
 
 LICENSE="XMAME"
 SLOT="0"
-KEYWORDS="~amd64 ~ppc x86"
+KEYWORDS="~amd64 ppc x86"
 IUSE="opengl"
 
 RDEPEND=">=media-libs/libsdl-1.2.10[audio,joystick,opengl?,video]






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

* [gentoo-commits] gentoo-x86 commit in games-emulation/sdlmame: ChangeLog sdlmame-0.136.ebuild
@ 2010-05-22 15:06 Pacho Ramos (pacho)
  0 siblings, 0 replies; 5+ messages in thread
From: Pacho Ramos (pacho) @ 2010-05-22 15:06 UTC (permalink / raw
  To: gentoo-commits

pacho       10/05/22 15:06:54

  Modified:             ChangeLog sdlmame-0.136.ebuild
  Log:
  stable amd64, bug 303487
  (Portage version: 2.1.8.3/cvs/Linux x86_64)

Revision  Changes    Path
1.29                 games-emulation/sdlmame/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/games-emulation/sdlmame/ChangeLog,v
retrieving revision 1.28
retrieving revision 1.29
diff -u -r1.28 -r1.29
--- ChangeLog	24 Mar 2010 14:12:15 -0000	1.28
+++ ChangeLog	22 May 2010 15:06:54 -0000	1.29
@@ -1,6 +1,9 @@
 # ChangeLog for games-emulation/sdlmame
 # Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/games-emulation/sdlmame/ChangeLog,v 1.28 2010/03/24 14:12:15 ranger Exp $
+# $Header: /var/cvsroot/gentoo-x86/games-emulation/sdlmame/ChangeLog,v 1.29 2010/05/22 15:06:54 pacho Exp $
+
+  22 May 2010; Pacho Ramos <pacho@gentoo.org> sdlmame-0.136.ebuild:
+  stable amd64, bug 303487
 
   24 Mar 2010; Brent Baude <ranger@gentoo.org> sdlmame-0.136.ebuild:
   stable ppc, bug 303487



1.4                  games-emulation/sdlmame/sdlmame-0.136.ebuild

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

Index: sdlmame-0.136.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/games-emulation/sdlmame/sdlmame-0.136.ebuild,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- sdlmame-0.136.ebuild	24 Mar 2010 14:12:15 -0000	1.3
+++ sdlmame-0.136.ebuild	22 May 2010 15:06:54 -0000	1.4
@@ -1,6 +1,6 @@
 # Copyright 1999-2010 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/games-emulation/sdlmame/sdlmame-0.136.ebuild,v 1.3 2010/03/24 14:12:15 ranger Exp $
+# $Header: /var/cvsroot/gentoo-x86/games-emulation/sdlmame/sdlmame-0.136.ebuild,v 1.4 2010/05/22 15:06:54 pacho Exp $
 
 EAPI=2
 inherit eutils flag-o-matic games
@@ -17,7 +17,7 @@
 
 LICENSE="XMAME"
 SLOT="0"
-KEYWORDS="~amd64 ppc x86"
+KEYWORDS="amd64 ppc x86"
 IUSE="opengl"
 
 RDEPEND=">=media-libs/libsdl-1.2.10[audio,joystick,opengl?,video]






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

* [gentoo-commits] gentoo-x86 commit in games-emulation/sdlmame: ChangeLog sdlmame-0.136.ebuild
@ 2010-08-17 19:58 Michael Sterrett (mr_bones_)
  0 siblings, 0 replies; 5+ messages in thread
From: Michael Sterrett (mr_bones_) @ 2010-08-17 19:58 UTC (permalink / raw
  To: gentoo-commits

mr_bones_    10/08/17 19:58:21

  Modified:             ChangeLog sdlmame-0.136.ebuild
  Log:
  add debug use flag (bug #333219) - patch from Martin Väth
  (Portage version: 2.1.8.3/cvs/Linux i686)

Revision  Changes    Path
1.30                 games-emulation/sdlmame/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/games-emulation/sdlmame/ChangeLog,v
retrieving revision 1.29
retrieving revision 1.30
diff -u -r1.29 -r1.30
--- ChangeLog	22 May 2010 15:06:54 -0000	1.29
+++ ChangeLog	17 Aug 2010 19:58:21 -0000	1.30
@@ -1,6 +1,10 @@
 # ChangeLog for games-emulation/sdlmame
 # Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/games-emulation/sdlmame/ChangeLog,v 1.29 2010/05/22 15:06:54 pacho Exp $
+# $Header: /var/cvsroot/gentoo-x86/games-emulation/sdlmame/ChangeLog,v 1.30 2010/08/17 19:58:21 mr_bones_ Exp $
+
+  17 Aug 2010; Michael Sterrett <mr_bones_@gentoo.org> sdlmame-0.136.ebuild,
+  +files/sdlmame-0.136-nodebug.patch:
+  add debug use flag (bug #333219) - patch from Martin Väth
 
   22 May 2010; Pacho Ramos <pacho@gentoo.org> sdlmame-0.136.ebuild:
   stable amd64, bug 303487



1.5                  games-emulation/sdlmame/sdlmame-0.136.ebuild

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

Index: sdlmame-0.136.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/games-emulation/sdlmame/sdlmame-0.136.ebuild,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -r1.4 -r1.5
--- sdlmame-0.136.ebuild	22 May 2010 15:06:54 -0000	1.4
+++ sdlmame-0.136.ebuild	17 Aug 2010 19:58:21 -0000	1.5
@@ -1,6 +1,6 @@
 # Copyright 1999-2010 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/games-emulation/sdlmame/sdlmame-0.136.ebuild,v 1.4 2010/05/22 15:06:54 pacho Exp $
+# $Header: /var/cvsroot/gentoo-x86/games-emulation/sdlmame/sdlmame-0.136.ebuild,v 1.5 2010/08/17 19:58:21 mr_bones_ Exp $
 
 EAPI=2
 inherit eutils flag-o-matic games
@@ -18,13 +18,15 @@
 LICENSE="XMAME"
 SLOT="0"
 KEYWORDS="amd64 ppc x86"
-IUSE="opengl"
+IUSE="opengl debug"
 
 RDEPEND=">=media-libs/libsdl-1.2.10[audio,joystick,opengl?,video]
 	dev-libs/expat
 	x11-libs/libXinerama
-	x11-libs/gtk+:2
-	gnome-base/gconf:2"
+	debug? (
+		x11-libs/gtk+:2
+		gnome-base/gconf
+	)"
 DEPEND="${RDEPEND}
 	app-arch/unzip
 	x11-proto/xineramaproto"
@@ -69,6 +71,11 @@
 		einfo "Enabling PPC support"
 		enable_feature BIGENDIAN
 	fi
+
+	if ! use debug; then
+		einfo "Disabling Debugging"
+		epatch "${FILESDIR}"/${P}-nodebug.patch
+	fi
 }
 
 src_compile() {






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

end of thread, other threads:[~2010-08-17 19:58 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2010-05-22 15:06 [gentoo-commits] gentoo-x86 commit in games-emulation/sdlmame: ChangeLog sdlmame-0.136.ebuild Pacho Ramos (pacho)
  -- strict thread matches above, loose matches on Subject: below --
2010-08-17 19:58 Michael Sterrett (mr_bones_)
2010-03-24 14:12 Brent Baude (ranger)
2010-03-04 15:06 PaweA Hajdan (phajdan.jr)
2010-01-04  9:04 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