diff options
author | Dmitry Marakasov <amdmi3@FreeBSD.org> | 2017-12-25 15:49:23 +0000 |
---|---|---|
committer | Dmitry Marakasov <amdmi3@FreeBSD.org> | 2017-12-25 15:49:23 +0000 |
commit | 59b4f077b04dca04f860c49d1cc35820df3c2a55 (patch) | |
tree | ab1b52b8ed1829295c88970f1b92c1269d3744ce | |
parent | games/ags: Update to 3.4.1.11 (diff) |
- Add mutual runtime conflicts between hs-dataenc and hs-sandi
If these both are installed, haskell fails to use modules from any of them:
Ambiguous interface for `Codec.Binary.Base64':
it was found in multiple packages: dataenc-0.14.0.7 sandi-0.4.0
PR: 224192
Approved by: portmgr blanket
Notes
Notes:
svn path=/head/; revision=457241
-rw-r--r-- | converters/hs-dataenc/Makefile | 2 | ||||
-rw-r--r-- | converters/hs-sandi/Makefile | 2 |
2 files changed, 4 insertions, 0 deletions
diff --git a/converters/hs-dataenc/Makefile b/converters/hs-dataenc/Makefile index 4ff865b1cdea..cd993da8869d 100644 --- a/converters/hs-dataenc/Makefile +++ b/converters/hs-dataenc/Makefile @@ -10,5 +10,7 @@ COMMENT= Data encoding library LICENSE= BSD3CLAUSE +CONFLICTS_INSTALL= hs-sandi-[0-9]* + .include "${.CURDIR}/../../lang/ghc/bsd.cabal.mk" .include <bsd.port.mk> diff --git a/converters/hs-sandi/Makefile b/converters/hs-sandi/Makefile index e95f7c3bdc0d..db3458f7b68d 100644 --- a/converters/hs-sandi/Makefile +++ b/converters/hs-sandi/Makefile @@ -9,6 +9,8 @@ COMMENT= Data encoding library LICENSE= BSD3CLAUSE +CONFLICTS_INSTALL= hs-dataenc-[0-9]* + USE_CABAL= conduit exceptions stringsearch .include "${.CURDIR}/../../lang/ghc/bsd.cabal.mk" |