mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-19 03:52:17 +00:00
d4f0d0048a
- Set X11BASE to ${LOCALBASE} for recent ${OSVERSION}. - Bump PORTREVISION for ports intalling files in ${X11BASE}.
96 lines
2.2 KiB
Makefile
96 lines
2.2 KiB
Makefile
# New ports collection makefile for: zsnes
|
|
# Date created: Fri May 4 13:10:11 CEST 2001
|
|
# Whom: Stijn Hoop <stijn@win.tue.nl>
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= zsnes
|
|
PORTVERSION= 1.51
|
|
PORTREVISION= 1
|
|
PORTEPOCH= 1
|
|
CATEGORIES= emulators
|
|
MASTER_SITES= SF
|
|
DISTNAME= zsnes${PORTVERSION:S/.//}src
|
|
|
|
MAINTAINER= stsp@stsp.in-berlin.de
|
|
COMMENT= Intel x86 only Super Nintendo Entertainment System (SNES) Emulator
|
|
|
|
# This must be >= 0.98!
|
|
BUILD_DEPENDS= nasm:${PORTSDIR}/devel/nasm
|
|
LIB_DEPENDS= png.5:${PORTSDIR}/graphics/png
|
|
|
|
# non-portable, for a portable emulator see emulators/snes9x
|
|
ONLY_FOR_ARCHS= i386
|
|
|
|
WRKSRC= ${WRKDIR}/${PORTNAME}_${PORTVERSION:S/./_/}/src
|
|
|
|
OPTIONS= X11 "Enable X11 video driver" on \
|
|
OPENGL "Enable OpenGL video driver" off \
|
|
DEBUGGER "Enable ZSNES debugger" off \
|
|
JMA "Enable JMA support" on
|
|
|
|
USE_BZIP2= yes
|
|
USE_SDL= sdl
|
|
USE_GMAKE= yes
|
|
GNU_CONFIGURE= yes
|
|
CONFIGURE_ARGS+= --disable-cpucheck
|
|
CONFIGURE_ENV= CFLAGS="${CFLAGS}" CPPFLAGS="${CPPFLAGS}" LDFLAGS="${LDFLAGS}"
|
|
CONFIGURE_TARGET= --build=${MACHINE_ARCH}-portbld-freebsd${OSREL}
|
|
|
|
MAN1= zsnes.1
|
|
PLIST_FILES= bin/zsnes
|
|
|
|
CFLAGS+= -I${LOCALBASE}/include
|
|
CPPFLAGS+= -I${LOCALBASE}/include
|
|
LDFLAGS+= -L${LOCALBASE}/lib
|
|
|
|
.include <bsd.port.pre.mk>
|
|
|
|
.if ${OSVERSION} < 602000
|
|
IGNORE= needs zlib >= 1.2.3 ,it is available on FreeBSD >= 6.2
|
|
.endif
|
|
|
|
.if defined(WITH_DEBUGGER)
|
|
CONFIGURE_ARGS+=--enable-debugger
|
|
.else
|
|
CONFIGURE_ARGS+=--disable-debugger
|
|
.endif
|
|
|
|
.if defined(WITH_JMA)
|
|
CONFIGURE_ARGS+=--enable-jma
|
|
.else
|
|
CONFIGURE_ARGS+=--disable-jma
|
|
.endif
|
|
|
|
.if defined(WITHOUT_X11)
|
|
CONFIGURE_ARGS+=--without-x
|
|
PKGNAMESUFFIX= -nox11
|
|
.else
|
|
CONFIGURE_ARGS+=--with-x
|
|
CFLAGS+= -I${X11BASE}/include
|
|
CPPFLAGS+= -I${X11BASE}/include
|
|
LDFLAGS+= -L${X11BASE}/lib
|
|
.endif
|
|
|
|
.if defined(WITH_OPENGL)
|
|
USE_GL= yes
|
|
CONFIGURE_ARGS+=--enable-opengl
|
|
.else
|
|
CONFIGURE_ARGS+=--disable-opengl
|
|
.endif
|
|
|
|
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}
|
|
|
|
do-install:
|
|
${INSTALL_PROGRAM} ${WRKSRC}/zsnes ${PREFIX}/bin
|
|
${INSTALL_MAN} ${WRKSRC}/linux/zsnes.1 ${MANPREFIX}/man/man1
|
|
|
|
.include <bsd.port.post.mk>
|