1
0
mirror of https://git.FreeBSD.org/ports.git synced 2025-01-24 09:25:01 +00:00

A small program that implements just enough of the NNTP protocol

to authenticate client requests. After authentication nnap bounces
	the client TCP connection to an open NNTP server.

PR:		ports/38578
Submitted by:	Lasse L. Johnsen <lasse@freebsdcluster.org>
This commit is contained in:
Ollivier Robert 2002-06-08 18:08:38 +00:00
parent 747f5d83f5
commit e5eae02846
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=60874
5 changed files with 37 additions and 0 deletions

31
news/nnap/Makefile Normal file
View File

@ -0,0 +1,31 @@
# ex:ts=8
# Ports collection makefile for: nnap
# Date created: Sun May 26, 2002
# Whom: Lasse L. Johnsen (lasse@freebsdcluster.org)
#
# $FreeBSD$
#
PORTNAME= nnap
PORTVERSION= 1.0
CATEGORIES= news
MASTER_SITES= http://www.freebsdcluster.org/~lasse/software/ \
${MASTER_SITE_LOCAL}
DISTNAME= nnap
EXTRACT_SUFX= .c
MAINTAINER= lasse@freebsdcluster.org
NO_WRKSUBDIR= yes
do-extract:
@${MKDIR} ${WRKDIR}
@${CP} ${DISTDIR}/${DISTFILES} ${WRKDIR}
do-build:
(cd ${WRKSRC} && ${CC} ${CFLAGS} -o ${DISTNAME} ${DISTNAME}.c)
do-install:
${INSTALL_PROGRAM} ${WRKSRC}/${DISTNAME} ${PREFIX}/sbin
.include <bsd.port.mk>

1
news/nnap/distinfo Normal file
View File

@ -0,0 +1 @@
MD5 (nnap.c) = ea48d42df822cdcc566549638681f4e4

1
news/nnap/pkg-comment Normal file
View File

@ -0,0 +1 @@
Nnap is a lightweight NNTP authentication proxy

3
news/nnap/pkg-descr Normal file
View File

@ -0,0 +1,3 @@
A small program that implements just enough of the NNTP protocol
to authenticate client requests. After authentication nnap bounces
the client TCP connection to an open NNTP server.

1
news/nnap/pkg-plist Normal file
View File

@ -0,0 +1 @@
sbin/nnap