2141e06c4f
Commit beb49d882e
('gnupg2: new
package') was incorrect in its dependency on libpthsem: it was
selecting BR2_PACKAGE_PTHSEM while it should select
BR2_PACKAGE_LIBPTHSEM. This commit fixes that.
Fixes:
http://autobuild.buildroot.org/results/6e0/6e02b42f01986a56c22c44658fa1e488c0a08e7c/
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
37 lines
1.2 KiB
Plaintext
37 lines
1.2 KiB
Plaintext
config BR2_PACKAGE_GNUPG2
|
|
bool "gnupg2"
|
|
select BR2_PACKAGE_ZLIB
|
|
select BR2_PACKAGE_LIBGPG_ERROR
|
|
select BR2_PACKAGE_LIBGCRYPT
|
|
select BR2_PACKAGE_LIBASSUAN
|
|
select BR2_PACKAGE_LIBKSBA
|
|
select BR2_PACKAGE_LIBPTHSEM
|
|
select BR2_PACKAGE_LIBPTHSEM_COMPAT
|
|
depends on BR2_USE_MMU # libassuan
|
|
help
|
|
GnuPG is the GNU project's complete and free implementation
|
|
of the OpenPGP standard as defined by RFC4880. GnuPG allows
|
|
to encrypt and sign your data and communication, features a
|
|
versatile key management system as well as access modules
|
|
for all kinds of public key directories. GnuPG, also known
|
|
as GPG, is a command line tool with features for easy
|
|
integration with other applications.
|
|
|
|
http://gnupg.org/
|
|
|
|
if BR2_PACKAGE_GNUPG2
|
|
|
|
config BR2_PACKAGE_GNUPG2_GPGV2
|
|
bool "gpgv2"
|
|
help
|
|
gpgv2 is an OpenPGP signature verification tool.
|
|
|
|
This program is actually a stripped-down version of gpg
|
|
which is only able to check signatures. It is somewhat
|
|
smaller than the fully-blown gpg and uses a different (and
|
|
simpler) way to check that the public keys used to make the
|
|
signature are valid. There are no configuration files and
|
|
only a few options are implemented.
|
|
|
|
endif
|