diff options
3 files changed, 21 insertions, 0 deletions
diff --git a/main/gst-plugins-good/gst-plugins-good-gnome.post-install b/main/gst-plugins-good/gst-plugins-good-gnome.post-install new file mode 100644 index 000000000..35c28f3eb --- /dev/null +++ b/main/gst-plugins-good/gst-plugins-good-gnome.post-install @@ -0,0 +1,7 @@ +#!/bin/sh + +for i in gstreamer-0.10.schemas; do + echo "Installing GConf2 schema $i." + GCONF_CONFIG_SOURCE=`/usr/bin/gconftool-2 --get-default-source` \ + /usr/bin/gconftool-2 --makefile-install-rule /etc/gconf/schemas/$i >/dev/null +done diff --git a/main/gst-plugins-good/gst-plugins-good-gnome.post-upgrade b/main/gst-plugins-good/gst-plugins-good-gnome.post-upgrade new file mode 100644 index 000000000..35c28f3eb --- /dev/null +++ b/main/gst-plugins-good/gst-plugins-good-gnome.post-upgrade @@ -0,0 +1,7 @@ +#!/bin/sh + +for i in gstreamer-0.10.schemas; do + echo "Installing GConf2 schema $i." + GCONF_CONFIG_SOURCE=`/usr/bin/gconftool-2 --get-default-source` \ + /usr/bin/gconftool-2 --makefile-install-rule /etc/gconf/schemas/$i >/dev/null +done diff --git a/main/gst-plugins-good/gst-plugins-good-gnome.pre-deinstall b/main/gst-plugins-good/gst-plugins-good-gnome.pre-deinstall new file mode 100644 index 000000000..5facd9964 --- /dev/null +++ b/main/gst-plugins-good/gst-plugins-good-gnome.pre-deinstall @@ -0,0 +1,7 @@ +#!/bin/sh + +for i in gstreamer-0.10.schemas; do + echo "Uninstalling GConf2 schema $i." + GCONF_CONFIG_SOURCE=`/usr/bin/gconftool-2 --get-default-source` \ + /usr/bin/gconftool-2 --makefile-uninstall-rule /etc/gconf/schemas/$i >/dev/null +done |