freebsd-ports/emulators/jzintv/Makefile
Rong-En Fan 2f05872e03 jzIntv is an emulator for the Mattel Intellivision(TM)
videogame.

WWW: http://spatula-city.org/~im14u2c/intv/

PR:		ports/122481
Submitted by:	Ganael Laplanche <ganael.laplanche at martymac.com>
2008-04-06 15:14:27 +00:00

67 lines
1.9 KiB
Makefile

# New ports collection makefile for: jzintv
# Date created: 05 Apr 2008
# Whom: Ganael Laplanche <ganael.laplanche@martymac.com>
#
# $FreeBSD$
#
PORTNAME= jzintv
DISTVERSION= 1.0b3
CATEGORIES= emulators
MASTER_SITES= http://spatula-city.org/~im14u2c/intv/dl/
DISTNAME= jzintv-1.0-beta3-src
MAINTAINER= ganael.laplanche@martymac.com
COMMENT= Portable Intellivision(TM) Emulator
WRKSRC= ${WRKDIR}/jzintv-1.0-beta3
BUILD_WRKSRC= ${WRKSRC}/src
USE_GMAKE= yes
USE_XORG= x11 xau xdmcp
USE_SDL= sdl
USE_ZIP= yes
MAKE_ENV= CPPFLAGS="-I${LOCALBASE}/include `${SDL_CONFIG} --cflags`" \
LDFLAGS="-L${LOCALBASE}/lib ${PTHREAD_LIBS} `${SDL_CONFIG} --libs`"
OPTIONS= TOOLS "Install additional tools" off
TOOLS= as1600 crc32 dasm1600 dis1600 frombit_r gms2rom imvtoppm rom2bin \
show_grom tobit tobit_r bin2rom dasm0256 dasm1600o frombit fromhex \
imvtogif rom_merge split_rom tobit_f tohex
SUB_FILES= pkg-message
.include <bsd.port.pre.mk>
.if defined(WITH_TOOLS)
PLIST_SUB+= PL_TOOLS=""
.else
PLIST_SUB+= PL_TOOLS="@comment "
.endif
post-patch:
@${REINPLACE_CMD} '227s|/usr/local/share/jzintv|${DATADIR}|' ${BUILD_WRKSRC}/config.h
@${CP} ${BUILD_WRKSRC}/Makefile.freebsd ${BUILD_WRKSRC}/Makefile
do-install:
${MKDIR} ${DATADIR}/rom
${INSTALL_DATA} ${WRKSRC}/rom/*.rom ${DATADIR}/rom/
${INSTALL_PROGRAM} ${WRKSRC}/bin/jzintv ${PREFIX}/bin/jzintv
.if defined(WITH_TOOLS)
.for tool in ${TOOLS}
${INSTALL_PROGRAM} ${WRKSRC}/bin/${tool} ${PREFIX}/bin/jzintv-${tool}
.endfor
.endif
.if !defined(NOPORTDOCS)
${MKDIR} ${DOCSDIR}/doc
${INSTALL_DATA} ${WRKSRC}/COPYING.txt ${DOCSDIR}
${INSTALL_DATA} ${WRKSRC}/README.txt ${DOCSDIR}
${INSTALL_DATA} ${WRKSRC}/Release-Notes.txt ${DOCSDIR}
(cd ${WRKSRC}/doc/ && ${COPYTREE_SHARE} \* ${DOCSDIR}/doc)
.endif
.if !defined(NOPORTEXAMPLES)
${MKDIR} ${EXAMPLESDIR}
(cd ${WRKSRC}/examples/ && ${COPYTREE_SHARE} \* ${EXAMPLESDIR})
.endif
@${CAT} ${PKGMESSAGE}
.include <bsd.port.post.mk>