diff options
author | Martin Wilke <miwi@FreeBSD.org> | 2009-01-11 22:03:26 +0800 |
---|---|---|
committer | Martin Wilke <miwi@FreeBSD.org> | 2009-01-11 22:03:26 +0800 |
commit | 11d42b86832c6a4183baf4a6fb5abf6143c9b7f6 (patch) | |
tree | dc6fbdb5e85b8f21c75a1b9ebfe7eac4b4f81636 /graphics | |
parent | dd5203320928469ade755e49525f34764cc76fbb (diff) | |
download | freebsd-ports-gnome-11d42b86832c6a4183baf4a6fb5abf6143c9b7f6.tar.gz freebsd-ports-gnome-11d42b86832c6a4183baf4a6fb5abf6143c9b7f6.tar.zst freebsd-ports-gnome-11d42b86832c6a4183baf4a6fb5abf6143c9b7f6.zip |
Geo::Point tries to abstract coordinate systems. It does not
try to solve all the problems itself, but will call-out for
helper modules when computation has to be done.
The module is heavily resting on Math::Polygon.
WWW: http://search.cpan.org/dist/Geo-Point/
PR: ports/130360
Submitted by: Wen Heping <wenheping at gmail.com>
Diffstat (limited to 'graphics')
-rw-r--r-- | graphics/Makefile | 1 | ||||
-rw-r--r-- | graphics/p5-Geo-Point/Makefile | 28 | ||||
-rw-r--r-- | graphics/p5-Geo-Point/distinfo | 3 | ||||
-rw-r--r-- | graphics/p5-Geo-Point/pkg-descr | 7 | ||||
-rw-r--r-- | graphics/p5-Geo-Point/pkg-plist | 18 |
5 files changed, 57 insertions, 0 deletions
diff --git a/graphics/Makefile b/graphics/Makefile index cf8b8233b502..9135cf8bc751 100644 --- a/graphics/Makefile +++ b/graphics/Makefile @@ -524,6 +524,7 @@ SUBDIR += p5-GD-SVG SUBDIR += p5-GD-TextUtil SUBDIR += p5-GD-Thumbnail + SUBDIR += p5-Geo-Point SUBDIR += p5-Geo-Proj4 SUBDIR += p5-Geometry-Primitive SUBDIR += p5-Graph-Easy diff --git a/graphics/p5-Geo-Point/Makefile b/graphics/p5-Geo-Point/Makefile new file mode 100644 index 000000000000..b1419f1feea1 --- /dev/null +++ b/graphics/p5-Geo-Point/Makefile @@ -0,0 +1,28 @@ +# New ports collection makefile for: p5-Geo-Point +# Date created: 07 January 2009 +# Whom: Wen Heping <wenheping@gmail.com> +# +# $FreeBSD$ +# + +PORTNAME= Geo-Point +PORTVERSION= 0.09 +CATEGORIES= graphics devel perl5 +MASTER_SITES= CPAN +PKGNAMEPREFIX= p5- + +MAINTAINER= wenheping@gmail.com +COMMENT= Perl Module Tries To Abstract Coordinate Systems + +RUN_DEPENDS= ${SITE_PERL}/Test/Simple.pm:${PORTSDIR}/devel/p5-Test-Simple \ + p5-Geo-Distance>=0.06:${PORTSDIR}/math/p5-Geo-Distance \ + p5-Geo-Proj4>=1.00:${PORTSDIR}/graphics/p5-Geo-Proj4 \ + p5-Math-Complex>=1.54:${PORTSDIR}/math/p5-Math-Complex \ + p5-Math-Polygon>=1.00:${PORTSDIR}/math/p5-Math-Polygon + +MAN3= Geo::Point.3 Geo::Shape.3 Geo::Surface.3 \ + Geo::Line.3 Geo::Proj.3 Geo::Space.3 + +PERL_CONFIGURE= yes + +.include <bsd.port.mk> diff --git a/graphics/p5-Geo-Point/distinfo b/graphics/p5-Geo-Point/distinfo new file mode 100644 index 000000000000..c1355c0ceaed --- /dev/null +++ b/graphics/p5-Geo-Point/distinfo @@ -0,0 +1,3 @@ +MD5 (Geo-Point-0.09.tar.gz) = d376f90b49ca9ccd9656d7e6a51fda99 +SHA256 (Geo-Point-0.09.tar.gz) = f4b7a7afe0e55ac26ea88b7a942328ba16bfed3fb1cbc112e143695a89269f7d +SIZE (Geo-Point-0.09.tar.gz) = 22712 diff --git a/graphics/p5-Geo-Point/pkg-descr b/graphics/p5-Geo-Point/pkg-descr new file mode 100644 index 000000000000..4e057f737b87 --- /dev/null +++ b/graphics/p5-Geo-Point/pkg-descr @@ -0,0 +1,7 @@ +Geo::Point tries to abstract coordinate systems. It does not +try to solve all the problems itself, but will call-out for +helper modules when computation has to be done. + +The module is heavily resting on Math::Polygon. + +WWW: http://search.cpan.org/dist/Geo-Point/ diff --git a/graphics/p5-Geo-Point/pkg-plist b/graphics/p5-Geo-Point/pkg-plist new file mode 100644 index 000000000000..a35d67c3eea5 --- /dev/null +++ b/graphics/p5-Geo-Point/pkg-plist @@ -0,0 +1,18 @@ +%%SITE_PERL%%/mach/auto/Geo/Point/.packlist +%%SITE_PERL%%/Geo/Surface.pod +%%SITE_PERL%%/Geo/Point.pod +%%SITE_PERL%%/Geo/Point.pm +%%SITE_PERL%%/Geo/Proj.pm +%%SITE_PERL%%/Geo/Shape.pm +%%SITE_PERL%%/Geo/Line.pod +%%SITE_PERL%%/Geo/Surface.pm +%%SITE_PERL%%/Geo/Line.pm +%%SITE_PERL%%/Geo/Space.pm +%%SITE_PERL%%/Geo/Space.pod +%%SITE_PERL%%/Geo/Proj.pod +%%SITE_PERL%%/Geo/Shape.pod +@dirrmtry %%SITE_PERL%%/mach/auto/Geo/Point +@dirrmtry %%SITE_PERL%%/mach/auto/Geo +@dirrmtry %%SITE_PERL%%/mach/auto +@dirrmtry %%SITE_PERL%%/mach +@dirrmtry %%SITE_PERL%%/Geo |