From owner-svn-ports-all@freebsd.org Tue Jul 25 15:53:14 2017 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 AFD78C7F59E; Tue, 25 Jul 2017 15:53:14 +0000 (UTC) (envelope-from amdmi3@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 7FB78808B7; Tue, 25 Jul 2017 15:53:14 +0000 (UTC) (envelope-from amdmi3@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id v6PFrD1v059906; Tue, 25 Jul 2017 15:53:13 GMT (envelope-from amdmi3@FreeBSD.org) Received: (from amdmi3@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v6PFrD43059899; Tue, 25 Jul 2017 15:53:13 GMT (envelope-from amdmi3@FreeBSD.org) Message-Id: <201707251553.v6PFrD43059899@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: amdmi3 set sender to amdmi3@FreeBSD.org using -f From: Dmitry Marakasov Date: Tue, 25 Jul 2017 15:53:13 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r446592 - in head/comms: . sunxi-tools sunxi-tools/files X-SVN-Group: ports-head X-SVN-Commit-Author: amdmi3 X-SVN-Commit-Paths: in head/comms: . sunxi-tools sunxi-tools/files X-SVN-Commit-Revision: 446592 X-SVN-Commit-Repository: ports 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: Tue, 25 Jul 2017 15:53:14 -0000 Author: amdmi3 Date: Tue Jul 25 15:53:12 2017 New Revision: 446592 URL: https://svnweb.freebsd.org/changeset/ports/446592 Log: Tools to help hacking Allwinner A10 (aka sun4i) based devices and possibly it's successors, that's why the 'x' in the package name. WWW: https://github.com/linux-sunxi/sunxi-tools PR: 213250 Submitted by: manu Added: head/comms/sunxi-tools/ head/comms/sunxi-tools/Makefile (contents, props changed) head/comms/sunxi-tools/distinfo (contents, props changed) head/comms/sunxi-tools/files/ head/comms/sunxi-tools/files/patch-Makefile (contents, props changed) head/comms/sunxi-tools/pkg-descr (contents, props changed) head/comms/sunxi-tools/pkg-plist (contents, props changed) Modified: head/comms/Makefile Modified: head/comms/Makefile ============================================================================== --- head/comms/Makefile Tue Jul 25 15:30:17 2017 (r446591) +++ head/comms/Makefile Tue Jul 25 15:53:12 2017 (r446592) @@ -168,6 +168,7 @@ SUBDIR += spandsp SUBDIR += splat SUBDIR += sredird + SUBDIR += sunxi-tools SUBDIR += svxlink SUBDIR += syncterm SUBDIR += tcpser Added: head/comms/sunxi-tools/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/comms/sunxi-tools/Makefile Tue Jul 25 15:53:12 2017 (r446592) @@ -0,0 +1,19 @@ +# $FreeBSD$ + +PORTNAME= sunxi-tools +PORTVERSION= 1.4.2 +DISTVERSIONPREFIX= v +CATEGORIES= comms + +MAINTAINER= manu@freebsd.org +COMMENT= Tools to help hacking Allwinner devices + +LICENSE= GPLv2+ +LICENSE_FILE= ${WRKSRC}/LICENSE.md + +USE_GITHUB= yes +GH_ACCOUNT= linux-sunxi + +USES= gmake pkgconfig + +.include Added: head/comms/sunxi-tools/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/comms/sunxi-tools/distinfo Tue Jul 25 15:53:12 2017 (r446592) @@ -0,0 +1,3 @@ +TIMESTAMP = 1499609673 +SHA256 (linux-sunxi-sunxi-tools-v1.4.2_GH0.tar.gz) = 81f48014a520cb83cac4e17f5ae627a637c4d6a422b60c693c5a705c92e43822 +SIZE (linux-sunxi-sunxi-tools-v1.4.2_GH0.tar.gz) = 84090 Added: head/comms/sunxi-tools/files/patch-Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/comms/sunxi-tools/files/patch-Makefile Tue Jul 25 15:53:12 2017 (r446592) @@ -0,0 +1,29 @@ +--- Makefile.orig 2016-11-29 13:07:51 UTC ++++ Makefile +@@ -17,7 +17,7 @@ + # along with this program. If not, see . + + CC ?= gcc +-DEFAULT_CFLAGS := -std=c99 ++DEFAULT_CFLAGS += -std=c99 + DEFAULT_CFLAGS += -Wall -Wextra -Wno-unused-result + + DEFAULT_CFLAGS += -D_POSIX_C_SOURCE=200112L +@@ -63,7 +63,7 @@ BINDIR ?= $(PREFIX)/bin + tools: $(TOOLS) $(FEXC_LINKS) + target-tools: $(TARGET_TOOLS) + +-all: tools target-tools ++all: tools + + misc: $(MISC_TOOLS) + +@@ -75,7 +75,7 @@ install-all: install-tools install-target-tools + install-tools: $(TOOLS) + install -d $(DESTDIR)$(BINDIR) + @set -ex ; for t in $^ ; do \ +- install -m0755 $$t $(DESTDIR)$(BINDIR)/$$t ; \ ++ $(BSD_INSTALL_PROGRAM) $$t $(DESTDIR)$(BINDIR)/$$t ; \ + done + @set -ex ; for l in $(FEXC_LINKS) ; do \ + ln -nfs sunxi-fexc $(DESTDIR)$(BINDIR)/$$l ; \ Added: head/comms/sunxi-tools/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/comms/sunxi-tools/pkg-descr Tue Jul 25 15:53:12 2017 (r446592) @@ -0,0 +1,4 @@ +Tools to help hacking Allwinner A10 (aka sun4i) based devices and possibly +it's successors, that's why the 'x' in the package name. + +WWW: https://github.com/linux-sunxi/sunxi-tools Added: head/comms/sunxi-tools/pkg-plist ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/comms/sunxi-tools/pkg-plist Tue Jul 25 15:53:12 2017 (r446592) @@ -0,0 +1,7 @@ +bin/bin2fex +bin/fex2bin +bin/sunxi-bootinfo +bin/sunxi-fel +bin/sunxi-fexc +bin/sunxi-nand-part +bin/sunxi-pio