Index: head/mail/p5-Net-Server-Mail/Makefile =================================================================== --- head/mail/p5-Net-Server-Mail/Makefile (revision 127210) +++ head/mail/p5-Net-Server-Mail/Makefile (revision 127211) @@ -1,37 +1,37 @@ # New ports collection makefile for: p5-Net-Server-Mail # Date created: 6th February 2004 # Whom: Pav Lucistnik # # $FreeBSD$ # PORTNAME= Net-Server-Mail -PORTVERSION= 0.08 +PORTVERSION= 0.09 CATEGORIES= mail perl5 MASTER_SITES= ftp://ftp.rhapsodyk.net/pub/devel/perl/Net-Server-Mail/ PKGNAMEPREFIX= p5- MAINTAINER= pav@FreeBSD.org COMMENT= Implementation of SMTP, ESMTP and LMTP protocols BUILD_DEPENDS= ${SITE_PERL}/Net/SMTP.pm:${PORTSDIR}/net/p5-Net RUN_DEPENDS= ${BUILD_DEPENDS} PERL_CONFIGURE= yes MAN3= Net::Server::Mail.3 \ Net::Server::Mail::ESMTP.3 \ Net::Server::Mail::ESMTP::Extension.3 \ Net::Server::Mail::LMTP.3 \ Net::Server::Mail::SMTP.3 .include .if ${PERL_LEVEL} < 500600 BUILD_DEPENDS+= ${SITE_PERL}/${PERL_ARCH}/IO/Socket/INET.pm:${PORTSDIR}/devel/p5-IO EXTRA_PATCHES= ${PATCHDIR}/5.005_03.diff post-patch: @${FIND} ${WRKSRC} -name '*.orig' -delete .endif .include Property changes on: head/mail/p5-Net-Server-Mail/Makefile ___________________________________________________________________ Modified: cvs2svn:cvs-rev ## -1 +1 ## -1.3 \ No newline at end of property +1.4 \ No newline at end of property Index: head/mail/p5-Net-Server-Mail/distinfo =================================================================== --- head/mail/p5-Net-Server-Mail/distinfo (revision 127210) +++ head/mail/p5-Net-Server-Mail/distinfo (revision 127211) @@ -1,2 +1,2 @@ -MD5 (Net-Server-Mail-0.08.tar.gz) = 6ebc3d9ee6739443dae8dbd960bfcd6e -SIZE (Net-Server-Mail-0.08.tar.gz) = 13676 +MD5 (Net-Server-Mail-0.09.tar.gz) = 336c8359d6687a6f8445f660288ba3da +SIZE (Net-Server-Mail-0.09.tar.gz) = 13580 Property changes on: head/mail/p5-Net-Server-Mail/distinfo ___________________________________________________________________ Modified: cvs2svn:cvs-rev ## -1 +1 ## -1.1 \ No newline at end of property +1.2 \ No newline at end of property Index: head/mail/p5-Net-Server-Mail/files/5.005_03.diff =================================================================== --- head/mail/p5-Net-Server-Mail/files/5.005_03.diff (revision 127210) +++ head/mail/p5-Net-Server-Mail/files/5.005_03.diff (revision 127211) @@ -1,98 +1,97 @@ diff -ru lib.old/Net/Server/Mail/ESMTP/8BITMIME.pm lib/Net/Server/Mail/ESMTP/8BITMIME.pm --- lib.old/Net/Server/Mail/ESMTP/8BITMIME.pm Tue Jun 25 15:53:21 2002 +++ lib/Net/Server/Mail/ESMTP/8BITMIME.pm Thu Feb 19 15:27:11 2004 @@ -1,6 +1,5 @@ package Net::Server::Mail::ESMTP::8BITMIME; -use 5.006; use strict; -use base qw(Net::Server::Mail::ESMTP::Extension); +BEGIN {require Net::Server::Mail::ESMTP::Extension;@Net::Server::Mail::ESMTP::8BITMIME::ISA = ('Net::Server::Mail::ESMTP::Extension')}; diff -ru lib.old/Net/Server/Mail/ESMTP/Extension.pm lib/Net/Server/Mail/ESMTP/Extension.pm --- lib.old/Net/Server/Mail/ESMTP/Extension.pm Thu Nov 7 18:53:51 2002 +++ lib/Net/Server/Mail/ESMTP/Extension.pm Thu Feb 19 15:27:13 2004 @@ -1,6 +1,5 @@ package Net::Server::Mail::ESMTP::Extension; -use 5.006; use strict; =pod diff -ru lib.old/Net/Server/Mail/ESMTP/PIPELINING.pm lib/Net/Server/Mail/ESMTP/PIPELINING.pm --- lib.old/Net/Server/Mail/ESMTP/PIPELINING.pm Mon Jan 6 12:21:43 2003 +++ lib/Net/Server/Mail/ESMTP/PIPELINING.pm Thu Feb 19 15:27:16 2004 @@ -1,6 +1,5 @@ package Net::Server::Mail::ESMTP::PIPELINING; -use 5.006; use strict; -use base 'Net::Server::Mail::ESMTP::Extension'; +BEGIN {require Net::Server::Mail::ESMTP::Extension;@Net::Server::Mail::ESMTP::PIPELINING::ISA = ('Net::Server::Mail::ESMTP::Extension')}; use constant GROUP_COMMANDS => [qw(RSET MAIL SEND SOML SAML RCPT)]; diff -ru lib.old/Net/Server/Mail/ESMTP.pm lib/Net/Server/Mail/ESMTP.pm --- lib.old/Net/Server/Mail/ESMTP.pm Sun Apr 6 17:33:02 2003 +++ lib/Net/Server/Mail/ESMTP.pm Thu Feb 19 15:32:21 2004 @@ -1,9 +1,8 @@ package Net::Server::Mail::ESMTP; -use 5.006; use strict; use Carp; -use base qw(Net::Server::Mail::SMTP); +BEGIN {require Net::Server::Mail::SMTP;@Net::Server::Mail::ESMTP::ISA = ('Net::Server::Mail::SMTP')}; =pod diff -ru lib.old/Net/Server/Mail/LMTP.pm lib/Net/Server/Mail/LMTP.pm --- lib.old/Net/Server/Mail/LMTP.pm Fri Mar 14 16:25:03 2003 +++ lib/Net/Server/Mail/LMTP.pm Thu Feb 19 15:26:59 2004 @@ -1,6 +1,5 @@ package Net::Server::Mail::LMTP; -use 5.006; use strict; -use base qw(Net::Server::Mail::ESMTP); +BEGIN {require Net::Server::Mail::ESMTP;@Net::Server::Mail::LMTP::ISA = ('Net::Server::Mail::ESMTP')}; diff -ru lib.old/Net/Server/Mail/SMTP.pm lib/Net/Server/Mail/SMTP.pm --- lib.old/Net/Server/Mail/SMTP.pm Sun Apr 6 17:36:40 2003 +++ lib/Net/Server/Mail/SMTP.pm Thu Feb 19 15:32:24 2004 @@ -1,8 +1,7 @@ package Net::Server::Mail::SMTP; -use 5.006; use strict; -use base 'Net::Server::Mail'; +BEGIN {require Net::Server::Mail;@Net::Server::Mail::SMTP::ISA = ('Net::Server::Mail')}; =pod -diff -ru lib.old/Net/Server/Mail.pm lib/Net/Server/Mail.pm ---- lib.old/Net/Server/Mail.pm Sun Apr 6 17:18:17 2003 -+++ lib/Net/Server/Mail.pm Thu Feb 19 15:50:38 2004 +--- lib/Net/Server/Mail.pm.orig Wed Jan 5 19:50:35 2005 ++++ lib/Net/Server/Mail.pm Mon Jan 24 20:22:04 2005 @@ -1,6 +1,5 @@ package Net::Server::Mail; -use 5.006; use strict; use Sys::Hostname; use IO::Select; -@@ -500,7 +499,7 @@ +@@ -502,7 +501,7 @@ else { next unless defined; -- my $rv = $self->{process_operation}($self, $_); -+ my $rv = $self->{process_operation}->($self, $_); - # if $rv is defined, we have to close the connection - return $rv if defined $rv; +- $rv = $self->{process_operation}($self, $_); ++ $rv = $self->{process_operation}->($self, $_); } -@@ -518,7 +517,7 @@ + # if $rv is defined, we have to close the connection + return $rv if defined $rv; +@@ -521,7 +520,7 @@ } else { - return $self->{process_operation}($self, $operation); + return $self->{process_operation}->($self, $operation); } } Property changes on: head/mail/p5-Net-Server-Mail/files/5.005_03.diff ___________________________________________________________________ Modified: cvs2svn:cvs-rev ## -1 +1 ## -1.1 \ No newline at end of property +1.2 \ No newline at end of property