diff options
author | Jason Helfman <jgh@FreeBSD.org> | 2013-04-29 18:47:57 +0000 |
---|---|---|
committer | Jason Helfman <jgh@FreeBSD.org> | 2013-04-29 18:47:57 +0000 |
commit | 3007775a5a8230d35da59df3c9f6776b589ceaf3 (patch) | |
tree | 6040287917ba2e40b9422fa8fa481a72716ea320 /devel/bzr | |
parent | 12eca2a428b780bd976cf413c1b6989bff0062ea (diff) | |
download | ports-3007775a5a8230d35da59df3c9f6776b589ceaf3.tar.gz ports-3007775a5a8230d35da59df3c9f6776b589ceaf3.zip |
Notes
Diffstat (limited to 'devel/bzr')
-rw-r--r-- | devel/bzr/Makefile | 22 |
1 files changed, 10 insertions, 12 deletions
diff --git a/devel/bzr/Makefile b/devel/bzr/Makefile index cdc7a005d66f..af5ca14f569d 100644 --- a/devel/bzr/Makefile +++ b/devel/bzr/Makefile @@ -1,9 +1,5 @@ -# Ports collection makefile for: bzr -# Date created: 10 October 2005 -# Whom: Ulf Lilleengen -# +# Created by: Ulf Lilleengen # $FreeBSD$ -# PORTNAME= bzr PORTVERSION= 2.5.1 @@ -17,8 +13,10 @@ COMMENT= Distributed version control system by Canonical # Often not needed, but it's cheap insurance BUILD_DEPENDS= cython:${PORTSDIR}/lang/cython -OPTIONS= SFTP "Enable Paramiko for SFTP support" on \ - CA_BUNDLE "Include CA bundle for SSL cert validation" on +OPTIONS_DEFINE= SFTP CA_BUNDLE +SFTP_DESC= Paramiko for SFTP support +CA_BUNDLE_DESC= Include CA bundle for SSL cert validation +OPTIONS_DEFAULT= SFTP CA_BUNDLE USE_PYTHON= 2.6+ USE_PYDISTUTILS= yes @@ -27,13 +25,13 @@ USES= gettext MAN1= bzr.1 -.include <bsd.port.pre.mk> +.include <bsd.port.options.mk> -.if !defined(WITHOUT_SFTP) -RUN_DEPENDS+= ${PYTHON_SITELIBDIR}/paramiko/__init__.py:${PORTSDIR}/security/py-paramiko +.if ${PORT_OPTIONS:MSFTP} +RUN_DEPENDS+= ${PYTHON_PKGNAMEPREFIX}>=0:${PORTSDIR}/security/py-paramiko .endif -.if !defined(WITHOUT_CA_BUNDLE) +.if ${PORT_OPTIONS:MCA_BUNDLE} RUN_DEPENDS+= ${LOCALBASE}/share/certs/ca-root-nss.crt:${PORTSDIR}/security/ca_root_nss .endif @@ -43,4 +41,4 @@ post-install: test: build cd ${WRKSRC} && ./bzr selftest -.include <bsd.port.post.mk> +.include <bsd.port.mk> |