RFC gstreamer 0.6.2 update

Mario Sergio Fujikawa Ferreira lioux at FreeBSD.org
Tue Jun 10 19:18:03 PDT 2003


Hi,

	I've just updated both gstreamer and gstreamer-plugins ports
to version 0.6.2 which is a bugfix release mostly.

	I tested it against gstreamer-player port and despite
some audio out of sync problems, it seems to work fine.

	Could you guys cross test this? If I hear nothing
otherwise, I should be committing these to the tree by 13:00 GMT-3.
Bear in mind that there has been a library version bump on both
ports, therefore you might have to update your library dependencies.

	Regards,

-- 
Mario S F Ferreira - DF - Brazil - "I guess this is a signature."
FreeBSD Committer | FreeBSD-KDE Core Team | CS Developer
feature, n: a documented bug | bug, n: an undocumented feature
-------------- next part --------------
diff -ruN /usr/ports/multimedia/gstreamer/Makefile /usr/home/lioux/src/myports/multimedia/gstreamer/Makefile
--- /usr/ports/multimedia/gstreamer/Makefile	Tue Apr 22 08:22:12 2003
+++ /usr/home/lioux/src/myports/multimedia/gstreamer/Makefile	Tue Jun 10 14:31:10 2003
@@ -6,10 +6,11 @@
 #
 
 PORTNAME=	gstreamer
-PORTVERSION=	0.6.1
+PORTVERSION=	0.6.2
 CATEGORIES=	multimedia
-MASTER_SITES=	${MASTER_SITE_SOURCEFORGE}
-MASTER_SITE_SUBDIR=	${PORTNAME}
+#MASTER_SITES=	${MASTER_SITE_SOURCEFORGE}
+#MASTER_SITE_SUBDIR=	${PORTNAME}
+MASTER_SITES=	http://gstreamer.net/releases/${PORTVERSION}/src/
 
 MAINTAINER=	lioux at FreeBSD.org
 COMMENT=	Development framework for creating media applications
@@ -41,12 +42,13 @@
 
 MAN1=	gst-complete.1 gst-compprep.1 gst-inspect.1 gst-launch.1 \
 	gst-feedback.1 gst-md5sum.1 \
+	gst-typefind.1 \
 	gst-register.1 gst-xmllaunch.1
 
 PKG_CONFIG?="${LOCALBASE}/bin/pkg-config"
 
 # library minor number
-SHLIB_VERSION=	0
+SHLIB_VERSION=	1
 
 post-install:
 # register plugins
diff -ruN /usr/ports/multimedia/gstreamer/distinfo /usr/home/lioux/src/myports/multimedia/gstreamer/distinfo
--- /usr/ports/multimedia/gstreamer/distinfo	Tue Apr 22 08:22:12 2003
+++ /usr/home/lioux/src/myports/multimedia/gstreamer/distinfo	Tue Jun 10 13:52:53 2003
@@ -1 +1 @@
-MD5 (gstreamer-0.6.1.tar.bz2) = e9db8443c7679978b72d485c744f3189
+MD5 (gstreamer-0.6.2.tar.bz2) = 56de8c6b9128cfd9f9758ed13ec8abeb
diff -ruN /usr/ports/multimedia/gstreamer/pkg-plist /usr/home/lioux/src/myports/multimedia/gstreamer/pkg-plist
--- /usr/ports/multimedia/gstreamer/pkg-plist	Tue Apr 22 08:22:12 2003
+++ /usr/home/lioux/src/myports/multimedia/gstreamer/pkg-plist	Tue Jun 10 14:24:56 2003
@@ -6,6 +6,7 @@
 bin/gst-launch
 bin/gst-md5sum
 bin/gst-register
+bin/gst-typefind
 bin/gst-xmllaunch
 include/gstreamer-%%VERSION%%/gst/bytestream/bytestream.h
 include/gstreamer-%%VERSION%%/gst/control/control.h
-------------- next part --------------
diff -ruN /usr/ports/multimedia/gstreamer-plugins/Makefile /usr/home/lioux/src/myports/multimedia/gstreamer-plugins/Makefile
--- /usr/ports/multimedia/gstreamer-plugins/Makefile	Tue May 13 05:32:37 2003
+++ /usr/home/lioux/src/myports/multimedia/gstreamer-plugins/Makefile	Tue Jun 10 15:13:54 2003
@@ -6,11 +6,11 @@
 #
 
 PORTNAME=	gstreamer
-PORTVERSION=	0.6.1
-PORTREVISION=	1
+PORTVERSION=	0.6.2
 CATEGORIES=	multimedia audio
-MASTER_SITES=	${MASTER_SITE_SOURCEFORGE}
-MASTER_SITE_SUBDIR=	${PORTNAME}
+#MASTER_SITES=	${MASTER_SITE_SOURCEFORGE}
+#MASTER_SITE_SUBDIR=	${PORTNAME}
+MASTER_SITES=	http://gstreamer.net/releases/${PORTVERSION}/src/
 PKGNAMESUFFIX=	-plugins
 DISTNAME=	gst-plugins-${PORTVERSION}
 
@@ -18,7 +18,7 @@
 COMMENT=	GStreamer written collection of plugins handling several media types
 
 BUILD_DEPENDS=	pkg-config:${PORTSDIR}/devel/pkgconfig
