From nobody@FreeBSD.org  Thu Sep 13 04:04:21 2001
Return-Path: <nobody@FreeBSD.org>
Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21])
	by hub.freebsd.org (Postfix) with ESMTP id 8287137B405
	for <freebsd-gnats-submit@FreeBSD.org>; Thu, 13 Sep 2001 04:04:21 -0700 (PDT)
Received: (from nobody@localhost)
	by freefall.freebsd.org (8.11.4/8.11.4) id f8DB4LR47805;
	Thu, 13 Sep 2001 04:04:21 -0700 (PDT)
	(envelope-from nobody)
Message-Id: <200109131104.f8DB4LR47805@freefall.freebsd.org>
Date: Thu, 13 Sep 2001 04:04:21 -0700 (PDT)
From: brad forschinger <bnjf@optushome.com.au>
To: freebsd-gnats-submit@FreeBSD.org
Subject: xmame 0.54.1 with CPS2
X-Send-Pr-Version: www-1.0

>Number:         30550
>Category:       ports
>Synopsis:       xmame 0.54.1 with CPS2
>Confidential:   no
>Severity:       non-critical
>Priority:       low
>Responsible:    freebsd-ports
>State:          closed
>Quarter:        
>Keywords:       
>Date-Required:  
>Class:          sw-bug
>Submitter-Id:   current-users
>Arrival-Date:   Thu Sep 13 04:10:01 PDT 2001
>Closed-Date:    Tue Sep 18 09:19:20 PDT 2001
>Last-Modified:  Tue Sep 18 09:20:09 PDT 2001
>Originator:     brad forschinger
>Release:        FreeBSD 4.3-STABLE i386
>Organization:
>Environment:
FreeBSD betwixt.uliginous.dyndns.org 4.3-STABLE FreeBSD 4.3-STABLE #14: Sat Jul 28 22:20:15 EST 2001     root@betwixt.uliginous.dyndns.org:/usr/src/sys/compile/BETWIXT  i386

>Description:
emulators/xmame's Makefile uses DISTNAME to build the url for the CPS2 patch. this worked when DISTNAME was xmame-0.37b16.1, but not now.


betwixt:/usr/ports/emulators/xmame# make WITH_OPTIMIZATION=yes WITH_ESOUND=yes WITH_CPS2=yes WITH_DATFILES=yes
===> If you don't want MAME to be built with SDL support,
     use "make WITH_SDL=no"
===> If you want to build MAME with OpenGL support for vector games,
     use "make WITH_GL=yes"
>How-To-Repeat:

build emulators/xmame WITH_CPS2=yes
>Fix:

comment the CPS2 patch section out until it catches up with the current xmame version.
>Release-Note:
>Audit-Trail:

From: Stijn Hoop <stijn@win.tue.nl>
To: brad forschinger <bnjf@optushome.com.au>
Cc: freebsd-gnats-submit@freebsd.org
Subject: Re: ports/30550: xmame 0.54.1 with CPS2
Date: Thu, 13 Sep 2001 13:38:27 +0200

 --C7zPtVaVf+AK4Oqc
 Content-Type: text/plain; charset=us-ascii
 Content-Disposition: inline
 
 On Thu, Sep 13, 2001 at 04:04:21AM -0700, brad forschinger wrote:
 > comment the CPS2 patch section out until it catches up with the current
 > xmame version.
 
 Yes,  you're right. Please find attached a version which both updates
 xmame to 0.54.2 and fixes the CPS2 patch. I'd like to keep the section
 because a new patch is in the works, so I .if 0'd it out.
 
 --Stijn (maintainer)
 
 -- 
 Q: Why is Batman better than Bill Gates?
 A: Batman was able to beat the Penguin.
 
 --C7zPtVaVf+AK4Oqc
 Content-Type: text/plain; charset=us-ascii
 Content-Disposition: attachment; filename="xmame.diff"
 
 diff -urN --exclude=CVS /usr/ports/emulators/xmame/Makefile xmame/Makefile
 --- /usr/ports/emulators/xmame/Makefile	Sun Sep  2 05:32:56 2001
 +++ xmame/Makefile	Wed Sep  5 10:06:33 2001
 @@ -6,7 +6,7 @@
  #
  
  PORTNAME?=	xmame
 -PORTVERSION?=	0.54.1
 +PORTVERSION?=	0.54.2
  CATEGORIES=	emulators
  MASTER_SITES=	http://x.mame.net/download/ \
  		ftp://ftp.kaupp.cx/pub/xmame/ \
 @@ -88,6 +88,8 @@
  .endif
  
  # CPS-2 patches - this enables extra games in MAME.
 +# Disabled 2001/09/05 - all previous CPS-2 releases are now in MAME
 +.if 0
  .if ${MAMEMESS} == "mame"
  .if defined(WITH_CPS2) && ${WITH_CPS2} == "yes"
  CPS2VERSION=	20010711
 @@ -97,6 +99,7 @@
  .else
  pre-everything::
  	@${ECHO_MSG} "===> If you want to compile MAME with CPS-2 support, use \"make WITH_CPS2=yes\""
 +.endif
  .endif
  .endif
  
 diff -urN --exclude=CVS /usr/ports/emulators/xmame/distinfo xmame/distinfo
 --- /usr/ports/emulators/xmame/distinfo	Sun Sep  2 05:32:56 2001
 +++ xmame/distinfo	Wed Sep  5 09:53:16 2001
 @@ -1,4 +1,4 @@
 -MD5 (xmame/xmame-0.54.1.tar.bz2) = 5768dc341b163c3733b4436870165f5a
 +MD5 (xmame/xmame-0.54.2.tar.bz2) = e49aa472a2d3585301493ddfedda79e4
  MD5 (xmame/xmame-0.37b15.2.tar.bz2) = 9c05a92aac0e29811e7b276c631153ed
  MD5 (xmame/xmame-0.37b14.2.tar.bz2) = 34bfba3d1412a8f8e1abd4d738de3f27
  MD5 (xmame/cheat.zip) = dc380436c04780950cee07d3e31bfb0b
 
 --C7zPtVaVf+AK4Oqc--

From: Stijn Hoop <stijn@win.tue.nl>
To: freebsd-gnats-submit@freebsd.org
Cc:  
Subject: Re: ports/30550: xmame 0.54.1 with CPS2
Date: Tue, 18 Sep 2001 11:55:58 +0200

 This PR can be closed. Obsoleted by PR ports/30642.
 
 --Stijn
 
 -- 
 "I'm not under the alkafluence of inkahol that some thinkle peep I am.
 It's just the drunker I sit here the longer I get."
State-Changed-From-To: open->closed 
State-Changed-By: petef 
State-Changed-When: Tue Sep 18 09:19:20 PDT 2001 
State-Changed-Why:  
Superseded by ports/30642. 

http://www.FreeBSD.org/cgi/query-pr.cgi?pr=30550 
>Unformatted:
 >> xmame-0.54.1-cps2-20010711.patch.gz doesn't seem to exist in /usr/ports/distfiles/xmame.
 >> Attempting to fetch from http://www.win.tue.nl/~stijn/xmame/.
 fetch: xmame-0.54.1-cps2-20010711.patch.gz: Not Found
 >> Attempting to fetch from ftp://ftp.FreeBSD.org/pub/FreeBSD/ports/distfiles/xmame/.
 fetch: xmame-0.54.1-cps2-20010711.patch.gz: Bad Gateway
 >> Couldn't fetch it - please try to retrieve this
 >> port manually into /usr/ports/distfiles/xmame and try again.
 *** Error code 1
 
