View | Details | Raw Unified | Return to bug 175830
Collapse All | Expand All

(-)p5-Event-RPC.new/Makefile (-3 / +9 lines)
Lines 6-12 Link Here
6
#
6
#
7
7
8
PORTNAME=	Event-RPC
8
PORTNAME=	Event-RPC
9
PORTVERSION=	1.01
9
PORTVERSION=	1.03
10
CATEGORIES=	devel net perl5
10
CATEGORIES=	devel net perl5
11
MASTER_SITES=	CPAN
11
MASTER_SITES=	CPAN
12
PKGNAMEPREFIX=	p5-
12
PKGNAMEPREFIX=	p5-
Lines 22-34 Link Here
22
	Event::RPC::LogConnection.3 \
22
	Event::RPC::LogConnection.3 \
23
	Event::RPC::Logger.3 \
23
	Event::RPC::Logger.3 \
24
	Event::RPC::Loop.3 \
24
	Event::RPC::Loop.3 \
25
	Event::RPC::Loop::AnyEvent.3 \
25
	Event::RPC::Loop::Event.3 \
26
	Event::RPC::Loop::Event.3 \
26
	Event::RPC::Loop::Glib.3 \
27
	Event::RPC::Loop::Glib.3 \
27
	Event::RPC::Message.3 \
28
	Event::RPC::Message.3 \
28
	Event::RPC::Server.3
29
	Event::RPC::Server.3
29
30
30
OPTIONS=	GLIB	"Use Glib event handler"	off \
31
OPTIONS=	GLIB	"Register dependency to Glib event handler"	off \
31
		EVENT	"Use Event.pm event handler"	on \
32
		EVENT	"Register dependency to Event.pm event handler"	on \
33
		ANYEVENT	"Register dependency to AnyEvent event handler"	on \
32
		SSL	"Register dependency to SSL lib"	on
34
		SSL	"Register dependency to SSL lib"	on
33
35
34
.include <bsd.port.pre.mk>
36
.include <bsd.port.pre.mk>
Lines 39-44 Link Here
39
BUILD_DEPENDS+=	p5-Event>=0:${PORTSDIR}/devel/p5-Event
41
BUILD_DEPENDS+=	p5-Event>=0:${PORTSDIR}/devel/p5-Event
40
.endif
42
.endif
41
43
44
.if defined(WITH_ANYEVENT)
45
BUILD_DEPENDS+=	p5-AnyEvent>=0:${PORTSDIR}/devel/p5-AnyEvent
46
.endif
47
42
.if defined(WITH_GLIB)
48
.if defined(WITH_GLIB)
43
BUILD_DEPENDS+=	p5-Glib2>=0:${PORTSDIR}/devel/p5-Glib2
49
BUILD_DEPENDS+=	p5-Glib2>=0:${PORTSDIR}/devel/p5-Glib2
44
.endif
50
.endif
(-)p5-Event-RPC.new/distinfo (-2 / +2 lines)
Lines 1-2 Link Here
1
SHA256 (Event-RPC-1.01.tar.gz) = 4a4d086630fc8af6fd84cc8053ab0483fa3712a42d320e75e51027319ca46ce4
1
SHA256 (Event-RPC-1.03.tar.gz) = e97e96bc9294d8b3466cf9fcf4a157650ad1483dda3dd02d1b11793cbc429983
2
SIZE (Event-RPC-1.01.tar.gz) = 35011
2
SIZE (Event-RPC-1.03.tar.gz) = 47011
(-)p5-Event-RPC.new/pkg-descr (-1 / +4 lines)
Lines 2-7 Link Here
2
applications with transparent object/method access from the client to the
2
applications with transparent object/method access from the client to the
3
server. Network communication is optionally encrypted using IO::Socket::SSL.
3
server. Network communication is optionally encrypted using IO::Socket::SSL.
4
Several event loop managers are supported due to an extensible API. Currently
4
Several event loop managers are supported due to an extensible API. Currently
5
Event and Glib are implemented.
5
Event, Glib and AnyEvent are implemented. The latter lets you use nearly every
6
event loop implementation available for Perl. AnyEvent was invented after
7
Event::RPC was created and thus Event::RPC started using it's own abstraction
8
model.
6
9
7
WWW: http://search.cpan.org/dist/Event::RPC/
10
WWW: http://search.cpan.org/dist/Event::RPC/
(-)p5-Event-RPC.new/pkg-plist (+1 lines)
Lines 5-10 Link Here
5
%%SITE_PERL%%/Event/RPC/LogConnection.pm
5
%%SITE_PERL%%/Event/RPC/LogConnection.pm
6
%%SITE_PERL%%/Event/RPC/Logger.pm
6
%%SITE_PERL%%/Event/RPC/Logger.pm
7
%%SITE_PERL%%/Event/RPC/Loop.pm
7
%%SITE_PERL%%/Event/RPC/Loop.pm
8
%%SITE_PERL%%/Event/RPC/Loop/AnyEvent.pm
8
%%SITE_PERL%%/Event/RPC/Loop/Event.pm
9
%%SITE_PERL%%/Event/RPC/Loop/Event.pm
9
%%SITE_PERL%%/Event/RPC/Loop/Glib.pm
10
%%SITE_PERL%%/Event/RPC/Loop/Glib.pm
10
%%SITE_PERL%%/Event/RPC/Message.pm
11
%%SITE_PERL%%/Event/RPC/Message.pm

Return to bug 175830