Skip site navigation (1)Skip section navigation (2)
Date:      Fri, 14 Dec 2012 02:31:56 +0000 (UTC)
From:      Marcelo Araujo <araujo@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r308875 - head/ftp/hsftp
Message-ID:  <201212140231.qBE2VuC4064910@svn.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: araujo
Date: Fri Dec 14 02:31:55 2012
New Revision: 308875
URL: http://svnweb.freebsd.org/changeset/ports/308875

Log:
  - Support USE_READLINE.
  - Add LICENSE.
  - Add MAKE_JOBS_SAFE.
  - Trim header.
  - Convert to new option framework.
  
  PR:		ports/171998
  Submitted by:	KATO Tsuguru <tkato432@yahoo.com>

Modified:
  head/ftp/hsftp/Makefile   (contents, props changed)

Modified: head/ftp/hsftp/Makefile
==============================================================================
--- head/ftp/hsftp/Makefile	Fri Dec 14 00:41:42 2012	(r308874)
+++ head/ftp/hsftp/Makefile	Fri Dec 14 02:31:55 2012	(r308875)
@@ -1,9 +1,5 @@
-# New ports collection makefile for:	hsftp
-# Date created:				Mon 03 Jul 2000
-# Whom:					will
-#
+# Created by: will
 # $FreeBSD$
-#
 
 PORTNAME=	hsftp
 PORTVERSION=	1.15
@@ -15,22 +11,32 @@ MASTER_SITES=	http://la-samhna.de/hsftp/
 MAINTAINER=	ports@FreeBSD.org
 COMMENT=	FTP emulator that uses ssh to transport commands/data
 
+LICENSE=	GPLv2
+
+OPTIONS_DEFINE=	OPENSSH READLINE
+OPTIONS_DEFAULT=READLINE
+OPENSSH_DESC=	Build with OpenSSH support
+READLINE_DESC=	Enable readline support
+
 GNU_CONFIGURE=	yes
-CONFIGURE_ARGS=	--with-readline
 MAKEFILE=	makefile
+MAKE_JOBS_SAFE=	yes
+
 MAN1=		hsftp.1
 PLIST_FILES=	bin/hsftp
 
-OPTIONS_DEFINE=	OPENSSH
-OPENSSH_DESC=	Build with OpenSSH support
-
 .include <bsd.port.options.mk>
 
 .if ${PORT_OPTIONS:MOPENSSH}
-RUN_DEPENDS+=	ssh:${PORTSDIR}/security/openssh
+RUN_DEPENDS+=	ssh:${PORTSDIR}/security/openssh-portable
 CONFIGURE_ARGS+=	--with-openssh
 .endif
 
+.if ${PORT_OPTIONS:MREADLINE}
+USE_READLINE=	yes
+CONFIGURE_ARGS+=	--with-readline
+.endif
+
 pre-patch:
 	${REINPLACE_CMD} -e '2343d' ${WRKSRC}/configure
 



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