-LIB_DEPENDS=	gstreamer-0.6.0:${PORTSDIR}/multimedia/gstreamer \
+LIB_DEPENDS=	gstreamer-0.6.1:${PORTSDIR}/multimedia/gstreamer \
 		popt.0:${PORTSDIR}/devel/popt \
 
 USE_X_PREFIX=	yes
@@ -57,7 +57,7 @@
 XMMS_CONFIG?="${LOCALBASE}/bin/xmms-config"
 
 # library minor number
-SHLIB_VERSION=  0
+SHLIB_VERSION=  1
 
 post-patch:
 # as of this writing, FreeBSD does not support lrint* C99 math functions
@@ -138,6 +138,11 @@
 WITH_AVIFILE=yes
 .endif
 
+# cdparanoia
+.if exists(${LOCALBASE}/lib/libcdda_paranoia.a)
+WITH_CDPARANOIA=yes
+.endif
+
 # esound
 .if (${HAVE_GNOME:Mesound}!="")
 WITH_ESOUND=yes
@@ -304,6 +309,16 @@
 PLIST_SUB+=	AVIFILE=""
 .endif
 
+# cdparanoia
+.ifndef(WITH_CDPARANOIA)
+CONFIGURE_ARGS+=	--disable-cdparanoia
+PLIST_SUB+=	CDPARANOIA="@comment "
+.else
+LIB_DEPENDS+=	cdda_interface.0:${PORTSDIR}/audio/cdparanoia
+
+PLIST_SUB+=	CDPARANOIA=""
+.endif
+
 # esound
 .ifndef(WITH_ESOUND)
 CONFIGURE_ARGS+=	--disable-esd \
@@ -604,6 +619,10 @@
 .ifndef(WITH_AVIFILE)
 	@${ECHO_MSG} '===>'
 	@${ECHO_MSG} '===> Define WITH_AVIFILE to enable avifile Video plugin'
+.endif
+.ifndef(WITH_CDPARANOIA)
+	@${ECHO_MSG} '===>'
+	@${ECHO_MSG} '===> Define WITH_CDPARANOIA to enable cdparanoia Audio plugin'
 .endif
 .ifndef(WITH_ESOUND)
 	@${ECHO_MSG} '===>'
diff -ruN /usr/ports/multimedia/gstreamer-plugins/distinfo /usr/home/lioux/src/myports/multimedia/gstreamer-plugins/distinfo
--- /usr/ports/multimedia/gstreamer-plugins/distinfo	Tue Apr 22 08:22:12 2003
+++ /usr/home/lioux/src/myports/multimedia/gstreamer-plugins/distinfo	Tue Jun 10 13:54:36 2003
@@ -1 +1 @@
-MD5 (gst-plugins-0.6.1.tar.gz) = 0d3cc17cafc57f145d80b880af47f99f
+MD5 (gst-plugins-0.6.2.tar.gz) = ef7b6ce20e32e9abae22aeb2169f4055
diff -ruN /usr/ports/multimedia/gstreamer-plugins/pkg-plist /usr/home/lioux/src/myports/multimedia/gstreamer-plugins/pkg-plist
--- /usr/ports/multimedia/gstreamer-plugins/pkg-plist	Tue Apr 22 08:22:12 2003
+++ /usr/home/lioux/src/myports/multimedia/gstreamer-plugins/pkg-plist	Tue Jun 10 20:38:23 2003
@@ -22,6 +22,7 @@
 lib/gstreamer-%%VERSION%%/libgstauparse.so
 lib/gstreamer-%%VERSION%%/libgstavidemux.so
 lib/gstreamer-%%VERSION%%/libgstavimux.so
+%%CDPARANOIA%%lib/gstreamer-%%VERSION%%/libgstcdparanoia.so
 lib/gstreamer-%%VERSION%%/libgstcdxaparse.so
 lib/gstreamer-%%VERSION%%/libgstchart.so
 %%HERMES%%lib/gstreamer-%%VERSION%%/libgstcolorspace.so
@@ -54,7 +55,6 @@
 %%LIBMAD%%lib/gstreamer-%%VERSION%%/libgstmad.so
 lib/gstreamer-%%VERSION%%/libgstmedian.so
 %%LIBMIKMOD%%lib/gstreamer-%%VERSION%%/libgstmikmod.so
-lib/gstreamer-%%VERSION%%/libgstmodplug.so
 lib/gstreamer-%%VERSION%%/libgstmono2stereo.so
 lib/gstreamer-%%VERSION%%/libgstmonoscope.so
 lib/gstreamer-%%VERSION%%/libgstmp1videoparse.so
@@ -117,7 +117,7 @@
 lib/libgstgconf-%%VERSION%%.so.%%SHLIB_VERSION%%
 lib/libgstmedia-info-%%VERSION%%.a
 lib/libgstmedia-info-%%VERSION%%.so
-lib/libgstmedia-info-%%VERSION%%.so.%%SHLIB_VERSION%%
+lib/libgstmedia-info-%%VERSION%%.so.0
 lib/libgstplay-%%VERSION%%.a
 lib/libgstplay-%%VERSION%%.so
 lib/libgstplay-%%VERSION%%.so.%%SHLIB_VERSION%%
-------------- next part --------------
A non-text attachment was scrubbed...
Name: not available
Type: application/pgp-signature
Size: 187 bytes
Desc: not available
Url : http://lists.freebsd.org/pipermail/freebsd-gnome/attachments/20030610/ea75856e/attachment.bin


More information about the freebsd-gnome mailing list