Add poppler

git-svn-id: https://svn.o-hand.com/repos/poky/trunk@1600 311d38ba-8fff-0310-9ca6-ca027cbcb966
This commit is contained in:
Ross Burton 2007-05-04 15:25:50 +00:00
parent 4951b77ec9
commit 48c17d3f6f
4 changed files with 47 additions and 0 deletions

View File

@ -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/${PN}-${PV}.tar.gz"
do_compile() {
}
do_install() {
oe_runmake install DESTDIR=${D}
}
FILES_${PN} += "${datadir}"
PACKAGE_ARCH = "all"

View File

@ -0,0 +1,6 @@
def get_poppler_fpu_setting(bb, d):
if bb.data.getVar('TARGET_FPU', d, 1) in [ 'soft' ]:
return "--enable-fixedpoint"
return ""

View File

@ -0,0 +1,23 @@
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/${PN}-${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)}"
do_stage() {
autotools_stage_all
}

View File

@ -0,0 +1,2 @@
require poppler.inc
PR = "r2"