Can you please tell me how can I resolve these dependencies on ubuntu:

checking for GSTREAMER... configure: error: Package requirements (gstreamer-0.10 >= 0.10
                     gstreamer-app-0.10
                     gstreamer-base-0.10
                     gstreamer-pbutils-0.10
                     gstreamer-plugins-base-0.10 >= 0.10.25
                     gstreamer-video-0.10) were not met:

No package 'gstreamer-app-0.10' found
No package 'gstreamer-pbutils-0.10' found
No package 'gstreamer-plugins-base-0.10' found
No package 'gstreamer-video-0.10' found

I have tried:

$ sudo apt-get install *gstreamer-video*
Reading package lists... Done
Building dependency tree       
Reading state information... Done
E: Regex compilation error - Invalid preceding regular expression
$ sudo apt-get install *gstreamer-app*
Reading package lists... Done
Building dependency tree       
Reading state information... Done
E: Regex compilation error - Invalid preceding regular expression
$ sudo apt-get install *gstreamer-base*
Reading package lists... Done
Building dependency tree       
Reading state information... Done
E: Regex compilation error - Invalid preceding regular expression
link|improve this question

62% accept rate
feedback

migrated from stackoverflow.com Mar 28 '10 at 6:35

This question came from our site for professional and enthusiast programmers.

3 Answers

$ apt-get install libgstreamer0.10-dev libgstreamer-plugins-base0.10-dev

which you could have found by doing a search for gstreamer-app-0.10.pc in package contents on packages.ubuntu.com or with apt-file search, or by running the whole configuration process within auto-apt run.

link|improve this answer
feedback

Try

apt-get install libgstreamer*
link|improve this answer
Thanks . I tried that. But still same error. I have tried '$ sudo apt-get install libgstreamer*-dev' but it does not work. – michael Mar 28 '10 at 1:38
Tried this too, but cant install or find decklinksrc – YumYumYum Sep 23 '11 at 23:09
feedback

I have tried that '$ apt-get install libgstreamer0.10-dev libgstreamer-plugins-base0.10-dev'

But it now said:

Requested 'gstreamer-plugins-base-0.10 >= 0.10.25' but version of GStreamer Base Plugins Libraries is 0.10.18
Consider adjusting the PKG_CONFIG_PATH environment variable if you
installed software in a non-standard prefix.

Alternatively, you may set the environment variables GSTREAMER_CFLAGS
and GSTREAMER_LIBS to avoid the need to call pkg-config.
See the pkg-config man page for more details.

So download and 'make install' gstreamer in /home/michael/bin (./configure --prefix-/home/michael/bin).

And the I have set

$ echo $PKG_CONFIG_PATH
/home/novarra/bin/lib/pkgconfig
$ echo $GSTREAMER_LIBS
/home/scheung/bin/lib/pkconfig

And rerun ./autogen.sh --enable-debug

I set get the same 'Requested 'gstreamer-plugins-base-0.10 >= 0.10.25' but version of GStreamer Base Plugins Libraries is 0.10.18'

link|improve this answer
michael, you need to associate your accounts in your user profile (see meta.stackoverflow.com/questions/18232/…). then you'll regain ownership of this question. – quack quixote Mar 28 '10 at 22:20
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.