mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-24 04:33:24 +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
27 lines
612 B
Makefile
27 lines
612 B
Makefile
# $FreeBSD$
|
|
|
|
PORTNAME= certificate
|
|
PORTVERSION= 1.3.9
|
|
PORTREVISION= 5
|
|
CATEGORIES= security haskell
|
|
|
|
MAINTAINER= haskell@FreeBSD.org
|
|
COMMENT= Certificates and Key Reader/Writer
|
|
|
|
LICENSE= BSD3CLAUSE
|
|
|
|
USE_CABAL= asn1-data>=0.7.1 crypto-pubkey-types>=0.4 cryptohash \
|
|
mtl pem>=0.1
|
|
|
|
FLAGS_DEFINE= EXECUTABLE
|
|
|
|
EXECUTABLE_DESC= Build the executable
|
|
EXECUTABLE_FLAG_ENABLE= executable
|
|
EXECUTABLE_FLAG_CABAL= cmdargs text>=0.11 cryptohash crypto-pubkey
|
|
EXECUTABLE_FLAG_EXECUTABLE= certificate
|
|
|
|
IGNORE= Doesn't build with recent GHC version
|
|
|
|
.include "${.CURDIR}/../../lang/ghc/bsd.cabal.mk"
|
|
.include <bsd.port.mk>
|