2f89476ad9
This patch is based on a patch sent by Vicente Olivert Riera and commented by Arnout Vandecappelle [1]. - Bump version to 1.23 - Add a hook to fix cross-compilation - Fix license and license files - Remove patch applied upstream - Add a BR2_PACKAGE_LIBGPG_ERROR_ARCH_SUPPORTS variable - Propagate the dependencies using that variable: * package/cppcms * package/crda * package/gnupg2 - package/gcr - package/midori * package/kodi * package/libaacs * package/libassuan * package/libgcrypt * package/libgpgme * package/libksba * package/libmicrohttpd - package/janus-gateway - package/kodi - package/ola - package/systemd * package/libssh * package/libssh2 - package/php-ssh2 * package/netatalk * package/network-manager * package/ntfs-3g * package/opkg * package/php-gnupg * package/rng-tools * package/strongswan * package/vpnc [1] http://patchwork.ozlabs.org/patch/416427/ Cc: Arnout Vandecappelle <arnout@mind.be> Cc: Vicente Olivert Riera <Vincent.Riera@imgtec.com> Signed-off-by: Jörg Krause <joerg.krause@embedded.rocks> [Thomas: - rebase on master - changing systemd no longer needed, as it no longer selects libgcrypt.] Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com> [Maxime: - rebase on master - bump to new version - propagate dependencies to missing packages] Signed-off-by: Maxime Hadjinlian <maxime.hadjinlian@gmail.com> Reviewed-by: Romain Naour <romain.naour@gmail.com> [Thomas: - fix hash file. - change the way to handle the various arch so that it works properly for uClibc. - add nios2 arch support. - Maxime Hadjinlian learned some basic Emacs-fu to do the final fixups of this commit.] Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
44 lines
1.4 KiB
Plaintext
44 lines
1.4 KiB
Plaintext
comment "gnupg2 needs a toolchain w/ dynamic library"
|
|
depends on BR2_USE_MMU
|
|
depends on BR2_STATIC_LIBS
|
|
|
|
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
|
|
select BR2_PACKAGE_LIBICONV if !BR2_ENABLE_LOCALE
|
|
depends on BR2_PACKAGE_LIBGPG_ERROR_ARCH_SUPPORTS # libgpg-error
|
|
depends on BR2_USE_MMU # libassuan
|
|
depends on !BR2_STATIC_LIBS
|
|
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
|