diff options
author | Edwin Groothuis <edwin@FreeBSD.org> | 2003-08-25 02:01:11 +0000 |
---|---|---|
committer | Edwin Groothuis <edwin@FreeBSD.org> | 2003-08-25 02:01:11 +0000 |
commit | 1b7bf9220b00b440afbf03f8b0c34609123d5f61 (patch) | |
tree | acbe65e6227a8cdf7b8608c90224929882481a3c /net/pear-Net_NNTP | |
parent | d7fb81a04e7c26ffcb7b62e9459d2ec20ed19c5d (diff) |
[new port] net/pear-Net_NNTP: PEAR class that provides an implementation
of the NNTP protocol
Complete class for communicating with an NNTP server (this
is: the USENET), including: post, view, list, authentication,
overview, header manipulation, NNTP commands debugger, etc.
PR: ports/55353
Submitted by: Clement Laforet <sheepkiller@cultdeadsheep.org>
Notes
Notes:
svn path=/head/; revision=87639
Diffstat (limited to 'net/pear-Net_NNTP')
-rw-r--r-- | net/pear-Net_NNTP/Makefile | 28 | ||||
-rw-r--r-- | net/pear-Net_NNTP/distinfo | 1 | ||||
-rw-r--r-- | net/pear-Net_NNTP/pkg-descr | 5 | ||||
-rw-r--r-- | net/pear-Net_NNTP/pkg-plist | 4 |
4 files changed, 38 insertions, 0 deletions
diff --git a/net/pear-Net_NNTP/Makefile b/net/pear-Net_NNTP/Makefile new file mode 100644 index 000000000000..d415f3e39062 --- /dev/null +++ b/net/pear-Net_NNTP/Makefile @@ -0,0 +1,28 @@ +# Ports collection makefile for: pear-Net_NNTP +# Date created: 07 August 2003 +# Whom: Clement Laforet <sheepkiller@cultdeadsheep.org> +# +# $FreeBSD$ +# + +PORTNAME= Net_NNTP +PORTVERSION= 0.2 +CATEGORIES= net news www + +MAINTAINER= sheepkiller@cultdeadsheep.org +COMMENT= PEAR class that provides an implementation of the NNTP protocol + +BUILD_DEPENDS= ${PEARDIR}/PEAR.php:${PORTSDIR}/devel/pear-PEAR +RUN_DEPENDS= ${BUILD_DEPENDS} + +.include <bsd.port.pre.mk> +.include "${.CURDIR}/../../devel/pear-PEAR/Makefile.common" + +do-install: +.if !exists(${PEARDIR}/Net) + @${MKDIR} ${PEARDIR}/Net +.endif + @${CP} -p ${WRKSRC}/NNTP.php ${PEARDIR}/Net + @${CHOWN} -R ${SHAREOWN}:${SHAREGRP} ${PEARDIR}/Net + +.include <bsd.port.post.mk> diff --git a/net/pear-Net_NNTP/distinfo b/net/pear-Net_NNTP/distinfo new file mode 100644 index 000000000000..64899f561911 --- /dev/null +++ b/net/pear-Net_NNTP/distinfo @@ -0,0 +1 @@ +MD5 (PEAR/Net_NNTP-0.2.tgz) = 7f2591f11bef81202dd4a09070a33a28 diff --git a/net/pear-Net_NNTP/pkg-descr b/net/pear-Net_NNTP/pkg-descr new file mode 100644 index 000000000000..b7b55e3e58cf --- /dev/null +++ b/net/pear-Net_NNTP/pkg-descr @@ -0,0 +1,5 @@ +Complete class for communicating with an NNTP server (this is: the USENET), +including: post, view, list, authentication, overview, header manipulation, +NNTP commands debugger, etc. + +WWW: http://pear.php.net/package-info.php?package=Net_NNTP diff --git a/net/pear-Net_NNTP/pkg-plist b/net/pear-Net_NNTP/pkg-plist new file mode 100644 index 000000000000..46088154112c --- /dev/null +++ b/net/pear-Net_NNTP/pkg-plist @@ -0,0 +1,4 @@ +%%PEARDIR%%/Net/NNTP.php +%%PKGREGDIR%%/package.xml +@dirrm %%PKGREGDIR%% +@unexec rmdir %D/share/pear/Net 2> /dev/null || true |