svn commit: r364578 - in head/devel: . tass64
John Marino
marino at FreeBSD.org
Sun Aug 10 22:21:23 UTC 2014
Author: marino
Date: Sun Aug 10 22:21:22 2014
New Revision: 364578
URL: http://svnweb.freebsd.org/changeset/ports/364578
QAT: https://qat.redports.org/buildarchive/r364578/
Log:
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.
Added:
head/devel/tass64/
head/devel/tass64/Makefile (contents, props changed)
head/devel/tass64/distinfo (contents, props changed)
head/devel/tass64/pkg-descr (contents, props changed)
Modified:
head/devel/Makefile
Modified: head/devel/Makefile
==============================================================================
--- head/devel/Makefile Sun Aug 10 22:11:46 2014 (r364577)
+++ head/devel/Makefile Sun Aug 10 22:21:22 2014 (r364578)
@@ -4613,6 +4613,7 @@
SUBDIR += ta-lib
SUBDIR += tailor
SUBDIR += talloc
+ SUBDIR += tass
SUBDIR += tbb
SUBDIR += tcl-memchan
SUBDIR += tcl-mmap
Added: head/devel/tass64/Makefile
==============================================================================
--- /dev/null 00:00:00 1970 (empty, because file is newly added)
+++ head/devel/tass64/Makefile Sun Aug 10 22:21:22 2014 (r364578)
@@ -0,0 +1,31 @@
+# Created by: Uffe Jakobsen <uffe at uffe.org>
+# $FreeBSD$
+
+PORTNAME= tass64
+PORTVERSION= 1.51.727
+CATEGORIES= devel
+MASTER_SITES= SF/${PORTNAME}/source
+DISTNAME= 64tass-${PORTVERSION}-src
+
+MAINTAINER= uffe at 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>
Added: head/devel/tass64/distinfo
==============================================================================
--- /dev/null 00:00:00 1970 (empty, because file is newly added)
+++ head/devel/tass64/distinfo Sun Aug 10 22:21:22 2014 (r364578)
@@ -0,0 +1,2 @@
+SHA256 (64tass-1.51.727-src.zip) = 971b0e4bb8cc9e3f5493505a58a6060d19ee96364d969142d4ec36fa0f3bee3a
+SIZE (64tass-1.51.727-src.zip) = 517120
Added: head/devel/tass64/pkg-descr
==============================================================================
--- /dev/null 00:00:00 1970 (empty, because file is newly added)
+++ head/devel/tass64/pkg-descr Sun Aug 10 22:21:22 2014 (r364578)
@@ -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/
More information about the svn-ports-all
mailing list