mirror of
https://git.freebsd.org/ports.git
synced 2025-07-18 01:39:16 -04:00
A configurable base class for writing internet servers in Perl
PR: ports/26852 Submitted by: Jesse McConnell <jesse_mcconnell@hotmail.com>
This commit is contained in:
parent
0fc1ec2851
commit
a7273e80b0
Notes:
svn2git
2021-03-31 03:12:20 +00:00
svn path=/head/; revision=42522
6 changed files with 52 additions and 0 deletions
|
@ -240,6 +240,7 @@
|
||||||
SUBDIR += p5-Net-RawIP
|
SUBDIR += p5-Net-RawIP
|
||||||
SUBDIR += p5-Net-SNMP
|
SUBDIR += p5-Net-SNMP
|
||||||
SUBDIR += p5-Net-SSH
|
SUBDIR += p5-Net-SSH
|
||||||
|
SUBDIR += p5-Net-Server
|
||||||
SUBDIR += p5-Net-Telnet
|
SUBDIR += p5-Net-Telnet
|
||||||
SUBDIR += p5-Net-Traceroute
|
SUBDIR += p5-Net-Traceroute
|
||||||
SUBDIR += p5-Net-Wake
|
SUBDIR += p5-Net-Wake
|
||||||
|
|
27
net/p5-Net-Server/Makefile
Normal file
27
net/p5-Net-Server/Makefile
Normal file
|
@ -0,0 +1,27 @@
|
||||||
|
# New ports collection makefile for: p5-Net-Server
|
||||||
|
# Date created: 24 Apr 2001
|
||||||
|
# Whom: Jesse McConnell <jesse_mcconnell@hotmail.com>
|
||||||
|
#
|
||||||
|
# $FreeBSD$
|
||||||
|
#
|
||||||
|
|
||||||
|
PORTNAME= Net-Server
|
||||||
|
PORTVERSION= 0.63
|
||||||
|
CATEGORIES= net perl5
|
||||||
|
MASTER_SITES= ${MASTER_SITE_PERL_CPAN}
|
||||||
|
MASTER_SITE_SUBDIR= Net
|
||||||
|
PKGNAMEPREFIX= p5-
|
||||||
|
|
||||||
|
MAINTAINER= jesse_mcconnell@hotmail.com
|
||||||
|
|
||||||
|
PERL_CONFIGURE= yes
|
||||||
|
|
||||||
|
MANPREFIX= ${PREFIX}/lib/perl5/${PERL_VERSION}
|
||||||
|
MAN3= Net::Server.3 \
|
||||||
|
Net::Server::Fork.3 \
|
||||||
|
Net::Server::INET.3 \
|
||||||
|
Net::Server::MultiType.3 \
|
||||||
|
Net::Server::PreFork.3 \
|
||||||
|
Net::Server::Single.3
|
||||||
|
|
||||||
|
.include <bsd.port.mk>
|
1
net/p5-Net-Server/distinfo
Normal file
1
net/p5-Net-Server/distinfo
Normal file
|
@ -0,0 +1 @@
|
||||||
|
MD5 (Net-Server-0.63.tar.gz) = e6a3750930ab5b05dd0d115af6891832
|
1
net/p5-Net-Server/pkg-comment
Normal file
1
net/p5-Net-Server/pkg-comment
Normal file
|
@ -0,0 +1 @@
|
||||||
|
A configurable base class for writing internet servers in Perl
|
11
net/p5-Net-Server/pkg-descr
Normal file
11
net/p5-Net-Server/pkg-descr
Normal file
|
@ -0,0 +1,11 @@
|
||||||
|
Net::Server is an extensible, generic Perl server engine. Net::Server combines
|
||||||
|
the good properties from Net::Daemon (0.34), NetServer::Generic (1.03), and
|
||||||
|
Net::FTPServer (1.0), and also from various concepts in the Apache Webserver.
|
||||||
|
Net::Server attempts to be a generic server as in Net::Daemon and
|
||||||
|
NetServer::Generic. It includes with it the ability to run as an inetd process
|
||||||
|
(Net::Server::INET), a single connection server (Net::Server or
|
||||||
|
Net::Server::Single), a forking server (Net::Server::Fork), or as a preforking
|
||||||
|
server (Net::Server::PreFork). In all but the inetd type, the server provides
|
||||||
|
the ability to connect to one or to multiple server ports.
|
||||||
|
|
||||||
|
WWW: http://www.seamons.com/net_server.html
|
11
net/p5-Net-Server/pkg-plist
Normal file
11
net/p5-Net-Server/pkg-plist
Normal file
|
@ -0,0 +1,11 @@
|
||||||
|
lib/perl5/site_perl/%%PERL_VER%%/Net/Server.pm
|
||||||
|
lib/perl5/site_perl/%%PERL_VER%%/Net/Server/Fork.pm
|
||||||
|
lib/perl5/site_perl/%%PERL_VER%%/Net/Server/INET.pm
|
||||||
|
lib/perl5/site_perl/%%PERL_VER%%/Net/Server/MultiType.pm
|
||||||
|
lib/perl5/site_perl/%%PERL_VER%%/Net/Server/PreFork.pm
|
||||||
|
lib/perl5/site_perl/%%PERL_VER%%/Net/Server/Single.pm
|
||||||
|
lib/perl5/site_perl/%%PERL_VER%%/%%PERL_ARCH%%/auto/Net/Server/.packlist
|
||||||
|
@dirrm lib/perl5/site_perl/%%PERL_VER%%/%%PERL_ARCH%%/auto/Net/Server
|
||||||
|
@unexec rmdir %D/lib/perl5/site_perl/%%PERL_VER%%/%%PERL_ARCH%%/auto/Net 2>/dev/null || true
|
||||||
|
@dirrm lib/perl5/site_perl/%%PERL_VER%%/Net/Server
|
||||||
|
@unexec rmdir %D/lib/perl5/site_perl/%%PERL_VER%%/Net 2>/dev/null || true
|
Loading…
Add table
Reference in a new issue