aboutsummaryrefslogtreecommitdiff
path: root/emulators/tilem/Makefile
blob: 02a1c8a486ca61ee2b4c03359b7699c66ae6e94e (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:	TilEm
# Date created:				5 Sep 2006
# Whom:					Alexey Dokuchaev <danfe@FreeBSD.org>
#
# $FreeBSD$
#

PORTNAME=	tilem
PORTVERSION=	0.973
PORTREVISION=	3
CATEGORIES=	emulators
MASTER_SITES=	SF

MAINTAINER=	danfe@FreeBSD.org
COMMENT=	An emulator for the Z80 series of Texas Instruments calculators

USE_BZIP2=	yes
GNU_CONFIGURE=	yes
USE_GMAKE=	yes
USE_GNOME=	gtk20

OPTIONS=	TICABLES "Use ticables2 library for external linking" off

.include <bsd.port.pre.mk>

.if defined(WITH_TICABLES)
LIB_DEPENDS+=	ticables2.1:${PORTSDIR}/comms/libticables2
.else
CONFIGURE_ARGS+=	--without-ticables
.endif

post-extract:
# Set more sane permissions for main executable
	@${REINPLACE_CMD} -e 's,711,555,' \
		${WRKSRC}/src/tilem/Makefile.in
# Honor CFLAGS
	@${REINPLACE_CMD} -e 's,CPPFLAGS) -O.,CPPFLAGS),' \
		${WRKSRC}/src/tilem/Makefile.in
	@${REINPLACE_CMD} -e 's,-Wall,${CFLAGS},' \
		${WRKSRC}/src/utils/Makefile.in
# Remove conflicting prototype
	@${REINPLACE_CMD} '5,13d' ${WRKSRC}/src/tilem/core/dep/link.h

post-install:
	${INSTALL_PROGRAM} ${WRKSRC}/bin/neosign ${WRKSRC}/bin/tcc \
		${PREFIX}/bin

.include <bsd.port.post.mk>