mirror of
https://git.FreeBSD.org/ports.git
synced 2025-01-23 09:10:43 +00:00
8ac0e9fc40
PR: 168457 Submitted by: koobs
43 lines
976 B
Makefile
43 lines
976 B
Makefile
# New ports collection makefile for: beanstalkd
|
|
# Date created: Apr 11, 2008
|
|
# Whom: Vsevolod Stakhov <vsevolod@FreeBSD.org>
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= beanstalkd
|
|
PORTVERSION= 1.6
|
|
CATEGORIES= net
|
|
MASTER_SITES= http://cloud.github.com/downloads/kr/beanstalkd/
|
|
|
|
MAINTAINER= vsevolod@FreeBSD.org
|
|
COMMENT= Fast, distributed, in-memory workqueue service
|
|
|
|
LICENSE= MIT
|
|
LICENSE_FILE= ${WRKSRC}/LICENSE
|
|
|
|
USE_RC_SUBR= beanstalkd
|
|
USE_GMAKE= yes
|
|
|
|
MAKE_JOBS_SAFE= yes
|
|
MAKE_ARGS+= CC="${CC}" CFLAGS="${CFLAGS}"
|
|
|
|
PLIST_FILES= bin/beanstalkd
|
|
SUB_LIST+= RC_SUBR_SUFFIX=${RC_SUBR_SUFFIX}
|
|
|
|
PORTDOCS= protocol.txt
|
|
MAN1= beanstalkd.1
|
|
|
|
do-install:
|
|
${INSTALL_PROGRAM} ${WRKSRC}/beanstalkd ${PREFIX}/bin
|
|
${INSTALL_MAN} ${WRKSRC}/doc/${MAN1} ${MAN1PREFIX}/man/man1
|
|
.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>
|