diff options
author | jmmv <jmmv@pkgsrc.org> | 2005-01-06 11:23:44 +0000 |
---|---|---|
committer | jmmv <jmmv@pkgsrc.org> | 2005-01-06 11:23:44 +0000 |
commit | 06a917d9d9e0e474dab7b482a0749ccf941286d5 (patch) | |
tree | 60fbd7f012d94fd0b245b5fa05d1ef64f56e92cd /multimedia/gstreamer/plugins.mk | |
parent | 5aecb1f85bd67be1d7f2835ba91845df195ae311 (diff) | |
download | pkgsrc-06a917d9d9e0e474dab7b482a0749ccf941286d5.tar.gz |
Update to 0.8.8.
While here, improve handling of files living under PREFIX/libdata: instead
of keeping them in the PLIST, remove them from the deinstallation script;
this way we won't get checksum mismatches (a typical thing when doing "make
replace").
Also remove some compatibility hacks I added before the libtool soname
changes were done (they are useless). And fix PLIST WRT .la files.
Changes since 0.8.7:
* Threading fixes
* Opt scheduler fixes
* Documentation updates
* New translation: Norwegian Bokmaal (Kjartan Maraas)
* New translation: Italian (Luca Ferretti)
* New scheduler: fair
Bugs fixed since 0.8.7:
* 144804 : opt scheduler breaks on playing a pipeline
* 148787 : clocks are not distributed correctly
* 149936 : [PATCH] [build] GStreamer without registry support do not...
* 150051 : fakesrc needs a data rate parameter that timestamps the d...
* 151605 : impossible to play .mpg or avi files with gst-launch-ext
* 153882 : [PATCH] The win32 version of gstenumtypes is not up to date
* 154061 : optimal scheduler doesn't get freed
* 156063 : infinite loop and 100% CPU with some MP3
* 156179 : gstreamer typefind plugin information from gst-inspect is...
* 157127 : Cleanup of issues reported by sparse
* 157263 : use G_SIGNAL_TYPE_STATIC_SCOPE for GstBuffers in handoff ...
* 158018 : gstreamer typefind stalls on these JPEG files
* 158162 : opt deadlock
* 158163 : [api] Problem querying on ghostpads
* 159852 : [PATCH] [api] g_signal_emit thread safety issues
* 160019 : segfault when error occurs playback of uri containing per...
* 160220 : gst_pad_set_explicit_caps of a NULL caps doesn't work
API changes since 0.8.7:
- API additions:
* A new function, gst_plugin_get_version, has been added.
Diffstat (limited to 'multimedia/gstreamer/plugins.mk')
-rw-r--r-- | multimedia/gstreamer/plugins.mk | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/multimedia/gstreamer/plugins.mk b/multimedia/gstreamer/plugins.mk index 07a94fe29bf..9366f51c653 100644 --- a/multimedia/gstreamer/plugins.mk +++ b/multimedia/gstreamer/plugins.mk @@ -1,4 +1,4 @@ -# $NetBSD: plugins.mk,v 1.3 2004/04/15 21:20:32 jmmv Exp $ +# $NetBSD: plugins.mk,v 1.4 2005/01/06 11:23:44 jmmv Exp $ # # This Makefile fragment is intended to be included by packages that install # GStreamer modules. It takes care of rebuilding the corresponding databases @@ -19,14 +19,14 @@ INSTALL_EXTRA_TMPL+= ../../multimedia/gstreamer/files/plugins.tmpl DEINSTALL_EXTRA_TMPL+= ../../multimedia/gstreamer/files/plugins.tmpl USE_PKGINSTALL= YES +PRINT_PLIST_AWK+= /^libdata\/gstreamer-0.8/ { next; } +PRINT_PLIST_AWK+= /^@dirrm libdata\/gstreamer-0.8/ { next; } + .if defined(_GSTREAMER_NO_DEPEND) BUILDLINK_PREFIX.gstreamer= ${LOCALBASE} .else USE_BUILDLINK3= YES -PRINT_PLIST_AWK+= /^libdata\/gstreamer-0.8/ { next; } -PRINT_PLIST_AWK+= /^@dirrm libdata\/gstreamer-0.8/ { next; } - BUILDLINK_DEPENDS.gstreamer+= gstreamer>=0.8.1 . include "../../multimedia/gstreamer/buildlink3.mk" .endif |