mirror of
https://git.FreeBSD.org/ports.git
synced 2025-01-19 08:13:21 +00:00
e2c3fdc1fd
As usual, it is recommended to rebuild or reinstall all the dependent ports and the lang/ghc port itself in one of the following ways: # portmaster -w -r ghc or # portupgrade -fr lang/ghc In case of pkg(8), it is probably safer to remove all the GHC-dependent packages along with GHC and reinstall everything from scratch. For example: # pkg query "%ro" ghc > ghc-pkgs.txt # pkg delete -y lang/ghc # pkg install -y `cat ghc-pkgs.txt` During update some hs-* ports got two PORTREVISION bumps in a row. Other ports got a PORTVERSION update together with one PORTREVISION bump. This is caused by bulk-bumping PORTREVISION of all hs-* ports. There are a lot of them updated, so figuring out which ones require a bump and which are not is too tedious. Approved by: tcberner (mentor) Differential Revision: https://reviews.freebsd.org/D18707
31 lines
891 B
Makefile
31 lines
891 B
Makefile
# $FreeBSD$
|
|
|
|
PORTNAME= yesod-bin
|
|
PORTVERSION= 1.6.0.3
|
|
PORTREVISION= 2
|
|
CATEGORIES= www haskell
|
|
|
|
MAINTAINER= haskell@FreeBSD.org
|
|
COMMENT= Yesod helper executable
|
|
|
|
LICENSE= MIT
|
|
LICENSE_FILE= ${WRKSRC}/LICENSE
|
|
|
|
USE_CABAL= async attoparsec>=0.10 base64-bytestring \
|
|
blaze-builder>=0.2.1.4 conduit>=1.2 conduit-extra \
|
|
data-default-class file-embed fsnotify>=0.0 ghc-paths>=0.1 \
|
|
http-client http-conduit>=2.1.4 http-reverse-proxy>=0.4 \
|
|
http-types>=0.7 lifted-base network \
|
|
optparse-applicative>=0.11 \
|
|
project-template>=0.1.1 resourcet>=0.3 safe-exceptions say shakespeare>=2.0 \
|
|
split>=0.2 streaming-commons tar>=0.4 \
|
|
transformers-compat typed-process unix-compat>=0.2 unordered-containers \
|
|
wai>=1.4 wai-extra warp>=1.3.7.5 warp-tls>=3.0.1 yaml>=0.8 \
|
|
zlib>=0.5
|
|
|
|
EXECUTABLE= yesod
|
|
STANDALONE= yes
|
|
|
|
.include "${.CURDIR}/../../lang/ghc/bsd.cabal.mk"
|
|
.include <bsd.port.mk>
|