freebsd-ports/sysutils/py-supervisor/Makefile
Ruslan Makhmatkhanov 18e6b74dc7 - update minimum required py-meld3 version
- use TEST_DEPENDS for tinderbox builds
- add OPTIONS for unit tests
- add regression-test target
- add the upstream patch to fix tests [1]

PR:		172851
Submitted by:	Kubilay Kocak <koobs.freebsd at gmail dot com>
Approved by:	Ildar Hizbulin <hizel at vyborg dot ru> (maintainer) [1]
Feature safe:	yes
2012-10-29 21:20:53 +00:00

55 lines
1.5 KiB
Makefile

# Created by: Hizbulin Ildar <hizel@vyborg.ru>
# $FreeBSD$
PORTNAME= supervisor
PORTVERSION= 3.0b1
CATEGORIES= sysutils python
MASTER_SITES= CHEESESHOP
PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX}
MAINTAINER= hizel@vyborg.ru
COMMENT= System to monitor and control a number of processes on UNIX-like OS
RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}meld3>=0.6.5:${PORTSDIR}/www/py-meld3
TEST_DEPENDS:= ${RUN_DEPENDS} \
${PYTHON_PKGNAMEPREFIX}mock>0:${PORTSDIR}/devel/py-mock
OPTIONS_DEFINE= TESTS
TESTS_DESC= Install mock for running unit tests
OPTIONSFILE= ${PORT_DBDIR}/py-${PORTNAME}/options
.include <bsd.port.options.mk>
.if ${PORT_OPTIONS:MTESTS}
BUILD_DEPENDS+= ${PYTHON_PKGNAMEPREFIX}mock>0:${PORTSDIR}/devel/py-mock
.endif
PORTDOCS= *.txt *.rst
USE_PYTHON= -2.7
USE_PYDISTUTILS= easy_install
PIDDIR?= /var/run/supervisor
SUB_LIST= PYTHON_CMD=${PYTHON_CMD} \
PIDDIR=${PIDDIR}
PLIST_SUB= PIDDIR=${PIDDIR}
USE_RC_SUBR= supervisord
post-patch:
@${REINPLACE_CMD} -e 's!%%PREFIX%%!${PREFIX}!' ${WRKSRC}/supervisor/options.py
post-install:
[ -d ${PIDDIR} ] || ${MKDIR} ${PIDDIR}
${INSTALL_DATA} ${FILESDIR}/supervisord.conf.sample ${PREFIX}/etc
[ -f ${PREFIX}/etc/supervisord.conf ] || ${CP} -p ${PREFIX}/etc/supervisord.conf.sample ${PREFIX}/etc/supervisord.conf
.if !defined(NOPORTDOCS)
${MKDIR} ${DOCSDIR}
.for i in ${PORTDOCS}
@${INSTALL_DATA} ${WRKSRC}/${i} ${DOCSDIR}/
.endfor
.endif
regression-test: build
@cd ${WRKSRC} && ${PYTHON_CMD} ${PYSETUP} test
.include <bsd.port.mk>