Skip site navigation (1)Skip section navigation (2)
Date:      Sat, 9 Feb 2013 17:55:38 +0000 (UTC)
From:      Chris Rees <crees@FreeBSD.org>
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
Message-ID:  <201302091755.r19HtcRG018424@svn.freebsd.org>

next in thread | raw e-mail | index | archive | help
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 <gd@rambler-co.ru>

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 <gd@rambler-co.ru>
+# $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 <bsd.port.mk>

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 <time.h>
+ #include <unistd.h>
+ 
+-#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



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