mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-22 04:17:44 +00:00
98ae1eaf36
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 In ghc-pkgs.txt, check and remove all the packages that have been moved on the update, then use this command: # pkg install -y `cat ghc-pkgs.txt` Approved by: tcberner (mentor) Differential Revision: https://reviews.freebsd.org/D16038
23 lines
702 B
Makefile
23 lines
702 B
Makefile
# $FreeBSD$
|
|
|
|
PORTNAME= yesod-static
|
|
PORTVERSION= 1.6.0
|
|
PORTREVISION= 1
|
|
CATEGORIES= www haskell
|
|
|
|
MAINTAINER= haskell@FreeBSD.org
|
|
COMMENT= Static file serving subsite for Yesod Web Framework
|
|
|
|
LICENSE= MIT
|
|
|
|
USE_CABAL= async attoparsec>=0.10 base64-bytestring>=0.1.0.1 \
|
|
blaze-builder>=0.3 byteable>=0.1 conduit>=0.5 conduit-extra \
|
|
cryptohash>=0.11 cryptohash-conduit>=0.1 cryptonite-conduit \
|
|
css-text>=0.1.2 data-default file-embed>=0.0.4.1 hashable>=1.1 \
|
|
hjsmin http-types>=0.7 mime-types>=0.1 old-time>=1.0 \
|
|
resourcet>=0.4 unix-compat>=0.2 unordered-containers>=0.2 \
|
|
wai>=1.3 wai-app-static>=3.1 yesod-core>=1.4
|
|
|
|
.include "${.CURDIR}/../../lang/ghc/bsd.cabal.mk"
|
|
.include <bsd.port.mk>
|