mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-23 00:43:28 +00:00
dd176849e8
- Use options helpers PR: ports/190852 Submitted by: Naram Qashat <cyberbotx@cyberbotx.com>
69 lines
1.9 KiB
Makefile
69 lines
1.9 KiB
Makefile
# Created by: Stijn Hoop <stijn@win.tue.nl>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= zsnes
|
|
PORTVERSION= 1.51
|
|
PORTREVISION= 8
|
|
PORTEPOCH= 1
|
|
CATEGORIES= emulators
|
|
MASTER_SITES= SF/${PORTNAME}/${PORTNAME}/ZSNES%20v${PORTVERSION}
|
|
DISTNAME= zsnes${PORTVERSION:S/.//}src
|
|
|
|
MAINTAINER= cyberbotx@cyberbotx.com
|
|
COMMENT= Intel x86 only Super Nintendo Entertainment System (SNES) Emulator
|
|
|
|
# This must be >= 0.98!
|
|
BUILD_DEPENDS= nasm:${PORTSDIR}/devel/nasm
|
|
LIB_DEPENDS= libpng15.so:${PORTSDIR}/graphics/png
|
|
|
|
ONLY_FOR_ARCHS= i386
|
|
ONLY_FOR_ARCHS_REASON= non-portable, for a portable emulator see emulators/snes9x
|
|
|
|
WRKSRC= ${WRKDIR}/${PORTNAME}_${PORTVERSION:S/./_/}/src
|
|
|
|
NO_OPTIONS_SORT=yes
|
|
OPTIONS_DEFINE= X11 OPENGL DEBUGGER JMA AO
|
|
OPTIONS_DEFAULT=X11 JMA
|
|
DEBUGGER_DESC= ZSNES Debugger
|
|
JMA_DESC= JMA support
|
|
|
|
USE_SDL= sdl
|
|
USES= gmake tar:bzip2
|
|
GNU_CONFIGURE= yes
|
|
CONFIGURE_ARGS+= --disable-cpucheck
|
|
|
|
PLIST_FILES= bin/zsnes man/man1/zsnes.1.gz
|
|
|
|
DEBUGGER_CONFIGURE_ENABLE= debugger
|
|
JMA_CONFIGURE_ENABLE= jma
|
|
X11_CONFIGURE_WITH= x
|
|
OPENGL_CONFIGURE_ENABLE= opengl
|
|
|
|
AO_LIB_DEPENDS= libao.so:${PORTSDIR}/audio/libao
|
|
AO_CONFIGURE_ENABLE= libao
|
|
|
|
CFLAGS+= -I${LOCALBASE}/include -I${LOCALBASE}/include/libpng15
|
|
CPPFLAGS+= -I${LOCALBASE}/include -I${LOCALBASE}/include/libpng15
|
|
LDFLAGS+= -L${LOCALBASE}/lib
|
|
|
|
.include <bsd.port.options.mk>
|
|
|
|
post-patch:
|
|
@${REINPLACE_CMD} -e \
|
|
's|@CXX@ @CFLAGS@ -o|@CXX@ @CXXFLAGS@ @CPPFLAGS@ -o|g ; \
|
|
s|@CC@ @CFLAGS@ -o|@CC@ @CFLAGS@ @CPPFLAGS@ -o|g' \
|
|
${WRKSRC}/Makefile.in
|
|
@${REINPLACE_CMD} -i "" -e \
|
|
's|-O3||g' ${WRKSRC}/${CONFIGURE_SCRIPT}
|
|
@${REINPLACE_CMD} -e 's|size_t argc|int argc|g' \
|
|
${WRKSRC}/parsegen.cpp ${WRKSRC}/tools/depbuild.cpp \
|
|
${WRKSRC}/tools/extraext.cpp ${WRKSRC}/tools/macroll.cpp \
|
|
${WRKSRC}/tools/minwhite.cpp ${WRKSRC}/tools/nreplace.cpp \
|
|
${WRKSRC}/tools/varrep.cpp
|
|
|
|
do-install:
|
|
${INSTALL_PROGRAM} ${WRKSRC}/zsnes ${STAGEDIR}${PREFIX}/bin
|
|
${INSTALL_MAN} ${WRKSRC}/linux/zsnes.1 ${STAGEDIR}${MANPREFIX}/man/man1
|
|
|
|
.include <bsd.port.mk>
|