hidentd is a simple and secure GPLed ident (RFC1413) server. It
requires either inetd, xinetd or ucspi-tcp to run. Basic features: * small and simple - around 300 lines of code * secure - runs without root priviledges * easy - no complicated configuration file syntax to learn. * hidentd is entirely controlled with command line options. * can be configured to provide fake usernames, protecting your * privacy * limited masqueraded/NAT connections support.
This commit is contained in:
parent
da199979fe
commit
9353f02f85
Notes:
svn2git
2021-03-31 03:12:20 +00:00
svn path=/head/; revision=92957
5 changed files with 46 additions and 0 deletions
|
@ -199,6 +199,7 @@
|
|||
SUBDIR += haproxy
|
||||
SUBDIR += hawk
|
||||
SUBDIR += hf6to4
|
||||
SUBDIR += hidentd
|
||||
SUBDIR += hinfo
|
||||
SUBDIR += hlmaster
|
||||
SUBDIR += honeyd
|
||||
|
|
29
net/hidentd/Makefile
Normal file
29
net/hidentd/Makefile
Normal file
|
@ -0,0 +1,29 @@
|
|||
# New ports collection makefile for: hidentd
|
||||
# Date created: 02.11.2003
|
||||
# Whom: Kirill Ponomarew <krion@FreeBSD.org>
|
||||
#
|
||||
# $FreeBSD$
|
||||
#
|
||||
|
||||
PORTNAME= hidentd
|
||||
PORTVERSION= 0.2
|
||||
CATEGORIES= net
|
||||
MASTER_SITES= http://core.segfault.pl/~hobbit/hidentd/dist/
|
||||
|
||||
MAINTAINER= krion@FreeBSD.org
|
||||
COMMENT= Simple and secure ident (RFC1413) server
|
||||
|
||||
GNU_CONFIGURE= yes
|
||||
CONFIGURE_TARGET=--build=${MACHINE_ARCH}-portbld-freebsd${OSREL}
|
||||
|
||||
MAN8= hidentd.8
|
||||
|
||||
post-install:
|
||||
.if !defined(NOPORTDOCS)
|
||||
${MKDIR} ${DOCSDIR}
|
||||
.for i in README
|
||||
${INSTALL_DATA} ${WRKSRC}/${i} ${DOCSDIR}
|
||||
.endfor
|
||||
.endif
|
||||
|
||||
.include <bsd.port.mk>
|
1
net/hidentd/distinfo
Normal file
1
net/hidentd/distinfo
Normal file
|
@ -0,0 +1 @@
|
|||
MD5 (hidentd-0.2.tar.gz) = 28ef96009533e7f88dbe498b664ba4c7
|
12
net/hidentd/pkg-descr
Normal file
12
net/hidentd/pkg-descr
Normal file
|
@ -0,0 +1,12 @@
|
|||
hidentd is a simple and secure GPLed ident (RFC1413) server. It
|
||||
requires either inetd, xinetd or ucspi-tcp to run. Basic
|
||||
features:
|
||||
|
||||
* small and simple - around 300 lines of code
|
||||
* secure - runs without root priviledges
|
||||
* easy - no complicated configuration file syntax to learn.
|
||||
* hidentd is entirely controlled with command line options.
|
||||
* can be configured to provide fake usernames, protecting your privacy
|
||||
* limited masqueraded/NAT connections support.
|
||||
|
||||
WWW: http://core.segfault.pl/~hobbit/hidentd/
|
3
net/hidentd/pkg-plist
Normal file
3
net/hidentd/pkg-plist
Normal file
|
@ -0,0 +1,3 @@
|
|||
sbin/hidentd
|
||||
%%PORTDOCS%%%%DOCSDIR%%/README
|
||||
%%PORTDOCS%%@dirrm %%DOCSDIR%%
|
Loading…
Reference in a new issue