There is apparently an error in the gentoo.org gst-plugins.eclass: at line 96, for plugin in ${GST_PLUGINS_BUILD}; do my_gst_plugins=${my_gst_plugins/plugin/} done this should be for plugin in ${GST_PLUGINS_BUILD}; do my_gst_plugins=${my_gst_plugins/${plugin}/} done Fortunately, ./configure regards a later --enable-foo as overriding an earlier --disable-foo, so this probably has no serious effect. Also might I suggest using a more expressive local var than my_gst_plugins? :P
thnx for the notification, missed that obvious one because of the redundancy i built in ;) Fixed now Still kept the my_little_sony var though ;)