diff options
author | skv <skv@FreeBSD.org> | 2005-06-17 13:11:02 +0000 |
---|---|---|
committer | skv <skv@FreeBSD.org> | 2005-06-17 13:11:02 +0000 |
commit | 25030cb7929915ddf5c00b0e9686673259965f1f (patch) | |
tree | d2ea5331a6ce3a05bea58862516deea16f3abf88 /net | |
parent | 41aeb78b3cddaf7d70b62c30751150207e559247 (diff) | |
download | FreeBSD-ports-25030cb7929915ddf5c00b0e9686673259965f1f.zip FreeBSD-ports-25030cb7929915ddf5c00b0e9686673259965f1f.tar.gz |
Add p5-Net-SDP 0.02,
Session Description Protocol (RFC 2327) packet
parser/generator.
Diffstat (limited to 'net')
-rw-r--r-- | net/Makefile | 1 | ||||
-rw-r--r-- | net/p5-Net-SDP/Makefile | 26 | ||||
-rw-r--r-- | net/p5-Net-SDP/distinfo | 2 | ||||
-rw-r--r-- | net/p5-Net-SDP/pkg-descr | 9 | ||||
-rw-r--r-- | net/p5-Net-SDP/pkg-plist | 6 |
5 files changed, 44 insertions, 0 deletions
diff --git a/net/Makefile b/net/Makefile index a5eb587..57fed38 100644 --- a/net/Makefile +++ b/net/Makefile @@ -522,6 +522,7 @@ SUBDIR += p5-Net-Rsh SUBDIR += p5-Net-SAP SUBDIR += p5-Net-SCP + SUBDIR += p5-Net-SDP SUBDIR += p5-Net-SFTP SUBDIR += p5-Net-SMPP SUBDIR += p5-Net-SNPP diff --git a/net/p5-Net-SDP/Makefile b/net/p5-Net-SDP/Makefile new file mode 100644 index 0000000..16421d8 --- /dev/null +++ b/net/p5-Net-SDP/Makefile @@ -0,0 +1,26 @@ +# New ports collection makefile for: Net-SDP +# Date created: 17 June 2005 +# Whom: Sergey Skvortsov <skv@protey.ru> +# +# $FreeBSD$ +# + +PORTNAME= Net-SDP +PORTVERSION= 0.02 +CATEGORIES= net perl5 +MASTER_SITES= ${MASTER_SITE_PERL_CPAN} +MASTER_SITE_SUBDIR= Net +PKGNAMEPREFIX= p5- + +MAINTAINER= skv@FreeBSD.org +COMMENT= Session Description Protocol (RFC 2327) packet parser/generator + +BUILD_DEPENDS= ${SITE_PERL}/LWP/Simple.pm:${PORTSDIR}/www/p5-libwww +RUN_DEPENDS= ${BUILD_DEPENDS} + +PERL_MODBUILD= yes + +MAN1= sdp2rat.1 +MAN3= Net::SDP.3 Net::SDP::Media.3 Net::SDP::Time.3 + +.include <bsd.port.mk> diff --git a/net/p5-Net-SDP/distinfo b/net/p5-Net-SDP/distinfo new file mode 100644 index 0000000..394c66b --- /dev/null +++ b/net/p5-Net-SDP/distinfo @@ -0,0 +1,2 @@ +MD5 (Net-SDP-0.02.tar.gz) = 175a629f45c52dce04ef088cd3e0becb +SIZE (Net-SDP-0.02.tar.gz) = 15500 diff --git a/net/p5-Net-SDP/pkg-descr b/net/p5-Net-SDP/pkg-descr new file mode 100644 index 0000000..1fb48d4 --- /dev/null +++ b/net/p5-Net-SDP/pkg-descr @@ -0,0 +1,9 @@ +Net::SDP is an SDP (Session Description Protocol) parser and generator. +Net::SDP is object oriented and a single instance of Net::SDP represents +a single SDP session description. There are methods to easily get, set +and create each of the fields in the session description. + +The classes Net::SDP::Time and Net::SDP::Media are automatically +instantiated for each Time Description (t=) and Media Description (m=). + +WWW: http://search.cpan.org/dist/Net-SDP/ diff --git a/net/p5-Net-SDP/pkg-plist b/net/p5-Net-SDP/pkg-plist new file mode 100644 index 0000000..5429fa6 --- /dev/null +++ b/net/p5-Net-SDP/pkg-plist @@ -0,0 +1,6 @@ +bin/sdp2rat +%%SITE_PERL%%/Net/SDP.pm +%%SITE_PERL%%/Net/SDP/Media.pm +%%SITE_PERL%%/Net/SDP/Time.pm +@dirrm %%SITE_PERL%%/Net/SDP +@unexec rmdir %D/%%SITE_PERL%%/Net 2>/dev/null || true |