1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-12-06 01:57:40 +00:00
freebsd-ports/devel/p5-gearmand/Makefile
Martin Wilke 370067c224 Gearman is a system to farm out work to other machines, dispatching function
calls to machines that are better suited to do work, to do work in parallel,
to load balance lots of function calls, or to call functions between
languages.

This is the server daemon component.  The bridge between workers (clients who
can do work) and callers (clients who want work done).  You should run several
of these, at least two, for both load balancing and high availability.

WWW: http://www.danga.com/gearman/

PR:		ports/110878
Submitted by:	Vivek Khera <vivek at khera.org>
2007-03-27 07:15:30 +00:00

34 lines
825 B
Makefile

# New ports collection makefile for: p5-gearmand
# Date created: Mon Mar 26 11:45:06 EDT 2007
# Whom: Vivek Khera <vivek@khera.org>
#
# $FreeBSD$
#
PORTNAME= gearmand
PORTVERSION= 1.03
CATEGORIES= devel perl5
MASTER_SITES= ${MASTER_SITE_PERL_CPAN}
MASTER_SITE_SUBDIR= ../by-authors/id/B/BR/BRADFITZ
PKGNAMEPREFIX= p5-
MAINTAINER= vivek@khera.org
COMMENT= Gearman server daemon
USE_RC_SUBR= gearmand.sh
SUB_LIST+= NAME=gearmand
MODULE_DEPENDS= p5-Gearman>=1.0:${PORTSDIR}/devel/p5-Gearman \
p5-Danga-Socket>=1.52:${PORTSDIR}/devel/p5-Danga-Socket
RUN_DEPENDS+= ${MODULE_DEPENDS}
BUILD_DEPENDS+= ${MODULE_DEPENDS}
PERL_CONFIGURE= yes
MAN1= gearmand.1
PLIST_FILES= bin/gearmand \
%%SITE_PERL%%/%%PERL_ARCH%%/auto/gearmand/.packlist
PLIST_DIRS= %%SITE_PERL%%/%%PERL_ARCH%%/auto/gearmand
.include <bsd.port.mk>