svn commit: r317053 - head/shells/scponly
Glen Barber
gjb at FreeBSD.org
Wed May 1 21:52:06 UTC 2013
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}
More information about the svn-ports-all
mailing list