diff options
author | pgj <pgj@FreeBSD.org> | 2011-08-14 05:50:10 +0800 |
---|---|---|
committer | pgj <pgj@FreeBSD.org> | 2011-08-14 05:50:10 +0800 |
commit | 688223077e745e13750229d4a0a670ef5ca06e0d (patch) | |
tree | c80de01a6844abe007e321e1b5a372f092f3746f /www | |
parent | 59ef17bb6e7393c03ce7a07657d8146db8d4caea (diff) | |
download | freebsd-ports-gnome-688223077e745e13750229d4a0a670ef5ca06e0d.tar.gz freebsd-ports-gnome-688223077e745e13750229d4a0a670ef5ca06e0d.tar.zst freebsd-ports-gnome-688223077e745e13750229d4a0a670ef5ca06e0d.zip |
Snap is a simple and fast web development framework and server written in
Haskell.
WWW: http://snapframework.com/
Obtained from: FreeBSD Haskell
Diffstat (limited to 'www')
-rw-r--r-- | www/Makefile | 1 | ||||
-rw-r--r-- | www/hs-snap-core/Makefile | 25 | ||||
-rw-r--r-- | www/hs-snap-core/distinfo | 2 | ||||
-rw-r--r-- | www/hs-snap-core/files/patch-snap-core.cabal | 11 | ||||
-rw-r--r-- | www/hs-snap-core/pkg-descr | 4 |
5 files changed, 43 insertions, 0 deletions
diff --git a/www/Makefile b/www/Makefile index f05f48e1bcff..4e7934f5f768 100644 --- a/www/Makefile +++ b/www/Makefile @@ -317,6 +317,7 @@ SUBDIR += hs-http-types SUBDIR += hs-oeis SUBDIR += hs-scgi + SUBDIR += hs-snap-core SUBDIR += hs-url SUBDIR += hs-wai SUBDIR += hs-warp diff --git a/www/hs-snap-core/Makefile b/www/hs-snap-core/Makefile new file mode 100644 index 000000000000..3331b13d1f38 --- /dev/null +++ b/www/hs-snap-core/Makefile @@ -0,0 +1,25 @@ +# New ports collection makefile for: hs-snap-core +# Date created: September 19, 2010 +# Whom: haskell@FreeBSD.org +# +# $FreeBSD$ +# + +PORTNAME= snap-core +PORTVERSION= 0.5.2 +CATEGORIES= www haskell + +MAINTAINER= haskell@FreeBSD.org +COMMENT= Snap: A Haskell Web Framework (Core) + +LICENSE= BSD + +CABAL_SETUP= Setup.hs +USE_CABAL= attoparsec>=0.8.0.2 attoparsec-enumerator>=0.2.0.3 \ + blaze-builder>=0.2.1.4 bytestring-nums case-insensitive \ + deepseq>=1.1 dlist>=0.5 enumerator>=0.4.13.1 \ + MonadCatchIO-transformers>=0.2.1 mtl>=2 text>=0.11 \ + transformers>=0.2 unix-compat>=0.2 vector>=0.6 zlib + +.include "${.CURDIR}/../../lang/ghc/bsd.cabal.mk" +.include <bsd.port.mk> diff --git a/www/hs-snap-core/distinfo b/www/hs-snap-core/distinfo new file mode 100644 index 000000000000..62a6ef3f3e0d --- /dev/null +++ b/www/hs-snap-core/distinfo @@ -0,0 +1,2 @@ +SHA256 (cabal/snap-core-0.5.2.tar.gz) = 14d234b4706e5e993e1e5c4178ede3e8ccafa070daf96eb826bc0681e17b52f2 +SIZE (cabal/snap-core-0.5.2.tar.gz) = 74409 diff --git a/www/hs-snap-core/files/patch-snap-core.cabal b/www/hs-snap-core/files/patch-snap-core.cabal new file mode 100644 index 000000000000..13f6f5ad7b5d --- /dev/null +++ b/www/hs-snap-core/files/patch-snap-core.cabal @@ -0,0 +1,11 @@ +--- ./snap-core.cabal.orig 2011-06-23 17:08:48.000000000 +0200 ++++ ./snap-core.cabal 2011-07-18 15:34:06.000000000 +0200 +@@ -133,7 +133,7 @@ + blaze-builder >= 0.2.1.4 && <0.4, + bytestring, + bytestring-nums, +- case-insensitive >= 0.2 && < 0.3, ++ case-insensitive >= 0.2, + containers, + deepseq >= 1.1 && <1.2, + directory, diff --git a/www/hs-snap-core/pkg-descr b/www/hs-snap-core/pkg-descr new file mode 100644 index 000000000000..3b7337b19caf --- /dev/null +++ b/www/hs-snap-core/pkg-descr @@ -0,0 +1,4 @@ +Snap is a simple and fast web development framework and server written in +Haskell. + +WWW: http://snapframework.com/ |