diff options
author | erwin <erwin@FreeBSD.org> | 2006-07-14 23:48:41 +0800 |
---|---|---|
committer | erwin <erwin@FreeBSD.org> | 2006-07-14 23:48:41 +0800 |
commit | e781c99d4f8b77227fcd94588e7c145af9592b16 (patch) | |
tree | bbfdc4de54b2f9f548fd0ff6bcfd5ec6beb4c7f5 | |
parent | bd68d0aeeedfdb5c6d1fc85786ee2b02b1fcab0f (diff) | |
download | freebsd-ports-gnome-e781c99d4f8b77227fcd94588e7c145af9592b16.tar.gz freebsd-ports-gnome-e781c99d4f8b77227fcd94588e7c145af9592b16.tar.zst freebsd-ports-gnome-e781c99d4f8b77227fcd94588e7c145af9592b16.zip |
NNML::Server server implements a minimal NNTP server. It is (hope-)
fully conformant to rfc977. In addition the commands XOVER and
AUTHINFO are implemented.
Author: Ulrich Pfeifer <pfeifer@ls6.informatik.uni-dortmund.de>
WWW: http://search.cpan.org/dist/NNML/
PR: ports/100277
Submitted by: Gea-Suan Lin <gslin at gslin.org>
-rw-r--r-- | news/Makefile | 1 | ||||
-rw-r--r-- | news/p5-NNML/Makefile | 38 | ||||
-rw-r--r-- | news/p5-NNML/distinfo | 3 | ||||
-rw-r--r-- | news/p5-NNML/pkg-descr | 6 | ||||
-rw-r--r-- | news/p5-NNML/pkg-plist | 14 |
5 files changed, 62 insertions, 0 deletions
diff --git a/news/Makefile b/news/Makefile index ea7940196e5b..ec073f9428ba 100644 --- a/news/Makefile +++ b/news/Makefile @@ -68,6 +68,7 @@ SUBDIR += nzbget SUBDIR += nzbperl SUBDIR += p5-Gateway + SUBDIR += p5-NNML SUBDIR += p5-NNTPClient SUBDIR += p5-News-Article SUBDIR += p5-News-Article-NoCeM diff --git a/news/p5-NNML/Makefile b/news/p5-NNML/Makefile new file mode 100644 index 000000000000..02e44ec6a812 --- /dev/null +++ b/news/p5-NNML/Makefile @@ -0,0 +1,38 @@ +# New ports collection makefile for: p5-NNML +# Date created: 2006-07-14 +# Whom: Gea-Suan Lin <gslin@gslin.org> +# +# $FreeBSD$ +# + +PORTNAME= NNML +PORTVERSION= 1.14 +CATEGORIES= news perl5 +MASTER_SITES= ${MASTER_SITE_PERL_CPAN} +MASTER_SITE_SUBDIR= ../../authors/id/U/UL/ULPFR +PKGNAMEPREFIX= p5- + +MAINTAINER= gslin@gslin.org +COMMENT= A minimal NNTP server + +PERL_CONFIGURE= yes + +RESTRICTED= License unknown + +MAN1= nnmirror.1 nnsync.1 overview.1 +MAN3= NNML::Server.3 + +.include <bsd.port.pre.mk> + +.if ${PERL_LEVEL} < 500702 +BUILD_DEPENDS= ${SITE_PERL}/Net/Cmd.pm:${PORTSDIR}/net/p5-Net +RUN_DEPENDS= ${BUILD_DEPENDS} +.endif + +.if defined(BATCH) +CONFIGURE_ARGS+= < /dev/null +.else +IS_INTERACTIVE= yes +.endif + +.include <bsd.port.post.mk> diff --git a/news/p5-NNML/distinfo b/news/p5-NNML/distinfo new file mode 100644 index 000000000000..e24077fea124 --- /dev/null +++ b/news/p5-NNML/distinfo @@ -0,0 +1,3 @@ +MD5 (NNML-1.14.tar.gz) = dce28871d5405a01df056cf5ecd4e81a +SHA256 (NNML-1.14.tar.gz) = 659f3521ce4a2f3dc8fb783a1a64f4710ffc9450645b0401fcdbc389d7b0fa0e +SIZE (NNML-1.14.tar.gz) = 23594 diff --git a/news/p5-NNML/pkg-descr b/news/p5-NNML/pkg-descr new file mode 100644 index 000000000000..cfdb40cf7b3a --- /dev/null +++ b/news/p5-NNML/pkg-descr @@ -0,0 +1,6 @@ +NNML::Server server implements a minimal NNTP server. It is (hope-) +fully conformant to rfc977. In addition the commands XOVER and +AUTHINFO are implemented. + +Author: Ulrich Pfeifer <pfeifer@ls6.informatik.uni-dortmund.de> +WWW: http://search.cpan.org/dist/NNML/ diff --git a/news/p5-NNML/pkg-plist b/news/p5-NNML/pkg-plist new file mode 100644 index 000000000000..2cb574931c13 --- /dev/null +++ b/news/p5-NNML/pkg-plist @@ -0,0 +1,14 @@ +@comment $FreeBSD$ +bin/nnmirror +bin/nnsync +bin/overview +%%SITE_PERL%%/%%PERL_ARCH%%/auto/NNML/.packlist +%%SITE_PERL%%/NNML/Active.pm +%%SITE_PERL%%/NNML/Auth.pm +%%SITE_PERL%%/NNML/Config.pm +%%SITE_PERL%%/NNML/Connection.pm +%%SITE_PERL%%/NNML/Group.pm +%%SITE_PERL%%/NNML/Handle.pm +%%SITE_PERL%%/NNML/Server.pm +@dirrmtry %%SITE_PERL%%/%%PERL_ARCH%%/auto/NNML +@dirrmtry %%SITE_PERL%%/NNML |