diff options
author | marcus <marcus@FreeBSD.org> | 2003-02-05 18:20:43 +0000 |
---|---|---|
committer | marcus <marcus@FreeBSD.org> | 2003-02-05 18:20:43 +0000 |
commit | 31b01c7887550f2560e790fb306b68a333bb7b92 (patch) | |
tree | 7fa8111754676780bf9999445c5d2bbc5d86c48e /multimedia/gstreamer-plugins80 | |
parent | c3af1fefa3ff80ac8a06b0b6454818866bef3838 (diff) | |
download | FreeBSD-ports-31b01c7887550f2560e790fb306b68a333bb7b92.zip FreeBSD-ports-31b01c7887550f2560e790fb306b68a333bb7b92.tar.gz |
* Update to 0.6.0
* Fix audiofile detection
* Small CC safeness fixes
* Add Hermes support
This work is the product of colaboration between lioux and myself.
Approved by: maintainer
Diffstat (limited to 'multimedia/gstreamer-plugins80')
-rw-r--r-- | multimedia/gstreamer-plugins80/Makefile | 77 | ||||
-rw-r--r-- | multimedia/gstreamer-plugins80/distinfo | 2 | ||||
-rw-r--r-- | multimedia/gstreamer-plugins80/pkg-plist | 251 |
3 files changed, 194 insertions, 136 deletions
diff --git a/multimedia/gstreamer-plugins80/Makefile b/multimedia/gstreamer-plugins80/Makefile index a3c9aaf..84d52e9 100644 --- a/multimedia/gstreamer-plugins80/Makefile +++ b/multimedia/gstreamer-plugins80/Makefile @@ -6,7 +6,7 @@ # PORTNAME= gstreamer -PORTVERSION= 0.4.2 +PORTVERSION= 0.6.0 CATEGORIES= multimedia audio MASTER_SITES= ${MASTER_SITE_SOURCEFORGE} MASTER_SITE_SUBDIR= ${PORTNAME} @@ -18,12 +18,13 @@ MAINTAINER= lioux@FreeBSD.org BUILD_DEPENDS= pkg-config:${PORTSDIR}/devel/pkgconfig LIB_DEPENDS= glib-2.0.0:${PORTSDIR}/devel/glib20 \ gconf-2.5:${PORTSDIR}/devel/gconf2 \ - gstreamer.0:${PORTSDIR}/multimedia/gstreamer \ + gstreamer-0.6.0:${PORTSDIR}/multimedia/gstreamer \ gtk-x11-2.0.0:${PORTSDIR}/x11-toolkits/gtk20 \ popt.0:${PORTSDIR}/devel/popt \ xml2.5:${PORTSDIR}/textproc/libxml2 USE_X_PREFIX= yes +USE_GMAKE= yes USE_GNOMENG= yes USE_GNOME= gnomehack \ gnomehier \ @@ -43,6 +44,9 @@ CONFIGURE_ENV= PKG_CONFIG=${PKG_CONFIG} \ CPPFLAGS="${CPPFLAGS} -I${LOCALBASE}/include" \ LDFLAGS="${LDFLAGS} -L${LOCALBASE}/lib" CONFIGURE_TARGET= +PLIST_SUB= \ + VERSION="${PORTVERSION:C/..$//}" \ + SHLIB_VERSION="${SHLIB_VERSION}" INSTALLS_SHLIB= yes # for esound detection @@ -54,28 +58,19 @@ PKG_CONFIG?="${LOCALBASE}/bin/pkg-config" SDL_CONFIG?="${LOCALBASE}/bin/sdl11-config" XMMS_CONFIG?="${LOCALBASE}/bin/xmms-config" +# library minor number +SHLIB_VERSION= 0 + post-patch: # as of this writing, FreeBSD does not support lrint* C99 math functions @${REINPLACE_CMD} -E -e \ 's|^#define.*LRINT.*$$||' \ ${CONFIGURE_WRKSRC}/${CONFIGURE_SCRIPT} -# remove version number from include dir name - @${REINPLACE_CMD} -E -e \ - 's|-@VERSION@||' \ - ${WRKSRC}/gstreamer-libs.pc.in \ - ${WRKSRC}/gstreamer-play.pc.in -# remove version number from include dir name # respect CFLAGS @${FIND} ${WRKSRC} -type f -name Makefile.in | \ ${XARGS} -n 10 ${REINPLACE_CMD} -E -e \ - 's|^(lib[[:alpha:]]+includedir.+)-@VERSION@|\1|; \ - s,-O(2|3),,; \ + 's,-O(2|3),,; \ s|-mcpu=i486||' -# gconf is not working in this release - @${REINPLACE_CMD} -E -e \ - 's,^((DIST_SUBDIRS|SUBDIRS).+)gconf,\1,' \ - ${WRKSRC}/Makefile.in \ - ${WRKSRC}/gst-libs/gst/Makefile.in # mcopidl takes the file as the last argument @${REINPLACE_CMD} -E -e \ 's|(mcopidl.+)(\$$<)(.+)$$|\1 \3 \2|' \ @@ -90,6 +85,19 @@ post-patch: ${XARGS} -n 10 ${REINPLACE_CMD} -e \ 's|malloc.h|stdlib.h|; \ s|stdint.h|inttypes.h|' +# use GMAKE, not MAKE + @${REINPLACE_CMD} -E -e \ + 's|make|${GMAKE}|' \ + ${WRKSRC}/gst-libs/ext/ffmpeg/Makefile.in +# force libaudiofile detection + @${REINPLACE_CMD} -E -e \ + 's|^.*afOpenVirtualFile[[:space:]]*\(\);|;|' \ + ${CONFIGURE_WRKSRC}/${CONFIGURE_SCRIPT} + +post-configure: +# CC safeness + @${ECHO_CMD} "CC=${CC}" >> \ + ${WRKSRC}/gst-libs/ext/ffmpeg/ffmpeg/config.mak post-install: # register plugins @@ -146,11 +154,21 @@ WITH_GNOMEVFS=yes WITH_GSM=yes .endif +# Hermes +.if exists (${LOCALBASE}/lib/libHermes.a) +WITH_HERMES=yes +.endif + # jpeg .if exists(${LOCALBASE}/lib/libjpeg.a) WITH_JPEG=yes .endif +# ladspa +.if exists(${LOCALBASE}/include/ladspa.h) +WITH_LADSPA=yes +.endif + # liba52 .if exists(${LOCALBASE}/lib/liba52.a) WITH_LIBA52=yes @@ -228,7 +246,7 @@ WITH_VORBIS=yes # xmms .if exists(${X11BASE}/lib/libxmms.a) -WITH_XMMS=yes +#WITH_XMMS=yes .endif ## @@ -326,6 +344,15 @@ LIB_DEPENDS+= gsm.1:${PORTSDIR}/audio/gsm PLIST_SUB+= GSM="" .endif +# Hermes +.ifndef(WITH_HERMES) +CONFIGURE_ARGS+= --disable-hermes +PLIST_SUB+= HERMES="@comment " +.else +LIB_DEPENDS+= Hermes.1:${PORTSDIR}/graphics/Hermes +PLIST_SUB+= HERMES="" +.endif + # http .ifndef(WITH_HTTP) CONFIGURE_ARGS+= --disable-http @@ -344,6 +371,16 @@ LIB_DEPENDS+= jpeg.9:${PORTSDIR}/graphics/jpeg PLIST_SUB+= JPEG="" .endif +# ladspa +.ifndef(WITH_LADSPA) +CONFIGURE_ARGS+= --disable-ladspa +PLIST_SUB+= LADSPA="@comment " +.else +BUILD_DEPENDS+= ${LOCALBASE}/include/ladspa.h:${PORTSDIR}/audio/ladspa + +PLIST_SUB+= LADSPA="" +.endif + # lame .ifndef(WITH_LAME) CONFIGURE_ARGS+= --disable-lame @@ -574,6 +611,10 @@ pre-everything:: @${ECHO_MSG} '===>' @${ECHO_MSG} '===> Define WITH_GNOMEVFS to enable gnomevfs Network plugin' .endif +.ifndef(WITH_HERMES) + @${ECHO_MSG} '===>' + @${ECHO_MSG} '===> Define WITH_HERMES to enable Hermes colorspace plugin' +.endif .ifndef(WITH_HTTP) @${ECHO_MSG} '===>' @${ECHO_MSG} '===> Define WITH_HTTP to enable http Network plugin' @@ -582,6 +623,10 @@ pre-everything:: @${ECHO_MSG} '===>' @${ECHO_MSG} '===> Define WITH_JPEG to enable jpeg Video plugin' .endif +.ifndef(WITH_LADSPA) + @${ECHO_MSG} '===>' + @${ECHO_MSG} '===> Define WITH_LADSPA to enable LADSPA framework Audio plugin' +.endif .ifndef(WITH_LAME) @${ECHO_MSG} '===>' @${ECHO_MSG} '===> Define WITH_LAME to enable lame MP3 Audio plugin' diff --git a/multimedia/gstreamer-plugins80/distinfo b/multimedia/gstreamer-plugins80/distinfo index e163a7b..caeb203 100644 --- a/multimedia/gstreamer-plugins80/distinfo +++ b/multimedia/gstreamer-plugins80/distinfo @@ -1 +1 @@ -MD5 (gst-plugins-0.4.2.tar.gz) = f2d499cf117408b5a4adc7a0d71eb095 +MD5 (gst-plugins-0.6.0.tar.gz) = c1eadcf2486577bb36d4e89cbfa2e65f diff --git a/multimedia/gstreamer-plugins80/pkg-plist b/multimedia/gstreamer-plugins80/pkg-plist index b9cb14f..89fefdf 100644 --- a/multimedia/gstreamer-plugins80/pkg-plist +++ b/multimedia/gstreamer-plugins80/pkg-plist @@ -1,124 +1,137 @@ bin/gst-launch-ext bin/gst-visualise etc/gconf/schemas/gstreamer.schemas -include/gst-plugins/gst/audio/audio.h -include/gst-plugins/gst/floatcast/floatcast.h -include/gst-plugins/gst/gconf/gconf.h -include/gst-plugins/gst/idct/idct.h -include/gst-plugins/gst/play/play.h -include/gst-plugins/gst/resample/resample.h -include/gst-plugins/gst/riff/riff.h -include/gst-plugins/gst/video/video.h -%%LIBA52%%lib/gst/libgsta52dec.so -%%AALIB%%lib/gst/libgstaasink.so -lib/gst/libgstac3parse.so -lib/gst/libgstadder.so -lib/gst/libgstalaw.so -%%ARTS%%lib/gst/libgstartsdsink.so -lib/gst/libgstaudio.so -lib/gst/libgstaudioscale.so -lib/gst/libgstauparse.so -%%AVIFILE%%lib/gst/libgstavidemux.so -%%AVIFILE%%lib/gst/libgstavimux.so -lib/gst/libgstcdxaparse.so -lib/gst/libgstchart.so -lib/gst/libgstcutter.so -lib/gst/libgstdeinterlace.so -%%LIBDV%%lib/gst/libgstdvdec.so -%%LIBDVDNAV%%lib/gst/libgstdvdnavsrc.so -%%LIBDVDREAD%%lib/gst/libgstdvdreadsrc.so -lib/gst/libgsteffectv.so -%%ESOUND%%lib/gst/libgstesdmon.so -%%ESOUND%%lib/gst/libgstesdsink.so -lib/gst/libgstfestival.so -lib/gst/libgstfilter.so -%%FLAC%%lib/gst/libgstflac.so -lib/gst/libgstflxdec.so -%%GNOMEVFS%%lib/gst/libgstgnomevfssink.so -%%GNOMEVFS%%lib/gst/libgstgnomevfssrc.so -lib/gst/libgstgoom.so -%%GSM%%lib/gst/libgstgsm.so -%%HTTP%%lib/gst/libgsthttpsrc.so -lib/gst/libgstidct.so -lib/gst/libgstintfloat.so -%%JPEG%%lib/gst/libgstjpeg.so -%%LAME%%lib/gst/libgstlame.so -lib/gst/libgstlevel.so -%%LIBFAME%%lib/gst/libgstlibfame.so -%%LIBMAD%%lib/gst/libgstmad.so -lib/gst/libgstmedian.so -%%LIBMIKMOD%%lib/gst/libgstmikmod.so -lib/gst/libgstmodplug.so -lib/gst/libgstmono2stereo.so -lib/gst/libgstmonoscope.so -lib/gst/libgstmp1videoparse.so -lib/gst/libgstmp3types.so -lib/gst/libgstmpeg1encoder.so -lib/gst/libgstmpeg1systemencode.so -lib/gst/libgstmpeg1types.so -%%LIBMPEG2%%lib/gst/libgstmpeg2dec.so -%%LIBMPEG2%%lib/gst/libgstmpeg2enc.so -%%LIBMPEG2%%lib/gst/libgstmpeg2subt.so -%%LIBMPEG2%%lib/gst/libgstmpeg2types.so -lib/gst/libgstmpegaudio.so -lib/gst/libgstmpegaudioparse.so -lib/gst/libgstmpegstream.so -lib/gst/libgstmulaw.so -%%OPENQUICKTIME%%lib/gst/libgstopenquicktimedecoder.so -%%OPENQUICKTIME%%lib/gst/libgstopenquicktimedemux.so -%%OPENQUICKTIME%%lib/gst/libgstopenquicktimetypes.so -%%OSS%%lib/gst/libgstossaudio.so -lib/gst/libgstpassthrough.so -lib/gst/libgstplayondemand.so -lib/gst/libgstqtdemux.so -lib/gst/libgstresample.so -lib/gst/libgstriff.so -lib/gst/libgstrtjpeg.so -%%SDL%%lib/gst/libgstsdlvideosink.so -%%LIBSHOUT%%lib/gst/libgstshout.so -%%LIBSIDPLAY%%lib/gst/libgstsid.so -lib/gst/libgstsilence.so -lib/gst/libgstsinesrc.so -lib/gst/libgstsmooth.so -lib/gst/libgstsmpte.so -%%PNG%%lib/gst/libgstsnapshot.so -lib/gst/libgstspectrum.so -lib/gst/libgstspeed.so -lib/gst/libgststereo.so -lib/gst/libgststereo2mono.so -lib/gst/libgststereosplit.so -lib/gst/libgstsynaesthesia.so -lib/gst/libgstudp.so -lib/gst/libgstvideo.so -lib/gst/libgstvideocrop.so -lib/gst/libgstvideoscale.so -lib/gst/libgstvideotestsrc.so -lib/gst/libgstvolenv.so -lib/gst/libgstvolume.so -%%VORBIS%%lib/gst/libgstvorbis.so -lib/gst/libgstvumeter.so -lib/gst/libgstwavenc.so -lib/gst/libgstwavparse.so -lib/gst/libgsty4menc.so -lib/gst/libmixmatrix.so -lib/libgstgconf-0.4.2.so.0 -lib/libgstgconf.a -lib/libgstgconf.so -lib/libgstplay-0.4.2.so.0 -lib/libgstplay.a -lib/libgstplay.so -libdata/pkgconfig/gstreamer-libs.pc -libdata/pkgconfig/gstreamer-play.pc -share/aclocal/gst-element-check.m4 -@dirrm include/gst-plugins/gst/video -@dirrm include/gst-plugins/gst/riff -@dirrm include/gst-plugins/gst/resample -@dirrm include/gst-plugins/gst/play -@dirrm include/gst-plugins/gst/idct -@dirrm include/gst-plugins/gst/gconf -@dirrm include/gst-plugins/gst/floatcast -@dirrm include/gst-plugins/gst/audio -@dirrm include/gst-plugins/gst -@dirrm include/gst-plugins +include/gstreamer-%%VERSION%%/gst/audio/audio.h +include/gstreamer-%%VERSION%%/gst/floatcast/floatcast.h +include/gstreamer-%%VERSION%%/gst/gconf/gconf.h +include/gstreamer-%%VERSION%%/gst/idct/idct.h +include/gstreamer-%%VERSION%%/gst/media-info/media-info.h +include/gstreamer-%%VERSION%%/gst/play/play.h +include/gstreamer-%%VERSION%%/gst/resample/resample.h +include/gstreamer-%%VERSION%%/gst/riff/riff.h +include/gstreamer-%%VERSION%%/gst/video/video.h +%%LIBA52%%lib/gstreamer-%%VERSION%%/libgsta52dec.so +%%AALIB%%lib/gstreamer-%%VERSION%%/libgstaasink.so +lib/gstreamer-%%VERSION%%/libgstac3parse.so +lib/gstreamer-%%VERSION%%/libgstadder.so +lib/gstreamer-%%VERSION%%/libgstalaw.so +%%ARTS%%lib/gstreamer-%%VERSION%%/libgstartsdsink.so +lib/gstreamer-%%VERSION%%/libgstaudio.so +%%LIBAUDIOFILE%%lib/gstreamer-%%VERSION%%/libgstaudiofile.so +lib/gstreamer-%%VERSION%%/libgstaudioscale.so +lib/gstreamer-%%VERSION%%/libgstauparse.so +%%AVIFILE%%lib/gstreamer-%%VERSION%%/libgstavidemux.so +%%AVIFILE%%lib/gstreamer-%%VERSION%%/libgstavimux.so +lib/gstreamer-%%VERSION%%/libgstcdxaparse.so +lib/gstreamer-%%VERSION%%/libgstchart.so +%%HERMES%%lib/gstreamer-%%VERSION%%/libgstcolorspace.so +lib/gstreamer-%%VERSION%%/libgstcutter.so +lib/gstreamer-%%VERSION%%/libgstdeinterlace.so +%%LIBDV%%lib/gstreamer-%%VERSION%%/libgstdvdec.so +%%LIBDVDNAV%%lib/gstreamer-%%VERSION%%/libgstdvdnavsrc.so +%%LIBDVDREAD%%lib/gstreamer-%%VERSION%%/libgstdvdreadsrc.so +lib/gstreamer-%%VERSION%%/libgsteffectv.so +%%ESOUND%%lib/gstreamer-%%VERSION%%/libgstesdmon.so +%%ESOUND%%lib/gstreamer-%%VERSION%%/libgstesdsink.so +lib/gstreamer-%%VERSION%%/libgstfestival.so +lib/gstreamer-%%VERSION%%/libgstffmpeg.so +lib/gstreamer-%%VERSION%%/libgstffmpegall.so +lib/gstreamer-%%VERSION%%/libgstfilter.so +%%FLAC%%lib/gstreamer-%%VERSION%%/libgstflac.so +lib/gstreamer-%%VERSION%%/libgstflxdec.so +%%GNOMEVFS%%lib/gstreamer-%%VERSION%%/libgstgnomevfssink.so +%%GNOMEVFS%%lib/gstreamer-%%VERSION%%/libgstgnomevfssrc.so +lib/gstreamer-%%VERSION%%/libgstgoom.so +%%GSM%%lib/gstreamer-%%VERSION%%/libgstgsm.so +%%HTTP%%lib/gstreamer-%%VERSION%%/libgsthttpsrc.so +lib/gstreamer-%%VERSION%%/libgstidct.so +lib/gstreamer-%%VERSION%%/libgstintfloat.so +%%JPEG%%lib/gstreamer-%%VERSION%%/libgstjpeg.so +%%LADSPA%%lib/gstreamer-%%VERSION%%/libgstladspa.so +%%LAME%%lib/gstreamer-%%VERSION%%/libgstlame.so +lib/gstreamer-%%VERSION%%/libgstlevel.so +%%LIBFAME%%lib/gstreamer-%%VERSION%%/libgstlibfame.so +%%LIBMAD%%lib/gstreamer-%%VERSION%%/libgstmad.so +lib/gstreamer-%%VERSION%%/libgstmedian.so +%%LIBMIKMOD%%lib/gstreamer-%%VERSION%%/libgstmikmod.so +lib/gstreamer-%%VERSION%%/libgstmono2stereo.so +lib/gstreamer-%%VERSION%%/libgstmonoscope.so +lib/gstreamer-%%VERSION%%/libgstmp1videoparse.so +lib/gstreamer-%%VERSION%%/libgstmp3types.so +lib/gstreamer-%%VERSION%%/libgstmpeg1encoder.so +lib/gstreamer-%%VERSION%%/libgstmpeg1systemencode.so +lib/gstreamer-%%VERSION%%/libgstmpeg1types.so +%%LIBMPEG2%%lib/gstreamer-%%VERSION%%/libgstmpeg2dec.so +lib/gstreamer-%%VERSION%%/libgstmpeg2enc.so +lib/gstreamer-%%VERSION%%/libgstmpeg2subt.so +lib/gstreamer-%%VERSION%%/libgstmpeg2types.so +lib/gstreamer-%%VERSION%%/libgstmpegaudio.so +lib/gstreamer-%%VERSION%%/libgstmpegaudioparse.so +lib/gstreamer-%%VERSION%%/libgstmpegstream.so +lib/gstreamer-%%VERSION%%/libgstmulaw.so +lib/gstreamer-%%VERSION%%/libgstoneton.so +%%OPENQUICKTIME%%lib/gstreamer-%%VERSION%%/libgstopenquicktimedecoder.so +%%OPENQUICKTIME%%lib/gstreamer-%%VERSION%%/libgstopenquicktimedemux.so +%%OPENQUICKTIME%%lib/gstreamer-%%VERSION%%/libgstopenquicktimetypes.so +%%OSS%%lib/gstreamer-%%VERSION%%/libgstossaudio.so +lib/gstreamer-%%VERSION%%/libgstpassthrough.so +lib/gstreamer-%%VERSION%%/libgstplayondemand.so +%%PNG%%lib/gstreamer-%%VERSION%%/libgstpng.so +lib/gstreamer-%%VERSION%%/libgstqtdemux.so +lib/gstreamer-%%VERSION%%/libgstresample.so +lib/gstreamer-%%VERSION%%/libgstriff.so +lib/gstreamer-%%VERSION%%/libgstrtjpeg.so +%%SDL%%lib/gstreamer-%%VERSION%%/libgstsdlvideosink.so +%%LIBSHOUT%%lib/gstreamer-%%VERSION%%/libgstshout.so +%%LIBSIDPLAY%%lib/gstreamer-%%VERSION%%/libgstsid.so +lib/gstreamer-%%VERSION%%/libgstsilence.so +lib/gstreamer-%%VERSION%%/libgstsinesrc.so +lib/gstreamer-%%VERSION%%/libgstsmooth.so +lib/gstreamer-%%VERSION%%/libgstsmpte.so +%%PNG%%lib/gstreamer-%%VERSION%%/libgstsnapshot.so +lib/gstreamer-%%VERSION%%/libgstspectrum.so +lib/gstreamer-%%VERSION%%/libgstspeed.so +lib/gstreamer-%%VERSION%%/libgststereo.so +lib/gstreamer-%%VERSION%%/libgststereo2mono.so +lib/gstreamer-%%VERSION%%/libgststereosplit.so +lib/gstreamer-%%VERSION%%/libgstsynaesthesia.so +lib/gstreamer-%%VERSION%%/libgstudp.so +lib/gstreamer-%%VERSION%%/libgstvbidec.so +lib/gstreamer-%%VERSION%%/libgstvideo.so +lib/gstreamer-%%VERSION%%/libgstvideocrop.so +lib/gstreamer-%%VERSION%%/libgstvideoscale.so +lib/gstreamer-%%VERSION%%/libgstvideotestsrc.so +lib/gstreamer-%%VERSION%%/libgstvolenv.so +lib/gstreamer-%%VERSION%%/libgstvolume.so +%%VORBIS%%lib/gstreamer-%%VERSION%%/libgstvorbis.so +lib/gstreamer-%%VERSION%%/libgstvumeter.so +lib/gstreamer-%%VERSION%%/libgstwavenc.so +lib/gstreamer-%%VERSION%%/libgstwavparse.so +lib/gstreamer-%%VERSION%%/libgsty4menc.so +lib/gstreamer-%%VERSION%%/libmixmatrix.so +lib/libgstgconf-%%VERSION%%.a +lib/libgstgconf-%%VERSION%%.so +lib/libgstgconf-%%VERSION%%.so.%%SHLIB_VERSION%% +lib/libgstmedia-info-%%VERSION%%.a +lib/libgstmedia-info-%%VERSION%%.so +lib/libgstmedia-info-%%VERSION%%.so.%%SHLIB_VERSION%% +lib/libgstplay-%%VERSION%%.a +lib/libgstplay-%%VERSION%%.so +lib/libgstplay-%%VERSION%%.so.%%SHLIB_VERSION%% +libdata/pkgconfig/gstreamer-gconf-%%VERSION%%.pc +libdata/pkgconfig/gstreamer-libs-%%VERSION%%.pc +libdata/pkgconfig/gstreamer-play-%%VERSION%%.pc +share/aclocal/gst-element-check-%%VERSION%%.m4 +@unexec rmdir %D/lib/gstreamer-%%VERSION%% 2>/dev/null || true +@dirrm include/gstreamer-%%VERSION%%/gst/video +@dirrm include/gstreamer-%%VERSION%%/gst/riff +@dirrm include/gstreamer-%%VERSION%%/gst/resample +@dirrm include/gstreamer-%%VERSION%%/gst/play +@dirrm include/gstreamer-%%VERSION%%/gst/media-info +@dirrm include/gstreamer-%%VERSION%%/gst/idct +@dirrm include/gstreamer-%%VERSION%%/gst/gconf +@dirrm include/gstreamer-%%VERSION%%/gst/floatcast +@dirrm include/gstreamer-%%VERSION%%/gst/audio +@unexec rmdir %D/include/gstreamer-%%VERSION%% 2>/dev/null || true @exec %%X11BASE%%/bin/gst-register 2>/dev/null @unexec %%X11BASE%%/bin/gst-register 2>/dev/null |