xref: /OK3568_Linux_fs/buildroot/package/gnupg2/Config.in (revision 4882a59341e53eb6f0b4789bf948001014eff981)
1comment "gnupg2 needs a toolchain w/ threads and dynamic library support"
2	depends on BR2_USE_MMU
3	depends on BR2_STATIC_LIBS || !BR2_TOOLCHAIN_HAS_THREADS
4
5config BR2_PACKAGE_GNUPG2
6	bool "gnupg2"
7	depends on BR2_PACKAGE_LIBGPG_ERROR_ARCH_SUPPORTS # libgpg-error
8	depends on BR2_TOOLCHAIN_HAS_THREADS # libnpth
9	depends on BR2_USE_MMU # libassuan, libnpth
10	depends on !BR2_STATIC_LIBS
11	select BR2_PACKAGE_ZLIB
12	select BR2_PACKAGE_LIBGPG_ERROR
13	select BR2_PACKAGE_LIBGCRYPT
14	select BR2_PACKAGE_LIBASSUAN
15	select BR2_PACKAGE_LIBKSBA
16	select BR2_PACKAGE_LIBNPTH
17	select BR2_PACKAGE_LIBICONV if !BR2_ENABLE_LOCALE
18	help
19	  GnuPG is the GNU project's complete and free implementation
20	  of the OpenPGP standard as defined by RFC4880. GnuPG allows
21	  to encrypt and sign your data and communication, features a
22	  versatile key management system as well as access modules
23	  for all kinds of public key directories. GnuPG, also known
24	  as GPG, is a command line tool with features for easy
25	  integration with other applications.
26
27	  http://gnupg.org/
28
29if BR2_PACKAGE_GNUPG2
30
31config BR2_PACKAGE_GNUPG2_GPGV
32	bool "gpgv"
33	help
34	  gpgv is an OpenPGP signature verification tool.
35
36	  This program is actually a stripped-down version of gpg
37	  which is only able to check signatures. It is somewhat
38	  smaller than the fully-blown gpg and uses a different (and
39	  simpler) way to check that the public keys used to make the
40	  signature are valid. There are no configuration files and
41	  only a few options are implemented.
42
43endif
44