IO::Multiplex is designed to take the effort out of managing multiple file handles. It is essentially a really fancy front end to the C<select> system call. In addition to maintaining the C<select> loop, it buffers all input and output to/from the file handles. It can also accept incoming connections on one or more listen sockets.
19 lines
505 B
Makefile
19 lines
505 B
Makefile
# $NetBSD: Makefile,v 1.1.1.1 2004/08/25 20:09:57 lexort Exp $
|
|
|
|
DISTNAME= IO-Multiplex-1.08
|
|
PKGNAME= p5-IO-Multiplex-1.08
|
|
CATEGORIES= net
|
|
MASTER_SITES= ${MASTER_SITE_PERL_CPAN:=IO/}
|
|
|
|
MAINTAINER= gdt@ir.bbn.com
|
|
HOMEPAGE= http://search.cpan.org/dist/IO-Multiplex/
|
|
COMMENT= Front end to select loop for perl
|
|
|
|
PKG_INSTALLATION_TYPES= overwrite pkgviews
|
|
|
|
USE_BUILDLINK3= yes
|
|
|
|
PERL5_PACKLIST= ${PERL5_SITEARCH}/auto/IO/Multiplex/.packlist
|
|
|
|
.include "../../lang/perl5/module.mk"
|
|
.include "../../mk/bsd.pkg.mk"
|