Bug 175952 - [NEW PORT] net/knc: KNC is Kerberised NetCat.
Summary: [NEW PORT] net/knc: KNC is Kerberised NetCat.
Status: Closed FIXED
Alias: None
Product: Ports & Packages
Classification: Unclassified
Component: Individual Port(s) (show other bugs)
Version: Latest
Hardware: Any Any
: Normal Affects Only Me
Assignee: Chris Rees
URL:
Keywords:
Depends on:
Blocks:
 
Reported: 2013-02-08 09:20 UTC by Denis Generalov
Modified: 2013-02-09 20:20 UTC (History)
0 users

See Also:


Attachments
file.txt (1.56 KB, text/plain)
2013-02-08 09:20 UTC, Denis Generalov
no flags Details
patch.txt (2.06 KB, text/plain)
2013-02-09 17:11 UTC, Denis Generalov
no flags Details

Note You need to log in before you can comment on or make changes to this bug.
Description Denis Generalov 2013-02-08 09:20:00 UTC
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.

Fix: Patch attached with submission follows:
Comment 1 Denis Generalov 2013-02-09 17:11:37 UTC
Sorry, I forget a patch.
Corrected version in attachment.

-- 
Denis Generalov <gd@rambler-co.ru>
Comment 2 Chris Rees freebsd_committer freebsd_triage 2013-02-09 17:47:33 UTC
Responsible Changed
From-To: freebsd-ports-bugs->crees

I'll take it.
Comment 3 Chris Rees freebsd_committer freebsd_triage 2013-02-09 17:54:43 UTC
State Changed
From-To: open->closed

New port added. Thanks!
Comment 4 dfilter service freebsd_committer freebsd_triage 2013-02-09 20:14:29 UTC
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
_______________________________________________
svn-ports-all@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/svn-ports-all
To unsubscribe, send any mail to "svn-ports-all-unsubscribe@freebsd.org"