summaryrefslogtreecommitdiff
path: root/textproc
diff options
context:
space:
mode:
Diffstat (limited to 'textproc')
-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));