diff options
author | pav <pav@FreeBSD.org> | 2004-03-15 07:29:25 +0800 |
---|---|---|
committer | pav <pav@FreeBSD.org> | 2004-03-15 07:29:25 +0800 |
commit | d6505e24c0717bc38f7bf9b010dffc2a5b5ca20f (patch) | |
tree | 8d6c9f6afb0a036067ecd9a1ab4f01d15e4c63e0 | |
parent | 55fb6653638ad372267eeeb4585dbaec8ba76596 (diff) | |
download | freebsd-ports-gnome-d6505e24c0717bc38f7bf9b010dffc2a5b5ca20f.tar.gz freebsd-ports-gnome-d6505e24c0717bc38f7bf9b010dffc2a5b5ca20f.tar.zst freebsd-ports-gnome-d6505e24c0717bc38f7bf9b010dffc2a5b5ca20f.zip |
Add pear-Net_IMAP, a PEAR class that provides an implementation of the IMAP
protocol using PEAR's Net_Socket:: class.
PR: ports/64165
Submitted by: <bra@fsn.hu>
-rw-r--r-- | mail/Makefile | 1 | ||||
-rw-r--r-- | mail/pear-Net_IMAP/Makefile | 23 | ||||
-rw-r--r-- | mail/pear-Net_IMAP/distinfo | 2 | ||||
-rw-r--r-- | mail/pear-Net_IMAP/pkg-descr | 4 |
4 files changed, 30 insertions, 0 deletions
diff --git a/mail/Makefile b/mail/Makefile index 5ab7a74e3787..625feb1031d4 100644 --- a/mail/Makefile +++ b/mail/Makefile @@ -260,6 +260,7 @@ SUBDIR += pathalias SUBDIR += pear-Mail SUBDIR += pear-Mail_Mime + SUBDIR += pear-Net_IMAP SUBDIR += pear-mailparse SUBDIR += perdition SUBDIR += pflogstats diff --git a/mail/pear-Net_IMAP/Makefile b/mail/pear-Net_IMAP/Makefile new file mode 100644 index 000000000000..dca2983e31e5 --- /dev/null +++ b/mail/pear-Net_IMAP/Makefile @@ -0,0 +1,23 @@ +# Ports collection makefile for: pear-Net_IMAP +# Date created: 12 march 2004 +# Whom: Attila Nagy <bra@fsn.hu> +# +# $FreeBSD$ +# + +PORTNAME= Net_IMAP +PORTVERSION= 0.7.1 +CATEGORIES= mail net pear + +MAINTAINER= bra@fsn.hu +COMMENT= PEAR class that provides an implementation of the IMAP protocol + +BUILD_DEPENDS= ${PEARDIR}/Net/Socket.php:${PORTSDIR}/net/pear-Net_Socket +RUN_DEPENDS= ${BUILD_DEPENDS} + +CATEGORY= Net +FILES= IMAP.php IMAPProtocol.php + +.include <bsd.port.pre.mk> +.include "${PORTSDIR}/devel/pear-PEAR/Makefile.common" +.include <bsd.port.post.mk> diff --git a/mail/pear-Net_IMAP/distinfo b/mail/pear-Net_IMAP/distinfo new file mode 100644 index 000000000000..e37bb1271615 --- /dev/null +++ b/mail/pear-Net_IMAP/distinfo @@ -0,0 +1,2 @@ +MD5 (PEAR/Net_IMAP-0.7.1.tgz) = b080328b230dea1fe15a1943dd0b3dcc +SIZE (PEAR/Net_IMAP-0.7.1.tgz) = 26109 diff --git a/mail/pear-Net_IMAP/pkg-descr b/mail/pear-Net_IMAP/pkg-descr new file mode 100644 index 000000000000..12cf713ff262 --- /dev/null +++ b/mail/pear-Net_IMAP/pkg-descr @@ -0,0 +1,4 @@ +This PEAR class provides an implementation of the IMAP protocol using PEAR's +Net_Socket:: class. + +WWW: http://pear.php.net/package/Net_IMAP/ |