mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-04 01:48:54 +00:00
df4defb79e
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>
21 lines
358 B
Makefile
21 lines
358 B
Makefile
# $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>
|