summaryrefslogtreecommitdiff
path: root/net
diff options
context:
space:
mode:
authorSergey Skvortsov <skv@FreeBSD.org>2002-09-10 10:53:03 +0000
committerSergey Skvortsov <skv@FreeBSD.org>2002-09-10 10:53:03 +0000
commit98ca3b144a8424ad00094fe0ae955585c54078a3 (patch)
tree93d4a724b9b18d1b16c5506c012c23ccd43c807c /net
parentReplace the mntent emulation code with my own versions, which are GPL'd, (diff)
Add p5-Net-BGP4 0.01,
Border Gateway Protocol version 4 speaker/listener library.
Notes
Notes: svn path=/head/; revision=66035
Diffstat (limited to 'net')
-rw-r--r--net/Makefile1
-rw-r--r--net/p5-Net-BGP/Makefile23
-rw-r--r--net/p5-Net-BGP/distinfo1
-rw-r--r--net/p5-Net-BGP/pkg-comment1
-rw-r--r--net/p5-Net-BGP/pkg-descr15
-rw-r--r--net/p5-Net-BGP/pkg-plist11
-rw-r--r--net/p5-Net-BGP4/Makefile23
-rw-r--r--net/p5-Net-BGP4/distinfo1
-rw-r--r--net/p5-Net-BGP4/pkg-comment1
-rw-r--r--net/p5-Net-BGP4/pkg-descr15
-rw-r--r--net/p5-Net-BGP4/pkg-plist11
11 files changed, 103 insertions, 0 deletions
diff --git a/net/Makefile b/net/Makefile
index 0ed5e647e803..309b73937434 100644
--- a/net/Makefile
+++ b/net/Makefile
@@ -351,6 +351,7 @@
SUBDIR += p5-Mon
SUBDIR += p5-Net
SUBDIR += p5-Net-AOLIM
+ SUBDIR += p5-Net-BGP4
SUBDIR += p5-Net-CIDR
SUBDIR += p5-Net-DLookup
SUBDIR += p5-Net-DNS
diff --git a/net/p5-Net-BGP/Makefile b/net/p5-Net-BGP/Makefile
new file mode 100644
index 000000000000..16b82d90ec98
--- /dev/null
+++ b/net/p5-Net-BGP/Makefile
@@ -0,0 +1,23 @@
+# New ports collection makefile for: Net-BGP4
+# Date created: 10 September 2002
+# Whom: Sergey Skvortsov <skv@protey.ru>
+#
+# $FreeBSD$
+#
+
+PORTNAME= Net-BGP4
+PORTVERSION= 0.01
+CATEGORIES= net perl5
+MASTER_SITES= ${MASTER_SITE_PERL_CPAN}
+MASTER_SITE_SUBDIR= Net
+PKGNAMEPREFIX= p5-
+
+MAINTAINER= skv@FreeBSD.org
+
+PERL_CONFIGURE= yes
+
+MAN3PREFIX= ${PREFIX}/lib/perl5/${PERL_VERSION}
+MAN3= Net::BGP4.3 Net::BGP4::Notification.3 Net::BGP4::Peer.3 \
+ Net::BGP4::Process.3 Net::BGP4::RIB.3 Net::BGP4::Update.3
+
+.include <bsd.port.mk>
diff --git a/net/p5-Net-BGP/distinfo b/net/p5-Net-BGP/distinfo
new file mode 100644
index 000000000000..c193718aa500
--- /dev/null
+++ b/net/p5-Net-BGP/distinfo
@@ -0,0 +1 @@
+MD5 (Net-BGP4-0.01.tar.gz) = 978b53a46864fce073b80662b6f78c97
diff --git a/net/p5-Net-BGP/pkg-comment b/net/p5-Net-BGP/pkg-comment
new file mode 100644
index 000000000000..634e66e4f15f
--- /dev/null
+++ b/net/p5-Net-BGP/pkg-comment
@@ -0,0 +1 @@
+Border Gateway Protocol version 4 speaker/listener library
diff --git a/net/p5-Net-BGP/pkg-descr b/net/p5-Net-BGP/pkg-descr
new file mode 100644
index 000000000000..ba32d8d16fd2
--- /dev/null
+++ b/net/p5-Net-BGP/pkg-descr
@@ -0,0 +1,15 @@
+This module is an implementation of the BGP4 inter-domain routing
+protocol. It encapsulates all of the functionality needed to establish
+and maintain a BGP4 peering session and exchange routing update
+information with the peer. It aims to provide a simple API to the BGP4
+protocol for the purposes of automation, logging, monitoring, testing,
+and similar tasks using the power and flexibility of perl. The module
+does not implement the functionality of a RIB (Routing Information Base)
+nor does it modify the kernel routing table of the host system.
+However, such operations could be implemented using the API provided by
+the module.
+
+WWW: http://search.cpan.org/search?dist=Net-BGP4
+
+-- Sergey Skvortsov
+skv@FreeBSD.org
diff --git a/net/p5-Net-BGP/pkg-plist b/net/p5-Net-BGP/pkg-plist
new file mode 100644
index 000000000000..45d6fc842297
--- /dev/null
+++ b/net/p5-Net-BGP/pkg-plist
@@ -0,0 +1,11 @@
+lib/perl5/site_perl/%%PERL_VER%%/%%PERL_ARCH%%/auto/Net/BGP4/.packlist
+lib/perl5/site_perl/%%PERL_VER%%/Net/BGP4.pm
+lib/perl5/site_perl/%%PERL_VER%%/Net/BGP4/Notification.pm
+lib/perl5/site_perl/%%PERL_VER%%/Net/BGP4/Peer.pm
+lib/perl5/site_perl/%%PERL_VER%%/Net/BGP4/Process.pm
+lib/perl5/site_perl/%%PERL_VER%%/Net/BGP4/RIB.pm
+lib/perl5/site_perl/%%PERL_VER%%/Net/BGP4/Update.pm
+@dirrm lib/perl5/site_perl/%%PERL_VER%%/Net/BGP4
+@dirrm lib/perl5/site_perl/%%PERL_VER%%/%%PERL_ARCH%%/auto/Net/BGP4
+@unexec rmdir %D/lib/perl5/site_perl/%%PERL_VER%%/Net 2>/dev/null || true
+@unexec rmdir %D/lib/perl5/site_perl/%%PERL_VER%%/%%PERL_ARCH%%/auto/Net 2>/dev/null || true
diff --git a/net/p5-Net-BGP4/Makefile b/net/p5-Net-BGP4/Makefile
new file mode 100644
index 000000000000..16b82d90ec98
--- /dev/null
+++ b/net/p5-Net-BGP4/Makefile
@@ -0,0 +1,23 @@
+# New ports collection makefile for: Net-BGP4
+# Date created: 10 September 2002
+# Whom: Sergey Skvortsov <skv@protey.ru>
+#
+# $FreeBSD$
+#
+
+PORTNAME= Net-BGP4
+PORTVERSION= 0.01
+CATEGORIES= net perl5
+MASTER_SITES= ${MASTER_SITE_PERL_CPAN}
+MASTER_SITE_SUBDIR= Net
+PKGNAMEPREFIX= p5-
+
+MAINTAINER= skv@FreeBSD.org
+
+PERL_CONFIGURE= yes
+
+MAN3PREFIX= ${PREFIX}/lib/perl5/${PERL_VERSION}
+MAN3= Net::BGP4.3 Net::BGP4::Notification.3 Net::BGP4::Peer.3 \
+ Net::BGP4::Process.3 Net::BGP4::RIB.3 Net::BGP4::Update.3
+
+.include <bsd.port.mk>
diff --git a/net/p5-Net-BGP4/distinfo b/net/p5-Net-BGP4/distinfo
new file mode 100644
index 000000000000..c193718aa500
--- /dev/null
+++ b/net/p5-Net-BGP4/distinfo
@@ -0,0 +1 @@
+MD5 (Net-BGP4-0.01.tar.gz) = 978b53a46864fce073b80662b6f78c97
diff --git a/net/p5-Net-BGP4/pkg-comment b/net/p5-Net-BGP4/pkg-comment
new file mode 100644
index 000000000000..634e66e4f15f
--- /dev/null
+++ b/net/p5-Net-BGP4/pkg-comment
@@ -0,0 +1 @@
+Border Gateway Protocol version 4 speaker/listener library
diff --git a/net/p5-Net-BGP4/pkg-descr b/net/p5-Net-BGP4/pkg-descr
new file mode 100644
index 000000000000..ba32d8d16fd2
--- /dev/null
+++ b/net/p5-Net-BGP4/pkg-descr
@@ -0,0 +1,15 @@
+This module is an implementation of the BGP4 inter-domain routing
+protocol. It encapsulates all of the functionality needed to establish
+and maintain a BGP4 peering session and exchange routing update
+information with the peer. It aims to provide a simple API to the BGP4
+protocol for the purposes of automation, logging, monitoring, testing,
+and similar tasks using the power and flexibility of perl. The module
+does not implement the functionality of a RIB (Routing Information Base)
+nor does it modify the kernel routing table of the host system.
+However, such operations could be implemented using the API provided by
+the module.
+
+WWW: http://search.cpan.org/search?dist=Net-BGP4
+
+-- Sergey Skvortsov
+skv@FreeBSD.org
diff --git a/net/p5-Net-BGP4/pkg-plist b/net/p5-Net-BGP4/pkg-plist
new file mode 100644
index 000000000000..45d6fc842297
--- /dev/null
+++ b/net/p5-Net-BGP4/pkg-plist
@@ -0,0 +1,11 @@
+lib/perl5/site_perl/%%PERL_VER%%/%%PERL_ARCH%%/auto/Net/BGP4/.packlist
+lib/perl5/site_perl/%%PERL_VER%%/Net/BGP4.pm
+lib/perl5/site_perl/%%PERL_VER%%/Net/BGP4/Notification.pm
+lib/perl5/site_perl/%%PERL_VER%%/Net/BGP4/Peer.pm
+lib/perl5/site_perl/%%PERL_VER%%/Net/BGP4/Process.pm
+lib/perl5/site_perl/%%PERL_VER%%/Net/BGP4/RIB.pm
+lib/perl5/site_perl/%%PERL_VER%%/Net/BGP4/Update.pm
+@dirrm lib/perl5/site_perl/%%PERL_VER%%/Net/BGP4
+@dirrm lib/perl5/site_perl/%%PERL_VER%%/%%PERL_ARCH%%/auto/Net/BGP4
+@unexec rmdir %D/lib/perl5/site_perl/%%PERL_VER%%/Net 2>/dev/null || true
+@unexec rmdir %D/lib/perl5/site_perl/%%PERL_VER%%/%%PERL_ARCH%%/auto/Net 2>/dev/null || true