mirror of
https://git.yoctoproject.org/poky
synced 2026-09-08 12:49:32 +02:00
We patch Python's distutils modules to access STAGING_INCDIR/LIBDIR, so when they are not set, scripts that utilize distutils (e.g. python-config) fail. Several recipes need to export those manually to prevent such failures, so let's do that in the class instead. PYTHON variable is exported because otherwise autotools' python.m4 macro will pick up its own internal default, which may not be the version that we want. glib recipe in particular was previously using Python 2.x during build due to python.m4 defaulting to it - now it's using Python 3.x, and so needs a small fix in deletion of *.pyc files. (From OE-Core rev: c1e0eb62f2d89b10b187016200018830b1c77945) Signed-off-by: Alexander Kanavin <alexander.kanavin@linux.intel.com> Signed-off-by: Ross Burton <ross.burton@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
131 lines
5.1 KiB
PHP
131 lines
5.1 KiB
PHP
SUMMARY = "A general-purpose utility library"
|
|
DESCRIPTION = "GLib is a general-purpose utility library, which provides many useful data types, macros, type conversions, string utilities, file utilities, a main loop abstraction, and so on."
|
|
HOMEPAGE = "https://developer.gnome.org/glib/"
|
|
|
|
# pcre is under BSD;
|
|
# docs/reference/COPYING is with a 'public domai'-like license!
|
|
LICENSE = "LGPLv2+ & BSD & PD"
|
|
LIC_FILES_CHKSUM = "file://COPYING;md5=3bf50002aefd002f49e7bb854063f7e7 \
|
|
file://glib/glib.h;beginline=4;endline=17;md5=b4f0f4a399c19e5ebb20c31b79d6bc32 \
|
|
file://gmodule/COPYING;md5=3bf50002aefd002f49e7bb854063f7e7 \
|
|
file://gmodule/gmodule.h;beginline=4;endline=17;md5=b4f0f4a399c19e5ebb20c31b79d6bc32 \
|
|
file://glib/pcre/COPYING;md5=266ebc3ff74ee9ce6fad65577667c0f4 \
|
|
file://glib/pcre/pcre.h;beginline=11;endline=35;md5=de27f2bf633d20a2b7af0b1983423283 \
|
|
file://docs/reference/COPYING;md5=f51a5100c17af6bae00735cd791e1fcc"
|
|
BUGTRACKER = "http://bugzilla.gnome.org"
|
|
SECTION = "libs"
|
|
|
|
BBCLASSEXTEND = "native nativesdk"
|
|
|
|
DEPENDS = "virtual/libiconv libffi zlib glib-2.0-native"
|
|
DEPENDS_append = " ${@bb.utils.contains('PTEST_ENABLED', '1', ' dbus', '', d)}"
|
|
DEPENDS_class-native = "pkgconfig-native gettext-native libffi-native zlib-native"
|
|
DEPENDS_class-nativesdk = "nativesdk-libtool nativesdk-gettext nativesdk-libffi nativesdk-zlib glib-2.0-native"
|
|
|
|
PACKAGES += "${PN}-codegen ${PN}-utils"
|
|
|
|
LEAD_SONAME = "libglib-2.0.*"
|
|
|
|
inherit autotools gettext gtk-doc pkgconfig ptest-gnome upstream-version-is-even bash-completion gio-module-cache python3native
|
|
|
|
S = "${WORKDIR}/glib-${PV}"
|
|
|
|
PACKAGECONFIG ??= "system-pcre"
|
|
# To use the system pcre it must be configured with --enable-unicode-properties
|
|
PACKAGECONFIG[system-pcre] = "--with-pcre=system,--with-pcre=internal,libpcre"
|
|
|
|
CORECONF = "--disable-dtrace --disable-fam --disable-libelf --disable-systemtap --disable-man"
|
|
|
|
PRINTF = "--enable-included-printf=no"
|
|
PRINTF_darwin = "--enable-included-printf=yes"
|
|
PRINTF_mingw32 = "--enable-included-printf=yes"
|
|
EXTRA_OECONF = "${PRINTF} ${CORECONF}"
|
|
EXTRA_OECONF_class-native = "${CORECONF} --disable-selinux"
|
|
EXTRA_OECONF_append_libc-uclibc = " --with-libiconv=gnu"
|
|
|
|
do_configure_prepend() {
|
|
sed -i -e '1s,#!.*,#!${USRBINPATH}/env python3,' ${S}/gio/gdbus-2.0/codegen/gdbus-codegen.in
|
|
}
|
|
|
|
FILES_${PN} = "${libdir}/lib*${SOLIBS} \
|
|
${libdir}/gio \
|
|
${libexecdir}/*gio-querymodules \
|
|
${datadir}/glib-2.0/schemas"
|
|
FILES_${PN}-dev += "${libdir}/glib-2.0/include \
|
|
${libdir}/gio/modules/lib*${SOLIBSDEV} \
|
|
${libdir}/gio/modules/*.la \
|
|
${bindir}/glib-genmarshal \
|
|
${bindir}/glib-gettextize \
|
|
${bindir}/glib-mkenums \
|
|
${bindir}/glib-compile-resources \
|
|
${datadir}/glib-2.0/gettext/po/Makefile.in.in \
|
|
${datadir}/glib-2.0/schemas/gschema.dtd \
|
|
${datadir}/gettext/its"
|
|
FILES_${PN}-dbg += "${datadir}/glib-2.0/gdb ${datadir}/gdb"
|
|
FILES_${PN}-codegen = "${datadir}/glib-2.0/codegen/*.py \
|
|
${bindir}/gdbus-codegen"
|
|
FILES_${PN}-utils = "${bindir}/*"
|
|
|
|
ARM_INSTRUCTION_SET_armv4 = "arm"
|
|
ARM_INSTRUCTION_SET_armv5 = "arm"
|
|
|
|
USE_NLS = "yes"
|
|
|
|
do_install_append () {
|
|
if [ -f ${D}${bindir}/gtester-report ]; then
|
|
sed ${D}${bindir}/gtester-report -i -e '1s|^#!.*|#!/usr/bin/env python3|'
|
|
fi
|
|
|
|
# Remove some unpackaged files
|
|
rm -rf ${D}${datadir}/glib-2.0/codegen/__pycache__
|
|
rm -f ${D}${datadir}/glib-2.0/codegen/*.pyc
|
|
rm -f ${D}${datadir}/glib-2.0/codegen/*.pyo
|
|
|
|
# Some distros have both /bin/perl and /usr/bin/perl, but we set perl location
|
|
# for target as /usr/bin/perl, so fix it to /usr/bin/perl.
|
|
if [ -f ${D}${bindir}/glib-mkenums ]; then
|
|
sed -i -e '1s,#!.*perl,#! ${USRBINPATH}/env perl,' ${D}${bindir}/glib-mkenums
|
|
fi
|
|
|
|
if [ -f ${D}${datadir}/installed-tests/glib/gdbus-serialization.test ]; then
|
|
if ${@bb.utils.contains("DISTRO_FEATURES", "x11", "false", "true", d)}; then
|
|
rm ${D}${datadir}/installed-tests/glib/gdbus-serialization.test
|
|
fi
|
|
fi
|
|
|
|
# Make sure gio-querymodules is unique among multilibs
|
|
if test "x${MLPREFIX}" != "x"; then
|
|
mv ${D}${libexecdir}/gio-querymodules ${D}${libexecdir}/${MLPREFIX}gio-querymodules
|
|
fi
|
|
}
|
|
|
|
do_install_append_libc-musl () {
|
|
rm -f ${D}${libdir}/charset.alias
|
|
}
|
|
|
|
RDEPENDS_${PN}-ptest += "\
|
|
gnome-desktop-testing \
|
|
tzdata \
|
|
tzdata-americas \
|
|
tzdata-asia \
|
|
tzdata-europe \
|
|
tzdata-posix \
|
|
shared-mime-info \
|
|
"
|
|
|
|
RDEPENDS_${PN}-ptest_append_libc-glibc = "\
|
|
glibc-gconv-utf-16 \
|
|
glibc-charmap-utf-8 \
|
|
glibc-gconv-cp1255 \
|
|
glibc-charmap-cp1255 \
|
|
glibc-gconv-utf-32 \
|
|
glibc-gconv-utf-7 \
|
|
glibc-gconv-euc-jp \
|
|
glibc-gconv-iso8859-1 \
|
|
glibc-gconv-iso8859-15 \
|
|
glibc-charmap-invariant \
|
|
glibc-localedata-translit-cjk-variants \
|
|
"
|
|
|
|
INSANE_SKIP_${PN}-ptest += "libdir"
|