Config.in 1.5 KB

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