diff options
Diffstat (limited to 'devel')
-rw-r--r-- | devel/p5-Log-Dispatch/Makefile | 2 | ||||
-rw-r--r-- | devel/p5-Log-Dispatch/distinfo | 2 | ||||
-rw-r--r-- | devel/p5-Log-Dispatch/files/patch-broken-perl-syslog | 4 | ||||
-rw-r--r-- | devel/p5-Log-Dispatch/files/patch-simpler-Makefile.PL | 79 |
4 files changed, 4 insertions, 83 deletions
diff --git a/devel/p5-Log-Dispatch/Makefile b/devel/p5-Log-Dispatch/Makefile index 3bcdf97e618..4c4e94326ad 100644 --- a/devel/p5-Log-Dispatch/Makefile +++ b/devel/p5-Log-Dispatch/Makefile @@ -6,7 +6,7 @@ # PORTNAME= Log-Dispatch -PORTVERSION= 2.03 +PORTVERSION= 2.07 CATEGORIES= devel perl5 MASTER_SITES= ${MASTER_SITE_PERL_CPAN} MASTER_SITE_SUBDIR= Log diff --git a/devel/p5-Log-Dispatch/distinfo b/devel/p5-Log-Dispatch/distinfo index 14ba4d3cfbf..8932da4dbb2 100644 --- a/devel/p5-Log-Dispatch/distinfo +++ b/devel/p5-Log-Dispatch/distinfo @@ -1 +1 @@ -MD5 (Log-Dispatch-2.03.tar.gz) = 1b47948321099e81168c370c28e62236 +MD5 (Log-Dispatch-2.07.tar.gz) = d4c33ca2f36b5ec34e671d65aa0366d3 diff --git a/devel/p5-Log-Dispatch/files/patch-broken-perl-syslog b/devel/p5-Log-Dispatch/files/patch-broken-perl-syslog index 76d91d9fd0c..f325bc97025 100644 --- a/devel/p5-Log-Dispatch/files/patch-broken-perl-syslog +++ b/devel/p5-Log-Dispatch/files/patch-broken-perl-syslog @@ -1,7 +1,7 @@ $FreeBSD$ ---- Dispatch/Syslog.pm.orig Sat Jun 22 01:10:31 2002 -+++ Dispatch/Syslog.pm Mon Jul 1 06:23:54 2002 +--- lib/Log/Dispatch/Syslog.pm.orig Sat Jun 22 01:10:31 2002 ++++ lib/Log/Dispatch/Syslog.pm Mon Jul 1 06:23:54 2002 @@ -46,7 +46,7 @@ facility => { type => SCALAR, default => 'user' }, diff --git a/devel/p5-Log-Dispatch/files/patch-simpler-Makefile.PL b/devel/p5-Log-Dispatch/files/patch-simpler-Makefile.PL deleted file mode 100644 index 9343b20fc1e..00000000000 --- a/devel/p5-Log-Dispatch/files/patch-simpler-Makefile.PL +++ /dev/null @@ -1,79 +0,0 @@ ---- Makefile.PL.orig Wed Mar 5 21:03:36 2003 -+++ Makefile.PL Wed Mar 5 21:03:45 2003 -@@ -3,76 +3,6 @@ use ExtUtils::MakeMaker qw( prompt Write - # Saves some headaches for people later. - use 5.005; - --{ -- unless (-d './Install') -- { -- mkdir './Install', 0755 -- or die "can't make dir ./Install: $!"; -- } -- -- my %config; -- $config{email_address} = prompt( q[ --To do a full test of the Log::Dispatch::* modules, we need --to attempt to send an email. If you want these tests to --be done please supply an address. --Address?] ); -- -- $config{syslog} = prompt( q[ --Do you want to test Log::Dispatch::Syslog by sending a message as --daemon.notice? --Yes/No?], 'No' ); -- -- delete $config{syslog} if $config{syslog} !~ /^y(?:es)?/i; -- -- if ($config{syslog}) -- { -- my $default; -- foreach ( qw( /var/adm/messages -- /var/adm/syslog -- /var/log/messages -- /var/log/syslog -- /var/log/syslog -- /etc/log/syslog ) ) -- { -- if (-e) -- { -- $default = $_; -- last; -- } -- } -- -- $config{syslog_file} = prompt('What file would a message sent as daemon.notice end up in?', $default); -- -- unless (-r $config{syslog_file}) -- { -- warn "$config{syslog_file} is not readable. Syslog tests will be skipped\n"; -- delete $config{syslog}; -- delete $config{syslog_file}; -- } -- } -- -- open CFG, ">./Install/TestConfig.pm" -- or die "can't write to ./Install/TestConfig.pm: $!"; -- -- print CFG <<"EOF"; --# --# This file was automatically generated by Makefile.PL. Do not --# edit, instead do a "make realclean" in the toplevel directory and --# rerun "perl makefile.PL". --# -- --package Install::TestConfig; --EOF -- -- print CFG "\%config = \n(\n"; -- foreach (keys %config) -- { -- print CFG "\t$_ => '$config{$_}',\n"; -- } -- print CFG ');'; -- close CFG; --} -- - WriteMakefile( - 'NAME' => 'Log::Dispatch', - 'VERSION_FROM' => 'Dispatch.pm', |