diff options
author | sunpoet <sunpoet@FreeBSD.org> | 2011-10-26 19:08:02 +0800 |
---|---|---|
committer | sunpoet <sunpoet@FreeBSD.org> | 2011-10-26 19:08:02 +0800 |
commit | 8e7b4cdc7267cda5becbcfa12ea2be6b273eec6e (patch) | |
tree | 5f3dbcc32ee6f6ae6e0598524a93880fabf4088c | |
parent | 35764a21de4c5103baf51485f284f3f9d4ca4297 (diff) | |
download | freebsd-ports-gnome-8e7b4cdc7267cda5becbcfa12ea2be6b273eec6e.tar.gz freebsd-ports-gnome-8e7b4cdc7267cda5becbcfa12ea2be6b273eec6e.tar.zst freebsd-ports-gnome-8e7b4cdc7267cda5becbcfa12ea2be6b273eec6e.zip |
- Add p5-Net-Subnet 1.02
This is a simple but fast pure Perl module for determining whether a given IP
address is in a given set of IP subnets. It's iterative, and it doesn't use any
fancy tries, but because it uses simple bitwise operations on strings it's still
very fast.
All documented functions are exported by default.
Subnets have to be given in "address/mask" or "address/length" (CIDR) format.
The Socket and Socket6 modules are used to normalise addresses, which means that
any of the address formats supported by inet_aton and inet_pton can be used with
Net::Subnet.
WWW: http://search.cpan.org/dist/Net-Subnet/
PR: ports/161335
Submitted by: Henk van Oers <hvo.pm@xs4all.nl>
-rw-r--r-- | net/Makefile | 1 | ||||
-rw-r--r-- | net/p5-Net-Subnet/Makefile | 26 | ||||
-rw-r--r-- | net/p5-Net-Subnet/distinfo | 2 | ||||
-rw-r--r-- | net/p5-Net-Subnet/pkg-descr | 13 | ||||
-rw-r--r-- | net/p5-Net-Subnet/pkg-plist | 5 |
5 files changed, 47 insertions, 0 deletions
diff --git a/net/Makefile b/net/Makefile index b96fc76385d3..9587c2d5bef6 100644 --- a/net/Makefile +++ b/net/Makefile @@ -641,6 +641,7 @@ SUBDIR += p5-Net-Server SUBDIR += p5-Net-Server-Coro SUBDIR += p5-Net-Services + SUBDIR += p5-Net-Subnet SUBDIR += p5-Net-Subnets SUBDIR += p5-Net-TCLink SUBDIR += p5-Net-TcpDumpLog diff --git a/net/p5-Net-Subnet/Makefile b/net/p5-Net-Subnet/Makefile new file mode 100644 index 000000000000..27dc2f66efdd --- /dev/null +++ b/net/p5-Net-Subnet/Makefile @@ -0,0 +1,26 @@ +# New ports collection makefile for: p5-Net-Subnet +# Date created: 2011-10-06 +# Whom: Henk van Oers <hvo.pm@xs4all.nl> +# +# $FreeBSD$ +# + +PORTNAME= Net-Subnet +PORTVERSION= 1.02 +CATEGORIES= net perl5 +MASTER_SITES= CPAN +PKGNAMEPREFIX= p5- + +MAINTAINER= perl@FreeBSD.org +COMMENT= Fast IP-in-subnet matcher for IPv4 and IPv6, CIDR or mask + +LICENSE= ART10 + +BUILD_DEPENDS= p5-Socket6>=0.23:${PORTSDIR}/net/p5-Socket6 +RUN_DEPENDS= p5-Socket6>=0.23:${PORTSDIR}/net/p5-Socket6 + +PERL_CONFIGURE= yes + +MAN3= Net::Subnet.3 + +.include <bsd.port.mk> diff --git a/net/p5-Net-Subnet/distinfo b/net/p5-Net-Subnet/distinfo new file mode 100644 index 000000000000..1ea3956e5374 --- /dev/null +++ b/net/p5-Net-Subnet/distinfo @@ -0,0 +1,2 @@ +SHA256 (Net-Subnet-1.02.tar.gz) = 1ba32e2b33160eddfe3c210298a201a2d54d3e9a1d0095d5f173ece795db98f0 +SIZE (Net-Subnet-1.02.tar.gz) = 4103 diff --git a/net/p5-Net-Subnet/pkg-descr b/net/p5-Net-Subnet/pkg-descr new file mode 100644 index 000000000000..47a4a31ccd41 --- /dev/null +++ b/net/p5-Net-Subnet/pkg-descr @@ -0,0 +1,13 @@ +This is a simple but fast pure Perl module for determining whether a given IP +address is in a given set of IP subnets. It's iterative, and it doesn't use any +fancy tries, but because it uses simple bitwise operations on strings it's still +very fast. + +All documented functions are exported by default. + +Subnets have to be given in "address/mask" or "address/length" (CIDR) format. +The Socket and Socket6 modules are used to normalise addresses, which means that +any of the address formats supported by inet_aton and inet_pton can be used with +Net::Subnet. + +WWW: http://search.cpan.org/dist/Net-Subnet/ diff --git a/net/p5-Net-Subnet/pkg-plist b/net/p5-Net-Subnet/pkg-plist new file mode 100644 index 000000000000..8b0799359774 --- /dev/null +++ b/net/p5-Net-Subnet/pkg-plist @@ -0,0 +1,5 @@ +%%SITE_PERL%%/%%PERL_ARCH%%/auto/Net/Subnet/.packlist +%%SITE_PERL%%/Net/Subnet.pm +@dirrmtry %%SITE_PERL%%/Net +@dirrmtry %%SITE_PERL%%/%%PERL_ARCH%%/auto/Net/Subnet +@dirrmtry %%SITE_PERL%%/%%PERL_ARCH%%/auto/Net |