mirror of
https://git.FreeBSD.org/ports.git
synced 2025-02-07 11:49:40 +00:00
![Gleb Popov](/assets/img/avatar_default.png)
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
573 B
Makefile
23 lines
573 B
Makefile
# $FreeBSD$
|
|
|
|
PORTNAME= snap
|
|
PORTVERSION= 1.0.0.1
|
|
PORTREVISION= 4
|
|
CATEGORIES= www haskell
|
|
|
|
MAINTAINER= haskell@FreeBSD.org
|
|
COMMENT= Top-level package for the Snap Web Framework
|
|
|
|
LICENSE= BSD3CLAUSE
|
|
|
|
USE_CABAL= aeson attoparsec cereal clientsession configurator \
|
|
directory-tree dlist hashable heist lens lifted-base \
|
|
map-syntax monad-control mtl mwc-random pwstore-fast \
|
|
snap-core snap-server transformers-base \
|
|
unordered-containers xmlhtml
|
|
|
|
IGNORE= Doesn't build with recent GHC version
|
|
|
|
.include "${.CURDIR}/../../lang/ghc/bsd.cabal.mk"
|
|
.include <bsd.port.mk>
|