From owner-svn-ports-all@freebsd.org Fri Sep 23 18:37:48 2016 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id E7995BE71FC; Fri, 23 Sep 2016 18:37:48 +0000 (UTC) (envelope-from jrm@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id C52DBEBA; Fri, 23 Sep 2016 18:37:48 +0000 (UTC) (envelope-from jrm@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u8NIbmfU086950; Fri, 23 Sep 2016 18:37:48 GMT (envelope-from jrm@FreeBSD.org) Received: (from jrm@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u8NIblQG086946; Fri, 23 Sep 2016 18:37:47 GMT (envelope-from jrm@FreeBSD.org) Message-Id: <201609231837.u8NIblQG086946@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: jrm set sender to jrm@FreeBSD.org using -f From: Joseph Mingrone Date: Fri, 23 Sep 2016 18:37:47 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r422691 - head/devel/bossa 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.23 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: Fri, 23 Sep 2016 18:37:49 -0000 Author: jrm Date: Fri Sep 23 18:37:47 2016 New Revision: 422691 URL: https://svnweb.freebsd.org/changeset/ports/422691 Log: New port devel/bossa: Flash programmer for Atmel SAM microcontrollers PR: 211397 Submitted by: bsdports@kyle-evans.net (maintainer) Reviewed by: swills (mentor) Approved by: swills (mentor) Differential Revision: https://reviews.freebsd.org/D8017 Added: head/devel/bossa/ head/devel/bossa/Makefile (contents, props changed) head/devel/bossa/distinfo (contents, props changed) head/devel/bossa/pkg-descr (contents, props changed) head/devel/bossa/pkg-plist (contents, props changed) Added: head/devel/bossa/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/bossa/Makefile Fri Sep 23 18:37:47 2016 (r422691) @@ -0,0 +1,50 @@ +# $FreeBSD$ + +PORTNAME= bossa +PORTVERSION= 1.7.0.a +CATEGORIES= devel + +MAINTAINER= bsdports@kyle-evans.net +COMMENT= Flash programmer for Atmel SAM microcontrollers + +LICENSE= BSD3CLAUSE +LICENSE_FILE= ${WRKSRC}/LICENSE + +USE_GITHUB= yes +GH_ACCOUNT= shumatech +GH_TAGNAME= ae08c63 + +USES= compiler:c++11-lang gmake + +CXXFLAGS+= -I${PREFIX}/include +LDFLAGS+= -L${PREFIX}/lib + +ALL_TARGET= bin/bossac + +WRKSRC= ${WRKDIR}/${PORTNAME:tu}-${GH_TAGNAME} + +OPTIONS_DEFINE= BOSSA BOSSASH +OPTIONS_DEFAULT= BOSSASH +OPTIONS_SUB= yes + +BOSSA_DESC= Include BOSSA GUI application using wxWidgets +BOSSA_ALL_TARGET= bin/bossa +BOSSA_USE= wx=3.0 wx_comps=wx + +BOSSASH_DESC= Include BOSSA Shell +BOSSASH_USES= readline +BOSSASH_ALL_TARGET= bin/bossash + +post-extract: + ${REINPLACE_CMD} -e 's/wx-config/$${WX_CONFIG}/' ${WRKSRC}/Makefile + +do-install: + ${INSTALL_PROGRAM} ${WRKSRC}/bin/bossac ${STAGEDIR}${PREFIX}/bin/bossac + +do-install-BOSSA-on: + ${INSTALL_PROGRAM} ${WRKSRC}/bin/bossa ${STAGEDIR}${PREFIX}/bin/bossa + +do-install-BOSSASH-on: + ${INSTALL_PROGRAM} ${WRKSRC}/bin/bossash ${STAGEDIR}${PREFIX}/bin/bossash + +.include Added: head/devel/bossa/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/bossa/distinfo Fri Sep 23 18:37:47 2016 (r422691) @@ -0,0 +1,3 @@ +TIMESTAMP = 1474645354 +SHA256 (shumatech-bossa-1.7.0.a-ae08c63_GH0.tar.gz) = 5660dea8bc531a0ff9684c7c832e989f59a892e3352c2133c866b09b23f6a958 +SIZE (shumatech-bossa-1.7.0.a-ae08c63_GH0.tar.gz) = 539364 Added: head/devel/bossa/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/bossa/pkg-descr Fri Sep 23 18:37:47 2016 (r422691) @@ -0,0 +1,6 @@ +BOSSA is a flash programming utility for Atmel's SAM family of flash-based ARM +microcontrollers designed as a replacement for Atmel's SAM-BA software. +This version is a fork of the original project with some Arduino-specific +patches applied that are unlikely to be accepted upstream. + +WWW: https://github.com/shumatech/BOSSA Added: head/devel/bossa/pkg-plist ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/bossa/pkg-plist Fri Sep 23 18:37:47 2016 (r422691) @@ -0,0 +1,3 @@ +%%BOSSA%%bin/bossa +bin/bossac +%%BOSSASH%%bin/bossash