diff options
| -rw-r--r-- | meta/recipes-support/gpgme/gpgme/gpgme.pc | 10 | ||||
| -rw-r--r-- | meta/recipes-support/gpgme/gpgme/pkgconfig.patch | 42 | ||||
| -rw-r--r-- | meta/recipes-support/gpgme/gpgme_1.8.0.bb (renamed from meta/recipes-support/gpgme/gpgme_1.6.0.bb) | 20 |
3 files changed, 38 insertions, 34 deletions
diff --git a/meta/recipes-support/gpgme/gpgme/gpgme.pc b/meta/recipes-support/gpgme/gpgme/gpgme.pc deleted file mode 100644 index 30a4d56d6e..0000000000 --- a/meta/recipes-support/gpgme/gpgme/gpgme.pc +++ /dev/null | |||
| @@ -1,10 +0,0 @@ | |||
| 1 | prefix=/usr | ||
| 2 | libdir=${prefix}/lib | ||
| 3 | includedir=${prefix}/include | ||
| 4 | |||
| 5 | Name: gpgme | ||
| 6 | Description: GNU Privacy Guard Made Easy | ||
| 7 | Version: 1.4.3 | ||
| 8 | Requires: | ||
| 9 | Libs: -L${libdir} -lgpgme -lassuan -lgpg-error | ||
| 10 | Cflags: -I${includedir} | ||
diff --git a/meta/recipes-support/gpgme/gpgme/pkgconfig.patch b/meta/recipes-support/gpgme/gpgme/pkgconfig.patch index e2f1f4ffb5..341cabfc50 100644 --- a/meta/recipes-support/gpgme/gpgme/pkgconfig.patch +++ b/meta/recipes-support/gpgme/gpgme/pkgconfig.patch | |||
| @@ -4,37 +4,50 @@ simpler and less error prone when cross compiling. | |||
| 4 | Upstream-Status: Denied [Upstream not interested in pkg-config support] | 4 | Upstream-Status: Denied [Upstream not interested in pkg-config support] |
| 5 | RP 2015/4/17 | 5 | RP 2015/4/17 |
| 6 | 6 | ||
| 7 | Rebase to 1.8.0 | ||
| 8 | Signed-off-by: Hongxu Jia <hongxu.jia@windriver.com> | ||
| 9 | --- | ||
| 10 | configure.ac | 1 + | ||
| 11 | src/Makefile.am | 4 +- | ||
| 12 | src/gpgme-pthread.pc.in | 15 +++++++ | ||
| 13 | src/gpgme.m4 | 114 ++++-------------------------------------------- | ||
| 14 | src/gpgme.pc.in | 15 +++++++ | ||
| 15 | 5 files changed, 42 insertions(+), 107 deletions(-) | ||
| 16 | create mode 100644 src/gpgme-pthread.pc.in | ||
| 17 | create mode 100644 src/gpgme.pc.in | ||
| 18 | |||
| 7 | diff --git a/configure.ac b/configure.ac | 19 | diff --git a/configure.ac b/configure.ac |
| 8 | index 298a22b..c778b61 100644 | 20 | index 0a67b48..e402dd3 100644 |
| 9 | --- a/configure.ac | 21 | --- a/configure.ac |
| 10 | +++ b/configure.ac | 22 | +++ b/configure.ac |
| 11 | @@ -622,6 +622,7 @@ AC_CONFIG_FILES(Makefile src/Makefile | 23 | @@ -875,6 +875,7 @@ AC_CONFIG_FILES(Makefile src/Makefile |
| 12 | src/versioninfo.rc | 24 | src/versioninfo.rc |
| 13 | src/gpgme.h) | 25 | src/gpgme.h) |
| 14 | AC_CONFIG_FILES(src/gpgme-config, chmod +x src/gpgme-config) | 26 | AC_CONFIG_FILES(src/gpgme-config, chmod +x src/gpgme-config) |
| 15 | +AC_CONFIG_FILES(src/gpgme.pc src/gpgme-pthread.pc) | 27 | +AC_CONFIG_FILES(src/gpgme.pc src/gpgme-pthread.pc) |
| 16 | AC_CONFIG_FILES([lang/Makefile lang/cl/Makefile lang/cl/gpgme.asd]) | 28 | AC_CONFIG_FILES(lang/cpp/Makefile lang/cpp/src/Makefile) |
| 17 | AC_OUTPUT | 29 | AC_CONFIG_FILES(lang/cpp/src/GpgmeppConfig-w32.cmake.in) |
| 18 | 30 | AC_CONFIG_FILES(lang/cpp/src/GpgmeppConfig.cmake.in) | |
| 19 | diff --git a/src/Makefile.am b/src/Makefile.am | 31 | diff --git a/src/Makefile.am b/src/Makefile.am |
| 20 | index 58922f9..40d0dca 100644 | 32 | index ce6f1d4..5f38fee 100644 |
| 21 | --- a/src/Makefile.am | 33 | --- a/src/Makefile.am |
| 22 | +++ b/src/Makefile.am | 34 | +++ b/src/Makefile.am |
| 23 | @@ -20,11 +20,13 @@ | 35 | @@ -19,12 +19,14 @@ |
| 36 | ## Process this file with automake to produce Makefile.in | ||
| 24 | 37 | ||
| 25 | # Note: moc_kdpipeiodevice should actually be a dependecy below. | ||
| 26 | EXTRA_DIST = gpgme-config.in gpgme.m4 libgpgme.vers ChangeLog-2011 \ | 38 | EXTRA_DIST = gpgme-config.in gpgme.m4 libgpgme.vers ChangeLog-2011 \ |
| 27 | - gpgme.h.in versioninfo.rc.in gpgme.def moc_kdpipeiodevice.cpp | 39 | - gpgme.h.in versioninfo.rc.in gpgme.def |
| 28 | + gpgme.h.in versioninfo.rc.in gpgme.def moc_kdpipeiodevice.cpp gpgme.pc.in gpgme-pthread.pc.in | 40 | + gpgme.h.in versioninfo.rc.in gpgme.def gpgme.pc.in gpgme-pthread.pc.in |
| 29 | 41 | ||
| 30 | bin_SCRIPTS = gpgme-config | 42 | bin_SCRIPTS = gpgme-config |
| 31 | m4datadir = $(datadir)/aclocal | 43 | m4datadir = $(datadir)/aclocal |
| 32 | m4data_DATA = gpgme.m4 | 44 | m4data_DATA = gpgme.m4 |
| 45 | nodist_include_HEADERS = gpgme.h | ||
| 33 | +pkgconfigdir = $(libdir)/pkgconfig | 46 | +pkgconfigdir = $(libdir)/pkgconfig |
| 34 | +pkgconfig_DATA = gpgme.pc gpgme-pthread.pc | 47 | +pkgconfig_DATA = gpgme.pc gpgme-pthread.pc |
| 35 | nodist_include_HEADERS = gpgme.h | ||
| 36 | 48 | ||
| 37 | bin_PROGRAMS = gpgme-tool | 49 | bin_PROGRAMS = gpgme-tool |
| 50 | |||
| 38 | diff --git a/src/gpgme-pthread.pc.in b/src/gpgme-pthread.pc.in | 51 | diff --git a/src/gpgme-pthread.pc.in b/src/gpgme-pthread.pc.in |
| 39 | new file mode 100644 | 52 | new file mode 100644 |
| 40 | index 0000000..980a48e | 53 | index 0000000..980a48e |
| @@ -51,9 +64,9 @@ index 0000000..980a48e | |||
| 51 | +host=@GPGME_CONFIG_HOST@ | 64 | +host=@GPGME_CONFIG_HOST@ |
| 52 | + | 65 | + |
| 53 | +Name: gpgme | 66 | +Name: gpgme |
| 54 | +Description: GnuPG Made Easy (GPGME) is a C language library that allows to addsupport for cryptography to a program (threaded version) | 67 | +Description: GnuPG Made Easy (GPGME) is a C language library that allows to addsupport for cryptography to a program (deprecated) |
| 55 | +Version: @VERSION@ | 68 | +Version: @VERSION@ |
| 56 | +Libs: -L${libdir} -lgpgme-pthread -lpthread | 69 | +Libs: -L${libdir} -lgpgme -lpthread |
| 57 | +Cflags: -I${includedir} | 70 | +Cflags: -I${includedir} |
| 58 | +Requires: libassuan gpg-error | 71 | +Requires: libassuan gpg-error |
| 59 | diff --git a/src/gpgme.m4 b/src/gpgme.m4 | 72 | diff --git a/src/gpgme.m4 b/src/gpgme.m4 |
| @@ -277,3 +290,6 @@ index 0000000..b69539f | |||
| 277 | +Cflags: -I${includedir} | 290 | +Cflags: -I${includedir} |
| 278 | +Requires: libassuan gpg-error | 291 | +Requires: libassuan gpg-error |
| 279 | \ No newline at end of file | 292 | \ No newline at end of file |
| 293 | -- | ||
| 294 | 2.8.1 | ||
| 295 | |||
diff --git a/meta/recipes-support/gpgme/gpgme_1.6.0.bb b/meta/recipes-support/gpgme/gpgme_1.8.0.bb index a2d05878b6..b870069728 100644 --- a/meta/recipes-support/gpgme/gpgme_1.6.0.bb +++ b/meta/recipes-support/gpgme/gpgme_1.8.0.bb | |||
| @@ -6,27 +6,29 @@ BUGTRACKER = "https://bugs.g10code.com/gnupg/index" | |||
| 6 | LICENSE = "GPLv2+ & LGPLv2.1+" | 6 | LICENSE = "GPLv2+ & LGPLv2.1+" |
| 7 | LIC_FILES_CHKSUM = "file://COPYING;md5=94d55d512a9ba36caa9b7df079bae19f \ | 7 | LIC_FILES_CHKSUM = "file://COPYING;md5=94d55d512a9ba36caa9b7df079bae19f \ |
| 8 | file://COPYING.LESSER;md5=bbb461211a33b134d42ed5ee802b37ff \ | 8 | file://COPYING.LESSER;md5=bbb461211a33b134d42ed5ee802b37ff \ |
| 9 | file://src/gpgme.h.in;endline=23;md5=5027eec93a996272a9a0a6a86cf35775 \ | 9 | file://src/gpgme.h.in;endline=23;md5=0f7059665c4b7897f4f4d0cb93aa9f98 \ |
| 10 | file://src/engine.h;endline=22;md5=4b6d8ba313d9b564cc4d4cfb1640af9d" | 10 | file://src/engine.h;endline=22;md5=4b6d8ba313d9b564cc4d4cfb1640af9d" |
| 11 | 11 | ||
| 12 | UPSTREAM_CHECK_URI = "https://gnupg.org/download/index.html" | 12 | UPSTREAM_CHECK_URI = "https://gnupg.org/download/index.html" |
| 13 | SRC_URI = "${GNUPG_MIRROR}/gpgme/${BP}.tar.bz2 \ | 13 | SRC_URI = "${GNUPG_MIRROR}/gpgme/${BP}.tar.bz2 \ |
| 14 | file://gpgme.pc \ | ||
| 15 | file://pkgconfig.patch \ | 14 | file://pkgconfig.patch \ |
| 16 | " | 15 | " |
| 17 | 16 | ||
| 18 | SRC_URI[md5sum] = "60d730d22e8065fd5de309e8b98e304b" | 17 | SRC_URI[md5sum] = "722a4153904b9b5dc15485a22d29263b" |
| 19 | SRC_URI[sha256sum] = "b09de4197ac280b102080e09eaec6211d081efff1963bf7821cf8f4f9916099d" | 18 | SRC_URI[sha256sum] = "596097257c2ce22e747741f8ff3d7e24f6e26231fa198a41b2a072e62d1e5d33" |
| 20 | 19 | ||
| 21 | DEPENDS = "libgpg-error libassuan" | 20 | DEPENDS = "libgpg-error libassuan" |
| 21 | RDEPENDS_${PN}-cpp += "libstdc++" | ||
| 22 | 22 | ||
| 23 | BINCONFIG = "${bindir}/gpgme-config" | 23 | BINCONFIG = "${bindir}/gpgme-config" |
| 24 | 24 | ||
| 25 | inherit autotools texinfo binconfig-disabled pkgconfig | 25 | inherit autotools texinfo binconfig-disabled pkgconfig |
| 26 | 26 | ||
| 27 | PACKAGES =+ "${PN}-pthread" | 27 | PACKAGES =+ "${PN}-cpp" |
| 28 | FILES_${PN}-pthread = "${libdir}/libgpgme-pthread.so.*" | 28 | FILES_${PN}-cpp = "${libdir}/libgpgmepp.so.*" |
| 29 | FILES_${PN}-dev += "${datadir}/common-lisp/source/gpgme/*" | 29 | FILES_${PN}-dev += "${datadir}/common-lisp/source/gpgme/* \ |
| 30 | ${libdir}/cmake/* \ | ||
| 31 | " | ||
| 30 | 32 | ||
| 31 | CFLAGS_append_libc-musl = " -D__error_t_defined " | 33 | CFLAGS_append_libc-musl = " -D__error_t_defined " |
| 32 | do_configure_prepend () { | 34 | do_configure_prepend () { |
| @@ -35,7 +37,3 @@ do_configure_prepend () { | |||
| 35 | rm -f ${S}/m4/libassuan.m4 | 37 | rm -f ${S}/m4/libassuan.m4 |
| 36 | } | 38 | } |
| 37 | 39 | ||
| 38 | do_install_append () { | ||
| 39 | install -d ${D}${libdir}/pkgconfig | ||
| 40 | install -m 0644 ${WORKDIR}/gpgme.pc ${D}${libdir}/pkgconfig/ | ||
| 41 | } | ||
