forked from Lainports/freebsd-ports
PR: 130737 Submitted by: Matthew D. Fuller <fullermd at over-yonder dot net> (maintainer)
37 lines
815 B
Makefile
37 lines
815 B
Makefile
# Ports collection makefile for: bzrtools
|
|
# Date created: 3 November 2005
|
|
# Whom: Ulf Lilleengen
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= bzrtools
|
|
PORTVERSION= 1.11.0
|
|
PORTREVISION= 1
|
|
CATEGORIES= devel
|
|
MASTER_SITES= https://code.launchpad.net/bzrtools/stable/${PORTVERSION}/+download/
|
|
|
|
MAINTAINER= fullermd@over-yonder.net
|
|
COMMENT= Extensions to devel/bazaar-ng
|
|
|
|
RUN_DEPENDS= bzr:${PORTSDIR}/devel/bazaar-ng
|
|
|
|
OPTIONS= GRAPHVIZ "Enable graphviz for graph-ancestry" on \
|
|
RSYNC "Enable rsync for rspush" on
|
|
|
|
WRKSRC= ${WRKDIR}/bzrtools
|
|
USE_PYTHON= 2.4+
|
|
USE_PYDISTUTILS= yes
|
|
PYDISTUTILS_PKGNAME= BzrTools
|
|
|
|
.include <bsd.port.pre.mk>
|
|
|
|
.if !defined(WITHOUT_GRAPHVIZ)
|
|
RUN_DEPENDS+= dot:${PORTSDIR}/graphics/graphviz
|
|
.endif
|
|
|
|
.if !defined(WITHOUT_RSYNC)
|
|
RUN_DEPENDS+= rsync:${PORTSDIR}/net/rsync
|
|
.endif
|
|
|
|
.include <bsd.port.post.mk>
|