Skip site navigation (1)Skip section navigation (2)
Date:      Wed, 1 May 2013 21:52:05 +0000 (UTC)
From:      Glen Barber <gjb@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r317053 - head/shells/scponly
Message-ID:  <201305012152.r41Lq5Do030125@svn.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: gjb
Date: Wed May  1 21:52:05 2013
New Revision: 317053
URL: http://svnweb.freebsd.org/changeset/ports/317053

Log:
  - Work around what I believe is a bug in how binary existence in the base
    system are tracked.  Without this "fix", /usr/bin/sftp is not recongnized
    to negate the build dependency of openssh-portable. [1]
  
  - Bump PORTREVISION.
  
  Discussed with:	bdrewery [1]

Modified:
  head/shells/scponly/Makefile

Modified: head/shells/scponly/Makefile
==============================================================================
--- head/shells/scponly/Makefile	Wed May  1 21:51:04 2013	(r317052)
+++ head/shells/scponly/Makefile	Wed May  1 21:52:05 2013	(r317053)
@@ -3,6 +3,7 @@
 
 PORTNAME=	scponly
 PORTVERSION=	4.8.20110526
+PORTREVISION=	1
 CATEGORIES=	shells security
 MASTER_SITES=	SF
 MASTER_SITE_SUBDIR=	${PORTNAME}/${PORTNAME}-snapshots
@@ -33,8 +34,10 @@ WINSCP_DESC=	WinSCP support
 
 .include <bsd.port.options.mk>
 
+.if(!exists(/usr/bin/sftp))
 RUN_DEPENDS+=	sftp:${PORTSDIR}/security/openssh-portable
 BUILD_DEPENDS+=	sftp:${PORTSDIR}/security/openssh-portable
+.endif
 
 .if ${PORT_OPTIONS:MDEFAULT_CHDIR}
 CONFIGURE_ARGS+=--with-default-chdir=${SCPONLY_DEFAULT_CHDIR}



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201305012152.r41Lq5Do030125>