diff options
author | marcus <marcus@df743ca5-7f9a-e211-a948-0013205c9059> | 2006-01-21 15:57:26 +0800 |
---|---|---|
committer | marcus <marcus@df743ca5-7f9a-e211-a948-0013205c9059> | 2006-01-21 15:57:26 +0800 |
commit | dccf13737f241a6f270d69f13c316f51cea36eff (patch) | |
tree | d847f21bb95e97c9a2c986e905bd4ca694181c48 /multimedia/gstreamer-plugins | |
parent | 3443ef966847f9acd8cf75fa07c80949a3c0b167 (diff) | |
download | marcuscom-ports-dccf13737f241a6f270d69f13c316f51cea36eff.tar marcuscom-ports-dccf13737f241a6f270d69f13c316f51cea36eff.tar.gz marcuscom-ports-dccf13737f241a6f270d69f13c316f51cea36eff.tar.bz2 marcuscom-ports-dccf13737f241a6f270d69f13c316f51cea36eff.tar.lz marcuscom-ports-dccf13737f241a6f270d69f13c316f51cea36eff.tar.xz marcuscom-ports-dccf13737f241a6f270d69f13c316f51cea36eff.tar.zst marcuscom-ports-dccf13737f241a6f270d69f13c316f51cea36eff.zip |
Don't strip gst-plugins libraries out from the base plugins since that
will trigger unresolved symbols.
git-svn-id: svn://creme-brulee.marcuscom.com/ports/trunk@5489 df743ca5-7f9a-e211-a948-0013205c9059
Diffstat (limited to 'multimedia/gstreamer-plugins')
-rw-r--r-- | multimedia/gstreamer-plugins/Makefile | 14 |
1 files changed, 9 insertions, 5 deletions
diff --git a/multimedia/gstreamer-plugins/Makefile b/multimedia/gstreamer-plugins/Makefile index 2647dabc3..740e5625d 100644 --- a/multimedia/gstreamer-plugins/Makefile +++ b/multimedia/gstreamer-plugins/Makefile @@ -3,11 +3,12 @@ # Whom: Mario Sergio Fujikawa Ferreira <lioux@FreeBSD.org> # # $FreeBSD$ +# $MCom$ # PORTNAME= gstreamer PORTVERSION?= 0.10.2 -PORTREVISION?= 3 +PORTREVISION?= 4 CATEGORIES?= multimedia audio MASTER_SITES= ${MASTER_SITE_GNOME:S/$/:base/} \ http://gstreamer.freedesktop.org/src/gst-plugins-base/:base \ @@ -123,11 +124,14 @@ post-patch: ${XARGS} -n 10 ${REINPLACE_CMD} -e \ 's|malloc\.h|stdlib.h|; \ s|stdint\.h|inttypes.h|; \ - s|$$(top_builddir)/gst-libs/gst/tag/libgsttag-@GST_MAJORMINOR@.la||; \ - s|$$(top_builddir)/gst-libs/gst/audio/libgstaudio-@GST_MAJORMINOR@.la||; \ - s|$$(top_builddir)/gst-libs/gst/riff/libgstriff-@GST_MAJORMINOR@.la||; \ - s|$$(top_builddir)/gst-libs/gst/cdda/libgstcdda-@GST_MAJORMINOR@.la||; \ s|%%VERSION%%|${VERSION}|' + @${FIND} ${WRKSRC}/ext -name Makefile.in | \ + ${XARGS} -n 10 ${REINPLACE_CMD} -e \ + 's|$$(top_builddir)/gst-libs/gst/tag/libgsttag-@GST_MAJORMINOR@.la||; \ + s|$$(top_builddir)/gst-libs/gst/audio/libgstaudio-@GST_MAJORMINOR@.la||; \ + s|$$(top_builddir)/gst-libs/gst/riff/libgstriff-@GST_MAJORMINOR@.la||; \ + s|$$(top_builddir)/gst-libs/gst/cdda/libgstcdda-@GST_MAJORMINOR@.la||' + #.for f in ${GST_ALL_PLUGINS} # @${REINPLACE_CMD} -e 's|ext/${f}/Makefile||g' \ # ${WRKSRC}/configure |