diff options
author | Jun Kuriyama <kuriyama@FreeBSD.org> | 2001-06-13 12:30:57 +0000 |
---|---|---|
committer | Jun Kuriyama <kuriyama@FreeBSD.org> | 2001-06-13 12:30:57 +0000 |
commit | 831fd5de6188e26478522669a12d1449214ac8ce (patch) | |
tree | 4ad933039b91809f29685d18533cfee470b0b9d9 /irc/p5-IRC | |
parent | ce9374be68c6b76f20d96ad968b64184f5a34b25 (diff) | |
download | ports-831fd5de6188e26478522669a12d1449214ac8ce.tar.gz ports-831fd5de6188e26478522669a12d1449214ac8ce.zip |
Notes
Diffstat (limited to 'irc/p5-IRC')
-rw-r--r-- | irc/p5-IRC/Makefile | 1 | ||||
-rw-r--r-- | irc/p5-IRC/files/patch-Connection.pm | 11 |
2 files changed, 12 insertions, 0 deletions
diff --git a/irc/p5-IRC/Makefile b/irc/p5-IRC/Makefile index 645eb55e84ab..ca635d583fcd 100644 --- a/irc/p5-IRC/Makefile +++ b/irc/p5-IRC/Makefile @@ -7,6 +7,7 @@ PORTNAME= Net-IRC PORTVERSION= 0.70 +PORTREVISION= 1 CATEGORIES= irc perl5 MASTER_SITES= ${MASTER_SITE_PERL_CPAN} MASTER_SITE_SUBDIR= Net diff --git a/irc/p5-IRC/files/patch-Connection.pm b/irc/p5-IRC/files/patch-Connection.pm new file mode 100644 index 000000000000..8fcabb849ef4 --- /dev/null +++ b/irc/p5-IRC/files/patch-Connection.pm @@ -0,0 +1,11 @@ +--- Connection.pm.orig Tue May 30 07:12:02 2000 ++++ Connection.pm Wed Jun 13 17:01:06 2001 +@@ -1101,7 +1101,7 @@ + /x) # That ought to do it for now... + { + $line = substr $line, 1 if $line =~ /^:/; +- ($from, $line) = split ":", $line, 2; ++ ($from, $line) = $line =~ m/^(.*):(.*?)$/; + ($from, $type, @stuff) = split /\s+/, $from; + $type = lc $type; + |