From owner-svn-ports-head@FreeBSD.ORG Sun Aug 10 22:21:23 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id A79E67CD for ; Sun, 10 Aug 2014 22:21:23 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1 with cipher ECDHE-RSA-AES256-SHA (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 8698526E9 for ; Sun, 10 Aug 2014 22:21:23 +0000 (UTC) Received: from marino (uid 1323) (envelope-from marino@FreeBSD.org) id 23a8 by svn.freebsd.org (DragonFly Mail Agent v0.9+); Sun, 10 Aug 2014 22:21:22 +0000 From: John Marino Date: Sun, 10 Aug 2014 22:21:22 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r364578 - in head/devel: . tass64 X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Message-Id: <53e7f063.23a8.1be82491@svn.freebsd.org> X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 10 Aug 2014 22:21:23 -0000 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 +# $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 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/