mirror of
https://git.yoctoproject.org/poky
synced 2026-02-24 02:19:39 +01:00
This is the result of automated script conversion: scripts/contrib/convert-overrides.py <oe-core directory> converting the metadata to use ":" as the override character instead of "_". (From OE-Core rev: 42344347be29f0997cc2f7636d9603b1fe1875ae) Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
44 lines
1.7 KiB
BlitzBasic
44 lines
1.7 KiB
BlitzBasic
SUMMARY = "Small library that defines common error values for all GnuPG components"
|
|
DESCRIPTION = "Contains common error codes and error handling functions used by GnuPG, Libgcrypt, GPGME and more packages. "
|
|
HOMEPAGE = "http://www.gnupg.org/related_software/libgpg-error/"
|
|
BUGTRACKER = "https://bugs.g10code.com/gnupg/index"
|
|
|
|
LICENSE = "GPLv2+ & LGPLv2.1+"
|
|
LIC_FILES_CHKSUM = "file://COPYING;md5=59530bdf33659b29e73d4adb9f9f6552 \
|
|
file://COPYING.LIB;md5=2d5025d4aa3495befef8f17206a5b0a1 \
|
|
file://src/gpg-error.h.in;beginline=2;endline=18;md5=d82591bc81561f617da71e00ff4a9d79 \
|
|
file://src/init.c;beginline=2;endline=17;md5=f01cdfcf747af5380590cfd9bbfeaaf7 \
|
|
"
|
|
|
|
|
|
SECTION = "libs"
|
|
|
|
UPSTREAM_CHECK_URI = "https://gnupg.org/download/index.html"
|
|
SRC_URI = "${GNUPG_MIRROR}/libgpg-error/libgpg-error-${PV}.tar.bz2 \
|
|
file://pkgconfig.patch \
|
|
file://0001-Do-not-fail-when-testing-config-scripts.patch \
|
|
file://fix-cross.patch \
|
|
file://0001-configure.ac-do-not-hardcode-gnu-libc-when-generatin.patch \
|
|
"
|
|
|
|
SRC_URI[sha256sum] = "fc07e70f6c615f8c4f590a8e37a9b8dd2e2ca1e9408f8e60459c67452b925e23"
|
|
|
|
BINCONFIG = "${bindir}/gpg-error-config"
|
|
|
|
inherit autotools binconfig-disabled pkgconfig gettext multilib_header multilib_script
|
|
|
|
MULTILIB_SCRIPTS = "${PN}-dev:${bindir}/gpgrt-config"
|
|
|
|
CPPFLAGS += "-P"
|
|
|
|
do_install:append() {
|
|
# we don't have common lisp in OE
|
|
rm -rf "${D}${datadir}/common-lisp/"
|
|
oe_multilib_header gpg-error.h gpgrt.h
|
|
}
|
|
|
|
FILES:${PN}-dev += "${bindir}/gpg-error"
|
|
FILES:${PN}-doc += "${datadir}/libgpg-error/errorref.txt"
|
|
|
|
BBCLASSEXTEND = "native nativesdk"
|