- Update to 0.9.0
- Use the new options framework Obtained from: FreeBSD Haskell
This commit is contained in:
parent
4cc9285ec3
commit
45c7c78606
Notes:
svn2git
2021-03-31 03:12:20 +00:00
svn path=/head/; revision=301922
@ -6,7 +6,7 @@
|
|||||||
#
|
#
|
||||||
|
|
||||||
PORTNAME= snap-server
|
PORTNAME= snap-server
|
||||||
PORTVERSION= 0.8.1.1
|
PORTVERSION= 0.9.0
|
||||||
CATEGORIES= www haskell
|
CATEGORIES= www haskell
|
||||||
|
|
||||||
MAINTAINER= haskell@FreeBSD.org
|
MAINTAINER= haskell@FreeBSD.org
|
||||||
@ -20,24 +20,25 @@ USE_CABAL= attoparsec>=0.10 attoparsec-enumerator>=0.3 \
|
|||||||
blaze-builder>=0.2.1.4 blaze-builder-enumerator>=0.2.0 \
|
blaze-builder>=0.2.1.4 blaze-builder-enumerator>=0.2.0 \
|
||||||
bytestring-nums case-insensitive>=0.3 directory-tree>=0.10 \
|
bytestring-nums case-insensitive>=0.3 directory-tree>=0.10 \
|
||||||
enumerator>=0.4.15 MonadCatchIO-transformers>=0.2.1 \
|
enumerator>=0.4.15 MonadCatchIO-transformers>=0.2.1 \
|
||||||
mtl>=2 murmur-hash>=0.1 network>=2.3 PSQueue>=1.1 \
|
mtl>=2 murmur-hash>=0.1 network>=2.3 snap-core>=0.9 \
|
||||||
snap-core>=0.8.1 text>=0.11 transformers>=0.2 unix-compat>=0.2 \
|
text>=0.11 transformers>=0.2 unix-compat>=0.2 vector>=0.7 \
|
||||||
vector>=0.7 vector-algorithms>=0.4
|
vector-algorithms>=0.4
|
||||||
|
|
||||||
OPTIONS= LIBEV "Use libev" off \
|
OPTIONS_DEFINE= LIBEV OPENSSL
|
||||||
OPENSSL "Enable HTTPS support using the HsOpenSSL library" off
|
|
||||||
|
LIBEV_DESC= Use libev
|
||||||
|
OPENSSL_DESC= Enable HTTPS support using the HsOpenSSL library
|
||||||
|
|
||||||
.include "${.CURDIR}/../../lang/ghc/bsd.cabal.options.mk"
|
|
||||||
.include <bsd.port.options.mk>
|
.include <bsd.port.options.mk>
|
||||||
|
|
||||||
.if defined(WITH_LIBEV)
|
.if ${PORT_OPTIONS:MLIBEV}
|
||||||
CONFIGURE_ARGS+= --flags="libev"
|
CONFIGURE_ARGS+= --flags="libev"
|
||||||
USE_CABAL+= hlibev
|
USE_CABAL+= hlibev
|
||||||
.else
|
.else
|
||||||
CONFIGURE_ARGS+= --flags="-libev"
|
CONFIGURE_ARGS+= --flags="-libev"
|
||||||
.endif
|
.endif
|
||||||
|
|
||||||
.if defined(WITH_OPENSSL)
|
.if ${PORT_OPTIONS:MOPENSSL}
|
||||||
CONFIGURE_ARGS+= --flags="openssl"
|
CONFIGURE_ARGS+= --flags="openssl"
|
||||||
USE_CABAL+= HsOpenSSL
|
USE_CABAL+= HsOpenSSL
|
||||||
.else
|
.else
|
||||||
|
@ -1,2 +1,2 @@
|
|||||||
SHA256 (cabal/snap-server-0.8.1.1.tar.gz) = 86683ed439b7cad292b7c5d5e12d12131ec69bdd5df568d0b68b18065dfa874c
|
SHA256 (cabal/snap-server-0.9.0.tar.gz) = 6a0f085da3741c1e0529f31d7d5d1b670b360fb7ddeacbd648dcea6778f0b28a
|
||||||
SIZE (cabal/snap-server-0.8.1.1.tar.gz) = 63196
|
SIZE (cabal/snap-server-0.9.0.tar.gz) = 58291
|
||||||
|
Loading…
Reference in New Issue
Block a user