summaryrefslogtreecommitdiff
path: root/security/gpgme/options.mk
blob: 894f9ae9e68c1bb390f91224fd1462d47db63bc6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
# $NetBSD: options.mk,v 1.2 2015/09/24 23:33:08 ryoon Exp $

PKG_OPTIONS_VAR=	PKG_OPTIONS.gpgme
PKG_SUPPORTED_OPTIONS=	gpgsm
PKG_SUGGESTED_OPTIONS=	gpgsm

.include "../../mk/bsd.options.mk"

##
## Option to build with gpgsm. This provides SMIME support
##
.if !empty(PKG_OPTIONS:Mgpgsm)
DEPENDS+=		gnupg2>=2.0<2.1:../../security/gnupg2
FIND_PREFIX:=	GPG2DIR=gnupg2
.include "../../mk/find-prefix.mk"
CONFIGURE_ARGS+=	--with-gpgsm=${GPG2DIR}/bin/gpgsm
CONFIGURE_ARGS+=	--with-gpg=${GPG2DIR}/bin/gpg2
REPLACE_SH+=		tests/gpg/pinentry
.else
DEPENDS+=		gnupg>=1.4.2:../../security/gnupg
CONFIGURE_ARGS+=	--without-gpgconf
CONFIGURE_ARGS+=	--without-gpgsm
.endif