Package Details: gstreamer0.10-base-plugins 0.10.36-13

Git Clone URL: https://aur.archlinux.org/gstreamer0.10-base.git (read-only, click to copy)
Package Base: gstreamer0.10-base
Description: GStreamer Multimedia Framework Base Plugins (gst-plugins-base)
Upstream URL: http://gstreamer.freedesktop.org/
Licenses: LGPL
Groups: gstreamer0.10-plugins
Conflicts: gstreamer0.10-alsa, gstreamer0.10-cdparanoia, gstreamer0.10-libvisual, gstreamer0.10-ogg, gstreamer0.10-pango, gstreamer0.10-theora, gstreamer0.10-vorbis
Replaces: gstreamer0.10-alsa, gstreamer0.10-cdparanoia, gstreamer0.10-libvisual, gstreamer0.10-ogg, gstreamer0.10-pango, gstreamer0.10-theora, gstreamer0.10-vorbis
Submitter: yurikoles
Maintainer: ava1ar
Last Packager: ava1ar
Votes: 130
Popularity: 0.027052
First Submitted: 2017-01-26 13:45 (UTC)
Last Updated: 2020-04-19 04:37 (UTC)

Latest Comments

« First ‹ Previous 1 2 3 4 5 6 7 .. 13 Next › Last »

Alkkem commented on 2020-12-03 12:58 (UTC)

Even though I applied Static_rocket's fix, it's still not working. It cannot find a missing dependency but I really don't know why this happens: ==> Making package: gstreamer0.10-base 0.10.36-13 (Thu 03 Dec 2020 13:57:38 CET) ==> Checking runtime dependencies... ==> Checking buildtime dependencies... ==> Installing missing dependencies... error: target not found: gstreamer0.10>=0.10.36 ==> ERROR: 'pacman' failed to install missing dependencies. ==> Missing dependencies: -> gstreamer0.10>=0.10.36 ==> ERROR: Could not resolve all dependencies.

freenestor commented on 2020-06-07 14:30 (UTC)

fixed by myself, due to proxychains.

freenestor commented on 2020-06-07 14:07 (UTC)

how to fix this?

make[4]: Nothing to be done for 'install-exec-am'. /usr/bin/mkdir -p '/tmp/yaourt-tmp-aart/aur-gstreamer0.10-base/pkg/gstreamer0.10-base/usr/include/gstreamer-0.10/gst/floatcast' /usr/bin/install -c -m 644 floatcast.h '/tmp/yaourt-tmp-aart/aur-gstreamer0.10-base/pkg/gstreamer0.10-base/usr/include/gstreamer-0.10/gst/floatcast' make[4]: [Makefile:539: install-floatcastincludeHEADERS] Segmentation fault (core dumped) make[4]: Leaving directory '/tmp/yaourt-tmp-aart/aur-gstreamer0.10-base/src/gst-plugins-base-0.10.36/gst-libs/gst/floatcast' make[3]: [Makefile:657: install-am] Error 2 make[3]: Leaving directory '/tmp/yaourt-tmp-aart/aur-gstreamer0.10-base/src/gst-plugins-base-0.10.36/gst-libs/gst/floatcast' make[2]: [Makefile:582: install-recursive] Error 1 make[2]: Leaving directory '/tmp/yaourt-tmp-aart/aur-gstreamer0.10-base/src/gst-plugins-base-0.10.36/gst-libs/gst' make[1]: [Makefile:555: install-recursive] Error 1 make[1]: Leaving directory '/tmp/yaourt-tmp-aart/aur-gstreamer0.10-base/src/gst-plugins-base-0.10.36/gst-libs' make: *** [Makefile:678: install-recursive] Error 1 ==> ERROR: A failure occurred in package_gstreamer0.10-base(). Aborting... ==> ERROR: Makepkg was unable to build gstreamer0.10-base. ==> Restart building gstreamer0.10-base ? [y/N]

ava1ar commented on 2020-04-19 04:38 (UTC)

Static_Rocket thanks for the patch, package updated to use it instead of find&sed

Static_Rocket commented on 2020-04-17 05:34 (UTC)

If anybody doesn't want to use the find command I have a patch that addresses the root cause of the problem: Stripping out the unnecessary escape character in the enum_headers makefile parameters. During preparation this escape character cascades down to the files I outlined earlier (the ones the find command later locates and manipulates). The recent update doesn't implement it so I'm just offering it as a reliable alternative for anyone who wants it.

http://ix.io/2imx

ava1ar commented on 2020-04-17 05:11 (UTC)

Updated, thanks guys!

cable commented on 2020-04-15 22:02 (UTC)

I can confirm tsani's modification works for me! Thanks!

newtoarch commented on 2020-04-08 00:45 (UTC)

I tried following the two fixes (@tsani's and @Static_Rocket's), but unfortunately compiling still fails. Here's the paste: https://pastebin.com/Pm7uZ9es

Here's what my build() function looks after the change: build() { cd ${_pkgname}-${pkgver} NOCONFIGURE=1 ./autogen.sh ./configure --prefix=/usr --sysconfdir=/etc --localstatedir=/var --disable-static --enable-experimental --disable-gnome_vfs --disable-gtk-doc find . -type f -exec sed -i -e 's/\#include/#include/g' {} \; make sed -e 's/^SUBDIRS_EXT =.*/SUBDIRS_EXT =/' -i Makefile }

tsani commented on 2020-04-01 20:38 (UTC)

I used Static_Rocket's fix as well, but slightly adjusted with -type f. To recap what worked for me: I added the following line to the build function in the PKGBUILD, right before the call to make:

find . -type f -exec sed -i -e 's/\\#include/#include/g' {} \;

Hope this helps others who are stuck until this gets resolved in this package or upstream.