diff options
author | miwi <miwi@FreeBSD.org> | 2006-12-27 04:50:32 +0800 |
---|---|---|
committer | miwi <miwi@FreeBSD.org> | 2006-12-27 04:50:32 +0800 |
commit | 5a36bd178419cab773de736f86bbd8b5ce935b71 (patch) | |
tree | 0594367f382bb48f1cfd56f5c7fc8235fb97e9ab /mail | |
parent | a6b925bb938adae5a347be2c4186bb26a5b4102b (diff) | |
download | freebsd-ports-gnome-5a36bd178419cab773de736f86bbd8b5ce935b71.tar.gz freebsd-ports-gnome-5a36bd178419cab773de736f86bbd8b5ce935b71.tar.zst freebsd-ports-gnome-5a36bd178419cab773de736f86bbd8b5ce935b71.zip |
It can split messages inside a Mbox, return the number of messages, return,
update or remove an specific message or add a message on the Mbox.
WWW: http://pear.php.net/package/Mail_Mbox/
Diffstat (limited to 'mail')
-rw-r--r-- | mail/Makefile | 1 | ||||
-rw-r--r-- | mail/pear-Mail_Mbox/Makefile | 25 | ||||
-rw-r--r-- | mail/pear-Mail_Mbox/distinfo | 3 | ||||
-rw-r--r-- | mail/pear-Mail_Mbox/pkg-descr | 4 |
4 files changed, 33 insertions, 0 deletions
diff --git a/mail/Makefile b/mail/Makefile index ba7774d0a95f..e2a2099dfa33 100644 --- a/mail/Makefile +++ b/mail/Makefile @@ -375,6 +375,7 @@ SUBDIR += pear-Contact_Vcard_Parse SUBDIR += pear-MIME_Type SUBDIR += pear-Mail + SUBDIR += pear-Mail_Mbox SUBDIR += pear-Mail_Mime SUBDIR += pear-Mail_Queue SUBDIR += pear-Net_Cyrus diff --git a/mail/pear-Mail_Mbox/Makefile b/mail/pear-Mail_Mbox/Makefile new file mode 100644 index 000000000000..352ade79e4f8 --- /dev/null +++ b/mail/pear-Mail_Mbox/Makefile @@ -0,0 +1,25 @@ +# Ports collection makefile for: pear-Mail_Mbox +# Date created: 27 December 2006 +# Whom: Martin Wilke <miwi@FreeBSD.org> +# +# $FreeBSD$ +# + +PORTNAME= Mail_Mbox +PORTVERSION= 0.5.1 +CATEGORIES= mail www pear + +MAINTAINER= miwi@FreeBSD.org +COMMENT= PEAR Read and modify Unix MBOXes + +BUILD_DEPENDS= ${PEARDIR}/PEAR.php:${PORTSDIR}/devel/pear +RUN_DEPENDS= ${BUILD_DEPENDS} + +CATEGORY= Mail +FILES= Mail/Mbox.php +EXAMPLES= demobox mimedecode.php read.php modify.php +TESTS= AllTests.php Mail_MboxTest.php testbox + +.include <bsd.port.pre.mk> +.include "${PORTSDIR}/devel/pear/bsd.pear.mk" +.include <bsd.port.post.mk> diff --git a/mail/pear-Mail_Mbox/distinfo b/mail/pear-Mail_Mbox/distinfo new file mode 100644 index 000000000000..858d54019c18 --- /dev/null +++ b/mail/pear-Mail_Mbox/distinfo @@ -0,0 +1,3 @@ +MD5 (PEAR/Mail_Mbox-0.5.1.tgz) = ff801fd467812241a6225594ad17a3ce +SHA256 (PEAR/Mail_Mbox-0.5.1.tgz) = 04c1e3ba96d67cbd78f067aa638ffd3c71b27f63a718d50446420da5f6fbdd96 +SIZE (PEAR/Mail_Mbox-0.5.1.tgz) = 12453 diff --git a/mail/pear-Mail_Mbox/pkg-descr b/mail/pear-Mail_Mbox/pkg-descr new file mode 100644 index 000000000000..41708d49d532 --- /dev/null +++ b/mail/pear-Mail_Mbox/pkg-descr @@ -0,0 +1,4 @@ +It can split messages inside a Mbox, return the number of messages, return, +update or remove an specific message or add a message on the Mbox. + +WWW: http://pear.php.net/package/Mail_Mbox/ |