summaryrefslogtreecommitdiffstats
path: root/main/gst-plugins-good
diff options
context:
space:
mode:
authorWilliam Pitcock <nenolod@dereferenced.org>2011-01-25 14:44:52 -0600
committerWilliam Pitcock <nenolod@dereferenced.org>2011-01-25 14:44:52 -0600
commita9bda69b115bea401ea7bd60a63f19ccc84b5ded (patch)
tree46d79e51ff2d1cd894dcac34b555a9492437b577 /main/gst-plugins-good
parent3894b362a5c234d3077be582a34e700ce400b04f (diff)
downloadaports-fcolista-a9bda69b115bea401ea7bd60a63f19ccc84b5ded.tar.bz2
aports-fcolista-a9bda69b115bea401ea7bd60a63f19ccc84b5ded.tar.xz
main/gst-plugins-good: add missing install scripts
Diffstat (limited to 'main/gst-plugins-good')
-rw-r--r--main/gst-plugins-good/gst-plugins-good-gnome.post-install7
-rw-r--r--main/gst-plugins-good/gst-plugins-good-gnome.post-upgrade7
-rw-r--r--main/gst-plugins-good/gst-plugins-good-gnome.pre-deinstall7
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