pkgsrc/security/gnupg2/options.mk
shannonjr 33068eba75 Update to 2.0.7. This is maintenance release with a few minor enhancements.
Changes:
 * Fixed encryption problem if duplicate certificates are in the
   keybox.
 * Add new options min-passphrase-nonalpha, check-passphrase-pattern,
   enforce-passphrase-constraints and max-passphrase-days to
   gpg-agent.
 * Add command --check-components to gpgconf.  Gpgconf now uses the
   installed versions of the programs and does not anymore search via
   PATH for them.
2007-11-07 15:24:26 +00:00

38 lines
1.3 KiB
Makefile

# $NetBSD: options.mk,v 1.2 2007/11/07 15:24:27 shannonjr Exp $
PKG_OPTIONS_VAR= PKG_OPTIONS.gnupg2
PKG_SUPPORTED_OPTIONS= gpgsm idea
.include "../../mk/bsd.prefs.mk"
.include "../../mk/bsd.options.mk"
## If no options are specified, only gpg-agent is built. This
## is sufficient for OpenPGP/MIME support in Kmail
## SMIME support is provided by gpgsm. This support is
## in the alpha stage of development.
PLIST_SRC= ${.CURDIR}/PLIST
# XXX It looks like that gpgsm support could be split into its own package,
# according to the configure script. If that's true, this use of the options
# framework is incorrect and should be fixed.
.if empty(PKG_OPTIONS:Mgpgsm)
CONFIGURE_ARGS+= --enable-agent-only
.else
CONFIGURE_ARGS+= --enable-gpgsm
CONFIGURE_ARGS+= --with-dirmngr-pgm=${BUILDLINK_PREFIX.dirmngr}/bin/dirmngr
PLIST_SRC+= ${.CURDIR}/PLIST.gpgsm
. include "../../security/dirmngr/buildlink3.mk"
.endif
.if !empty(PKG_OPTIONS:Midea)
LICENSE= idea-license
RESTRICTED= Commercial distribution is claimed to require a license.
NO_SRC_ON_CDROM= ${RESTRICTED}
NO_BIN_ON_CDROM= ${RESTRICTED}
PATCH_SITES= http://www.kfwebs.com/
PATCHFILES+= gnupg-2.0.4-idea.patch
PATCH_DIST_STRIP= -p1
PKGSRC_MAKE_ENV+= PKG_OPTIONS.libgcrypt+=idea
.endif