diff options
author | novel <novel@FreeBSD.org> | 2006-07-13 18:19:15 +0800 |
---|---|---|
committer | novel <novel@FreeBSD.org> | 2006-07-13 18:19:15 +0800 |
commit | 0139204558932bf13764d3a0e4937c6114b17067 (patch) | |
tree | 9090e9b5f6bd0412475562338d4c79e760c56557 /net | |
parent | 568539044d2ec8b96f0babb0737526ab70083213 (diff) | |
download | freebsd-ports-gnome-0139204558932bf13764d3a0e4937c6114b17067.tar.gz freebsd-ports-gnome-0139204558932bf13764d3a0e4937c6114b17067.tar.zst freebsd-ports-gnome-0139204558932bf13764d3a0e4937c6114b17067.zip |
This module is a DHCP set of classes designed to handle basic DHCP
handling. It can be used to develop either client, server or relays.
It is composed of 100% pure Perl.
WWW: http://search.cpan.org/dist/Net-DHCP/
PR: ports/100188
Submitted by: Jin-Shan Tseng <tjs at cdpa.nsysu.edu.tw>
Diffstat (limited to 'net')
-rw-r--r-- | net/Makefile | 1 | ||||
-rw-r--r-- | net/p5-Net-DHCP/Makefile | 28 | ||||
-rw-r--r-- | net/p5-Net-DHCP/distinfo | 3 | ||||
-rw-r--r-- | net/p5-Net-DHCP/pkg-descr | 5 | ||||
-rw-r--r-- | net/p5-Net-DHCP/pkg-plist | 7 |
5 files changed, 44 insertions, 0 deletions
diff --git a/net/Makefile b/net/Makefile index 8fe11dbf24c3..8bb75eb14f97 100644 --- a/net/Makefile +++ b/net/Makefile @@ -415,6 +415,7 @@ SUBDIR += p5-Net-BGP SUBDIR += p5-Net-Blogger SUBDIR += p5-Net-CIDR-Lite + SUBDIR += p5-Net-DHCP SUBDIR += p5-Net-DHCPClient SUBDIR += p5-Net-DLookup SUBDIR += p5-Net-Daemon diff --git a/net/p5-Net-DHCP/Makefile b/net/p5-Net-DHCP/Makefile new file mode 100644 index 000000000000..072a4d185775 --- /dev/null +++ b/net/p5-Net-DHCP/Makefile @@ -0,0 +1,28 @@ +# New ports collection makefile for: p5-Net-DHCP +# Date created: 2006-07-13 +# Whom: Jin-Shan Tseng <tjs@cdpa.nsysu.edu.tw> +# +# $FreeBSD$ +# + +PORTNAME= Net-DHCP +PORTVERSION= 0.66 +CATEGORIES= net perl5 +MASTER_SITES= ${MASTER_SITE_PERL_CPAN} +MASTER_SITE_SUBDIR= Net +PKGNAMEPREFIX= p5- + +MAINTAINER= tjs@cdpa.nsysu.edu.tw +COMMENT= A DHCP set of classes designed to handle basic DHCP handling + +PERL_CONFIGURE= yes + +MAN3= Net::DHCP::Packet.3 Net::DHCP::Constants.3 + +.include <bsd.port.pre.mk> + +.if ${PERL_LEVEL} < 500800 +IGNORE= requires perl 5.8.0 or later. Install lang/perl5.8 then try again +.endif + +.include <bsd.port.post.mk> diff --git a/net/p5-Net-DHCP/distinfo b/net/p5-Net-DHCP/distinfo new file mode 100644 index 000000000000..272247ad2891 --- /dev/null +++ b/net/p5-Net-DHCP/distinfo @@ -0,0 +1,3 @@ +MD5 (Net-DHCP-0.66.tar.gz) = 856b4c44714fd75a31f87929a0926752 +SHA256 (Net-DHCP-0.66.tar.gz) = 3431503497b575170ecda942e432093e2aa0cc934154cc403599b313a0d10dfa +SIZE (Net-DHCP-0.66.tar.gz) = 21505 diff --git a/net/p5-Net-DHCP/pkg-descr b/net/p5-Net-DHCP/pkg-descr new file mode 100644 index 000000000000..0ec455cf99f8 --- /dev/null +++ b/net/p5-Net-DHCP/pkg-descr @@ -0,0 +1,5 @@ +This module is a DHCP set of classes designed to handle basic DHCP +handling. It can be used to develop either client, server or relays. +It is composed of 100% pure Perl. + +WWW: http://search.cpan.org/dist/Net-DHCP/ diff --git a/net/p5-Net-DHCP/pkg-plist b/net/p5-Net-DHCP/pkg-plist new file mode 100644 index 000000000000..16ecba1f07d8 --- /dev/null +++ b/net/p5-Net-DHCP/pkg-plist @@ -0,0 +1,7 @@ +%%SITE_PERL%%/Net/DHCP/Packet.pm +%%SITE_PERL%%/Net/DHCP/Constants.pm +%%SITE_PERL%%/%%PERL_ARCH%%/auto/Net/DHCP/.packlist +@dirrmtry %%SITE_PERL%%/%%PERL_ARCH%%/auto/Net/DHCP +@dirrmtry %%SITE_PERL%%/%%PERL_ARCH%%/auto/Net +@dirrmtry %%SITE_PERL%%/Net/DHCP +@dirrmtry %%SITE_PERL%%/Net |