From owner-svn-ports-all@FreeBSD.ORG Mon Aug 5 06:25:53 2013 Return-Path: Delivered-To: svn-ports-all@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 ESMTP id 341EC1FD; Mon, 5 Aug 2013 06:25:53 +0000 (UTC) (envelope-from jgh@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 129C72AD7; Mon, 5 Aug 2013 06:25:53 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id r756Pqmb067008; Mon, 5 Aug 2013 06:25:52 GMT (envelope-from jgh@svn.freebsd.org) Received: (from jgh@localhost) by svn.freebsd.org (8.14.7/8.14.5/Submit) id r756PqIg067004; Mon, 5 Aug 2013 06:25:52 GMT (envelope-from jgh@svn.freebsd.org) Message-Id: <201308050625.r756PqIg067004@svn.freebsd.org> From: Jason Helfman Date: Mon, 5 Aug 2013 06:25:52 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r324261 - in head/devel: . dasm X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 05 Aug 2013 06:25:53 -0000 Author: jgh Date: Mon Aug 5 06:25:51 2013 New Revision: 324261 URL: http://svnweb.freebsd.org/changeset/ports/324261 Log: dasm is a versatile macro assembler with support for several 8-bit microprocessors including: MOS 6502 & 6507 Motorola 6803, 68705 & 68HC11 Hitachi HD6303 (extended Motorola 6801) Fairchild F8 WWW: http://dasm-dillon.sourceforge.net/ PR: ports/180971 Submitted by: uffe@uffe.org Added: head/devel/dasm/ head/devel/dasm/Makefile (contents, props changed) head/devel/dasm/distinfo (contents, props changed) head/devel/dasm/pkg-descr (contents, props changed) Modified: head/devel/Makefile Modified: head/devel/Makefile ============================================================================== --- head/devel/Makefile Mon Aug 5 06:18:31 2013 (r324260) +++ head/devel/Makefile Mon Aug 5 06:25:51 2013 (r324261) @@ -328,6 +328,7 @@ SUBDIR += czmq SUBDIR += d-feet SUBDIR += darts + SUBDIR += dasm SUBDIR += datadraw SUBDIR += dbus SUBDIR += dbus-glib Added: head/devel/dasm/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/dasm/Makefile Mon Aug 5 06:25:51 2013 (r324261) @@ -0,0 +1,38 @@ +# Created by: Uffe Jakobsen +# $FreeBSD$ + +PORTNAME= dasm +PORTVERSION= 2.20.11 +CATEGORIES= devel +MASTER_SITES= SF/${PORTNAME}-dillon/${PORTNAME}-dillon/${PORTVERSION} + +MAINTAINER= uffe@uffe.org +COMMENT= Macro assembler for 8-bit microprocessors including MOS 6502, MC6803 + +LICENSE= GPLv2 + +OPTIONS_DEFINE= DOCS + +USES= gmake + +BUILD_WRKSRC= ${WRKSRC}/src +MAKE_ARGS= CC="${CC}" LDFLAGS="${LDFLAGS}" CFLAGS="${CFLAGS}" + +PORTDOCS= * +PLIST_FILES= bin/dasm \ + bin/ftohex + +do-install: +.for filename in dasm ftohex + ${INSTALL_PROGRAM} ${BUILD_WRKSRC}/${filename} ${PREFIX}/bin +.endfor + +.include + +post-install: +.if ${PORT_OPTIONS:MDOCS} + @${MKDIR} ${DOCSDIR} + ${INSTALL_DATA} ${WRKSRC}/doc/* ${DOCSDIR} +.endif + +.include Added: head/devel/dasm/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/dasm/distinfo Mon Aug 5 06:25:51 2013 (r324261) @@ -0,0 +1,2 @@ +SHA256 (dasm-2.20.11.tar.gz) = 5b09040ddcd04417f9be9462d45d5584bee6f09bf342e8a05e513136b99aa0c3 +SIZE (dasm-2.20.11.tar.gz) = 112184 Added: head/devel/dasm/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/dasm/pkg-descr Mon Aug 5 06:25:51 2013 (r324261) @@ -0,0 +1,9 @@ +dasm is a versatile macro assembler with support +for several 8-bit microprocessors including: + +MOS 6502 & 6507 +Motorola 6803, 68705 & 68HC11 +Hitachi HD6303 (extended Motorola 6801) +Fairchild F8 + +WWW: http://dasm-dillon.sourceforge.net/