harfbuzz: Add PACKAGECONFIG for icu

harfbuzz can be built without icu. We don't need harfbuzz-icu for any
default OE-Core configuration so default to icu being disabled for
performance improvements.

(From OE-Core rev: d61230ac70158dd9a33fcfac4eea768d21ccc61d)

Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
This commit is contained in:
Richard Purdie 2013-11-26 14:31:56 +00:00
parent 5048f59b5c
commit bbbd6fc1d1
1 changed files with 5 additions and 2 deletions

View File

@ -18,11 +18,14 @@ SRC_URI[sha256sum] = "989680807e76197418338e44f226e02f155f33031efd9aff14dbc4dc14
inherit autotools pkgconfig
DEPENDS = "icu glib-2.0 cairo freetype"
DEPENDS = "glib-2.0 cairo freetype"
BBCLASSEXTEND = "native"
EXTRA_OECONF = "--with-glib --with-freetype --with-cairo --with-icu --without-graphite2"
EXTRA_OECONF = "--with-glib --with-freetype --with-cairo --without-graphite2"
PACKAGECONFIG = ""
PACKAGECONFIG[icu] = "--with-icu,--without-icu,icu"
PACKAGES =+ "${PN}-icu ${PN}-icu-dbg ${PN}-icu-dev"