summaryrefslogtreecommitdiff
path: root/security/gpgme
diff options
context:
space:
mode:
authorleot <leot@pkgsrc.org>2018-06-03 21:18:34 +0000
committerleot <leot@pkgsrc.org>2018-06-03 21:18:34 +0000
commitca067cccdc5648dbd260c80d59f8cafd5c12dbfa (patch)
tree9a71fd84ba0a58001299531efb7eb08a0cf90043 /security/gpgme
parent4ed605237f942b67f1c6681bd43a661d661dc5d5 (diff)
downloadpkgsrc-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/gpgme')
-rw-r--r--security/gpgme/options.mk3
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