From owner-svn-ports-head@freebsd.org Sat Oct 15 21:22:07 2016 Return-Path: Delivered-To: svn-ports-head@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 9BDF1C13A8D; Sat, 15 Oct 2016 21:22:07 +0000 (UTC) (envelope-from bsam@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 6557B99C; Sat, 15 Oct 2016 21:22:07 +0000 (UTC) (envelope-from bsam@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u9FLM6ul028856; Sat, 15 Oct 2016 21:22:06 GMT (envelope-from bsam@FreeBSD.org) Received: (from bsam@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u9FLM6a6028855; Sat, 15 Oct 2016 21:22:06 GMT (envelope-from bsam@FreeBSD.org) Message-Id: <201610152122.u9FLM6a6028855@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: bsam set sender to bsam@FreeBSD.org using -f From: Boris Samorodov Date: Sat, 15 Oct 2016 21:22:06 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r424029 - head/devel/arduino-builder X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 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: Sat, 15 Oct 2016 21:22:07 -0000 Author: bsam Date: Sat Oct 15 21:22:06 2016 New Revision: 424029 URL: https://svnweb.freebsd.org/changeset/ports/424029 Log: devel/arduino-builder: Add package hardware definitions. PR: 213496 Submitted by: Kyle Evans (maintiner)) Modified: head/devel/arduino-builder/Makefile Modified: head/devel/arduino-builder/Makefile ============================================================================== --- head/devel/arduino-builder/Makefile Sat Oct 15 21:14:53 2016 (r424028) +++ head/devel/arduino-builder/Makefile Sat Oct 15 21:22:06 2016 (r424029) @@ -2,6 +2,7 @@ PORTNAME= arduino-builder PORTVERSION= 1.3.21 +PORTREVISION= 1 CATEGORIES= devel MAINTAINER= bsdports@kyle-evans.net @@ -21,12 +22,15 @@ GH_TUPLE= go-errors:errors:a418503:goerr STRIP= # stripping can break go binaries +PLIST_FILES= arduino/hardware/platform.keys.rewrite.txt \ + arduino/hardware/platform.txt \ + bin/${PORTNAME} + do-build: @( cd ${WRKSRC} ; ${SETENV} GOPATH=${WRKSRC} go build arduino.cc/arduino-builder ) do-install: ${INSTALL_PROGRAM} ${WRKSRC}/${PORTNAME} ${STAGEDIR}${PREFIX}/bin/${PORTNAME} - -PLIST_FILES= bin/${PORTNAME} + (cd ${WRKSRC}/src/arduino.cc/builder && ${COPYTREE_SHARE} "hardware" ${STAGEDIR}${PREFIX}/arduino ${FIND_EXPR}) .include