66cd81a610
"NetPacket" provides a base class for a cluster of modules related to decoding and encoding of network protocols. Each "NetPacket" descendent module knows how to encode and decode packets for the network protocol it implements. Consult the documentation for the module in question for protocol-specific implementation.
27 lines
566 B
Makefile
27 lines
566 B
Makefile
# $OpenBSD: Makefile,v 1.1.1.1 2005/05/24 06:16:53 msf Exp $
|
|
|
|
COMMENT= "Perl module for ecoding/decoding network traffic"
|
|
|
|
DISTNAME= NetPacket-0.04
|
|
PKGNAME= p5-${DISTNAME}
|
|
CATEGORIES= net perl5
|
|
|
|
MAINTAINER= Mathieu Sauve-Frankel <msf@openbsd.org>
|
|
|
|
# Artitistic License
|
|
PERMIT_PACKAGE_CDROM= Yes
|
|
PERMIT_PACKAGE_FTP= Yes
|
|
PERMIT_DISTFILES_CDROM= Yes
|
|
PERMIT_DISTFILES_FTP= Yes
|
|
|
|
MASTER_SITES= ${MASTER_SITE_PERL_CPAN:=NetPacket/}
|
|
|
|
BUILD_DEPENDS= ::net/p5-Net-Pcap
|
|
|
|
CONFIGURE_STYLE= perl
|
|
|
|
post-install:
|
|
@find ${WRKINST} -name '*.orig' | xargs rm
|
|
|
|
.include <bsd.port.mk>
|