mirror of
https://git.freebsd.org/ports.git
synced 2025-07-18 01:39:16 -04:00
Add p5-IO-Multiplex, a convenient wrapper around select().
This commit is contained in:
parent
8ce9b42709
commit
96dbaacf31
Notes:
svn2git
2021-03-31 03:12:20 +00:00
svn path=/head/; revision=60617
6 changed files with 40 additions and 0 deletions
|
@ -439,6 +439,7 @@
|
||||||
SUBDIR += p5-Glade-Perl
|
SUBDIR += p5-Glade-Perl
|
||||||
SUBDIR += p5-Heap
|
SUBDIR += p5-Heap
|
||||||
SUBDIR += p5-IO
|
SUBDIR += p5-IO
|
||||||
|
SUBDIR += p5-IO-Multiplex
|
||||||
SUBDIR += p5-IO-String
|
SUBDIR += p5-IO-String
|
||||||
SUBDIR += p5-IO-Stty
|
SUBDIR += p5-IO-Stty
|
||||||
SUBDIR += p5-IO-Tty
|
SUBDIR += p5-IO-Tty
|
||||||
|
|
25
devel/p5-IO-Multiplex/Makefile
Normal file
25
devel/p5-IO-Multiplex/Makefile
Normal file
|
@ -0,0 +1,25 @@
|
||||||
|
# New ports collection makefile for: p5-IO-Multiplex
|
||||||
|
# Date created: 04 June 2002
|
||||||
|
# Whom: Anton Berezin <tobez@FreeBSD.org>
|
||||||
|
#
|
||||||
|
# $FreeBSD$
|
||||||
|
#
|
||||||
|
|
||||||
|
PORTNAME= IO-Multiplex
|
||||||
|
PORTVERSION= 1.03
|
||||||
|
CATEGORIES= devel perl5
|
||||||
|
MASTER_SITES= ${MASTER_SITE_PERL_CPAN}
|
||||||
|
MASTER_SITE_SUBDIR= IO
|
||||||
|
PKGNAMEPREFIX= p5-
|
||||||
|
|
||||||
|
MAINTAINER= tobez@FreeBSD.org
|
||||||
|
|
||||||
|
BUILD_DEPENDS= ${LOCALBASE}/lib/perl5/site_perl/${PERL_VER}/${PERL_ARCH}/Time/HiRes.pm:${PORTSDIR}/devel/p5-Time-HiRes
|
||||||
|
RUN_DEPENDS= ${BUILD_DEPENDS}
|
||||||
|
|
||||||
|
PERL_CONFIGURE= yes
|
||||||
|
|
||||||
|
MAN3= IO::Multiplex.3
|
||||||
|
MANPREFIX= ${PREFIX}/lib/perl5/${PERL_VERSION}
|
||||||
|
|
||||||
|
.include <bsd.port.mk>
|
1
devel/p5-IO-Multiplex/distinfo
Normal file
1
devel/p5-IO-Multiplex/distinfo
Normal file
|
@ -0,0 +1 @@
|
||||||
|
MD5 (IO-Multiplex-1.03.tar.gz) = f515f3018c9b125c6e706b90f7afc9d4
|
1
devel/p5-IO-Multiplex/pkg-comment
Normal file
1
devel/p5-IO-Multiplex/pkg-comment
Normal file
|
@ -0,0 +1 @@
|
||||||
|
IO::Multiplex - Manage IO on many file handles
|
8
devel/p5-IO-Multiplex/pkg-descr
Normal file
8
devel/p5-IO-Multiplex/pkg-descr
Normal file
|
@ -0,0 +1,8 @@
|
||||||
|
IO::Multiplex is designed to take the effort out of managing multiple
|
||||||
|
file handles. It is essentially a really fancy front end to the select
|
||||||
|
system call. In addition to maintaining the 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.
|
||||||
|
|
||||||
|
Author: Bruce J Keeler <bruce@gridpoint.com>
|
||||||
|
WWW: http://search.cpan.org/search?dist=IO-Multiplex
|
4
devel/p5-IO-Multiplex/pkg-plist
Normal file
4
devel/p5-IO-Multiplex/pkg-plist
Normal file
|
@ -0,0 +1,4 @@
|
||||||
|
lib/perl5/site_perl/%%PERL_VER%%/%%PERL_ARCH%%/auto/IO/Multiplex/.packlist
|
||||||
|
lib/perl5/site_perl/%%PERL_VER%%/IO/Multiplex.pm
|
||||||
|
@dirrm lib/perl5/site_perl/%%PERL_VER%%/%%PERL_ARCH%%/auto/IO/Multiplex
|
||||||
|
@unexec rmdir %D/lib/perl5/site_perl/%%PERL_VER%%/IO 2>/dev/null || true
|
Loading…
Add table
Reference in a new issue