svn commit: r387375 - head/emulators/qmc2

John Marino marino at FreeBSD.org
Mon May 25 10:22:00 UTC 2015


Author: marino
Date: Mon May 25 10:21:59 2015
New Revision: 387375
URL: https://svnweb.freebsd.org/changeset/ports/387375

Log:
  emulators/qmc2: Adjust after update to mame/mess
  
  The mame and mess executable names have changed slightly.  For i386
  platforms, they are still "mame" and "mess" but for amd64 platforms,
  they are "mame64" and "mess64".  Change the RUN_DEPENDS specification
  to adjust for this morphing name.
  
  I suspect a patch is also needed for amd64 but I don't know where it
  would go.  I'll notify the maintainer.  The RUN_DEPENDS fix and the
  hardcoded CFLAG fix are "just fix it" items.

Modified:
  head/emulators/qmc2/Makefile

Modified: head/emulators/qmc2/Makefile
==============================================================================
--- head/emulators/qmc2/Makefile	Mon May 25 10:13:35 2015	(r387374)
+++ head/emulators/qmc2/Makefile	Mon May 25 10:21:59 2015	(r387375)
@@ -9,8 +9,8 @@ MASTER_SITES=	SF
 MAINTAINER=	danilo at FreeBSD.org
 COMMENT=	Qt4 based UNIX MAME/MESS frontend
 
-RUN_DEPENDS=	mame:${PORTSDIR}/emulators/mame \
-		mess:${PORTSDIR}/emulators/mess
+RUN_DEPENDS=	mame>=0.154:${PORTSDIR}/emulators/mame \
+		mess>=0.154:${PORTSDIR}/emulators/mess
 
 OPTIONS_DEFINE=	DOCS
 
@@ -23,7 +23,7 @@ USE_QT4=	gui opengl phonon qtestlib webk
 		moc_build qmake_build rcc_build uic_build
 USE_SDL=	sdl
 
-CXXFLAGS+=	-I/usr/local/include/SDL/
+CXXFLAGS+=	-I${PREFIX}/include/SDL/
 MAKE_ARGS=	QTDIR="${QT_PREFIX}" QMAKE="${QMAKE}" \
 		SYSCONFDIR="${PREFIX}/etc" ARCH="${OPSYS}" \
 		CC_FLAGS="${CFLAGS} -DUSE_FILE32API" \


More information about the svn-ports-all mailing list