diff options
author | pav <pav@FreeBSD.org> | 2005-03-09 04:20:19 +0800 |
---|---|---|
committer | pav <pav@FreeBSD.org> | 2005-03-09 04:20:19 +0800 |
commit | 0e56a7c8ce1c319a5b88c564588a374c5e14548c (patch) | |
tree | d39cba3536075ba1f74e3df7918c35f4423df1a4 | |
parent | 0490aae370847d70b2f6f495bc3d9261a7ab38d6 (diff) | |
download | freebsd-ports-gnome-0e56a7c8ce1c319a5b88c564588a374c5e14548c.tar.gz freebsd-ports-gnome-0e56a7c8ce1c319a5b88c564588a374c5e14548c.tar.zst freebsd-ports-gnome-0e56a7c8ce1c319a5b88c564588a374c5e14548c.zip |
PEAR::Net_LMTP provides an implementation of the RFC2033 LMTP using
PEAR::Net_Socket and PEAR::Auth_SASL.
PR: ports/78553
Submitted by: Antonio Carlos Venancio Junior <antonio@php.net>
-rw-r--r-- | mail/Makefile | 1 | ||||
-rw-r--r-- | mail/pear-Net_LMTP/Makefile | 25 | ||||
-rw-r--r-- | mail/pear-Net_LMTP/distinfo | 2 | ||||
-rw-r--r-- | mail/pear-Net_LMTP/pkg-descr | 4 |
4 files changed, 32 insertions, 0 deletions
diff --git a/mail/Makefile b/mail/Makefile index e8f15392277b..34419b676fc2 100644 --- a/mail/Makefile +++ b/mail/Makefile @@ -322,6 +322,7 @@ SUBDIR += pear-Mail_Queue SUBDIR += pear-Net_Cyrus SUBDIR += pear-Net_IMAP + SUBDIR += pear-Net_LMTP SUBDIR += pecl-mailparse SUBDIR += perdition SUBDIR += pflogstats diff --git a/mail/pear-Net_LMTP/Makefile b/mail/pear-Net_LMTP/Makefile new file mode 100644 index 000000000000..21b3acc2fe79 --- /dev/null +++ b/mail/pear-Net_LMTP/Makefile @@ -0,0 +1,25 @@ +# Ports collection makefile for: pear-Net_LMTP +# Date created: 07 March 2005 +# Whom: Antonio Carlos Venancio Junior (<antonio@inf.ufsc.br>) +# +# $FreeBSD$ +# + +PORTNAME= Net_LMTP +PORTVERSION= 1.0.1 +CATEGORIES= mail www pear + +MAINTAINER= antonio@php.net +COMMENT= PEAR implementation of the RFC2033 LMTP protocol + +BUILD_DEPENDS= ${PEARDIR}/Net/Socket.php:${PORTSDIR}/net/pear-Net_Socket +RUN_DEPENDS= ${BUILD_DEPENDS} + +CATEGORY= Net +FILES= LMTP.php +TESTS= test_lmtp.php +_TESTSDIR= . + +.include <bsd.port.pre.mk> +.include "${PORTSDIR}/devel/pear-PEAR/Makefile.common" +.include <bsd.port.post.mk> diff --git a/mail/pear-Net_LMTP/distinfo b/mail/pear-Net_LMTP/distinfo new file mode 100644 index 000000000000..b7996d9e3f48 --- /dev/null +++ b/mail/pear-Net_LMTP/distinfo @@ -0,0 +1,2 @@ +MD5 (PEAR/Net_LMTP-1.0.1.tgz) = 646d1c5293b069cda9b4a94011a18e20 +SIZE (PEAR/Net_LMTP-1.0.1.tgz) = 5596 diff --git a/mail/pear-Net_LMTP/pkg-descr b/mail/pear-Net_LMTP/pkg-descr new file mode 100644 index 000000000000..a057ff6c2034 --- /dev/null +++ b/mail/pear-Net_LMTP/pkg-descr @@ -0,0 +1,4 @@ +PEAR::Net_LMTP provides an implementation of the RFC2033 LMTP using +PEAR::Net_Socket and PEAR::Auth_SASL. + +WWW: http://pear.php.net/package/Net_LMTP/ |