blob: 9441045ebd4147626d717fb0c80f5a9627022e68 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
|
# New ports collection makefile for: openmsx
# Date created: 20 January 2006
# Whom: Johan van Selst <johans@stack.nl>
#
# $FreeBSD$
#
PORTNAME= openmsx
DISTVERSION= 0.7.2
PORTREVISION= 1
CATEGORIES= emulators
MASTER_SITES= SF
MAINTAINER= johans@stack.nl
COMMENT= Open source MSX emulator
LIB_DEPENDS= xml2:${PORTSDIR}/textproc/libxml2 \
jack:${PORTSDIR}/audio/jack \
GLEW:${PORTSDIR}/graphics/glew \
png:${PORTSDIR}/graphics/png
MAKE_ARGS+= INSTALL_BINARY_DIR=${PREFIX}/bin \
INSTALL_SHARE_DIR=${DATADIR} \
INSTALL_DOC_DIR=${DOCSDIR} \
OPENMSX_CXX=${CXX}
MAKEFILE= GNUmakefile
USE_GMAKE= yes
USE_TCL= 84+
USE_SDL= sdl image ttf
USE_PYTHON= 2.5+
.ifdef(NOPORTDOCS)
# Use dummy target rather than rewriting makefile
MAKE_ARGS+= INSTALL_DOC_DIR=${WRKSRC}/dummy
.endif
post-patch:
@${REINPLACE_CMD} -e '/^SYMLINK_FOR_BINARY/s/true/false/' \
${WRKSRC}/build/custom.mk
.include <bsd.port.pre.mk>
.if (${ARCH} == "amd64")
USE_GCC= 4.2+
.endif
.include <bsd.port.post.mk>
|