1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-11-21 00:25:50 +00:00

Add new port devel/tass64

PR:		192155
Submitted by:	uffe

6502/65C02/R65C02/W65C02/65CE02/65816/DTV/65EL02 Turbo Assembler

Open source, mostly portable C with minimal dependencies
Familiar syntax to Omicron TASS and TASM.
Supports 6502, 65C02, R65C02, W65C02, 65CE02, 65816, DTV, 65EL02
Arbitrary-precision integers and bitstrings, double precision floating point nos
Character and byte strings, array arithmetic
Handles UTF-8, UTF-16 and 8 bit RAW encoded source files, unicode strings
Supports Unicode identifiers with case folding and compatibility normalization
Built-in "linker" with section support
CPU or flat address space for creating huge binaries (e.g. cartridges)
Conditional compilation, macros, struct/union structures, scopes.
This commit is contained in:
John Marino 2014-08-10 22:21:22 +00:00
parent ee62ab4b4f
commit 5e492199d1
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=364578
4 changed files with 50 additions and 0 deletions

View File

@ -4613,6 +4613,7 @@
SUBDIR += ta-lib
SUBDIR += tailor
SUBDIR += talloc
SUBDIR += tass
SUBDIR += tbb
SUBDIR += tcl-memchan
SUBDIR += tcl-mmap

31
devel/tass64/Makefile Normal file
View File

@ -0,0 +1,31 @@
# Created by: Uffe Jakobsen <uffe@uffe.org>
# $FreeBSD$
PORTNAME= tass64
PORTVERSION= 1.51.727
CATEGORIES= devel
MASTER_SITES= SF/${PORTNAME}/source
DISTNAME= 64tass-${PORTVERSION}-src
MAINTAINER= uffe@uffe.org
COMMENT= 6502/65C02/R65C02/W65C02/65CE02/65816/DTV/65EL02 Turbo Assembler
LICENSE= GPLv2
USES= gmake zip
MAKE_ARGS= -w CC="${CC}" CFLAGS="${CFLAGS}" LD="${CC}" LDFLAGS="${LDFLAGS}"
PLIST_FILES= bin/tass64 \
%%DOCSDIR%%/README \
%%DOCSDIR%%/README.html
PLIST_DIRSTRY= %%DOCSDIR%%
do-install:
${INSTALL_PROGRAM} ${WRKSRC}/64tass ${STAGEDIR}${PREFIX}/bin/tass64
@${MKDIR} ${STAGEDIR}${DOCSDIR}
.for doc in README README.html
${INSTALL_DATA} ${WRKSRC}/${doc} ${STAGEDIR}${DOCSDIR}
.endfor
.include <bsd.port.mk>

2
devel/tass64/distinfo Normal file
View File

@ -0,0 +1,2 @@
SHA256 (64tass-1.51.727-src.zip) = 971b0e4bb8cc9e3f5493505a58a6060d19ee96364d969142d4ec36fa0f3bee3a
SIZE (64tass-1.51.727-src.zip) = 517120

16
devel/tass64/pkg-descr Normal file
View File

@ -0,0 +1,16 @@
6502/65C02/R65C02/W65C02/65CE02/65816/DTV/65EL02 Turbo Assembler
Key features:
Open source, mostly portable C with minimal dependencies
Familiar syntax to Omicron TASS and TASM.
Supports 6502, 65C02, R65C02, W65C02, 65CE02, 65816, DTV, 65EL02
Arbitrary-precision integers and bitstrings, double precision floating point nos
Character and byte strings, array arithmetic
Handles UTF-8, UTF-16 and 8 bit RAW encoded source files, unicode strings
Supports Unicode identifiers with case folding and compatibility normalization
Built-in "linker" with section support
CPU or flat address space for creating huge binaries (e.g. cartridges)
Conditional compilation, macros, struct/union structures, scopes.
WWW: http://tass64.sourceforge.net/