summaryrefslogtreecommitdiff
path: root/textproc
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
parentA trivial update to stunnel-4.18 - Windows-related changes only. (diff)
- the patch should be removed (tested via 'make test')
- bump PORTREVISION PR: ports/103653 Submitted by: Warren Block <wblock_AT_wonkity dot com>
Notes
Notes: svn path=/head/; revision=173902
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));