summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGabor Pali <pgj@FreeBSD.org>2012-02-18 17:44:41 +0000
committerGabor Pali <pgj@FreeBSD.org>2012-02-18 17:44:41 +0000
commit9d838d17484b09c4679186f1669aec8aaa4ada43 (patch)
tree6e6af09a93fd7aabec9a74d22b3111ea1fa22c31
parentYesod is a framework designed to foster creation of RESTful web (diff)
Some helpers for using Persistent from Yesod.
WWW: http://www.yesodweb.com/ Obtained from: FreeBSD Haskell
Notes
Notes: svn path=/head/; revision=291725
-rw-r--r--lang/ghc/bsd.hackage.mk1
-rw-r--r--www/Makefile1
-rw-r--r--www/hs-yesod-persistent/Makefile21
-rw-r--r--www/hs-yesod-persistent/distinfo2
-rw-r--r--www/hs-yesod-persistent/pkg-descr3
5 files changed, 28 insertions, 0 deletions
diff --git a/lang/ghc/bsd.hackage.mk b/lang/ghc/bsd.hackage.mk
index 9820918af5f1..c3896237b06b 100644
--- a/lang/ghc/bsd.hackage.mk
+++ b/lang/ghc/bsd.hackage.mk
@@ -292,6 +292,7 @@ xmonad-contrib_port= x11-wm/hs-xmonad-contrib
xss-sanitize_port= www/hs-xss-sanitize
yaml_port= textproc/hs-yaml
yesod-core_port= www/hs-yesod-core
+yesod-persistent_port= www/hs-yesod-persistent
zip-archive_port= archivers/hs-zip-archive
zlib_port= archivers/hs-zlib
zlib-bindings_port= archivers/hs-zlib-bindings
diff --git a/www/Makefile b/www/Makefile
index b06e3611e504..99ed7199da20 100644
--- a/www/Makefile
+++ b/www/Makefile
@@ -317,6 +317,7 @@
SUBDIR += hs-webkit
SUBDIR += hs-xss-sanitize
SUBDIR += hs-yesod-core
+ SUBDIR += hs-yesod-persistent
SUBDIR += htdump
SUBDIR += html2hdml
SUBDIR += html2wml
diff --git a/www/hs-yesod-persistent/Makefile b/www/hs-yesod-persistent/Makefile
new file mode 100644
index 000000000000..acabafa90e2d
--- /dev/null
+++ b/www/hs-yesod-persistent/Makefile
@@ -0,0 +1,21 @@
+# New ports collection makefile for: hs-yesod-persistent
+# Date created: December 26, 2011
+# Whom: haskell@FreeBSD.org
+#
+# $FreeBSD$
+#
+
+PORTNAME= yesod-persistent
+PORTVERSION= 0.2.2
+CATEGORIES= www haskell
+
+MAINTAINER= haskell@FreeBSD.org
+COMMENT= Some helpers for using Persistent from Yesod
+
+LICENSE= BSD
+
+USE_CABAL= failure>=0.1 persistent>=0.6 persistent-template>=0.6 \
+ transformers>=0.2.2 yesod-core>=0.8
+
+.include "${.CURDIR}/../../lang/ghc/bsd.cabal.mk"
+.include <bsd.port.mk>
diff --git a/www/hs-yesod-persistent/distinfo b/www/hs-yesod-persistent/distinfo
new file mode 100644
index 000000000000..5dc380ecb0a4
--- /dev/null
+++ b/www/hs-yesod-persistent/distinfo
@@ -0,0 +1,2 @@
+SHA256 (cabal/yesod-persistent-0.2.2.tar.gz) = ec90ae9e42c2b7ef70268674c79c19b3f158baebb755780e7f2fd161fd64fb5d
+SIZE (cabal/yesod-persistent-0.2.2.tar.gz) = 1916
diff --git a/www/hs-yesod-persistent/pkg-descr b/www/hs-yesod-persistent/pkg-descr
new file mode 100644
index 000000000000..512178d23527
--- /dev/null
+++ b/www/hs-yesod-persistent/pkg-descr
@@ -0,0 +1,3 @@
+Some helpers for using Persistent from Yesod.
+
+WWW: http://www.yesodweb.com/