diff options
author | swills <swills@FreeBSD.org> | 2012-03-08 04:07:18 +0800 |
---|---|---|
committer | swills <swills@FreeBSD.org> | 2012-03-08 04:07:18 +0800 |
commit | edcada3ac74ed632d9c74f0bc482d34d35c8d187 (patch) | |
tree | a1cc83a304e9cc407b4db8271f5dd6b56b0c8894 | |
parent | 5a320c280df01dc1d33a6e25986038e8c8330c58 (diff) | |
download | freebsd-ports-gnome-edcada3ac74ed632d9c74f0bc482d34d35c8d187.tar.gz freebsd-ports-gnome-edcada3ac74ed632d9c74f0bc482d34d35c8d187.tar.zst freebsd-ports-gnome-edcada3ac74ed632d9c74f0bc482d34d35c8d187.zip |
A generic publish/subscribe POE::Component that enables POE::Sessions to
publish events to which other POE::Sessions may subscribe.
WWW: http://search.cpan.org/dist/POE-Component-PubSub/
-rw-r--r-- | net/Makefile | 1 | ||||
-rw-r--r-- | net/p5-POE-Component-PubSub/Makefile | 25 | ||||
-rw-r--r-- | net/p5-POE-Component-PubSub/distinfo | 2 | ||||
-rw-r--r-- | net/p5-POE-Component-PubSub/pkg-descr | 4 | ||||
-rw-r--r-- | net/p5-POE-Component-PubSub/pkg-plist | 3 |
5 files changed, 35 insertions, 0 deletions
diff --git a/net/Makefile b/net/Makefile index ea88a544f7eb..ff76d5ac1940 100644 --- a/net/Makefile +++ b/net/Makefile @@ -688,6 +688,7 @@ SUBDIR += p5-POE-Component-Generic SUBDIR += p5-POE-Component-Jabber SUBDIR += p5-POE-Component-Pcap + SUBDIR += p5-POE-Component-PubSub SUBDIR += p5-POE-Component-Server-Twirc SUBDIR += p5-POE-Component-Spread SUBDIR += p5-POEx-Role-TCPServer diff --git a/net/p5-POE-Component-PubSub/Makefile b/net/p5-POE-Component-PubSub/Makefile new file mode 100644 index 000000000000..d98930b999f6 --- /dev/null +++ b/net/p5-POE-Component-PubSub/Makefile @@ -0,0 +1,25 @@ +# New ports collection makefile for: p5-POE-Component-PubSub +# Date created: 2012-03-07 +# Whom: Steve Wills <swills@FreeBSD.org> +# +# $FreeBSD$ +# + +PORTNAME= POE-Component-PubSub +PORTVERSION= 0.05 +CATEGORIES= net perl5 +MASTER_SITES= CPAN +#MASTER_SITE_SUBDIR= CPAN:nperez +PKGNAMEPREFIX= p5- + +MAINTAINER= perl@FreeBSD.org +COMMENT= A generic publish/subscribe POE::Component + +BUILD_DEPENDS= p5-POE>=0:${PORTSDIR}/devel/p5-POE +RUN_DEPENDS= p5-POE>=0:${PORTSDIR}/devel/p5-POE + +PERL_MODBUILD= yes + +MAN3= POE::Component::PubSub.3 + +.include <bsd.port.mk> diff --git a/net/p5-POE-Component-PubSub/distinfo b/net/p5-POE-Component-PubSub/distinfo new file mode 100644 index 000000000000..32e7e3e509e6 --- /dev/null +++ b/net/p5-POE-Component-PubSub/distinfo @@ -0,0 +1,2 @@ +SHA256 (POE-Component-PubSub-0.05.tar.gz) = 73be9494299b71d65951289da4ffc422b78fc46cd10ab12a6b240caa3051665a +SIZE (POE-Component-PubSub-0.05.tar.gz) = 6892 diff --git a/net/p5-POE-Component-PubSub/pkg-descr b/net/p5-POE-Component-PubSub/pkg-descr new file mode 100644 index 000000000000..efea62e8825f --- /dev/null +++ b/net/p5-POE-Component-PubSub/pkg-descr @@ -0,0 +1,4 @@ +A generic publish/subscribe POE::Component that enables POE::Sessions to +publish events to which other POE::Sessions may subscribe. + +WWW: http://search.cpan.org/dist/POE-Component-PubSub/ diff --git a/net/p5-POE-Component-PubSub/pkg-plist b/net/p5-POE-Component-PubSub/pkg-plist new file mode 100644 index 000000000000..940180000b8d --- /dev/null +++ b/net/p5-POE-Component-PubSub/pkg-plist @@ -0,0 +1,3 @@ +%%SITE_PERL%%/POE/Component/PubSub.pm +@dirrmtry %%SITE_PERL%%/POE/Component +@dirrmtry %%SITE_PERL%%/POE |