diff options
author | leot <leot@pkgsrc.org> | 2018-06-03 21:18:34 +0000 |
---|---|---|
committer | leot <leot@pkgsrc.org> | 2018-06-03 21:18:34 +0000 |
commit | ca067cccdc5648dbd260c80d59f8cafd5c12dbfa (patch) | |
tree | 9a71fd84ba0a58001299531efb7eb08a0cf90043 /security | |
parent | 4ed605237f942b67f1c6681bd43a661d661dc5d5 (diff) | |
download | pkgsrc-ca067cccdc5648dbd260c80d59f8cafd5c12dbfa.tar.gz |
gpgme: Disable tests that needs gpg-agent when built with gnupg1 option
When building with the gnupg1 option some tests force the need of
gpg-agent and fails as noticed by <uwe> via PR pkg/53160.
Adjust options.mk accordingly disabling gpgsm tests for the gnupg1
option.
Should fix PR pkg/53160 reported by <uwe>.
Diffstat (limited to 'security')
-rw-r--r-- | security/gpgme/options.mk | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/security/gpgme/options.mk b/security/gpgme/options.mk index ed9aa5e3a34..8e76e5aa7ab 100644 --- a/security/gpgme/options.mk +++ b/security/gpgme/options.mk @@ -1,4 +1,4 @@ -# $NetBSD: options.mk,v 1.9 2017/12/21 13:30:40 ryoon Exp $ +# $NetBSD: options.mk,v 1.10 2018/06/03 21:18:34 leot Exp $ PKG_OPTIONS_VAR= PKG_OPTIONS.gpgme PKG_OPTIONS_REQUIRED_GROUPS= gnupg @@ -13,5 +13,6 @@ REPLACE_SH+= tests/gpg/pinentry GPG_DEFAULT= ${LOCALBASE}/bin/gpg2 MAKE_FLAGS+= GPG=${GPG_DEFAULT} .else +CONFIGURE_ARGS+= --disable-gpgsm-test # XXX: needs gpg-agent DEPENDS+= gnupg>=1.4.2:../../security/gnupg .endif |