[Midnightbsd-cvs] mports [15951] trunk/multimedia/gstreamer: update gstreamer

laffer1 at midnightbsd.org laffer1 at midnightbsd.org
Fri Feb 28 19:53:23 EST 2014


Revision: 15951
          http://svnweb.midnightbsd.org/mports/?rev=15951
Author:   laffer1
Date:     2014-02-28 19:53:22 -0500 (Fri, 28 Feb 2014)
Log Message:
-----------
update gstreamer

Modified Paths:
--------------
    trunk/multimedia/gstreamer/Makefile
    trunk/multimedia/gstreamer/distinfo
    trunk/multimedia/gstreamer/pkg-plist

Added Paths:
-----------
    trunk/multimedia/gstreamer/files/patch-gst_gstdatetime.c

Removed Paths:
-------------
    trunk/multimedia/gstreamer/files/patch-gst_gstregistry.c

Modified: trunk/multimedia/gstreamer/Makefile
===================================================================
--- trunk/multimedia/gstreamer/Makefile	2014-03-01 00:35:56 UTC (rev 15950)
+++ trunk/multimedia/gstreamer/Makefile	2014-03-01 00:53:22 UTC (rev 15951)
@@ -1,35 +1,28 @@
 # $MidnightBSD$
 
 PORTNAME=	gstreamer
-PORTVERSION=	0.10.35
+PORTVERSION=	0.10.36
 CATEGORIES=	multimedia
 MASTER_SITES=	http://gstreamer.freedesktop.org/src/gstreamer/
 
 MAINTAINER=	ports at MidnightBSD.org
 COMMENT=	Development framework for creating media applications
+
 LICENSE=	lgpl
+LICENSE_FILE=	${WRKSRC}/COPYING
 
-BUILD_DEPENDS=	${LOCALBASE}/bin/flex:${PORTSDIR}/textproc/flex \
-		g-ir-scanner:${PORTSDIR}/devel/gobject-introspection
-RUN_DEPENDS=	${LOCALBASE}/share/gir-1.0/GLib-2.0.gir:${PORTSDIR}/devel/gobject-introspection
-
 CFLAGS:=	${CFLAGS} -O2 -Wno-format
-USE_BISON=	build
-USE_XORG=	x11 xv xext videoproto xextproto
+USES=		bison gettext gmake pathfix pkgconfig
 USE_BZIP2=	yes
-USE_GMAKE=	yes
-WANT_GNOME=	yes
-USE_GNOME=	gnomehack glib20 libxml2 ltverhack ltasneededhack
-USE_GETTEXT=	yes
+USE_GNOME=	glib20 introspection libxml2 ltverhack ltasneededhack
 USE_AUTOTOOLS=	libtool
 CONFIGURE_ARGS=	--disable-tests \
 		--disable-examples \
 		--disable-failing-tests \
 		--disable-gtk-doc
-CONFIGURE_ENV=	CPPFLAGS="${CPPFLAGS} -I${LOCALBASE}/include" \
-		LDFLAGS="${LDFLAGS} -L${LOCALBASE}/lib" \
-		ac_cv_func_register_printf_function="no" \
-		FLEX_PATH="${LOCALBASE}/bin/flex"
+CPPFLAGS+=	-I${LOCALBASE}/include
+LDFLAGS+=	-L${LOCALBASE}/lib
+CONFIGURE_ENV=	ac_cv_func_register_printf_function="no"
 PLIST_SUB=	VERSION="${GST_VERSION}"
 USE_LDCONFIG=	yes
 GST_VERSION=	0.10
@@ -41,8 +34,8 @@
 
 .include <bsd.port.pre.mk>
 
-.if (exists(${LOCALBASE}/lib/libcheck.a) || defined(WITH_CHECK))
-LIB_DEPENDS+=	check.0:${PORTSDIR}/devel/libcheck
+.if ${PORT_OPTIONS:MLIBCHECK}
+LIB_DEPENDS+=	libcheck.so:${PORTSDIR}/devel/libcheck
 PLIST_SUB+=	CHECK=""
 .else
 CONFIGURE_ARGS+=--disable-check
@@ -49,8 +42,15 @@
 PLIST_SUB+=	CHECK="@comment "
 .endif
 
+BUILD_DEPENDS+=	${LOCALBASE}/bin/flex:${PORTSDIR}/textproc/flex
+CONFIGURE_ENV+=	FLEX_PATH="${LOCALBASE}/bin/flex"
+
 post-patch:
 	@${REINPLACE_CMD} -e 's|-Wmissing-include-dirs||g' \
 		${WRKSRC}/configure
 
+post-install:
+	@${STRIP_CMD} ${PREFIX}/lib/libgst*.so*
+	@${STRIP_CMD} ${PREFIX}/lib/gstreamer-0.10/libgst*.so
+
 .include <bsd.port.post.mk>

