Update to 2.01.

This commit is contained in:
Anton Berezin 2002-07-01 04:51:07 +00:00
parent becfaecec6
commit 959e40478b
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=62245
5 changed files with 24 additions and 13 deletions

View File

@ -6,7 +6,7 @@
#
PORTNAME= Log-Dispatch
PORTVERSION= 2.00
PORTVERSION= 2.01
CATEGORIES= devel perl5
MASTER_SITES= ${MASTER_SITE_PERL_CPAN}
MASTER_SITE_SUBDIR= Log
@ -14,6 +14,7 @@ PKGNAMEPREFIX= p5-
MAINTAINER= tobez@FreeBSD.org
BUILD_DEPENDS+= ${LOCALBASE}/lib/perl5/site_perl/${PERL_VER}/Params/Validate.pm:${PORTSDIR}/devel/p5-Params-Validate
RUN_DEPENDS= ${BUILD_DEPENDS}
USE_SUBMAKE= yes
@ -25,6 +26,7 @@ MAN3= Log::Dispatch.3 \
Log::Dispatch::Email.3 \
Log::Dispatch::Email::MIMELite.3 \
Log::Dispatch::Email::MailSend.3 \
Log::Dispatch::Email::MailSender.3 \
Log::Dispatch::Email::MailSendmail.3 \
Log::Dispatch::File.3 \
Log::Dispatch::Handle.3 \

View File

@ -1 +1 @@
MD5 (Log-Dispatch-2.00.tar.gz) = 8bfd837dc8757ac4be60cdcb12f90665
MD5 (Log-Dispatch-2.01.tar.gz) = 5dab9065b2b99597734366559ec61130

View File

@ -1,15 +1,17 @@
--- Dispatch/Syslog.pm.orig Thu May 17 16:23:51 2001
+++ Dispatch/Syslog.pm Thu May 17 16:24:15 2001
@@ -45,7 +45,7 @@
$self->{ident} = $params{ident} || $0;
$self->{logopt} = $params{logopt} || '';
$self->{facility} = $params{facility} || 'user';
- $self->{socket} = $params{socket} || 'unix';
+ $self->{socket} = $params{socket} || undef;
$FreeBSD$
--- Dispatch/Syslog.pm.orig Sat Jun 22 01:10:31 2002
+++ Dispatch/Syslog.pm Mon Jul 1 06:23:54 2002
@@ -46,7 +46,7 @@
facility => { type => SCALAR,
default => 'user' },
socket => { type => SCALAR,
- default => 'unix' },
+ default => undef },
} );
$self->{priorities} = [ 'DEBUG',
'INFO',
@@ -56,7 +56,7 @@
$self->{ident} = $p{ident};
@@ -63,7 +63,7 @@
'ALERT',
'EMERG' ];

View File

@ -5,6 +5,7 @@ lib/perl5/site_perl/%%PERL_VER%%/Log/Dispatch/Base.pm
lib/perl5/site_perl/%%PERL_VER%%/Log/Dispatch/Email.pm
lib/perl5/site_perl/%%PERL_VER%%/Log/Dispatch/Email/MIMELite.pm
lib/perl5/site_perl/%%PERL_VER%%/Log/Dispatch/Email/MailSend.pm
lib/perl5/site_perl/%%PERL_VER%%/Log/Dispatch/Email/MailSender.pm
lib/perl5/site_perl/%%PERL_VER%%/Log/Dispatch/Email/MailSendmail.pm
lib/perl5/site_perl/%%PERL_VER%%/Log/Dispatch/File.pm
lib/perl5/site_perl/%%PERL_VER%%/Log/Dispatch/Handle.pm

View File

@ -1,4 +1,5 @@
#! /usr/bin/perl -w
# $FreeBSD$
use strict;
unless (defined $ENV{WRKDIRPREFIX} and
@ -39,6 +40,11 @@ my @modules = (
check => 'Mail::Sendmail',
port => 'mail/p5-Mail-Sendmail',
},
{
module => 'Mail::Sender',
check => 'Mail::Sender',
port => 'mail/p5-Mail-Sender',
},
{
module => 'Syslog',
check => 'Sys::Syslog',