Add TilEm, a Gtk+-based TI graphing calculators emulator. It supports all
Z80 TI calculators (73, 82, 83, 83+, 83+ SE, 84+, 84+ SE, 85, and 86) except
for TI-81, and all known ROM/OS versions.
WWW: http://lpg.ticalc.org/prj_tilem/
2006-09-05 15:57:43 +00:00
|
|
|
# New ports collection makefile for: TilEm
|
|
|
|
# Date created: 5 Sep 2006
|
|
|
|
# Whom: Alexey Dokuchaev <danfe@FreeBSD.org>
|
|
|
|
#
|
|
|
|
# $FreeBSD$
|
|
|
|
#
|
|
|
|
|
|
|
|
PORTNAME= tilem
|
|
|
|
PORTVERSION= 0.973
|
2010-03-28 06:47:48 +00:00
|
|
|
PORTREVISION= 6
|
Add TilEm, a Gtk+-based TI graphing calculators emulator. It supports all
Z80 TI calculators (73, 82, 83, 83+, 83+ SE, 84+, 84+ SE, 85, and 86) except
for TI-81, and all known ROM/OS versions.
WWW: http://lpg.ticalc.org/prj_tilem/
2006-09-05 15:57:43 +00:00
|
|
|
CATEGORIES= emulators
|
2009-08-22 00:20:34 +00:00
|
|
|
MASTER_SITES= SF/${PORTNAME}/${PORTNAME}-devel/${PORTVERSION}
|
Add TilEm, a Gtk+-based TI graphing calculators emulator. It supports all
Z80 TI calculators (73, 82, 83, 83+, 83+ SE, 84+, 84+ SE, 85, and 86) except
for TI-81, and all known ROM/OS versions.
WWW: http://lpg.ticalc.org/prj_tilem/
2006-09-05 15:57:43 +00:00
|
|
|
|
|
|
|
MAINTAINER= danfe@FreeBSD.org
|
|
|
|
COMMENT= An emulator for the Z80 series of Texas Instruments calculators
|
|
|
|
|
|
|
|
USE_BZIP2= yes
|
|
|
|
GNU_CONFIGURE= yes
|
|
|
|
USE_GMAKE= yes
|
2006-09-09 09:18:58 +00:00
|
|
|
USE_GNOME= gtk20
|
Add TilEm, a Gtk+-based TI graphing calculators emulator. It supports all
Z80 TI calculators (73, 82, 83, 83+, 83+ SE, 84+, 84+ SE, 85, and 86) except
for TI-81, and all known ROM/OS versions.
WWW: http://lpg.ticalc.org/prj_tilem/
2006-09-05 15:57:43 +00:00
|
|
|
|
2008-03-24 10:05:57 +00:00
|
|
|
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>
|