summaryrefslogtreecommitdiff
path: root/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
parentHamlet gives you a type-safe tool for generating HTML code. It works (diff)
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')
-rw-r--r--mail/Makefile1
-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
4 files changed, 30 insertions, 0 deletions
diff --git a/mail/Makefile b/mail/Makefile
index fb158a30a96d..57e3194b2736 100644
--- a/mail/Makefile
+++ b/mail/Makefile
@@ -196,6 +196,7 @@
SUBDIR += hotwayd
SUBDIR += hs-email-validate
SUBDIR += hs-mime
+ SUBDIR += hs-mime-mail
SUBDIR += ifile
SUBDIR += ilohamail
SUBDIR += ilohamail-devel
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