- update to 2.7

- code has shifted to new site
- update pkg-descr
- pet portlint and rclint

PR:		240175
Approved by:	dean@odyssey.apana.org.au (maintainer timeout)
Relnotes:	http://www.guru-group.fi/~too/sw/identd.readme
This commit is contained in:
Jason Helfman 2019-09-13 02:08:08 +00:00
parent d4ad7503a0
commit 63c60732d2
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=511912
4 changed files with 541 additions and 438 deletions

View File

@ -2,8 +2,7 @@
# $FreeBSD$
PORTNAME= fakeident
PORTVERSION= 1.7
PORTREVISION= 3
PORTVERSION= 2.7
CATEGORIES= security
MASTER_SITES= # empty
DISTFILES= # empty
@ -15,11 +14,12 @@ COMMENT= Tool that replies with a standard answer to incoming identd requests
LICENSE= GPLv2+
PLIST_FILES= sbin/identd
USE_RC_SUBR= fakeidentd
do-build:
@${MKDIR} ${WRKSRC}
${CC} ${CFLAGS} -o ${WRKSRC}/identd ${FILESDIR}/identd.c
@${MKDIR} ${WRKSRC} && ${CP} ${FILESDIR}/identd.c ${WRKSRC}
cd ${WRKSRC} && ${SH} identd.c CC=${CC} ${CFLAGS}
do-install:
${INSTALL_PROGRAM} ${WRKSRC}/identd ${STAGEDIR}${PREFIX}/sbin

View File

@ -17,13 +17,14 @@
# The username does not need to exist anywhere in your system.
name=fakeidentd
desc="Standalone 'fake' ident daemon"
rcvar=fakeidentd_enable
load_rc_config $name
: ${fakeidentd_enable:="NO"}
command=%%PREFIX%%/sbin/identd
command="%%PREFIX%%/sbin/identd"
pidfile=/var/run/identd.pid
command_args="nobody && echo -n ' fakeidentd'"

File diff suppressed because it is too large Load Diff

View File

@ -1,5 +1,9 @@
Fake Identd is a tool that replies with a standard answer to all incoming
identd requests on a host, making it nearly perfect for a masquerading
router.
This program is standalone 'fake' ident daemon. This program does
not fork() but is configured to handle up to 20 concurrent connections.
Since one connection should not last long, if all 20 connections are
in use, the next connection will close the oldest connection data
has been read. This way this program is not very vulnerable to so
called `denial of service' attack, thus making this ideal "identd"
to be used in a firewall, IP masquerading hosts etc.
WWW: http://hangout.de/fakeidentd/index.html
WWW: http://www.guru-group.fi/~too/sw/identd.readme