Modified: trunk/multimedia/gstreamer/distinfo
===================================================================
--- trunk/multimedia/gstreamer/distinfo	2014-03-01 00:35:56 UTC (rev 15950)
+++ trunk/multimedia/gstreamer/distinfo	2014-03-01 00:53:22 UTC (rev 15951)
@@ -1,3 +1,2 @@
-SHA256 (gstreamer-0.10.35.tar.bz2) = 817bfea2cd46e2487b97e2ed9218f0299b32a3de1e5e80b4c7868d17e9089786
-RMD160 (gstreamer-0.10.35.tar.bz2) = 5a08c07cb5c99b5a031ca6be5a6ac1d576593d33
-SIZE (gstreamer-0.10.35.tar.bz2) = 3606254
+SHA256 (gstreamer-0.10.36.tar.bz2) = e556a529e0a8cf1cd0afd0cab2af5488c9524e7c3f409de29b5d82bb41ae7a30
+SIZE (gstreamer-0.10.36.tar.bz2) = 3655705

Added: trunk/multimedia/gstreamer/files/patch-gst_gstdatetime.c
===================================================================
--- trunk/multimedia/gstreamer/files/patch-gst_gstdatetime.c	                        (rev 0)
+++ trunk/multimedia/gstreamer/files/patch-gst_gstdatetime.c	2014-03-01 00:53:22 UTC (rev 15951)
@@ -0,0 +1,12 @@
+--- gst/gstdatetime.c.orig	2013-10-20 16:05:12.000000000 +0200
++++ gst/gstdatetime.c	2013-10-20 16:05:24.000000000 +0200
+@@ -21,8 +21,8 @@
+ #include "config.h"
+ #endif
+ 
+-#include "glib-compat-private.h"
+ #include "gst_private.h"
++#include "glib-compat-private.h"
+ #include "gstdatetime.h"
+ #include "gstvalue.h"
+ #include <glib.h>

Deleted: trunk/multimedia/gstreamer/files/patch-gst_gstregistry.c
===================================================================
--- trunk/multimedia/gstreamer/files/patch-gst_gstregistry.c	2014-03-01 00:35:56 UTC (rev 15950)
+++ trunk/multimedia/gstreamer/files/patch-gst_gstregistry.c	2014-03-01 00:53:22 UTC (rev 15951)
@@ -1,11 +0,0 @@
---- gst/gstregistry.c.orig	2010-01-20 02:48:56.000000000 +0100
-+++ gst/gstregistry.c	2010-02-11 10:46:09.000000000 +0100
-@@ -1163,7 +1163,7 @@ gst_registry_scan_path_level (GstRegistr
-             G_GINT64_FORMAT " != %" G_GINT64_FORMAT " or external dependency "
-             "env_vars changed: %d or external dependencies changed: %d"
-             " or old path %s != new path %s",
--            plugin->file_mtime, file_status.st_mtime,
-+            (glong) plugin->file_mtime, (glong) file_status.st_mtime,
-             (gint64) plugin->file_size, (gint64) file_status.st_size,
-             env_vars_changed, deps_changed, plugin->filename, filename);
-         gst_registry_remove_plugin (context->registry, plugin);

Modified: trunk/multimedia/gstreamer/pkg-plist
===================================================================
--- trunk/multimedia/gstreamer/pkg-plist	2014-03-01 00:35:56 UTC (rev 15950)
+++ trunk/multimedia/gstreamer/pkg-plist	2014-03-01 00:53:22 UTC (rev 15951)
@@ -19,6 +19,7 @@
 include/gstreamer-%%VERSION%%/gst/base/gstbytereader.h
 include/gstreamer-%%VERSION%%/gst/base/gstbytewriter.h
 include/gstreamer-%%VERSION%%/gst/base/gstcollectpads.h
+include/gstreamer-%%VERSION%%/gst/base/gstcollectpads2.h
 include/gstreamer-%%VERSION%%/gst/base/gstdataqueue.h
 include/gstreamer-%%VERSION%%/gst/base/gstpushsrc.h
 include/gstreamer-%%VERSION%%/gst/base/gsttypefindhelper.h
@@ -150,6 +151,7 @@
 share/locale/de/LC_MESSAGES/gstreamer-%%VERSION%%.mo
 share/locale/el/LC_MESSAGES/gstreamer-%%VERSION%%.mo
 share/locale/en_GB/LC_MESSAGES/gstreamer-%%VERSION%%.mo
+share/locale/eo/LC_MESSAGES/gstreamer-%%VERSION%%.mo
 share/locale/eu/LC_MESSAGES/gstreamer-%%VERSION%%.mo
 share/locale/es/LC_MESSAGES/gstreamer-%%VERSION%%.mo
 share/locale/fi/LC_MESSAGES/gstreamer-%%VERSION%%.mo



More information about the Midnightbsd-cvs mailing list