diff options
author | Anton Berezin <tobez@FreeBSD.org> | 2002-07-02 12:08:46 +0000 |
---|---|---|
committer | Anton Berezin <tobez@FreeBSD.org> | 2002-07-02 12:08:46 +0000 |
commit | 82f5ccd0240c3dfb43acf73a2646f0b284f8b8d3 (patch) | |
tree | 6fb3a77b91a4bd015001576869faad7e345f74e3 /dns | |
parent | 97a0a90480f5f885391167662e109329609ba8dc (diff) | |
download | ports-82f5ccd0240c3dfb43acf73a2646f0b284f8b8d3.tar.gz ports-82f5ccd0240c3dfb43acf73a2646f0b284f8b8d3.zip |
Notes
Diffstat (limited to 'dns')
-rw-r--r-- | dns/p5-Net-DNS-ZoneFile/Makefile | 2 | ||||
-rw-r--r-- | dns/p5-Net-DNS-ZoneFile/distinfo | 2 | ||||
-rw-r--r-- | dns/p5-Net-DNS-ZoneFile/files/patch-ZoneFile.pm | 39 |
3 files changed, 2 insertions, 41 deletions
diff --git a/dns/p5-Net-DNS-ZoneFile/Makefile b/dns/p5-Net-DNS-ZoneFile/Makefile index 33f1c1859ba4..313e594a83a8 100644 --- a/dns/p5-Net-DNS-ZoneFile/Makefile +++ b/dns/p5-Net-DNS-ZoneFile/Makefile @@ -6,7 +6,7 @@ # PORTNAME= Net-DNS-ZoneFile -PORTVERSION= 1.00 +PORTVERSION= 1.02 CATEGORIES= net perl5 MASTER_SITES= ${MASTER_SITE_PERL_CPAN} MASTER_SITE_SUBDIR= Net diff --git a/dns/p5-Net-DNS-ZoneFile/distinfo b/dns/p5-Net-DNS-ZoneFile/distinfo index 2721ab2a3a59..d0878645997d 100644 --- a/dns/p5-Net-DNS-ZoneFile/distinfo +++ b/dns/p5-Net-DNS-ZoneFile/distinfo @@ -1 +1 @@ -MD5 (Net-DNS-ZoneFile-1.00.tar.gz) = 3489dee610f2a8d2dbbfc94fab0280e9 +MD5 (Net-DNS-ZoneFile-1.02.tar.gz) = 57fbbc8b467e02974d5a9a44241c22a8 diff --git a/dns/p5-Net-DNS-ZoneFile/files/patch-ZoneFile.pm b/dns/p5-Net-DNS-ZoneFile/files/patch-ZoneFile.pm deleted file mode 100644 index 9a5d10a65c52..000000000000 --- a/dns/p5-Net-DNS-ZoneFile/files/patch-ZoneFile.pm +++ /dev/null @@ -1,39 +0,0 @@ -$FreeBSD$ - ---- ZoneFile.pm.orig Tue Jun 11 20:34:27 2002 -+++ ZoneFile.pm Tue Jun 11 20:35:23 2002 -@@ -129,23 +129,23 @@ - elsif ($text =~ # SOA - s/ - \A(|\*|\s*@|\.|([-\w\d]+(\.[-\w\d]+)*\.?)) -- \s+ ((IN|HESIOD|CHAOS) \s+)? -+ \s+ (?:([\d]+)\s+)? ((IN|HESIOD|CHAOS) \s+)? - (SOA) \s+ ([-\w\d]+(\.[-\w\d]+)*\.) - \s+ ([-\w\d]+(\.[-\w\d]+)*\.) \s* \( - \s* (\d+) \s+ (\d+) \s+ (\d+) \s+ (\d+) \s+ (\d+) \s+ \) \s*$ - //mxi) - { - my $name = $1; -- my $class = $5 || 'IN'; -- my $type = $6; -- my $host = $7; -- my $admin = $9; -- my $d1 = $11; -- my $d2 = $12; -- my $d3 = $13; -- my $d4 = $14; -- my $d5 = $15; -- my $ttl = $d5; -+ my $class = $6 || 'IN'; -+ my $type = $7; -+ my $host = $8; -+ my $admin = $10; -+ my $d1 = $12; -+ my $d2 = $13; -+ my $d3 = $14; -+ my $d4 = $15; -+ my $d5 = $16; -+ my $ttl = $4 || $d5; - - $SoaTTL = $ttl; - |