4f9b61feca
-- `Net::Server' is an extensible, generic Perl server engine. Features include: * Single Server Mode * Inetd Server Mode * Preforking Simple Mode (PreForkSimple) * Preforking Managed Mode (PreFork) * Forking Mode * Multi port accepts on Single, Preforking, and Forking modes * Simultaneous accept/recv on tcp, udp, and unix sockets * User customizable hooks * Chroot ability after bind * Change of user and group after bind * Basic allow/deny access control * Customized logging (choose Syslog, log_file, or STDERR) * HUP able server (clean restarts via sig HUP) * Dequeue ability in all Fork and PreFork modes. * Taint clean * Written in Perl * Protection against buffer overflow * Clean process flow * Extensibility
22 lines
483 B
Makefile
22 lines
483 B
Makefile
# $OpenBSD: Makefile,v 1.1.1.1 2001/09/29 21:24:21 avsm Exp $
|
|
|
|
COMMENT= "extensible framework for Perl server engines"
|
|
|
|
DISTNAME= Net-Server-0.77
|
|
PKGNAME= p5-${DISTNAME}
|
|
CATEGORIES= devel net perl5
|
|
NEED_VERSION= 1.463
|
|
MASTER_SITES= ${MASTER_SITE_PERL_CPAN}
|
|
MASTER_SITE_SUBDIR= Net
|
|
|
|
MAINTAINER= Anil Madhavapeddy <avsm@openbsd.org>
|
|
|
|
PERMIT_PACKAGE_CDROM= Yes
|
|
PERMIT_PACKAGE_FTP= Yes
|
|
PERMIT_DISTFILES_CDROM= Yes
|
|
PERMIT_DISTFILES_FTP= Yes
|
|
|
|
CONFIGURE_STYLE= perl
|
|
|
|
.include <bsd.port.mk>
|