mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-20 04:02:27 +00:00
119 lines
3.0 KiB
Makefile
119 lines
3.0 KiB
Makefile
# New ports collection makefile for: snes9x
|
|
# Date created: 20 July 1997
|
|
# Whom: Yukihiro Nakai<Nakai@Mlab.t.u-tokyo.ac.jp>
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= snes9x
|
|
PORTVERSION= 1.5
|
|
PORTREVISION= 1
|
|
CATEGORIES= emulators
|
|
MASTER_SITES= http://files.ipherswipsite.com/snes9x/ \
|
|
http://www.geocities.co.jp/SiliconValley-PaloAlto/2560/release/ \
|
|
http://www.lysator.liu.se/snes9x/${PORTVERSION}/
|
|
DISTNAME= ${PORTNAME}-${PORTVERSION}-src
|
|
|
|
MAINTAINER= acm@FreeBSD.org
|
|
COMMENT= Super Nintendo Entertainment System(SNES) Emulator
|
|
|
|
USE_BZIP2= yes
|
|
USE_XLIB= yes
|
|
USE_GMAKE= yes
|
|
USE_GCC= 3.4+
|
|
GNU_CONFIGURE= yes
|
|
CONFIGURE_ARGS+= --without-extensions
|
|
CONFIGURE_ENV+= CPPFLAGS="-I${LOCALBASE}/include -I${X11BASE}/include" \
|
|
LDFLAGS="-L${LOCALBASE}/lib -L${X11BASE}/lib"
|
|
CONFIGURE_TARGET= --build=${MACHINE_ARCH}-portbld-freebsd${OSREL}
|
|
MAKE_ARGS= INCLUDES="-I${WRKSRC}/unzip -I${WRKSRC} -I${X11BASE}/include \
|
|
-I${LOCALBASE}/include ${PTHREAD_CFLAGS}" \
|
|
LDLIBS="-L${X11BASE}/lib -L${LOCALBASE}/lib ${PTHREAD_LIBS}" \
|
|
OPTIMISE="${CXXFLAGS}"
|
|
WRKSRC= ${WRKDIR}/${DISTNAME}
|
|
|
|
PLIST_FILES= bin/${PORTNAME}
|
|
SUB_FILES= pkg-message
|
|
|
|
OPTIONS= DEBUG "Enable debug information" off \
|
|
OPENGL "Enable OpenGL support" off \
|
|
SCREENSHOT "Enable screenshot support" on \
|
|
X86_ASM "Use i386 optimization (only for i386)" on \
|
|
MMX "Enable MMX (only for i386)" off \
|
|
JMA "Enable JMA archive decompression support" on
|
|
|
|
.include <bsd.port.pre.mk>
|
|
|
|
.if !defined(NOPORTDOCS)
|
|
PORTDOCS= controls.txt control-inputs.txt changes.txt hardware.txt \
|
|
porting.html problems.txt snapshots.txt snes9x.conf.default \
|
|
README
|
|
.endif
|
|
|
|
.if defined(WITH_DEBUG)
|
|
CONFIGURE_ARGS+= --with-debug
|
|
.else
|
|
CONFIGURE_ARGS+= --without-debug
|
|
.endif
|
|
|
|
.if ${ARCH} == "i386"
|
|
.if !defined(WITHOUT_X86_ASM)
|
|
BUILD_DEPENDS+= nasm:${PORTSDIR}/devel/nasm
|
|
CONFIGURE_ARGS+= --with-assembler
|
|
.else
|
|
CONFIGURE_ARGS+= --without-assembler
|
|
.endif
|
|
|
|
.if defined(WITH_MMX) && !defined(PACKAGE_BUILDING)
|
|
CONFIGURE_ARGS+= --with-mmx
|
|
.else
|
|
CONFIGURE_ARGS+= --without-mmx
|
|
.endif
|
|
.endif
|
|
|
|
.if defined(WITH_OPENGL)
|
|
USE_GL= yes
|
|
CONFIGURE_ARGS+= --with-opengl
|
|
SNES9X_BIN= osnes9x
|
|
.else
|
|
SNES9X_BIN= snes9x
|
|
.endif
|
|
|
|
.if !defined(WITHOUT_SCREENSHOT)
|
|
LIB_DEPENDS+= png.5:${PORTSDIR}/graphics/png
|
|
CONFIGURE_ARGS+= --with-screenshot
|
|
.else
|
|
CONFIGURE_ARGS+= --without-screenshot
|
|
.endif
|
|
|
|
.if !defined(WITHOUT_JMA)
|
|
CONFIGURE_ARGS+= --with-jma-decomp
|
|
.else
|
|
CONFIGURE_ARGS+= --without-jma-decomp
|
|
.endif
|
|
|
|
.if exists(/usr/lib/libusbhid.a)
|
|
CONFIGURE_ARGS+= --with-joystick
|
|
.else
|
|
CONFIGURE_ARGS+= --without-joystick
|
|
.endif
|
|
|
|
post-patch:
|
|
@${REINPLACE_CMD} -i "" -e 's|Pitch2|Pitch|g' ${WRKSRC}/unix/opengl.cpp
|
|
|
|
do-install:
|
|
.if !defined(NOPORTDOCS)
|
|
${MKDIR} ${DOCSDIR}
|
|
.for FILE in control* changes.txt hardware.txt porting.html problems.txt \
|
|
snapshots.txt snes9x.conf.default
|
|
${INSTALL_DATA} ${WRKSRC}/doc/${FILE} ${DOCSDIR}
|
|
.endfor
|
|
${INSTALL_DATA} ${WRKSRC}/unix/docs/readme_unix.txt ${DOCSDIR}/README
|
|
.endif
|
|
${INSTALL_PROGRAM} ${WRKSRC}/${SNES9X_BIN} ${PREFIX}/bin/${PORTNAME}
|
|
|
|
post-install:
|
|
@${CAT} ${PKGMESSAGE}
|
|
|
|
.include <bsd.port.post.mk>
|