mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-29 05:38:00 +00:00
7e2f79fedc
library, that is intended to allow you to interact with AMQP-compliant message brokers/servers such as RabbitMQ in an asynchronous fashion. You can use AnyEvent::RabbitMQ to - * Declare and delete exchanges * Declare, delete, bind and unbind queues * Set QoS * Publish, consume, get, ack, recover and reject messages * Select, commit and rollback transactions AnyEvnet::RabbitMQ is known to work with RabbitMQ versions 2.5.1 and version 0-8 of the AMQP specification. WWW: http://search.cpan.org/dist/AnyEvent-RabbitMQ/
40 lines
1.0 KiB
Makefile
40 lines
1.0 KiB
Makefile
# New ports collection makefile for: AnyEvent::RabbitMQ
|
|
# Date created: 29 Oct 2011
|
|
# Whom: Cheng-Lung Sung <clsung@FreeBSD.org>
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= AnyEvent-RabbitMQ
|
|
PORTVERSION= 1.05
|
|
CATEGORIES= net devel perl5
|
|
MASTER_SITES= CPAN
|
|
PKGNAMEPREFIX= p5-
|
|
|
|
MAINTAINER= clsung@FreeBSD.org
|
|
COMMENT= An asynchronous and multi channel Perl AMQP client
|
|
|
|
LICENSE= ART10 GPLv1
|
|
LICENSE_COMB= dual
|
|
|
|
RUN_DEPENDS= p5-AnyEvent>=0:${PORTSDIR}/devel/p5-AnyEvent \
|
|
p5-Net-AMQP>=0:${PORTSDIR}/net/p5-Net-AMQP \
|
|
p5-Devel-GlobalDestruction>=0:${PORTSDIR}/devel/p5-Devel-GlobalDestruction \
|
|
p5-File-ShareDir>=0:${PORTSDIR}/devel/p5-File-ShareDir \
|
|
p5-List-MoreUtils>=0:${PORTSDIR}/lang/p5-List-MoreUtils \
|
|
p5-Readonly>=1.03:${PORTSDIR}/devel/p5-Readonly \
|
|
p5-namespace-clean>=0:${PORTSDIR}/devel/p5-namespace-clean
|
|
|
|
TEST_DEPENDS= ${RUN_DEPENDS}
|
|
PERL_CONFIGURE= yes
|
|
|
|
MAN3= AnyEvent::RabbitMQ.3 \
|
|
AnyEvent::RabbitMQ::Channel.3
|
|
|
|
.if defined(MAINTAINER_MODE)
|
|
regression-test: build
|
|
cd ${WRKSRC} && ${MAKE} test
|
|
.endif
|
|
|
|
.include <bsd.port.mk>
|