Sorry cant test any longer since sourceforge is down at the moment...
no problem was wrong anyway . this should do
--- /dev/null
+++ b/meta-openpli/recipes-openpli/enigma2-plugins/gst10-fix-enigma2-plugins.patch
@@ -0,0 +1,31 @@
+diff --git a/configure.ac b/configure.ac
+index 82785ec..419333a 100644
+--- a/configure.ac
++++ b/configure.ac
+@@ -2,6 +2,11 @@ AC_INIT([enigma2-plugins],[3.2.0],[enigma2-devel@lists.elitedvb.net])
+ AM_INIT_AUTOMAKE([dist-bzip2 foreign no-define tar-pax])
+ AC_CONFIG_HEADERS([enigma2-plugins-config.h])
+
++#dnl versions of gstreamer and plugins-base
++AC_ARG_WITH(gstversion1,
++ AS_HELP_STRING([--with-gstversion1],[enable gstversion1]),
++ [with_gstversion1=$withval],[with_gstversion1="no"])
++
+ # Silent rules are available since 1.11, but older versions
+ # are still in use. So don't use them unconditionally.
+ m4_ifdef([AM_SILENT_RULES], [AM_SILENT_RULES([yes])])
+@@ -23,7 +28,12 @@ AX_PTHREAD
+ TUXBOX_APPS_DVB
+
+ PKG_CHECK_MODULES(ENIGMA2, enigma2)
+-PKG_CHECK_MODULES(GSTREAMER, gstreamer-0.10 gstreamer-pbutils-0.10)
++if test "with_gstversion1" = "no"; then
++ PKG_CHECK_MODULES(GSTREAMER, gstreamer-0.10 gstreamer-pbutils-0.10)
++else
++ PKG_CHECK_MODULES(GSTREAMER, gstreamer-1.0 gstreamer-pbutils-1.0)
++fi
++
+ PKG_CHECK_MODULES(LIBCRYPTO, libcrypto)
+
+ AC_ARG_WITH(tpm,
+
and use by configure --with-gstversion1
But a do not know if somewhere else the --with-gstversion="1.0" was required.
if this is the case use --with-gstversion="1.0" and --with-gstversion1 later perhaps can be traced to also change the other places .