mirror of
https://github.com/openembedded/meta-openembedded.git
synced 2026-07-25 19:27:14 +00:00
233d3b20c5
License-Update: Dropped plugins [1] and gnulib [2] - Add a fix for musl build to include sys/select.h - gnulib dependency is not needed anymore - Disable libuninameslist, recipe is missing in OE [1] https://github.com/fontforge/fontforge/commit/ed62345e3ad7484cd0bf714f5ef9c7012dad157c#diff-9879d6db96fd29134fc802214163b95a [2] https://github.com/fontforge/fontforge/commit/51c045a09804c20725527878c753df6ba96dafa8#diff-9879d6db96fd29134fc802214163b95a Signed-off-by: Khem Raj <raj.khem@gmail.com>
47 lines
1.3 KiB
BlitzBasic
47 lines
1.3 KiB
BlitzBasic
SUMMARY = "A font editor"
|
|
HOMEPAGE = "http://fontforge.github.io/en-US/"
|
|
LICENSE = "BSD-3-Clause & GPLv3"
|
|
LIC_FILES_CHKSUM = " \
|
|
file://COPYING.gplv3;md5=d32239bcb673463ab874e80d47fae504 \
|
|
file://LICENSE;md5=d042f3d2a8fd7208b704a499168e3c89 \
|
|
"
|
|
|
|
DEPENDS = "glib-2.0 pango giflib tiff libxml2 jpeg python libtool uthash gettext-native"
|
|
DEPENDS_append_class-target = " libxi"
|
|
|
|
inherit autotools pkgconfig pythonnative distro_features_check gettext gtk-icon-cache mime
|
|
|
|
REQUIRED_DISTRO_FEATURES_append_class-target = " x11"
|
|
|
|
# tag 20190801
|
|
SRCREV = "ac635b818e38ddb8e7e2e1057330a32b4e25476e"
|
|
SRC_URI = "git://github.com/${BPN}/${BPN}.git \
|
|
file://0001-include-sys-select-on-non-glibc-platforms.patch \
|
|
"
|
|
S = "${WORKDIR}/git"
|
|
|
|
EXTRA_OECONF += "--without-libuninameslist"
|
|
EXTRA_OECONF_append_class-native = " with_x=no"
|
|
|
|
#do_configure_prepend() {
|
|
# uthash sources are expected in uthash/src
|
|
# mkdir -p ${S}/uthash/src
|
|
# cp ${STAGING_INCDIR}/ut*.h ${S}/uthash/src
|
|
#}
|
|
|
|
PACKAGES =+ "${PN}-python"
|
|
|
|
RPROVIDES_${PN}-dbg += "${PN}-python-dbg"
|
|
|
|
FILES_${PN} += " \
|
|
${datadir}/appdata \
|
|
${datadir}/metainfo \
|
|
${datadir}/mime \
|
|
"
|
|
|
|
FILES_${PN}-python = "${PYTHON_SITEPACKAGES_DIR} ${datadir}/${BPN}/python"
|
|
RDEPENDS_${PN}-python = "python"
|
|
|
|
# for e.g kde's oxygen-fonts
|
|
BBCLASSEXTEND = "native"
|