diff options
author | Koop Mast <kwm@FreeBSD.org> | 2010-03-31 10:40:29 +0000 |
---|---|---|
committer | Koop Mast <kwm@FreeBSD.org> | 2010-03-31 10:40:29 +0000 |
commit | 8b5d6d26e26467a399bb4ff3803fd6434803b521 (patch) | |
tree | 3522a8067229368fbfa516c1a471ae8903af006b /multimedia/gstreamer-plugins-good | |
parent | 01b027aceea55ea85afe8a10f00431a47a87f769 (diff) | |
download | ports-8b5d6d26e26467a399bb4ff3803fd6434803b521.tar.gz ports-8b5d6d26e26467a399bb4ff3803fd6434803b521.zip |
Update to 0.10.21.
Fix detection of libpng.
New plugin v4l2.
Notes
Notes:
svn path=/head/; revision=251886
Diffstat (limited to 'multimedia/gstreamer-plugins-good')
3 files changed, 46 insertions, 3 deletions
diff --git a/multimedia/gstreamer-plugins-good/files/patch-configure b/multimedia/gstreamer-plugins-good/files/patch-configure index 6f58672361fd..c33e0a02e4a9 100644 --- a/multimedia/gstreamer-plugins-good/files/patch-configure +++ b/multimedia/gstreamer-plugins-good/files/patch-configure @@ -1,6 +1,6 @@ ---- configure.orig 2008-08-10 13:30:19.813061935 -0500 -+++ configure 2008-08-10 13:29:56.315341694 -0500 -@@ -32905,7 +32905,7 @@ +--- configure.orig 2010-02-11 17:29:54.000000000 +0100 ++++ configure 2010-02-11 17:34:38.000000000 +0100 +@@ -24271,7 +24271,7 @@ if test "${with_default_audiosink+set}" else @@ -8,3 +8,22 @@ + DEFAULT_VISUALIZER="$DEFAULT_VISUALIZER" fi + +@@ -26653,6 +26653,8 @@ $as_echo_n "checking Checking for up to + #ifdef __sun /* Solaris */ + #include <sys/types.h> + #include <sys/videodev2.h> ++#elif __FreeBSD__ ++#include <linux/videodev2.h> + #else /* Linux */ + #include <linux/types.h> + #define _LINUX_TIME_H +@@ -26726,6 +26728,8 @@ $as_echo_n "checking struct v4l2_buffer + #ifdef __sun /* Solaris */ + #include <sys/types.h> + #include <sys/videodev2.h> ++#elif __FreeBSD__ ++#include <linux/videodev2.h> + #else /* Linux */ + #include <linux/types.h> + #define _LINUX_TIME_H diff --git a/multimedia/gstreamer-plugins-good/files/patch-sys_v4l2_gstv4l2object.h b/multimedia/gstreamer-plugins-good/files/patch-sys_v4l2_gstv4l2object.h new file mode 100644 index 000000000000..af186ea7ff3a --- /dev/null +++ b/multimedia/gstreamer-plugins-good/files/patch-sys_v4l2_gstv4l2object.h @@ -0,0 +1,21 @@ +--- sys/v4l2/gstv4l2object.h.orig 2010-02-11 17:52:41.000000000 +0100 ++++ sys/v4l2/gstv4l2object.h 2010-02-11 17:57:50.000000000 +0100 +@@ -38,13 +38,15 @@ + */ + #include <sys/ioctl.h> + #include <sys/types.h> +-#ifndef __sun ++#ifdef __sun ++#include <sys/videodev2.h> ++#elif defined(__FreeBSD__) ++#include <linux/videodev2.h> ++#else /* linux */ + #include <linux/types.h> + #define _LINUX_TIME_H + #define __user + #include <linux/videodev2.h> +-#else +-#include <sys/videodev2.h> + #endif + + #include <gst/gst.h> diff --git a/multimedia/gstreamer-plugins-good/pkg-plist b/multimedia/gstreamer-plugins-good/pkg-plist index c89168050014..2d3659e84bb3 100644 --- a/multimedia/gstreamer-plugins-good/pkg-plist +++ b/multimedia/gstreamer-plugins-good/pkg-plist @@ -64,6 +64,8 @@ lib/gstreamer-%%VERSION%%/libgstrtpmanager.la lib/gstreamer-%%VERSION%%/libgstrtpmanager.so lib/gstreamer-%%VERSION%%/libgstrtsp.la lib/gstreamer-%%VERSION%%/libgstrtsp.so +lib/gstreamer-%%VERSION%%/libgstshapewipe.la +lib/gstreamer-%%VERSION%%/libgstshapewipe.so lib/gstreamer-%%VERSION%%/libgstsmpte.la lib/gstreamer-%%VERSION%%/libgstsmpte.so lib/gstreamer-%%VERSION%%/libgstspectrum.la @@ -97,6 +99,7 @@ share/locale/ca/LC_MESSAGES/gst-plugins-good-%%VERSION%%.mo share/locale/cs/LC_MESSAGES/gst-plugins-good-%%VERSION%%.mo share/locale/da/LC_MESSAGES/gst-plugins-good-%%VERSION%%.mo share/locale/de/LC_MESSAGES/gst-plugins-good-%%VERSION%%.mo +share/locale/el/LC_MESSAGES/gst-plugins-good-%%VERSION%%.mo share/locale/en_GB/LC_MESSAGES/gst-plugins-good-%%VERSION%%.mo share/locale/es/LC_MESSAGES/gst-plugins-good-%%VERSION%%.mo share/locale/eu/LC_MESSAGES/gst-plugins-good-%%VERSION%%.mo |