1
0
mirror of https://git.yoctoproject.org/poky synced 2026-05-09 05:29:32 +00:00

librsvg: update the loader database when installing the svg loader

git-svn-id: https://svn.o-hand.com/repos/poky/trunk@5071 311d38ba-8fff-0310-9ca6-ca027cbcb966
This commit is contained in:
Ross Burton
2008-08-19 15:18:55 +00:00
parent 23d43ca24a
commit 893b354296
+10 -1
View File
@@ -2,7 +2,7 @@ DESCRIPTION = "Library for rendering SVG files"
SECTION = "x11/utils"
DEPENDS = "gtk+ libcroco cairo libxml2 popt"
LICENSE = "LGPL"
PR = "r2"
PR = "r3"
EXTRA_OECONF = "--disable-mozilla-plugin --without-svgz --without-croco --disable-gnome-vfs"
@@ -24,3 +24,12 @@ FILES_librsvg-gtk-dbg += "${libdir}/gtk-2.0/.debug \
do_stage() {
autotools_stage_all
}
pkg_postinst_librsvg-gtk() {
if [ "x$D" != "x" ]; then
exit 1
fi
test -x ${bindir}/gdk-pixbuf-query-loaders && { gdk-pixbuf-query-loaders > ${sysconfdir}/gtk-2.0/gdk-pixbuf.loaders ; }
test -x ${bindir}/gtk-update-icon-cache && gtk-update-icon-cache -q ${datadir}/icons/hicolor
}