diff options
author | Andre McCurdy <armccurdy@gmail.com> | 2017-11-01 15:08:37 -0700 |
---|---|---|
committer | Armin Kuster <akuster808@gmail.com> | 2017-11-15 16:34:05 -0800 |
commit | 222091bdc218a19a6643a62f70be6cac3371a683 (patch) | |
tree | 9a18de2dc984554903894099bd50294b292af73d /meta-oe/recipes-support/iksemel/iksemel_1.5.bb | |
parent | 0c31b49526028606d09417dc87d180006b8938df (diff) | |
download | meta-openembedded-222091bdc218a19a6643a62f70be6cac3371a683.tar.gz |
iksemel: reinstate recipe with build fixes and update 1.4 -> 1.5
The recipe for iksemel 1.4 was blacklisted and eventually removed as
it depended on an older version of gnutls which was no longer
available in oe-core.
Reinstate iksemel with a new recipe for iksemel 1.5, which can use
either openssl or gnutls for TLS support. Fix build issues.
Signed-off-by: Andre McCurdy <armccurdy@gmail.com>
Signed-off-by: Armin Kuster <akuster808@gmail.com>
Diffstat (limited to 'meta-oe/recipes-support/iksemel/iksemel_1.5.bb')
-rw-r--r-- | meta-oe/recipes-support/iksemel/iksemel_1.5.bb | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/meta-oe/recipes-support/iksemel/iksemel_1.5.bb b/meta-oe/recipes-support/iksemel/iksemel_1.5.bb new file mode 100644 index 000000000..0903e90d7 --- /dev/null +++ b/meta-oe/recipes-support/iksemel/iksemel_1.5.bb | |||
@@ -0,0 +1,24 @@ | |||
1 | SUMMARY = "Fast and portable XML parser and Jabber protocol library" | ||
2 | HOMEPAGE = "https://github.com/meduketto/iksemel" | ||
3 | SECTION = "libs" | ||
4 | LICENSE = "LGPLv2.1" | ||
5 | LIC_FILES_CHKSUM = "file://COPYING;md5=d8045f3b8f929c1cb29a1e3fd737b499" | ||
6 | |||
7 | SRCREV = "978b733462e41efd5db72bc9974cb3b0d1d5f6fa" | ||
8 | PV = "1.5+git${SRCPV}" | ||
9 | |||
10 | SRC_URI = "git://github.com/meduketto/iksemel.git;protocol=https \ | ||
11 | file://fix-configure-option-parsing.patch \ | ||
12 | file://avoid-obsolete-gnutls-apis.patch" | ||
13 | |||
14 | S = "${WORKDIR}/git" | ||
15 | |||
16 | inherit autotools pkgconfig lib_package | ||
17 | |||
18 | # TLS support requires either openssl or gnutls (if both are enabled openssl will be used). | ||
19 | PACKAGECONFIG ?= "gnutls" | ||
20 | |||
21 | PACKAGECONFIG[gnutls] = "--with-gnutls,--without-gnutls,gnutls" | ||
22 | PACKAGECONFIG[openssl] = "--with-openssl,--without-openssl,openssl" | ||
23 | |||
24 | EXTRA_OECONF = "--disable-python" | ||