pkgsrc/security/gnupg2/options.mk
wiz aa077a7717 Update to 2.0.6. Add support for idea option. From Blair Sadewitz
on tech-pkg.

Noteworthy changes in version 2.0.6 (2007-08-16)
------------------------------------------------

 * GPGSM does now grok --default-key.

 * GPGCONF is now aware of --default-key and --encrypt-to.

 * GPGSM does again correctly print the serial number as well the the
   various keyids.  This was broken since 2.0.4.

 * New option --validation-model and support for the chain-model.

 * Improved Windows support.
2007-08-29 23:19:06 +00:00

35 lines
1.1 KiB
Makefile

# $NetBSD: options.mk,v 1.1 2007/08/29 23:19:07 wiz Exp $
PKG_OPTIONS_VAR= PKG_OPTIONS.gnupg2
PKG_SUPPORTED_OPTIONS= gpgsm idea
.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
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