Date: Mon, 3 Sep 2018 19:07:52 +0000 (UTC) From: Kurt Jaeger <pi@FreeBSD.org> 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 Message-ID: <201809031907.w83J7q7C025662@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
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 <bokutin@bokut.in> 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 <bsd.port.mk> 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
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201809031907.w83J7q7C025662>