mirror of
https://git.FreeBSD.org/ports.git
synced 2025-01-08 06:48:28 +00:00
5e9f42cbda
- Drop md5 support
38 lines
783 B
Makefile
38 lines
783 B
Makefile
# Ports collection makefile for: bzrtools
|
|
# Date created: 3 November 2005
|
|
# Whom: Ulf Lilleengen
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= bzrtools
|
|
PORTVERSION= 2.3.1
|
|
PORTREVISION= 1
|
|
CATEGORIES= devel
|
|
MASTER_SITES= https://launchpadlibrarian.net/63332821/
|
|
|
|
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" off \
|
|
RSYNC "Enable rsync for rspush" on
|
|
|
|
WRKSRC= ${WRKDIR}/bzrtools
|
|
USE_PYTHON= 2.5+
|
|
USE_PYDISTUTILS= yes
|
|
PYDISTUTILS_PKGNAME= BzrTools
|
|
|
|
.include <bsd.port.pre.mk>
|
|
|
|
.if defined(WITH_GRAPHVIZ)
|
|
RUN_DEPENDS+= dot:${PORTSDIR}/graphics/graphviz
|
|
.endif
|
|
|
|
.if !defined(WITHOUT_RSYNC)
|
|
RUN_DEPENDS+= rsync:${PORTSDIR}/net/rsync
|
|
.endif
|
|
|
|
.include <bsd.port.post.mk>
|