diff options
author | mat <mat@FreeBSD.org> | 2013-08-23 03:54:51 +0800 |
---|---|---|
committer | mat <mat@FreeBSD.org> | 2013-08-23 03:54:51 +0800 |
commit | a7461e9c6ed4fce21fb3d3a639d35966fac58032 (patch) | |
tree | 8401a46ceb5d6c16d8a37368ab4373207f7c8997 /devel | |
parent | 7d923be4ae7c62682ca7d8fe7d325c02ed38c788 (diff) | |
download | freebsd-ports-gnome-a7461e9c6ed4fce21fb3d3a639d35966fac58032.tar.gz freebsd-ports-gnome-a7461e9c6ed4fce21fb3d3a639d35966fac58032.tar.zst freebsd-ports-gnome-a7461e9c6ed4fce21fb3d3a639d35966fac58032.zip |
Add p5-IO-Pipely 0.005, portably create pipe() or pipe-like handles, one
way or another.
Some dependencies are not quite met yet, but should be soon.
Diffstat (limited to 'devel')
-rw-r--r-- | devel/Makefile | 1 | ||||
-rw-r--r-- | devel/p5-IO-Pipely/Makefile | 23 | ||||
-rw-r--r-- | devel/p5-IO-Pipely/distinfo | 2 | ||||
-rw-r--r-- | devel/p5-IO-Pipely/pkg-descr | 7 | ||||
-rw-r--r-- | devel/p5-IO-Pipely/pkg-plist | 5 |
5 files changed, 38 insertions, 0 deletions
diff --git a/devel/Makefile b/devel/Makefile index 68204153fce4..cb38573732d8 100644 --- a/devel/Makefile +++ b/devel/Makefile @@ -2124,6 +2124,7 @@ SUBDIR += p5-IO-NestedCapture SUBDIR += p5-IO-Null SUBDIR += p5-IO-Pager + SUBDIR += p5-IO-Pipely SUBDIR += p5-IO-Prompt SUBDIR += p5-IO-Prompt-Tiny SUBDIR += p5-IO-Pty-Easy diff --git a/devel/p5-IO-Pipely/Makefile b/devel/p5-IO-Pipely/Makefile new file mode 100644 index 000000000000..99e4f5f5d129 --- /dev/null +++ b/devel/p5-IO-Pipely/Makefile @@ -0,0 +1,23 @@ +# Created by: Mathieu Arnold +# $FreeBSD$ + +PORTNAME= IO-Pipely +PORTVERSION= 0.005 +CATEGORIES= devel perl5 +MASTER_SITES= CPAN +PKGNAMEPREFIX= p5- + +MAINTAINER= perl@FreeBSD.org +COMMENT= Portably create pipe() or pipe-like handles, one way or another + +BUILD_DEPENDS= p5-Carp>=1.26:${PORTSDIR}/devel/p5-Carp \ + p5-Exporter>=5.68:${PORTSDIR}/devel/p5-Exporter \ + p5-base>=2.18:${PORTSDIR}/devel/p5-base \ + p5-Scalar-List-Utils>=1.29:${PORTSDIR}/lang/p5-Scalar-List-Utils + +USES= perl5 +USE_PERL5= configure + +MAN3= IO::Pipely.3 + +.include <bsd.port.mk> diff --git a/devel/p5-IO-Pipely/distinfo b/devel/p5-IO-Pipely/distinfo new file mode 100644 index 000000000000..e103c6ec10e0 --- /dev/null +++ b/devel/p5-IO-Pipely/distinfo @@ -0,0 +1,2 @@ +SHA256 (IO-Pipely-0.005.tar.gz) = e33b6cf5cb2b46ee308513f51e623987a50a89901e81bf19701dce35179f2e74 +SIZE (IO-Pipely-0.005.tar.gz) = 23928 diff --git a/devel/p5-IO-Pipely/pkg-descr b/devel/p5-IO-Pipely/pkg-descr new file mode 100644 index 000000000000..3018ac68db16 --- /dev/null +++ b/devel/p5-IO-Pipely/pkg-descr @@ -0,0 +1,7 @@ +IO::Pipely - Portably create pipe() or pipe-like handles, one way or another. + +Pipes are troublesome beasts because there are a few different, incompatible +ways to create them. Not all platforms support all ways, and some platforms may +have hidden difficulties like incomplete or buggy support. + +WWW: http://search.cpan.org/dist/IO-Pipely/ diff --git a/devel/p5-IO-Pipely/pkg-plist b/devel/p5-IO-Pipely/pkg-plist new file mode 100644 index 000000000000..7d011d5a5886 --- /dev/null +++ b/devel/p5-IO-Pipely/pkg-plist @@ -0,0 +1,5 @@ +%%SITE_PERL%%/IO/Pipely.pm +%%SITE_PERL%%/%%PERL_ARCH%%/auto/IO/Pipely/.packlist +@dirrmtry %%SITE_PERL%%/%%PERL_ARCH%%/auto/IO/Pipely +@dirrmtry %%SITE_PERL%%/%%PERL_ARCH%%/auto/IO +@dirrmtry %%SITE_PERL%%/IO |