blob: fb529d25d6525467d220a0ce2123ce3fed04eabe [file] [log] [blame]
Brad Bishop316dfdd2018-06-25 12:45:53 -04001SUMMARY = "Collection of simple PIN or passphrase entry dialogs"
2DESCRIPTION = "\
3 Pinentry is a collection of simple PIN or passphrase entry dialogs which \
4 utilize the Assuan protocol as described by the aegypten project; see \
5 http://www.gnupg.org/aegypten/ for details."
6
7HOMEPAGE = "http://www.gnupg.org/related_software/pinentry/index.en.html"
8LICENSE = "GPLv2"
9LIC_FILES_CHKSUM = "file://COPYING;md5=cbbd794e2a0a289b9dfcc9f513d1996e"
10
Brad Bishop316dfdd2018-06-25 12:45:53 -040011DEPENDS = "gettext-native libassuan libgpg-error"
12
13UPSTREAM_CHECK_URI = "https://gnupg.org/download/index.html"
14SRC_URI = "${GNUPG_MIRROR}/${BPN}/${BPN}-${PV}.tar.bz2 \
15 file://libassuan_pkgconf.patch \
16 file://gpg-error_pkconf.patch \
17"
18
19SRC_URI[md5sum] = "3829315cb0a1e9cedc05ffe6def7a2c6"
20SRC_URI[sha256sum] = "68076686fa724a290ea49cdf0d1c0c1500907d1b759a3bcbfbec0293e8f56570"
21
Brad Bishop1a4b7ee2018-12-16 17:11:34 -080022inherit autotools pkgconfig
Brad Bishop316dfdd2018-06-25 12:45:53 -040023
24PACKAGECONFIG ??= "ncurses libcap"
25
26PACKAGECONFIG[ncurses] = "--enable-ncurses --with-ncurses-include-dir=${STAGING_INCDIR}, --disable-ncurses, ncurses"
27PACKAGECONFIG[libcap] = "--with-libcap, --without-libcap, libcap"
Brad Bishop15ae2502019-06-18 21:44:24 -040028PACKAGECONFIG[qt] = "--enable-pinentry-qt, --disable-pinentry-qt, qtbase-native qtbase"
Brad Bishop316dfdd2018-06-25 12:45:53 -040029PACKAGECONFIG[gtk2] = "--enable-pinentry-gtk2, --disable-pinentry-gtk2, gtk+ glib-2.0"
30
31#To use libsecret, add meta-gnome
32PACKAGECONFIG[secret] = "--enable-libsecret, --disable-libsecret, libsecret"
33
Brad Bishop1a4b7ee2018-12-16 17:11:34 -080034EXTRA_OECONF = " \
35 --disable-rpath \
Brad Bishop1a4b7ee2018-12-16 17:11:34 -080036"
37
Brad Bishop316dfdd2018-06-25 12:45:53 -040038BBCLASSEXTEND = "native"