diff options
author | edwin <edwin@FreeBSD.org> | 2003-08-25 10:01:11 +0800 |
---|---|---|
committer | edwin <edwin@FreeBSD.org> | 2003-08-25 10:01:11 +0800 |
commit | d0b2d8ef989f0df697365b75b6bdecaaf3811e65 (patch) | |
tree | 8f2ed21303a47f88db2a46b078900c70ad9c5140 | |
parent | 9c2ceaa7969e19a3aa5978d3338877cfbdadb932 (diff) | |
download | freebsd-ports-gnome-d0b2d8ef989f0df697365b75b6bdecaaf3811e65.tar.gz freebsd-ports-gnome-d0b2d8ef989f0df697365b75b6bdecaaf3811e65.tar.zst freebsd-ports-gnome-d0b2d8ef989f0df697365b75b6bdecaaf3811e65.zip |
[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>
-rw-r--r-- | net/Makefile | 1 | ||||
-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 |
5 files changed, 39 insertions, 0 deletions
diff --git a/net/Makefile b/net/Makefile index bbf9610a6bd1..a71f13a3ba68 100644 --- a/net/Makefile +++ b/net/Makefile @@ -518,6 +518,7 @@ SUBDIR += pchar SUBDIR += pcnfsd SUBDIR += pdnsd + SUBDIR += pear-Net_NNTP SUBDIR += pear-Net_SMTP SUBDIR += pear-Net_Sieve SUBDIR += pear-Net_Socket 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 |