summaryrefslogtreecommitdiff
path: root/multimedia/gstreamer/files/plugins.tmpl
diff options
context:
space:
mode:
Diffstat (limited to 'multimedia/gstreamer/files/plugins.tmpl')
-rw-r--r--multimedia/gstreamer/files/plugins.tmpl30
1 files changed, 0 insertions, 30 deletions
diff --git a/multimedia/gstreamer/files/plugins.tmpl b/multimedia/gstreamer/files/plugins.tmpl
deleted file mode 100644
index db60367b239..00000000000
--- a/multimedia/gstreamer/files/plugins.tmpl
+++ /dev/null
@@ -1,30 +0,0 @@
-# $NetBSD: plugins.tmpl,v 1.2 2005/01/06 11:23:44 jmmv Exp $
-#
-# Handle registration of GStreamer plugins into the global plugin registry.
-#
-
-GST_COMPPREP="@GST_COMPPREP@"
-GST_REGISTER="@GST_REGISTER@"
-GST_DBDIR="@GST_DBDIR@"
-
-case ${STAGE} in
-POST-INSTALL)
- ${GST_REGISTER} --gst-registry=${GST_DBDIR}/registry.xml >/dev/null
- ${GST_COMPPREP} --gst-registry=${GST_DBDIR}/registry.xml >/dev/null
- ;;
-DEINSTALL)
- if [ "${PKGBASE}" = gstreamer ]; then
- ${RM} -f ${GST_DBDIR}/compreg.xml ${GST_DBDIR}/registry.xml
- fi
- ;;
-POST-DEINSTALL)
- if [ "${PKGBASE}" != gstreamer ]; then
- ${GST_REGISTER} --gst-registry=${GST_DBDIR}/registry.xml \
- >/dev/null
- ${GST_COMPPREP} --gst-registry=${GST_DBDIR}/registry.xml \
- >/dev/null
- fi
- ;;
-*)
- ;;
-esac