Date: Mon, 25 May 2015 10:21:59 +0000 (UTC) From: John Marino <marino@FreeBSD.org> To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r387375 - head/emulators/qmc2 Message-ID: <201505251021.t4PALxuE038044@svn.freebsd.org>
next in thread | raw e-mail | index | archive | help
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@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" \
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201505251021.t4PALxuE038044>