From owner-svn-ports-head@freebsd.org Fri Dec 16 20:30:32 2016 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 8B1F2C822A4; Fri, 16 Dec 2016 20:30:32 +0000 (UTC) (envelope-from mandree@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 5A5841339; Fri, 16 Dec 2016 20:30:32 +0000 (UTC) (envelope-from mandree@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id uBGKUVvU075975; Fri, 16 Dec 2016 20:30:31 GMT (envelope-from mandree@FreeBSD.org) Received: (from mandree@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id uBGKUVKl075972; Fri, 16 Dec 2016 20:30:31 GMT (envelope-from mandree@FreeBSD.org) Message-Id: <201612162030.uBGKUVKl075972@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: mandree set sender to mandree@FreeBSD.org using -f From: Matthias Andree Date: Fri, 16 Dec 2016 20:30:31 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r428696 - in head/security: . putty putty-nogtk X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 16 Dec 2016 20:30:32 -0000 Author: mandree Date: Fri Dec 16 20:30:31 2016 New Revision: 428696 URL: https://svnweb.freebsd.org/changeset/ports/428696 Log: Add new putty-nogtk port as alternative SSH implementation. Added: head/security/putty-nogtk/ head/security/putty-nogtk/Makefile (contents, props changed) Modified: head/security/Makefile head/security/putty/Makefile Modified: head/security/Makefile ============================================================================== --- head/security/Makefile Fri Dec 16 20:21:16 2016 (r428695) +++ head/security/Makefile Fri Dec 16 20:30:31 2016 (r428696) @@ -822,6 +822,7 @@ SUBDIR += pulledpork SUBDIR += pure-sfv SUBDIR += putty + SUBDIR += putty-nogtk SUBDIR += pvk SUBDIR += pwauth SUBDIR += pwman Added: head/security/putty-nogtk/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/security/putty-nogtk/Makefile Fri Dec 16 20:30:31 2016 (r428696) @@ -0,0 +1,12 @@ +# Created by: Matthias Andree +# $FreeBSD$ + +PKGNAMESUFFIX= -nogtk + +OPTIONS_EXCLUDE= GTK2 + +CONFLICTS_INSTALL= pssh-[0-9]* putty-[0-9]* + +MASTERDIR= ${.CURDIR}/../../security/putty + +.include "${MASTERDIR}/Makefile" Modified: head/security/putty/Makefile ============================================================================== --- head/security/putty/Makefile Fri Dec 16 20:21:16 2016 (r428695) +++ head/security/putty/Makefile Fri Dec 16 20:30:31 2016 (r428696) @@ -26,7 +26,7 @@ PLIST_FILES+= man/man1/plink.1.gz man/ma OPTIONS_DEFINE= GSSAPI GTK2 OPTIONS_DEFAULT=GSSAPI GTK2 -CONFLICTS= pssh-[0-9]* +CONFLICTS_INSTALL?= pssh-[0-9]* putty-nogtk-[0-9]* .include