Date: Wed, 31 Jul 2013 07:45:04 +0000 (UTC) From: Jason Helfman <jgh@FreeBSD.org> To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r324015 - in head/devel: . xa65 Message-ID: <201307310745.r6V7j4rs063365@svn.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: jgh Date: Wed Jul 31 07:45:04 2013 New Revision: 324015 URL: http://svnweb.freebsd.org/changeset/ports/324015 Log: xa is a high-speed, two-pass portable cross-assembler. It understands mnemonics and generates code for: NMOS 6502s (such as 6502A, 6504, 6507, 6510, 7501, 8500, 8501, 8502 ...) CMOS 6502s (65C02 and Rockwell R65C02) and the 65816. WWW: http://www.floodgap.com/retrotech/xa/ PR: ports/179021 Submitted by: uffe@uffe.org Added: head/devel/xa65/ head/devel/xa65/Makefile (contents, props changed) head/devel/xa65/distinfo (contents, props changed) head/devel/xa65/pkg-descr (contents, props changed) Modified: head/devel/Makefile Modified: head/devel/Makefile ============================================================================== --- head/devel/Makefile Wed Jul 31 07:43:53 2013 (r324014) +++ head/devel/Makefile Wed Jul 31 07:45:04 2013 (r324015) @@ -4440,6 +4440,7 @@ SUBDIR += winpdb SUBDIR += wizardkit SUBDIR += wxGlade + SUBDIR += xa65 SUBDIR += xc3sprog SUBDIR += xdg-user-dirs SUBDIR += xdg-utils Added: head/devel/xa65/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/xa65/Makefile Wed Jul 31 07:45:04 2013 (r324015) @@ -0,0 +1,61 @@ +# Created by: Uffe Jakobsen <uffe@uffe.org> +# $FreeBSD$ + +PORTNAME= xa +PORTVERSION= 2.3.5 +CATEGORIES= devel +MASTER_SITES= http://www.floodgap.com/retrotech/xa/dists/ +PKGNAMESUFFIX= 65 + +MAINTAINER= uffe@uffe.org +COMMENT= MOS-6502 two-pass cross-assembler for MOS 6502 and compatible CPUs + +OPTIONS_DEFINE= DOCS EXAMPLES + +USES= gmake + +MAN1= file65.1 ldo65.1 printcbm.1 reloc65.1 uncpk.1 xa.1 +MLINKS= xa.1 xa65.1 + +PORTDOCS= * +PORTEXAMPLES= * + +PLIST_FILES= bin/xa65 \ + bin/file65 \ + bin/ldo65 \ + bin/reloc65 \ + bin/printcbm \ + bin/uncpk + +post-patch-script: +.for i in CC LDFLAGS CFLAGS + @${REINPLACE_CMD} 's|${i} = |${i} ?= |g' ${WRKSRC}/Makefile +.endfor + +do-install: + ${INSTALL_PROGRAM} ${WRKSRC}/xa ${PREFIX}/bin/xa65 +.for file in file65 ldo65 reloc65 printcbm uncpk + ${INSTALL_PROGRAM} ${WRKSRC}/${file} ${PREFIX}/bin +.endfor + +.for man in ${MAN1} + ${INSTALL_MAN} ${WRKSRC}/man/${man} ${MAN1PREFIX}/man/man1 +.endfor + +.include <bsd.port.options.mk> + +post-install: +.if ${PORT_OPTIONS:MDOCS} + @${MKDIR} ${DOCSDIR} +.for doc in COPYING ChangeLog README.1st TODO + ${INSTALL_DATA} ${WRKSRC}/${doc} ${DOCSDIR} +.endfor + ${INSTALL_DATA} ${WRKSRC}/doc/* ${DOCSDIR} +.endif + +.if ${PORT_OPTIONS:MEXAMPLES} + @${MKDIR} ${EXAMPLESDIR} + ${INSTALL_DATA} ${WRKSRC}/examples/* ${EXAMPLESDIR} +.endif + +.include <bsd.port.mk> Added: head/devel/xa65/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/xa65/distinfo Wed Jul 31 07:45:04 2013 (r324015) @@ -0,0 +1,2 @@ +SHA256 (xa-2.3.5.tar.gz) = 9cada4128a096169e5acba66b03b5e954ce4201ebb8aefeacb7025ffc0decdd2 +SIZE (xa-2.3.5.tar.gz) = 132551 Added: head/devel/xa65/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/xa65/pkg-descr Wed Jul 31 07:45:04 2013 (r324015) @@ -0,0 +1,6 @@ +xa is a high-speed, two-pass portable cross-assembler. +It understands mnemonics and generates code for: +NMOS 6502s (such as 6502A, 6504, 6507, 6510, 7501, 8500, 8501, 8502 ...) +CMOS 6502s (65C02 and Rockwell R65C02) and the 65816. + +WWW: http://www.floodgap.com/retrotech/xa/
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201307310745.r6V7j4rs063365>