aboutsummaryrefslogtreecommitdiff
path: root/mail/hs-mime-mail
diff options
context:
space:
mode:
authorGabor Pali <pgj@FreeBSD.org>2012-02-18 17:15:46 +0000
committerGabor Pali <pgj@FreeBSD.org>2012-02-18 17:15:46 +0000
commitb41bcdb179233c9e18a93b8716e857c6dd8df2f9 (patch)
treef4504050a0e6d435d0851c246d45c9efa0adacb7 /mail/hs-mime-mail
parentf2ec06ecbdb2af681c51036ecc63627e2f5f3d0f (diff)
downloadports-b41bcdb179233c9e18a93b8716e857c6dd8df2f9.tar.gz
ports-b41bcdb179233c9e18a93b8716e857c6dd8df2f9.zip
This package provides some high-level datatypes for declaring MIME email
messages, functions for automatically composing these into bytestrings, and the ability to send bytestrings via the sendmail executable. You can also use any other library you wish to send via different methods, eg directly to SMTP. WWW: http://github.com/snoyberg/mime-mail Obtained from: FreeBSD Haskell
Notes
Notes: svn path=/head/; revision=291712
Diffstat (limited to 'mail/hs-mime-mail')
-rw-r--r--mail/hs-mime-mail/Makefile20
-rw-r--r--mail/hs-mime-mail/distinfo2
-rw-r--r--mail/hs-mime-mail/pkg-descr7
3 files changed, 29 insertions, 0 deletions
diff --git a/mail/hs-mime-mail/Makefile b/mail/hs-mime-mail/Makefile
new file mode 100644
index 000000000000..36ef82704594
--- /dev/null
+++ b/mail/hs-mime-mail/Makefile
@@ -0,0 +1,20 @@
+# New ports collection makefile for: hs-mime-mail
+# Date created: December 26, 2011
+# Whom: haskell@FreeBSD.org
+#
+# $FreeBSD$
+#
+
+PORTNAME= mime-mail
+PORTVERSION= 0.4.1.1
+CATEGORIES= mail haskell
+
+MAINTAINER= haskell@FreeBSD.org
+COMMENT= Compose MIME email messages
+
+LICENSE= BSD
+
+USE_CABAL= base64-bytestring>=0.1 blaze-builder>=0.2.1 text>=0.7
+
+.include "${.CURDIR}/../../lang/ghc/bsd.cabal.mk"
+.include <bsd.port.mk>
diff --git a/mail/hs-mime-mail/distinfo b/mail/hs-mime-mail/distinfo
new file mode 100644
index 000000000000..9274db6c9b84
--- /dev/null
+++ b/mail/hs-mime-mail/distinfo
@@ -0,0 +1,2 @@
+SHA256 (cabal/mime-mail-0.4.1.1.tar.gz) = c41b2e8a5893f1e3ff49d357ec427d9c82692822291444615a6a4aed0d83ba05
+SIZE (cabal/mime-mail-0.4.1.1.tar.gz) = 5959
diff --git a/mail/hs-mime-mail/pkg-descr b/mail/hs-mime-mail/pkg-descr
new file mode 100644
index 000000000000..c45a8c80689c
--- /dev/null
+++ b/mail/hs-mime-mail/pkg-descr
@@ -0,0 +1,7 @@
+This package provides some high-level datatypes for declaring MIME email
+messages, functions for automatically composing these into bytestrings,
+and the ability to send bytestrings via the sendmail executable. You
+can also use any other library you wish to send via different methods,
+eg directly to SMTP.
+
+WWW: http://github.com/snoyberg/mime-mail