From owner-svn-ports-head@freebsd.org Mon Sep 3 19:07:54 2018 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 48C3EFF2AEA; Mon, 3 Sep 2018 19:07:54 +0000 (UTC) (envelope-from pi@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 04DA97210B; Mon, 3 Sep 2018 19:07:54 +0000 (UTC) (envelope-from pi@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 mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id EFAD843FE; Mon, 3 Sep 2018 19:07:53 +0000 (UTC) (envelope-from pi@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id w83J7roq025667; Mon, 3 Sep 2018 19:07:53 GMT (envelope-from pi@FreeBSD.org) Received: (from pi@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w83J7q7C025662; Mon, 3 Sep 2018 19:07:52 GMT (envelope-from pi@FreeBSD.org) Message-Id: <201809031907.w83J7q7C025662@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: pi set sender to pi@FreeBSD.org using -f From: Kurt Jaeger Date: Mon, 3 Sep 2018 19:07:52 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r478912 - in head/graphics: . p5-Algorithm-Line-Bresenham X-SVN-Group: ports-head X-SVN-Commit-Author: pi X-SVN-Commit-Paths: in head/graphics: . p5-Algorithm-Line-Bresenham X-SVN-Commit-Revision: 478912 X-SVN-Commit-Repository: ports 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.27 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: Mon, 03 Sep 2018 19:07:54 -0000 Author: pi Date: Mon Sep 3 19:07:52 2018 New Revision: 478912 URL: https://svnweb.freebsd.org/changeset/ports/478912 Log: New port: graphics/p5-Algorithm-Line-Bresenham Bresenham is one of the canonical line drawing algorithms for pixellated grids. Given a start and an end-point, Bresenham calculates which points on the grid need to be filled to generate the line between them. WWW: https://metacpan.org/release/Algorithm-Line-Bresenham PR: 230968 Submitted by: Tomohiro Hosaka Added: head/graphics/p5-Algorithm-Line-Bresenham/ head/graphics/p5-Algorithm-Line-Bresenham/Makefile (contents, props changed) head/graphics/p5-Algorithm-Line-Bresenham/distinfo (contents, props changed) head/graphics/p5-Algorithm-Line-Bresenham/pkg-descr (contents, props changed) head/graphics/p5-Algorithm-Line-Bresenham/pkg-plist (contents, props changed) Modified: head/graphics/Makefile Modified: head/graphics/Makefile ============================================================================== --- head/graphics/Makefile Mon Sep 3 19:04:59 2018 (r478911) +++ head/graphics/Makefile Mon Sep 3 19:07:52 2018 (r478912) @@ -691,6 +691,7 @@ SUBDIR += osgearth SUBDIR += oyranos SUBDIR += p5-Acme-Steganography-Image-Png + SUBDIR += p5-Algorithm-Line-Bresenham SUBDIR += p5-Alien-Gimp SUBDIR += p5-Barcode-ZBar SUBDIR += p5-CAD-Drawing Added: head/graphics/p5-Algorithm-Line-Bresenham/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/graphics/p5-Algorithm-Line-Bresenham/Makefile Mon Sep 3 19:07:52 2018 (r478912) @@ -0,0 +1,20 @@ +# $FreeBSD$ + +PORTNAME= Algorithm-Line-Bresenham +PORTVERSION= 0.11 +CATEGORIES= graphics perl5 +MASTER_SITES= CPAN +MASTER_SITE_SUBDIR=CPAN:OSFAMERON +PKGNAMEPREFIX= p5- + +MAINTAINER= bokutin@bokut.in +COMMENT= Simple pixellated line-drawing algorithm + +LICENSE= ART10 GPLv1+ +LICENSE_COMB= dual + +NO_ARCH= yes +USES= perl5 +USE_PERL5= modbuild + +.include Added: head/graphics/p5-Algorithm-Line-Bresenham/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/graphics/p5-Algorithm-Line-Bresenham/distinfo Mon Sep 3 19:07:52 2018 (r478912) @@ -0,0 +1,3 @@ +TIMESTAMP = 1532978101 +SHA256 (Algorithm-Line-Bresenham-0.11.tar.gz) = bf7247458f8d810ed2ca0b61b69896e8af9b31bc4fe69766c2a53c44797b3aee +SIZE (Algorithm-Line-Bresenham-0.11.tar.gz) = 2914 Added: head/graphics/p5-Algorithm-Line-Bresenham/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/graphics/p5-Algorithm-Line-Bresenham/pkg-descr Mon Sep 3 19:07:52 2018 (r478912) @@ -0,0 +1,6 @@ +Bresenham is one of the canonical line drawing algorithms for +pixellated grids. Given a start and an end-point, Bresenham +calculates which points on the grid need to be filled to generate +the line between them. + +WWW: https://metacpan.org/release/Algorithm-Line-Bresenham Added: head/graphics/p5-Algorithm-Line-Bresenham/pkg-plist ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/graphics/p5-Algorithm-Line-Bresenham/pkg-plist Mon Sep 3 19:07:52 2018 (r478912) @@ -0,0 +1,2 @@ +%%SITE_PERL%%/Algorithm/Line/Bresenham.pm +%%PERL5_MAN3%%/Algorithm::Line::Bresenham.3.gz