diff options
author | William Pitcock <nenolod@dereferenced.org> | 2011-01-25 14:44:52 -0600 |
---|---|---|
committer | William Pitcock <nenolod@dereferenced.org> | 2011-01-25 14:44:52 -0600 |
commit | a9bda69b115bea401ea7bd60a63f19ccc84b5ded (patch) | |
tree | 46d79e51ff2d1cd894dcac34b555a9492437b577 | |
parent | 3894b362a5c234d3077be582a34e700ce400b04f (diff) | |
download | aports-a9bda69b115bea401ea7bd60a63f19ccc84b5ded.tar.bz2 aports-a9bda69b115bea401ea7bd60a63f19ccc84b5ded.tar.xz |
main/gst-plugins-good: add missing install scripts
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 0000000000..35c28f3eba --- /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 0000000000..35c28f3eba --- /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 0000000000..5facd9964d --- /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 |