diff options
author | Gabor Pali <pgj@FreeBSD.org> | 2010-05-22 22:41:50 +0000 |
---|---|---|
committer | Gabor Pali <pgj@FreeBSD.org> | 2010-05-22 22:41:50 +0000 |
commit | f1905422ee6b86d1afc28896fc9c0e4de3baf608 (patch) | |
tree | 6189ae4ab63cdc0704c29f18be3e2b350c8349a3 /security | |
parent | 7d1d3e059567d7924496edc21ddfbaf7d920f989 (diff) |
- Fix OPTIONS support for Cabal ports by introducing
bsd.cabal.options.mk
- Fix ports broken with non-default options
Triggered by: Yuri Pankov <yuri.pankov@gmail.com>
Notes
Notes:
svn path=/head/; revision=254867
Diffstat (limited to 'security')
-rw-r--r-- | security/hs-SHA/Makefile | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/security/hs-SHA/Makefile b/security/hs-SHA/Makefile index 6ee57fb40da4..84a2cb48c164 100644 --- a/security/hs-SHA/Makefile +++ b/security/hs-SHA/Makefile @@ -19,10 +19,12 @@ USE_HACKAGE= binary OPTIONS= TEST "Build the SHA test suite" off \ EXE "Build a SHA2-384 executable similar to 'md5sum'" off +.include "${.CURDIR}/../../lang/ghc/bsd.cabal.options.mk" .include <bsd.port.options.mk> .if defined(WITH_TEST) CONFIGURE_ARGS+= --flags="Test" +USE_HACKAGE+= QuickCheck>=2.0.0.0 EXECUTABLE+= test_sha PLIST_SUB+= MAYBE_TEST="" .else |