aboutsummaryrefslogtreecommitdiff
path: root/textproc/p5-Number-Format
diff options
context:
space:
mode:
authorCheng-Lung Sung <clsung@FreeBSD.org>2006-09-26 14:00:08 +0000
committerCheng-Lung Sung <clsung@FreeBSD.org>2006-09-26 14:00:08 +0000
commita0520c1594c80873d1dbc023f1551d518859e606 (patch)
tree2c9a0000f6c9b07422134d183c04ef5408b20188 /textproc/p5-Number-Format
parent593eda3e96583de0419bbe200f8d0c5e58e5fd2c (diff)
downloadports-a0520c1594c80873d1dbc023f1551d518859e606.tar.gz
ports-a0520c1594c80873d1dbc023f1551d518859e606.zip
Notes
Diffstat (limited to 'textproc/p5-Number-Format')
-rw-r--r--textproc/p5-Number-Format/Makefile3
-rw-r--r--textproc/p5-Number-Format/files/patch-Format.pm11
2 files changed, 2 insertions, 12 deletions
diff --git a/textproc/p5-Number-Format/Makefile b/textproc/p5-Number-Format/Makefile
index 92c4ed97b23e..ff047119201e 100644
--- a/textproc/p5-Number-Format/Makefile
+++ b/textproc/p5-Number-Format/Makefile
@@ -7,12 +7,13 @@
PORTNAME= Number-Format
PORTVERSION= 1.52
+PORTREVISION= 1
CATEGORIES= textproc perl5
MASTER_SITES= ${MASTER_SITE_PERL_CPAN}
MASTER_SITE_SUBDIR= Number
PKGNAMEPREFIX= p5-
-MAINTAINER= perl@FreeBSD.org
+MAINTAINER= clsung@FreeBSD.org
COMMENT= Perl extension for formatting numbers
PERL_CONFIGURE= yes
diff --git a/textproc/p5-Number-Format/files/patch-Format.pm b/textproc/p5-Number-Format/files/patch-Format.pm
deleted file mode 100644
index d5032509deb8..000000000000
--- a/textproc/p5-Number-Format/files/patch-Format.pm
+++ /dev/null
@@ -1,11 +0,0 @@
---- Format.pm.orig Fri Sep 22 08:43:28 2006
-+++ Format.pm Fri Sep 22 08:43:35 2006
-@@ -644,7 +644,7 @@
-
- # Combine it all back together and return it.
- $self->{int_curr_symbol} =~ s/\s*$/ /;
-- my $result = ($self->{int_curr_symbol} .
-+ my $result = ($self->{int_curr_symbol} . ' '
- ($precision ?
- join($self->{mon_decimal_point}, $integer, $decimal) :
- $integer));