diff options
author | vanilla <vanilla@FreeBSD.org> | 2004-01-19 23:32:04 +0000 |
---|---|---|
committer | vanilla <vanilla@FreeBSD.org> | 2004-01-19 23:32:04 +0000 |
commit | d4e7571b41f61ccb4a894f5711339775a094f045 (patch) | |
tree | 74682f6ba0c2a4e08e307997e3a682a2f2fa4b8d /devel/p5-IO-Tee | |
parent | 0644ad2034bcf29e7926b7c58de814ab28472f5f (diff) | |
download | FreeBSD-ports-d4e7571b41f61ccb4a894f5711339775a094f045.zip FreeBSD-ports-d4e7571b41f61ccb4a894f5711339775a094f045.tar.gz |
Add p5-IO-Tee 0.64, multiplex output to multiple output handles.
PR: 61535
Submitted by: dcf@aracnet.com
Diffstat (limited to 'devel/p5-IO-Tee')
-rw-r--r-- | devel/p5-IO-Tee/Makefile | 22 | ||||
-rw-r--r-- | devel/p5-IO-Tee/distinfo | 1 | ||||
-rw-r--r-- | devel/p5-IO-Tee/pkg-descr | 11 | ||||
-rw-r--r-- | devel/p5-IO-Tee/pkg-plist | 2 |
4 files changed, 36 insertions, 0 deletions
diff --git a/devel/p5-IO-Tee/Makefile b/devel/p5-IO-Tee/Makefile new file mode 100644 index 0000000..b1e4989 --- /dev/null +++ b/devel/p5-IO-Tee/Makefile @@ -0,0 +1,22 @@ +# New ports collection makefile for: p5-IO-Tee +# Date created: Sun Jan 18 07:27:41 CST 2004 +# Whom: dcf@aracnet.com +# +# $FreeBSD$ +# + +PORTNAME= IO-Tee +PORTVERSION= 0.64 +CATEGORIES= devel perl5 +MASTER_SITES= ${MASTER_SITE_PERL_CPAN} +MASTER_SITE_SUBDIR= IO +PKGNAMEPREFIX= p5- + +MAINTAINER= dcf@aracnet.com +COMMENT= Multiplex output to multiple output handles + +PERL_CONFIGURE= yes + +MAN3= IO::Tee.3 + +.include <bsd.port.mk> diff --git a/devel/p5-IO-Tee/distinfo b/devel/p5-IO-Tee/distinfo new file mode 100644 index 0000000..57fe2df --- /dev/null +++ b/devel/p5-IO-Tee/distinfo @@ -0,0 +1 @@ +MD5 (IO-Tee-0.64.tar.gz) = 97d91e38fcadc1f01d8030a8d4f30701 diff --git a/devel/p5-IO-Tee/pkg-descr b/devel/p5-IO-Tee/pkg-descr new file mode 100644 index 0000000..b2e1956 --- /dev/null +++ b/devel/p5-IO-Tee/pkg-descr @@ -0,0 +1,11 @@ +IO::Tee +======= + +The `IO::Tee' constructor, given a list of output handles, +returns a tied handle that can be written to but not read from. +When written to (using print or printf), it multiplexes the +output to the list of handles originally passed to the +constructor. As a shortcut, you can also directly pass a string +or an array reference to the constructor, in which case +`IO::File::new' is called for you with the specified argument or +arguments. diff --git a/devel/p5-IO-Tee/pkg-plist b/devel/p5-IO-Tee/pkg-plist new file mode 100644 index 0000000..100e74e --- /dev/null +++ b/devel/p5-IO-Tee/pkg-plist @@ -0,0 +1,2 @@ +%%SITE_PERL%%/IO/Tee.pm +@unexec rmdir %D/%%SITE_PERL%%/IO 2>/dev/null || true |