diff options
author | Robby Workman <rworkman@slackbuilds.org> | 2013-11-11 23:53:14 -0600 |
---|---|---|
committer | Robby Workman <rworkman@slackbuilds.org> | 2013-11-12 01:25:04 -0600 |
commit | fb12e1f0ddbed4aebd1d6f4e23061399ccc7deae (patch) | |
tree | c6fae7f49fe663726de777f4eb1a7114d9c2fe8f /system/virt-manager/doinst.sh | |
parent | b5f8ce7e5a72106c6659fe34b4c8e1e760a8ee7d (diff) |
system/virt-manager: Updated for version 0.10.0.
This almost surely still has bugs, but it's more
functional that the version we had. Feedback is
welcome and encouraged. Patches are even more so.
Signed-off-by: Robby Workman <rworkman@slackbuilds.org>
Diffstat (limited to 'system/virt-manager/doinst.sh')
-rw-r--r-- | system/virt-manager/doinst.sh | 21 |
1 files changed, 11 insertions, 10 deletions
diff --git a/system/virt-manager/doinst.sh b/system/virt-manager/doinst.sh index ee5dc2a71191..36c8205d7d22 100644 --- a/system/virt-manager/doinst.sh +++ b/system/virt-manager/doinst.sh @@ -1,19 +1,20 @@ -schema_install() { - SCHEMA="$1" - GCONF_CONFIG_SOURCE="xml::etc/gconf/gconf.xml.defaults" \ - chroot . gconftool-2 --makefile-install-rule \ - /etc/gconf/schemas/$SCHEMA \ - 1>/dev/null -} - -schema_install virt-manager.schemas - if [ -x /usr/bin/update-desktop-database ]; then /usr/bin/update-desktop-database -q usr/share/applications >/dev/null 2>&1 fi +if [ -x /usr/bin/update-mime-database ]; then + /usr/bin/update-mime-database usr/share/mime >/dev/null 2>&1 +fi + if [ -e usr/share/icons/hicolor/icon-theme.cache ]; then if [ -x /usr/bin/gtk-update-icon-cache ]; then /usr/bin/gtk-update-icon-cache usr/share/icons/hicolor >/dev/null 2>&1 fi fi + +if [ -e usr/share/glib-2.0/schemas ]; then + if [ -x /usr/bin/glib-compile-schemas ]; then + /usr/bin/glib-compile-schemas usr/share/glib-2.0/schemas >/dev/null 2>&1 + fi +fi + |