M7350v1_en_gpl

This commit is contained in:
T
2024-09-09 08:52:07 +00:00
commit f9cc65cfda
65988 changed files with 26357421 additions and 0 deletions
@@ -0,0 +1,16 @@
DESCRIPTION = "Poppler is a PDF rendering library based on the xpdf-3.0 code base."
LICENSE = "Adobe"
PR = "r0"
SRC_URI = "http://poppler.freedesktop.org/${BPN}-${PV}.tar.gz"
do_compile() {
}
do_install() {
oe_runmake install DESTDIR=${D}
}
FILES_${PN} += "${datadir}"
PACKAGE_ARCH = "all"
@@ -0,0 +1,6 @@
def get_poppler_fpu_setting(bb, d):
if d.getVar('TARGET_FPU', 1) in [ 'soft' ]:
return "--enable-fixedpoint"
return ""
@@ -0,0 +1,18 @@
DESCRIPTION = "Poppler is a PDF rendering library based on the xpdf-3.0 code base."
DEPENDS = "fontconfig jpeg zlib gtk+ cairo"
LICENSE = "GPL"
PR = "r1"
SRC_URI = "http://poppler.freedesktop.org/${BPN}-${PV}.tar.gz"
inherit autotools pkgconfig
EXTRA_OECONF = " --enable-xpdf-headers \
--disable-gtk-test \
--disable-poppler-qt --disable-poppler-qt4 \
--enable-zlib \
"
#check for TARGET_FPU=soft and inform configure of the result so it can disable some floating points
require poppler-fpu.inc
EXTRA_OECONF += "${@get_poppler_fpu_setting(bb, d)}"
@@ -0,0 +1,2 @@
require poppler.inc
PR = "r2"