From owner-svn-ports-head@freebsd.org Tue Oct 11 21:19:36 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 C0AE5C0E943; Tue, 11 Oct 2016 21:19:36 +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 93A48BFD; Tue, 11 Oct 2016 21:19:36 +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 u9BLJZxY025975; Tue, 11 Oct 2016 21:19:35 GMT (envelope-from bsam@FreeBSD.org) Received: (from bsam@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u9BLJZUg025971; Tue, 11 Oct 2016 21:19:35 GMT (envelope-from bsam@FreeBSD.org) Message-Id: <201610112119.u9BLJZUg025971@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: bsam set sender to bsam@FreeBSD.org using -f From: Boris Samorodov Date: Tue, 11 Oct 2016 21:19:35 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r423799 - in head/devel: . arduino-sevseg 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: Tue, 11 Oct 2016 21:19:36 -0000 Author: bsam Date: Tue Oct 11 21:19:35 2016 New Revision: 423799 URL: https://svnweb.freebsd.org/changeset/ports/423799 Log: Arduino seven segment display library This library turns your Arduino into a seven segment display controller! Use it to easily display numbers on your seven segment display without any additional controllers. It supports common cathode and common anode displays, and the use of switching transistors. Displays with 1 to 9 digits can be used, and decimal places are supported. Characters and strings are not supported. WWW: https://github.com/DeanIsMe/SevSeg PR: 212806 Submitted by: Craig Leres Added: head/devel/arduino-sevseg/ head/devel/arduino-sevseg/Makefile (contents, props changed) head/devel/arduino-sevseg/distinfo (contents, props changed) head/devel/arduino-sevseg/pkg-descr (contents, props changed) Modified: head/devel/Makefile Modified: head/devel/Makefile ============================================================================== --- head/devel/Makefile Tue Oct 11 21:16:25 2016 (r423798) +++ head/devel/Makefile Tue Oct 11 21:19:35 2016 (r423799) @@ -99,6 +99,7 @@ SUBDIR += arduino-glcd SUBDIR += arduino-irremote SUBDIR += arduino-mk + SUBDIR += arduino-sevseg SUBDIR += argouml SUBDIR += argp-standalone SUBDIR += argtable Added: head/devel/arduino-sevseg/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/arduino-sevseg/Makefile Tue Oct 11 21:19:35 2016 (r423799) @@ -0,0 +1,36 @@ +# Created by: Craig Leres +# $FreeBSD$ + +PORTNAME= arduino-sevseg +PORTVERSION= 3.1 +DISTVERSIONPREFIX= v +CATEGORIES= devel + +MAINTAINER= leres@ee.lbl.gov +COMMENT= Arduino seven segment display library + +LICENSE= APACHE20 + +RUN_DEPENDS= arduino:devel/arduino + +USE_GITHUB= yes +GH_ACCOUNT= DeanIsMe +GH_PROJECT= SevSeg + +NO_BUILD= yes + +FILES= SevSeg.cpp SevSeg.h keywords.txt + +PLIST_FILES= ${FILES:S,^,arduino/libraries/SevSeg/,} +PORTEXAMPLES= * + +OPTIONS_DEFINE= EXAMPLES + +do-install: + ${MKDIR} ${STAGEDIR}${PREFIX}/arduino/libraries/SevSeg + (cd ${WRKSRC} && ${INSTALL_DATA} ${FILES} \ + ${STAGEDIR}${PREFIX}/arduino/libraries/SevSeg) + ${MKDIR} ${STAGEDIR}${EXAMPLESDIR} + cd ${WRKSRC}/examples && ${COPYTREE_SHARE} . ${STAGEDIR}${EXAMPLESDIR} + +.include Added: head/devel/arduino-sevseg/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/arduino-sevseg/distinfo Tue Oct 11 21:19:35 2016 (r423799) @@ -0,0 +1,3 @@ +TIMESTAMP = 1474167691 +SHA256 (DeanIsMe-SevSeg-v3.1_GH0.tar.gz) = 818b35ce6634774851dad395ba9c2d4a383fc2562d8f9bd6a5ddaa4601602146 +SIZE (DeanIsMe-SevSeg-v3.1_GH0.tar.gz) = 10865 Added: head/devel/arduino-sevseg/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/arduino-sevseg/pkg-descr Tue Oct 11 21:19:35 2016 (r423799) @@ -0,0 +1,12 @@ +Arduino seven segment display library + +This library turns your Arduino into a seven segment display +controller! Use it to easily display numbers on your seven segment +display without any additional controllers. + +It supports common cathode and common anode displays, and the use +of switching transistors. Displays with 1 to 9 digits can be used, +and decimal places are supported. Characters and strings are not +supported. + +WWW: https://github.com/DeanIsMe/SevSeg