summaryrefslogtreecommitdiff
path: root/net/p5-Net-Frame/Makefile
diff options
context:
space:
mode:
authorhiramatsu <hiramatsu>2012-01-25 09:21:13 +0000
committerhiramatsu <hiramatsu>2012-01-25 09:21:13 +0000
commit442db0031a6878b638d84ed01fc43086d62dd55b (patch)
treeff9a6ea8e6ab4c09ea3ec5862e13da70c5528f9b /net/p5-Net-Frame/Makefile
parenta801b9c4236e2774641ff59a6bb2bc7b50d7c95e (diff)
downloadpkgsrc-442db0031a6878b638d84ed01fc43086d62dd55b.tar.gz
Import Net::Frame into net/p5-Net-Frame. This package is provided in
PR pkg/45720. Net::Frame is a fork of Net::Packet. The goal here was to greatly simplify the use of the frame crafting framework. Net::Packet does many things undercover, and it was difficult to document all the thingies. Also, Net::Packet may suffer from unease of use, because frames were assembled using layers stored in L2, L3, L4 and L7 attributes. Net::Frame removes all this, and is splitted in different modules, for those who only want to use part of the framework, and not whole framework. Finally, anyone can create a layer, and put it on his CPAN space, because of the modularity Net::Frame offers. For an example, see Net::Frame::Layer::ICMPv4 on my CPAN space. Net::Frame does ship with basic layers, to start playing.
Diffstat (limited to 'net/p5-Net-Frame/Makefile')
-rw-r--r--net/p5-Net-Frame/Makefile25
1 files changed, 25 insertions, 0 deletions
diff --git a/net/p5-Net-Frame/Makefile b/net/p5-Net-Frame/Makefile
new file mode 100644
index 00000000000..ec642817c2b
--- /dev/null
+++ b/net/p5-Net-Frame/Makefile
@@ -0,0 +1,25 @@
+# $NetBSD: Makefile,v 1.1.1.1 2012/01/25 09:21:13 hiramatsu Exp $
+
+DISTNAME= Net-Frame-1.07
+PKGNAME= p5-${DISTNAME}
+CATEGORIES= net perl5
+MASTER_SITES= ${MASTER_SITE_PERL_CPAN:=Net/}
+
+MAINTAINER= pkgsrc-users@NetBSD.org
+COMMENT= The base framework for frame crafting
+HOMEPAGE= http://search.cpan.org/dist/Net-Frame/
+LICENSE= artistic
+
+DEPENDS+= p5-Class-Gomor>=1.0:../../devel/p5-Class-Gomor
+DEPENDS+= p5-Socket6-[0-9]*:../../net/p5-Socket6
+DEPENDS+= p5-Net-IPv6Addr-[0-9]*:../../net/p5-Net-IPv6Addr
+DEPENDS+= p5-Bit-Vector-[0-9]*:../../devel/p5-Bit-Vector
+SUPERSEDES+= p5-Net-Packet-[0-9]*
+
+PKG_INSTALLATION_TYPES= overwrite pkgviews
+PKG_DESTDIR_SUPPORT= user-destdir
+
+PERL5_PACKLIST= auto/Net/Frame/.packlist
+
+.include "../../lang/perl5/module.mk"
+.include "../../mk/bsd.pkg.mk"