diff options
author | Robert Yang <liezhi.yang@windriver.com> | 2015-07-27 02:15:09 -0700 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2015-07-31 10:32:42 +0100 |
commit | d1ee2d7f83fa7c5249a095bc33a481d3e5061aac (patch) | |
tree | b66227bccaa8420bf9051493c1c3d94c34a78126 /meta/recipes-support/gnupg/gnupg_2.1.6.bb | |
parent | 45efeffcf4808fc6d9bfbb60ae17f02c936e31dd (diff) | |
download | poky-d1ee2d7f83fa7c5249a095bc33a481d3e5061aac.tar.gz |
gnupg: 2.1.5 -> 2.1.6
(From OE-Core rev: ff816147ebb2cd07fde55ecd0d6520f1ffa347fa)
Signed-off-by: Robert Yang <liezhi.yang@windriver.com>
Signed-off-by: Ross Burton <ross.burton@intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-support/gnupg/gnupg_2.1.6.bb')
-rw-r--r-- | meta/recipes-support/gnupg/gnupg_2.1.6.bb | 41 |
1 files changed, 41 insertions, 0 deletions
diff --git a/meta/recipes-support/gnupg/gnupg_2.1.6.bb b/meta/recipes-support/gnupg/gnupg_2.1.6.bb new file mode 100644 index 0000000000..59aac3764d --- /dev/null +++ b/meta/recipes-support/gnupg/gnupg_2.1.6.bb | |||
@@ -0,0 +1,41 @@ | |||
1 | SUMMARY = "GNU Privacy Guard - encryption and signing tools (2.x)" | ||
2 | HOMEPAGE = "http://www.gnupg.org/" | ||
3 | LICENSE = "GPLv3 & LGPLv3" | ||
4 | LIC_FILES_CHKSUM = "file://COPYING;md5=f27defe1e96c2e1ecd4e0c9be8967949 \ | ||
5 | file://COPYING.LIB;md5=6a6a8e020838b23406c81b19c1d46df6" | ||
6 | |||
7 | DEPENDS = "npth libassuan libksba zlib bzip2 readline libgcrypt" | ||
8 | |||
9 | inherit autotools gettext texinfo pkgconfig | ||
10 | |||
11 | SRC_URI = "ftp://ftp.gnupg.org/gcrypt/${BPN}/${BPN}-${PV}.tar.bz2 \ | ||
12 | file://pkgconfig.patch \ | ||
13 | file://use-pkgconfig-instead-of-npth-config.patch \ | ||
14 | file://dirmngr-uses-libgpg-error.patch \ | ||
15 | " | ||
16 | |||
17 | SRC_URI[md5sum] = "cc7345b1d9ada92a0d19f4ae406741b4" | ||
18 | SRC_URI[sha256sum] = "5e599ad542199f3bd733eed2b88a539d1b4c3beda2dbab0ff69f1896f52e92fd" | ||
19 | |||
20 | EXTRA_OECONF = "--disable-ldap \ | ||
21 | --disable-ccid-driver \ | ||
22 | --with-zlib=${STAGING_LIBDIR}/.. \ | ||
23 | --with-bzip2=${STAGING_LIBDIR}/.. \ | ||
24 | --with-readline=${STAGING_LIBDIR}/.. \ | ||
25 | " | ||
26 | RRECOMMENDS_${PN} = "pinentry" | ||
27 | |||
28 | do_configure_prepend () { | ||
29 | # Else these could be used in prefernce to those in aclocal-copy | ||
30 | rm -f ${S}/m4/gpg-error.m4 | ||
31 | rm -f ${S}/m4/libassuan.m4 | ||
32 | rm -f ${S}/m4/ksba.m4 | ||
33 | rm -f ${S}/m4/libgcrypt.m4 | ||
34 | } | ||
35 | |||
36 | do_install_append() { | ||
37 | ln -sf gpg2 ${D}${bindir}/gpg | ||
38 | ln -sf gpgv2 ${D}${bindir}/gpgv | ||
39 | } | ||
40 | |||
41 | RDEPENDS_${PN} = "gnutls" | ||