diff options
author | Ross Burton <ross.burton@intel.com> | 2013-05-16 17:52:00 +0100 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2013-05-24 14:06:59 +0100 |
commit | 228d15b40500ecfb182078171e33ffa28373024f (patch) | |
tree | f9fdc157c4753e95c18ad762a61a4917addabcb8 | |
parent | 3a7625c23b3fbd163dcd4036767b194438ec238d (diff) | |
download | openembedded-core-228d15b40500ecfb182078171e33ffa28373024f.tar.gz openembedded-core-228d15b40500ecfb182078171e33ffa28373024f.tar.bz2 openembedded-core-228d15b40500ecfb182078171e33ffa28373024f.zip |
librsvg: add more PACKAGECONFIG options
Add options for the gdk-pixbuf loaders and the GTK+ 2 theme engine. The theme
engine is generally unused so don't enable that by default, but enable the
gdk-pixbuf loader and also enable the croco feature which is required for
parsing CSS embedded into SVG.
Signed-off-by: Ross Burton <ross.burton@intel.com>
Signed-off-by: Saul Wold <sgw@linux.intel.com>
-rw-r--r-- | meta/recipes-gnome/librsvg/librsvg_2.32.1.bb | 11 |
1 files changed, 7 insertions, 4 deletions
diff --git a/meta/recipes-gnome/librsvg/librsvg_2.32.1.bb b/meta/recipes-gnome/librsvg/librsvg_2.32.1.bb index dcacce4b00..2bc1624df9 100644 --- a/meta/recipes-gnome/librsvg/librsvg_2.32.1.bb +++ b/meta/recipes-gnome/librsvg/librsvg_2.32.1.bb @@ -7,7 +7,7 @@ LIC_FILES_CHKSUM = "file://COPYING;md5=94d55d512a9ba36caa9b7df079bae19f \ file://rsvg.h;beginline=3;endline=24;md5=20b4113c4909bbf0d67e006778302bc6" SECTION = "x11/utils" -DEPENDS = "gtk+ cairo libxml2" +DEPENDS = "cairo glib-2.0 gdk-pixbuf fontconfig freetype libxml2 pango" DEPENDS_class-native = "cairo-native pango-native gdk-pixbuf-native" BBCLASSEXTEND = "native" @@ -17,11 +17,14 @@ inherit autotools pkgconfig gnome gtk-doc pixbufcache EXTRA_OECONF = "--disable-mozilla-plugin --without-svgz" -PACKAGECONFIG ??= "croco" -# When native we can manage without croco, as it's only for GTK+ -PACKAGECONFIG_class-native = "" +PACKAGECONFIG ??= "croco gdkpixbuf" +# Support embedded CSS stylesheets (recommended upstream) PACKAGECONFIG[croco] = "--with-croco,--without-croco,libcroco" +# gdk-pixbuf loader +PACKAGECONFIG[gdkpixbuf] = "--enable-pixbuf-loader,--disable-pixbuf-loader" +# GTK+ 2 theme engine +PACKAGECONFIG[gtk] = "--enable-gtk-theme,--disable-gtk-theme,gtk+" SRC_URI += "file://doc_Makefile.patch \ file://librsvg-CVE-2011-3146.patch \ |