mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-15 03:14:23 +00:00
99ab37f62c
Buildbot is a system to automate the compile/test cycle to validate code changes.
31 lines
696 B
Makefile
31 lines
696 B
Makefile
# New ports collection makefile for: buildbot
|
|
# Date created: 27 Sep 2005
|
|
# Whom: Koop Mast <kwm@FreeBSD.org>
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= buildbot
|
|
PORTVERSION= 0.6.6
|
|
CATEGORIES= devel
|
|
MASTER_SITES= ${MASTER_SITE_SOURCEFORGE}
|
|
MASTER_SITE_SUBDIR= ${PORTNAME}
|
|
|
|
MAINTAINER= kwm@FreeBSD.org
|
|
COMMENT= Automated system from compile/test cycle to validate code changes
|
|
|
|
RUN_DEPENDS= mktap:${PORTSDIR}/devel/py-twisted
|
|
|
|
USE_REINPLACE= yes
|
|
USE_PYTHON= 2.2+
|
|
NO_BUILD= yes
|
|
|
|
post-patch:
|
|
@${FIND} ${WRKSRC} -type f | ${XARGS} -n 10 ${REINPLACE_CMD} -e \
|
|
's|/usr/bin/python|${LOCALBASE}/bin/python|g'
|
|
|
|
do-install:
|
|
@cd ${WRKSRC} && ${PYTHON_CMD} setup.py install --prefix=${PREFIX}
|
|
|
|
.include <bsd.port.mk>
|