From owner-svn-ports-all@FreeBSD.ORG Sat Feb 9 20:13:30 2013 Return-Path: Delivered-To: svn-ports-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by hub.freebsd.org (Postfix) with ESMTP id 94C7EAED; Sat, 9 Feb 2013 20:13:30 +0000 (UTC) (envelope-from crees@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) by mx1.freebsd.org (Postfix) with ESMTP id 79061108; Sat, 9 Feb 2013 20:13:30 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.5/8.14.5) with ESMTP id r19HtdtG018429; Sat, 9 Feb 2013 17:55:39 GMT (envelope-from crees@svn.freebsd.org) Received: (from crees@localhost) by svn.freebsd.org (8.14.5/8.14.5/Submit) id r19HtcRG018424; Sat, 9 Feb 2013 17:55:38 GMT (envelope-from crees@svn.freebsd.org) Message-Id: <201302091755.r19HtcRG018424@svn.freebsd.org> From: Chris Rees Date: Sat, 9 Feb 2013 17:55:38 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r311990 - in head/net: . knc knc/files X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 09 Feb 2013 20:13:30 -0000 Author: crees Date: Sat Feb 9 17:55:38 2013 New Revision: 311990 URL: http://svnweb.freebsd.org/changeset/ports/311990 Log: KNC is Kerberised NetCat. It works in basically the same way as either netcat or stunnel except that it is uses GSS-API to secure the communication. You can use it to construct client/server applications while keeping the Kerberos libraries out of your programs address space quickly and easily. WWW: http://oskt.secure-endpoints.com/knc.html PR: ports/175952 Submitted by: Denis Generalov Added: head/net/knc/ head/net/knc/Makefile (contents, props changed) head/net/knc/distinfo (contents, props changed) head/net/knc/files/ head/net/knc/files/patch-bin__knc.c (contents, props changed) head/net/knc/pkg-descr (contents, props changed) Modified: head/net/Makefile Modified: head/net/Makefile ============================================================================== --- head/net/Makefile Sat Feb 9 17:53:53 2013 (r311989) +++ head/net/Makefile Sat Feb 9 17:55:38 2013 (r311990) @@ -282,6 +282,7 @@ SUBDIR += kiax SUBDIR += kio-upnp-ms SUBDIR += kissd + SUBDIR += knc SUBDIR += knemo SUBDIR += knemo-kde4 SUBDIR += kojoney Added: head/net/knc/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/net/knc/Makefile Sat Feb 9 17:55:38 2013 (r311990) @@ -0,0 +1,17 @@ +# Created by: Denis Generalov +# $FreeBSD$ + +PORTNAME= knc +PORTVERSION= 1.7 +CATEGORIES= net +MASTER_SITES= http://oskt.secure-endpoints.com/downloads/ + +MAINTAINER= gd@rambler-co.ru +COMMENT= KNC is Kerberised NetCat + +USE_AUTOTOOLS= libtool +MAN1= knc.1 + +PLIST_FILES= bin/knc + +.include Added: head/net/knc/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/net/knc/distinfo Sat Feb 9 17:55:38 2013 (r311990) @@ -0,0 +1,2 @@ +SHA256 (knc-1.7.tar.gz) = d36cdec27dc505a6eca4f230bc53dafcee422122bd2ec6addc0af0c35a95f46f +SIZE (knc-1.7.tar.gz) = 646756 Added: head/net/knc/files/patch-bin__knc.c ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/net/knc/files/patch-bin__knc.c Sat Feb 9 17:55:38 2013 (r311990) @@ -0,0 +1,11 @@ +--- ./bin/knc.c.orig 2013-02-09 21:09:13.000000000 +0400 ++++ ./bin/knc.c 2013-02-09 21:09:29.000000000 +0400 +@@ -47,7 +47,7 @@ + #include + #include + +-#include "gssapi/gssapi.h" ++#include "config.h" + #include "gssstdio.h" + #include "knc.h" + Added: head/net/knc/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/net/knc/pkg-descr Sat Feb 9 17:55:38 2013 (r311990) @@ -0,0 +1,6 @@ +KNC is Kerberised NetCat. It works in basically the same way as either netcat +or stunnel except that it is uses GSS-API to secure the communication. You can +use it to construct client/server applications while keeping the Kerberos +libraries out of your programs address space quickly and easily. + +WWW: http://oskt.secure-endpoints.com/knc.html