freebsd-ports/devel/p5-Parallel-Scoreboard/Makefile
Jun Kuriyama 3485e3880e Parallel::Scoreboard is a pure-perl implementation of a process
scoreboard. By using the module it is easy to create a monitor for
many worker process, like the status module of the Apache HTTP server.

Unlike other similar modules, Parallel::Scoreboard is easy to use and
has no limitation on the format or the length of the statuses to be
stored. Any arbitrary data (like JSON or frozen perl object) can be
saved by the worker processes as their status and read from the
manager process.

WWW: http://search.cpan.org/dist/Parallel-Scoreboard/
2011-12-31 08:29:14 +00:00

29 lines
737 B
Makefile

# New ports collection makefile for: Parallel::Scoreboard
# Date created: 31 Dec 2011
# Whom: Jun Kuriyama <kuriyama@FreeBSD.org>
#
# $FreeBSD$
#
PORTNAME= Parallel-Scoreboard
PORTVERSION= 0.03
CATEGORIES= devel perl5
MASTER_SITES= CPAN
PKGNAMEPREFIX= p5-
MAINTAINER= kuriyama@FreeBSD.org
COMMENT= Perl extension of scoreboard for monitoring status of many workers
RUN_DEPENDS= \
p5-Class-Accessor-Lite>=0.05:${PORTSDIR}/devel/p5-Class-Accessor-Lite \
p5-HTML-Parser>0:${PORTSDIR}/www/p5-HTML-Parser \
p5-JSON>0:${PORTSDIR}/converters/p5-JSON
BUILD_DEPENDS= ${RUN_DEPENDS}
PERL_CONFIGURE= yes
MAN3= Parallel::Scoreboard.3 \
Parallel::Scoreboard::PSGI::App.3 \
Parallel::Scoreboard::PSGI::App::JSON.3
.include <bsd.port.mk>