mirror of
https://git.FreeBSD.org/ports.git
synced 2025-01-09 06:51:44 +00:00
37 lines
864 B
Makefile
37 lines
864 B
Makefile
# New ports collection makefile for: beanstalkd
|
|
# Date created: Apr 11, 2008
|
|
# Whom: Vsevolod Stakhov <vsevolod@FreeBSD.org>
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= beanstalkd
|
|
PORTVERSION= 0.11
|
|
CATEGORIES= net
|
|
MASTER_SITES= http://xph.us/software/beanstalkd/rel/
|
|
|
|
MAINTAINER= vsevolod@FreeBSD.org
|
|
COMMENT= Fast, distributed, in-memory workqueue service
|
|
|
|
LIB_DEPENDS= event-1:${PORTSDIR}/devel/libevent
|
|
|
|
USE_RC_SUBR= beanstalkd
|
|
USE_GMAKE= yes
|
|
MAKE_ENV+= EVENT_CFLAGS=-I${LOCALBASE}/include EVENT_LDFLAGS=-L${LOCALBASE}/lib
|
|
|
|
PLIST_FILES= bin/beanstalkd
|
|
|
|
PORTDOCS= protocol.txt
|
|
|
|
do-install:
|
|
@${INSTALL_PROGRAM} ${WRKSRC}/beanstalkd ${PREFIX}/bin
|
|
.if !defined(NOPORTDOCS)
|
|
@${ECHO_MSG} "===> Installing documentation for ${PKGNAME}"
|
|
@${MKDIR} ${DOCSDIR}
|
|
.for i in ${PORTDOCS}
|
|
${INSTALL_DATA} ${WRKSRC}/doc/${i} ${DOCSDIR}
|
|
.endfor
|
|
.endif
|
|
|
|
.include <bsd.port.mk>
|