summaryrefslogtreecommitdiffstats
path: root/math
diff options
context:
space:
mode:
authormnag <mnag@FreeBSD.org>2005-10-15 17:35:47 +0000
committermnag <mnag@FreeBSD.org>2005-10-15 17:35:47 +0000
commit52f7cf4b8ee6f0dc577e3b19316d04f471c02fe8 (patch)
tree9c38c59be5bff5b67242082b6961fd02ad486721 /math
parent903e8363ed7954db5d35270061faa1473ca8776d (diff)
downloadFreeBSD-ports-52f7cf4b8ee6f0dc577e3b19316d04f471c02fe8.zip
FreeBSD-ports-52f7cf4b8ee6f0dc577e3b19316d04f471c02fe8.tar.gz
Update to 0.11
PR: 87486 Submitted by: Rod Taylor <ports@rbt.ca> (maintainer)
Diffstat (limited to 'math')
-rw-r--r--math/p5-Geo-Distance/Makefile12
-rw-r--r--math/p5-Geo-Distance/distinfo4
-rw-r--r--math/p5-Geo-Distance/files/patch-Distance.pm51
3 files changed, 11 insertions, 56 deletions
diff --git a/math/p5-Geo-Distance/Makefile b/math/p5-Geo-Distance/Makefile
index e79c250..dda7ea5 100644
--- a/math/p5-Geo-Distance/Makefile
+++ b/math/p5-Geo-Distance/Makefile
@@ -6,8 +6,7 @@
#
PORTNAME= Geo-Distance
-PORTVERSION= 0.06
-PORTREVISION= 1
+PORTVERSION= 0.11
CATEGORIES= math perl5
MASTER_SITES= ${MASTER_SITE_PERL_CPAN}
MASTER_SITE_SUBDIR= Geo
@@ -18,6 +17,13 @@ COMMENT= Calculate Distances and Closest Locations
PERL_CONFIGURE= yes
+.include <bsd.port.pre.mk>
+
+# Module from CPAN written for 5.6 or later
+.if ${PERL_LEVEL} < 500600
+IGNORE= Port requires perl 5.6.x or later. Install lang/perl5.8 then try again
+.endif
+
MAN3= Geo::Distance.3
-.include <bsd.port.mk>
+.include <bsd.port.post.mk>
diff --git a/math/p5-Geo-Distance/distinfo b/math/p5-Geo-Distance/distinfo
index 0d76e4b..430eedf 100644
--- a/math/p5-Geo-Distance/distinfo
+++ b/math/p5-Geo-Distance/distinfo
@@ -1,2 +1,2 @@
-MD5 (Geo-Distance-0.06.tar.gz) = 6313eb1cdabca80d494d213db1aa94c0
-SIZE (Geo-Distance-0.06.tar.gz) = 9234
+MD5 (Geo-Distance-0.11.tar.gz) = d7bd2b67a3d3e233fa79be5c1b3f7352
+SIZE (Geo-Distance-0.11.tar.gz) = 9684
diff --git a/math/p5-Geo-Distance/files/patch-Distance.pm b/math/p5-Geo-Distance/files/patch-Distance.pm
deleted file mode 100644
index e11afe5..0000000
--- a/math/p5-Geo-Distance/files/patch-Distance.pm
+++ /dev/null
@@ -1,51 +0,0 @@
---- ../../../Geo-Distance-0.06/Distance.pm Wed Jun 30 02:12:10 2004
-+++ Distance.pm Sun Jul 11 21:46:44 2004
-@@ -1,21 +1,20 @@
- package Geo::Distance;
-
--use 5.006;
- use strict;
--use warnings;
- use Carp;
- use Math::Trig qw( great_circle_distance deg2rad );
-
- require Exporter;
--our @ISA = qw(Exporter);
--our %EXPORT_TAGS = ( 'all' => [ qw(
-+use vars qw(@ISA %EXPORT_TAGS @EXPORT_OK $VERSION);
-+@ISA = qw(Exporter);
-+%EXPORT_TAGS = ( 'all' => [ qw(
- &distance
- &distance_calc
- &find_closest
- &reg_unit
- &formula
- ) ] );
--our @EXPORT_OK = (
-+@EXPORT_OK = (
- @{ $EXPORT_TAGS{'all'} },
- '&distance',
- '&distance_calc',
-@@ -23,11 +22,11 @@
- '&reg_unit',
- '&formula'
- );
--our $VERSION = '0.06';
-+$VERSION = '0.06';
-
-
- # See Math::Trig for what $rho is.
--our(%rho,$formula);
-+use vars qw(%rho $formula);
- $rho{kilometer} = 6378; # Derived from the Math::Trig POD on the 'great_circle_distance'.
- $rho{meter} = $rho{kilometer}*1000; # 1000 meters in one kilometer.
- $rho{centimeter} = $rho{meter}*100; # 100 centimeters in one meter.
-@@ -41,7 +40,7 @@
- # Number of units in a single degree (lat or lon) at the equator.
- # Derived from doing dirty_distance('kilometer',10,0,11,0) = 111.317099692185
- # Then dividing that by $unit{kilometer} = 6378
--our $deg_ratio = 0.01745329252;
-+use vars qw($deg_ratio); $deg_ratio = 0.01745329252;
-
-
- # New Object Constructor
OpenPOWER on IntegriCloud