pkgsrc-Changes-HG archive
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]
[pkgsrc/trunk]: pkgsrc/multimedia/gst-plugins0.10-good Initial import of gst-...
details: https://anonhg.NetBSD.org/pkgsrc/rev/79d021d580ba
branches: trunk
changeset: 506522:79d021d580ba
user: jmmv <jmmv%pkgsrc.org@localhost>
date: Wed Jan 18 15:42:27 2006 +0000
description:
Initial import of gst-plugins0.10-good, version 0.10.1. This is an update
for part of gst-plugins0.8 to the 0.10 series. Changes:
Changes since 0.10.0:
* new id3 demuxer (replaces the mad one in gst-plugins-ugly)
* memleak fixes in avidemux, wavparse, level, smoke
* ports of multipart,
* fixes in flacdec, flxdec, rtp
* documentation updates on videomixer
* added new sunaudiosink, gconfaudiosrc and gconfvideosrc elements
Bugs fixed since 0.10.0:
* 321269 : add sunaudio to 0.9
* 322769 : The ID3 tag of this file is a segfaulter
* 323021 : sockfd property to udpsrc/dynudpsink elements
* 322975 : erroneous audio specs in flac plugin
* 323226 : block/crash on id3 v2 tags when using big blocksize
* 323717 : < netinet/in.h > inclusion necessary on some systems
* 323718 : [oss] does not build on OpenBSD 3.8 because of hardcoded ...
* 323896 : pngdec/videomixer negotation problem in 0.10
* 324011 : Invalid payload type definition for some rtp payloaders
* 324012 : Invalid caps on rtpspeexpay element
* 325504 : [flacdec] gst_flac_dec_convert_src [mis]uses g_assert
* 325974 : [gst0.10] doesn't correctly gets the tags on a mp3
* 326612 : Serious memory leak in level plugin
* 326618 : memleak fix in smokeenc
API added since 0.10.0:
* device-name property on ossmixer subclasses
* GstUDPSrc::sockfd property
Changes since 0.9.6:
* Parallel installability with 0.8.x series
* Threadsafe design and API
* effectv elements ported
* videoflip updated
* multipart ported
* dv seeking fixed
* rtp elements renamed
Bugs fixed since 0.9.6:
* 322377 : udpsrc leaks sockets
* 322643 : Incorrect matroska frame default duration
* 322645 : Matroska muxer: wrong pixel aspect ratio
* 322667 : [jpegenc] leaks input buffer
* 322794 : udp plugin linked against gstnet instead of gstnetbuffer
Changes since 0.9.5:
* added speex RTP payloader/depayloader
* ported cutter
* fractional framerates
* more video filters now use BaseTransform
Bugs fixed since 0.9.5:
* 319184 : rtspsrc: invalid read in sdp_message_parse_buffer ()
* 321001 : [matroskademux] should seek to nearest preceding index en...
* 321430 : goom fails to register on amd64
Changes since 0.9.4:
* matroskamux fixes
* wavenc fixes
* cairotextoverlay ported
Bugs fixed since 0.9.4:
* 315194 : Licence information inconsistency of gst-plugins-good/gst...
* 319731 : [matroska] SimpleBlock support for muxer and demuxer
* 320308 : [matroska] set timestamps for buffers with ebml elements
* 320920 : [osssink] tries to reuse a bad file descriptor
* 321136 : [matroska-mux] avoid reading from unref'ed buffer
Changes since 0.9.3:
* DV/Firewire fixes
* speexenc, cairotimeoverlay, matroska, pngdec, flxdec, videomixer,
alphacolor ported
Bugs fixed since 0.9.3:
* 316204 : MinGW compilation: smtpe plugin has undefined symbols fro...
* 316205 : Debug category for wavenc is not defined
* 318847 : Matroska muxer port to 0.9
Changes since 0.9.1:
* Parallel installability with 0.8.x series
* Threadsafe design and API
Bugs fixed since 0.9.1:
* 316202 : MinGW compilation: undefined autoconf macro GST_DOC
* 317338 : [osssink] can't handle mono
diffstat:
multimedia/gst-plugins0.10-good/DESCR | 12 ++++++
multimedia/gst-plugins0.10-good/Makefile | 16 ++++++++
multimedia/gst-plugins0.10-good/Makefile.common | 33 ++++++++++++++++++
multimedia/gst-plugins0.10-good/PLIST | 45 +++++++++++++++++++++++++
multimedia/gst-plugins0.10-good/buildlink3.mk | 21 +++++++++++
5 files changed, 127 insertions(+), 0 deletions(-)
diffs (147 lines):
diff -r 2764b7cc4c79 -r 79d021d580ba multimedia/gst-plugins0.10-good/DESCR
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/multimedia/gst-plugins0.10-good/DESCR Wed Jan 18 15:42:27 2006 +0000
@@ -0,0 +1,12 @@
+GStreamer is a library that allows the construction of graphs of
+media-handling components, ranging from simple Ogg/Vorbis playback to
+complex audio (mixing) and video (non-linear editing) processing.
+
+Applications can take advantage of advances in codec and filter technology
+transparently. Developers can add new codecs and filters by writing a
+simple plugin with a clean, generic interface.
+
+GStreamer is released under the LGPL.
+
+This package is part of the good GStreamer plugins; that is, those that are
+considered to be stabe and correctly coded.
diff -r 2764b7cc4c79 -r 79d021d580ba multimedia/gst-plugins0.10-good/Makefile
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/multimedia/gst-plugins0.10-good/Makefile Wed Jan 18 15:42:27 2006 +0000
@@ -0,0 +1,16 @@
+# $NetBSD: Makefile,v 1.1.1.1 2006/01/18 15:42:27 jmmv Exp $
+#
+
+.include "Makefile.common"
+
+COMMENT+= good plugins
+
+CONFIGURE_ARGS+= --enable-gconf
+CONFIGURE_ARGS+= --enable-gconftool
+CONFIGURE_ARGS+= --enable-zlib
+
+GCONF2_SCHEMAS= gstreamer-0.10.schemas
+
+.include "../../devel/GConf2/schemas.mk"
+.include "../../devel/zlib/buildlink3.mk"
+.include "../../mk/bsd.pkg.mk"
diff -r 2764b7cc4c79 -r 79d021d580ba multimedia/gst-plugins0.10-good/Makefile.common
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/multimedia/gst-plugins0.10-good/Makefile.common Wed Jan 18 15:42:27 2006 +0000
@@ -0,0 +1,33 @@
+# $NetBSD: Makefile.common,v 1.1.1.1 2006/01/18 15:42:27 jmmv Exp $
+#
+
+GST_PLUGINS0.10_TYPE= good
+
+# Disable all drivers and features by default.
+.for driver in aalib \
+ aalibtest \
+ cairo \
+ dv1394 \
+ esd \
+ esdtest \
+ flac \
+ gconf \
+ gconftool \
+ jpeg \
+ ladspa \
+ libcaca \
+ libdv \
+ libpng \
+ oss \
+ shout2 \
+ shout2test \
+ speex \
+ sunaudio \
+ zlib
+CONFIGURE_ARGS+= --disable-${driver}
+.endfor
+
+.include "../../multimedia/gst-plugins0.10-base/plugins.mk"
+
+.include "../../devel/glib2/buildlink3.mk"
+.include "../../multimedia/gst-plugins0.10-base/buildlink3.mk"
diff -r 2764b7cc4c79 -r 79d021d580ba multimedia/gst-plugins0.10-good/PLIST
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/multimedia/gst-plugins0.10-good/PLIST Wed Jan 18 15:42:27 2006 +0000
@@ -0,0 +1,45 @@
+@comment $NetBSD: PLIST,v 1.1.1.1 2006/01/18 15:42:27 jmmv Exp $
+lib/gstreamer-0.10/libgstalaw.la
+lib/gstreamer-0.10/libgstalpha.la
+lib/gstreamer-0.10/libgstalphacolor.la
+lib/gstreamer-0.10/libgstauparse.la
+lib/gstreamer-0.10/libgstautodetect.la
+lib/gstreamer-0.10/libgstavi.la
+lib/gstreamer-0.10/libgstcutter.la
+lib/gstreamer-0.10/libgstdebug.la
+lib/gstreamer-0.10/libgsteffectv.la
+lib/gstreamer-0.10/libgstflxdec.la
+lib/gstreamer-0.10/libgstgconfelements.la
+lib/gstreamer-0.10/libgstgoom.la
+lib/gstreamer-0.10/libgstid3demux.la
+lib/gstreamer-0.10/libgstlevel.la
+lib/gstreamer-0.10/libgstmatroska.la
+lib/gstreamer-0.10/libgstmulaw.la
+lib/gstreamer-0.10/libgstmultipart.la
+lib/gstreamer-0.10/libgstnavigationtest.la
+lib/gstreamer-0.10/libgstrtp.la
+lib/gstreamer-0.10/libgstrtsp.la
+lib/gstreamer-0.10/libgstsmpte.la
+lib/gstreamer-0.10/libgstudp.la
+lib/gstreamer-0.10/libgstvideobox.la
+lib/gstreamer-0.10/libgstvideoflip.la
+lib/gstreamer-0.10/libgstvideomixer.la
+lib/gstreamer-0.10/libgstwavenc.la
+lib/gstreamer-0.10/libgstwavparse.la
+share/gconf/schemas/gstreamer-0.10.schemas
+${PKGLOCALEDIR}/locale/af/LC_MESSAGES/gst-plugins-good-0.10.mo
+${PKGLOCALEDIR}/locale/az/LC_MESSAGES/gst-plugins-good-0.10.mo
+${PKGLOCALEDIR}/locale/cs/LC_MESSAGES/gst-plugins-good-0.10.mo
+${PKGLOCALEDIR}/locale/en_GB/LC_MESSAGES/gst-plugins-good-0.10.mo
+${PKGLOCALEDIR}/locale/hu/LC_MESSAGES/gst-plugins-good-0.10.mo
+${PKGLOCALEDIR}/locale/it/LC_MESSAGES/gst-plugins-good-0.10.mo
+${PKGLOCALEDIR}/locale/nb/LC_MESSAGES/gst-plugins-good-0.10.mo
+${PKGLOCALEDIR}/locale/nl/LC_MESSAGES/gst-plugins-good-0.10.mo
+${PKGLOCALEDIR}/locale/or/LC_MESSAGES/gst-plugins-good-0.10.mo
+${PKGLOCALEDIR}/locale/sq/LC_MESSAGES/gst-plugins-good-0.10.mo
+${PKGLOCALEDIR}/locale/sr/LC_MESSAGES/gst-plugins-good-0.10.mo
+${PKGLOCALEDIR}/locale/sv/LC_MESSAGES/gst-plugins-good-0.10.mo
+${PKGLOCALEDIR}/locale/uk/LC_MESSAGES/gst-plugins-good-0.10.mo
+${PKGLOCALEDIR}/locale/vi/LC_MESSAGES/gst-plugins-good-0.10.mo
+@comment in GConf2: @dirrm share/gconf/schemas
+@comment in gstreamer0.10: @dirrm lib/gstreamer-0.10
diff -r 2764b7cc4c79 -r 79d021d580ba multimedia/gst-plugins0.10-good/buildlink3.mk
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/multimedia/gst-plugins0.10-good/buildlink3.mk Wed Jan 18 15:42:27 2006 +0000
@@ -0,0 +1,21 @@
+# $NetBSD: buildlink3.mk,v 1.1.1.1 2006/01/18 15:42:27 jmmv Exp $
+
+BUILDLINK_DEPTH:= ${BUILDLINK_DEPTH}+
+GST_PLUGINS0.10_GOOD_BUILDLINK3_MK:= ${GST_PLUGINS0.10_GOOD_BUILDLINK3_MK}+
+
+.if !empty(BUILDLINK_DEPTH:M+)
+BUILDLINK_DEPENDS+= gst-plugins0.10-good
+.endif
+
+BUILDLINK_PACKAGES:= ${BUILDLINK_PACKAGES:Ngst-plugins0.10-good}
+BUILDLINK_PACKAGES+= gst-plugins0.10-good
+
+.if !empty(GST_PLUGINS0.10_GOOD_BUILDLINK3_MK:M+)
+BUILDLINK_DEPENDS.gst-plugins0.10-good+= gst-plugins0.10-good>=0.10.1
+BUILDLINK_PKGSRCDIR.gst-plugins0.10-good?= ../../multimedia/gst-plugins0.10-good
+.endif # GST_PLUGINS0.10_GOOD_BUILDLINK3_MK
+
+.include "../../multimedia/gstreamer0.10/buildlink3.mk"
+.include "../../multimedia/gst-plugins0.10-base/buildlink3.mk"
+
+BUILDLINK_DEPTH:= ${BUILDLINK_DEPTH:S/+$//}
Home |
Main Index |
Thread Index |
Old Index