[Midnightbsd-cvs] mports [20105] trunk/multimedia: add gstreamer1 plugins port based on FreeBSD port
laffer1 at midnightbsd.org
laffer1 at midnightbsd.org
Sat Aug 29 09:58:37 EDT 2015
Revision: 20105
http://svnweb.midnightbsd.org/mports/?rev=20105
Author: laffer1
Date: 2015-08-29 09:58:36 -0400 (Sat, 29 Aug 2015)
Log Message:
-----------
add gstreamer1 plugins port based on FreeBSD port
Modified Paths:
--------------
trunk/multimedia/Makefile
Added Paths:
-----------
trunk/multimedia/gstreamer1-plugins/
trunk/multimedia/gstreamer1-plugins/Makefile
trunk/multimedia/gstreamer1-plugins/Makefile.common
trunk/multimedia/gstreamer1-plugins/distinfo
trunk/multimedia/gstreamer1-plugins/files/
trunk/multimedia/gstreamer1-plugins/files/patch-Makefile.in
trunk/multimedia/gstreamer1-plugins/files/patch-ext_cdparanoia_gstcdparanoiasrc.c
trunk/multimedia/gstreamer1-plugins/files/patch-gst_audioresample_float.c
trunk/multimedia/gstreamer1-plugins/files/patch-gst_audioresample_resample.c
trunk/multimedia/gstreamer1-plugins/files/patch-gst_audioresample_speex-resampler-double.c
trunk/multimedia/gstreamer1-plugins/pkg-descr
trunk/multimedia/gstreamer1-plugins/pkg-plist
Modified: trunk/multimedia/Makefile
===================================================================
--- trunk/multimedia/Makefile 2015-08-29 13:52:27 UTC (rev 20104)
+++ trunk/multimedia/Makefile 2015-08-29 13:58:36 UTC (rev 20105)
@@ -30,6 +30,7 @@
SUBDIR += gstreamer-plugins-xvid
SUBDIR += gstreamer-qt4
SUBDIR += gstreamer1
+SUBDIR += gstreamer1-plugins
SUBDIR += libdca
SUBDIR += libdv
SUBDIR += libdvdcss
Added: trunk/multimedia/gstreamer1-plugins/Makefile
===================================================================
--- trunk/multimedia/gstreamer1-plugins/Makefile (rev 0)
+++ trunk/multimedia/gstreamer1-plugins/Makefile 2015-08-29 13:58:36 UTC (rev 20105)
@@ -0,0 +1,175 @@
+# Created by: Mario Sergio Fujikawa Ferreira <lioux at FreeBSD.org>
+# $MidnightBSD$
+
+PORTNAME= gstreamer
+PORTVERSION?= ${BASE_PORTVERSION}
+# When chasing a shared library for a plug-in bump the PORTREVISION in the
+# plug-in port instead, like ${category}/gstreamer1-plugin-${PLUGIN}.
+PORTREVISION?= 2
+CATEGORIES?= multimedia audio
+MASTER_SITES= http://gstreamer.freedesktop.org/src/gst-plugins-base/:base \
+ http://gstreamer.freedesktop.org/src/gst-plugins-bad/:bad \
+ http://gstreamer.freedesktop.org/src/gst-plugins-good/:good \
+ http://gstreamer.freedesktop.org/src/gst-plugins-ugly/:ugly
+PKGNAMESUFFIX?= 1-plugins${GST_PLUGIN_SUFFIX}
+
+MAINTAINER= ports at MidnightBSD.org
+COMMENT?= GStreamer written collection of plugins handling several media types
+
+LICENSE= gpl2
+
+BUILD_DEPENDS+= gstreamer1>=${GST1_VERSION}${GST1_MINIMAL_VERSION}:${PORTSDIR}/multimedia/gstreamer1 \
+ iso-codes>=0:${PORTSDIR}/misc/iso-codes \
+ orc>=0.4.16:${PORTSDIR}/devel/orc
+LIB_DEPENDS+= libgstreamer-1.0.so:${PORTSDIR}/multimedia/gstreamer1 \
+ libfreetype.so:${PORTSDIR}/print/freetype2 \
+ liborc-0.4.so:${PORTSDIR}/devel/orc
+RUN_DEPENDS+= iso-codes>=0:${PORTSDIR}/misc/iso-codes
+
+BASE_PORTVERSION= 1.4.5
+BASE_DISTNAME= gst-plugins-base-${BASE_PORTVERSION}
+BASE_DISTFILE= ${BASE_DISTNAME}${EXTRACT_SUFX}
+BAD_PORTVERSION= 1.4.5
+BAD_DISTNAME= gst-plugins-bad-${BAD_PORTVERSION}
+BAD_DISTFILE= ${BAD_DISTNAME}${EXTRACT_SUFX}
+GOOD_PORTVERSION= 1.4.5
+GOOD_DISTNAME= gst-plugins-good-${GOOD_PORTVERSION}
+GOOD_DISTFILE= ${GOOD_DISTNAME}${EXTRACT_SUFX}
+UGLY_PORTVERSION= 1.4.5
+UGLY_DISTNAME= gst-plugins-ugly-${UGLY_PORTVERSION}
+UGLY_DISTFILE= ${UGLY_DISTNAME}${EXTRACT_SUFX}
+DIST?= base
+
+USES= gettext gmake libtool pathfix pkgconfig tar:xz
+WANT_GSTREAMER= yes
+USE_GNOME+= glib20 introspection:build libxml2
+GNU_CONFIGURE= yes
+INSTALL_TARGET= install-strip
+GST_PLUGIN?= base
+USE_LDCONFIG= yes
+
+CFLAGS:= ${CFLAGS} -O2 -Wno-format
+CPPFLAGS+= -I${LOCALBASE}/include
+LDFLAGS+= -lpthread -L${LOCALBASE}/lib ${EXTRA_LIBS}
+
+DEFAULT_AUDIOSINK?= osssink
+DEFAULT_AUDIOSRC?= osssrc
+
+.if ${DIST}==""
+IGNORE= DIST not specified
+.endif
+
+VERSION= 1.0
+SOVERSION= 0.405.0
+PLIST_SUB+= VERSION="${VERSION}" \
+ SOVERSION="${SOVERSION}"
+
+.include <bsd.mport.options.mk>
+
+.if ${GST_PLUGIN} == "base"
+DIST= base
+NO_GSTREAMER_COMMON= yes
+.else
+BUILD_DEPENDS+= gstreamer1-plugins>=${GST1_VERSION}${GST1_MINIMAL_VERSION}:${PORTSDIR}/multimedia/gstreamer1-plugins
+RUN_DEPENDS+= gstreamer1-plugins>=${GST1_VERSION}${GST1_MINIMAL_VERSION}:${PORTSDIR}/multimedia/gstreamer1-plugins
+.endif
+
+.if ${DIST} == base || ${DIST} == ugly
+# --with-default-audiosink specify default audio sink
+# --with-default-audiosrc specify default audio source
+# --with-default-videosink specify default video sink
+# --with-default-videosrc specify default video source
+# --with-default-visualizer specify default visualizer
+CONFIGURE_ARGS+=--with-default-audiosink="${DEFAULT_AUDIOSINK}" \
+ --with-default-audiosrc="${DEFAULT_AUDIOSRC}"
+.endif
+
+.include "${MASTERDIR}/Makefile.common"
+
+.if ${DIST}=="base"
+EXTRACT_ONLY=${BASE_DISTFILE}
+WRKSRC=${WRKDIR}/${BASE_DISTNAME}
+PORTVERSION= ${BASE_PORTVERSION}
+DISTFILES+= ${BASE_DISTFILE}:base
+PATCHDIR= ${.CURDIR}/../../multimedia/gstreamer1-plugins/files
+.elif ${DIST}=="bad"
+EXTRACT_ONLY=${BAD_DISTFILE}
+WRKSRC=${WRKDIR}/${BAD_DISTNAME}
+PORTVERSION= ${BAD_PORTVERSION}
+DISTFILES+= ${BAD_DISTFILE}:bad
+PATCHDIR= ${.CURDIR}/../../multimedia/gstreamer1-plugins-bad/files
+.elif ${DIST}=="ugly"
+EXTRACT_ONLY=${UGLY_DISTFILE}
+WRKSRC=${WRKDIR}/${UGLY_DISTNAME}
+PORTVERSION= ${UGLY_PORTVERSION}
+DISTFILES+= ${UGLY_DISTFILE}:ugly
+PATCHDIR= ${.CURDIR}/../../multimedia/gstreamer1-plugins-ugly/files
+.elif ${DIST}=="good"
+EXTRACT_ONLY=${GOOD_DISTFILE}
+WRKSRC=${WRKDIR}/${GOOD_DISTNAME}
+PORTVERSION= ${GOOD_PORTVERSION}
+DISTFILES+= ${GOOD_DISTFILE}:good
+PATCHDIR= ${.CURDIR}/../../multimedia/gstreamer1-plugins-good/files
+.elif ${DIST}=="makesum"
+DISTFILES+= ${BASE_DISTFILE}:base ${BAD_DISTFILE}:bad \
+ ${UGLY_DISTFILE}:ugly ${GOOD_DISTFILE}:good
+.else
+BROKEN= Unknown dist setting
+.endif
+
+# cdrom/dvd default device
+.ifdef(WITH_DVD_DEVICE)
+DEFAULT_DVD_DEVICE=${WITH_DVD_DEVICE}
+.else
+DEFAULT_DVD_DEVICE=/dev/cd0
+.endif
+
+post-patch:
+.if ${DIST} == bad
+# custom rule to fix opencv detection in configure
+# @${REINPLACE_CMD} -e 's|opencv <= 2.4.8|opencv <= 2.4.9|g' \
+# ${WRKSRC}/configure
+ @${REINPLACE_CMD} -e 's|/dev/dvd|${DEFAULT_DVD_DEVICE}|g' \
+ ${WRKSRC}/ext/resindvd/resindvdbin.c \
+ ${WRKSRC}/ext/resindvd/resindvdsrc.c
+.endif
+.if ${DIST} != ugly
+ @${FIND} ${WRKSRC}/ext ${WRKSRC}/sys -name Makefile.in | \
+ ${XARGS} -n 10 ${REINPLACE_CMD} -e \
+ '/la_DEPENDENCIES/,/am__DEPENDENCIES/s,$$(top_builddir)/gst-libs/.*.la,,' -e \
+ 's|$$(top_builddir)/gst-libs/gst/tag/libgsttag- at GST_API_VERSION@.la|-lgsttag-${VERSION}|; \
+ s|$$(top_builddir)/gst-libs/gst/audio/libgstaudio- at GST_API_VERSION@.la|-lgstaudio-${VERSION}|; \
+ s|$$(top_builddir)/gst-libs/gst/pbutils/libgstpbutils- at GST_API_VERSION@.la|-lgstpbutils-${VERSION}|; \
+ s|$$(top_builddir)/gst-libs/gst/riff/libgstriff- at GST_API_VERSION@.la|-lgstriff-${VERSION}|; \
+ s|$$(top_builddir)/gst-libs/gst/signalprocessor/libgstsignalprocessor- at GST_API_VERSION@.la|-lgstsignalprocessor-${VERSION}|; \
+ s|$$(top_builddir)/gst-libs/gst/video/libgstbasevideo- at GST_API_VERSION@.la|-lgstbasevideo-${VERSION}|; \
+ s|$$(top_builddir)/gst-libs/gst/video/libgstvideo- at GST_API_VERSION@.la|-lgstvideo-${VERSION}|; \
+ s|$$(top_builddir)/gst-libs/gst/base/libgstbadbase- at GST_API_VERSION@.la|-lgstbadbase-${VERSION}|; \
+ s|$$(top_builddir)/gst-libs/gst/uridownloader/libgsturidownloader- at GST_API_VERSION@.la|-lgsturidownloader-${VERSION}|; \
+ s|$$(top_builddir)/gst-libs/gst/video/libgstbadvideo- at GST_API_VERSION@.la|-lgstbadvideo-${VERSION}|'
+
+ @${FIND} ${WRKSRC}/ext ${WRKSRC}/sys -name Makefile.in | \
+ ${XARGS} -n 10 ${REINPLACE_CMD} -e \
+ '/la_DEPENDENCIES/,/am__DEPENDENCIES/s,$$(top_builddir)/gst-libs/.*.la,,' -e \
+ 's|$$(top_builddir)/gst-libs/gst/tag/libgsttag-$$(GST_API_VERSION).la|-lgsttag-${VERSION}|; \
+ s|$$(top_builddir)/gst-libs/gst/audio/libgstaudio-$$(GST_API_VERSION).la|-lgstaudio-${VERSION}|; \
+ s|$$(top_builddir)/gst-libs/gst/pbutils/libgstpbutils-$$(GST_API_VERSION).la|-lgstpbutils-${VERSION}|; \
+ s|$$(top_builddir)/gst-libs/gst/riff/libgstriff-$$(GST_API_VERSION).la|-lgstriff-${VERSION}|; \
+ s|$$(top_builddir)/gst-libs/gst/signalprocessor/libgstsignalprocessor-$$(GST_API_VERSION).la|-lgstsignalprocessor-${VERSION}|; \
+ s|$$(top_builddir)/gst-libs/gst/video/libgstbasevideo-$$(GST_API_VERSION).la|-lgstbasevideo-${VERSION}|; \
+ s|$$(top_builddir)/gst-libs/gst/video/libgstvideo-$$(GST_API_VERSION).la|-lgstvideo-${VERSION}|; \
+ s|$$(top_builddir)/gst-libs/gst/base/libgstbadbase-$$(GST_API_VERSION).la|-lgstbadbase-${VERSION}|; \
+ s|$$(top_builddir)/gst-libs/gst/uridownloader/libgsturidownloader-$$(GST_API_VERSION).la|-lgsturidownloader-${VERSION}|; \
+ s|$$(top_builddir)/gst-libs/gst/video/libgstbadvideo-$$(GST_API_VERSION).la|-lgstbadvideo-${VERSION}|'
+.endif
+
+# workaround a crash in clang 3.3 crash llvm bug # 15840
+.if ((${OSVERSION} >= 901504 && ${OSVERSION} < 902502) || \
+ (${OSVERSION} >= 1000037 && ${OSVERSION} < 1000056))
+USE_GCC= any
+.endif
+
+pre-install:
+ ${MKDIR} ${STAGEDIR}${PREFIX}/lib/gstreamer-1.0
+
+.include <bsd.port.mk>
Property changes on: trunk/multimedia/gstreamer1-plugins/Makefile
___________________________________________________________________
Added: svn:eol-style
## -0,0 +1 ##
+native
\ No newline at end of property
Added: svn:keywords
## -0,0 +1 ##
+MidnightBSD=%H
\ No newline at end of property
Added: svn:mime-type
## -0,0 +1 ##
+text/plain
\ No newline at end of property
Added: trunk/multimedia/gstreamer1-plugins/Makefile.common
===================================================================
--- trunk/multimedia/gstreamer1-plugins/Makefile.common (rev 0)
+++ trunk/multimedia/gstreamer1-plugins/Makefile.common 2015-08-29 13:58:36 UTC (rev 20105)
@@ -0,0 +1,492 @@
+# $FreeBSD: head/multimedia/gstreamer1-plugins/Makefile.common 392902 2015-07-25 19:59:35Z tijl $
+# $MCom: kwm/multimedia/gstreamer1-plugins/Makefile.common 11415 2013-04-26 22:58:21Z kwm $
+
+BASE_GST_ALL_PLUGINS= \
+ alsa \
+ cdparanoia \
+ ivorbis \
+ libvisual \
+ ogg \
+ pango \
+ theora \
+ vorbis \
+ x \
+ xvideo
+
+BAD_GST_ALL_PLUGINS+= \
+ assrender \
+ curl \
+ dts \
+ faac \
+ faad \
+ flite \
+ gme \
+ gsm \
+ hls \
+ kate \
+ libmms \
+ librfb \
+ modplug \
+ mpeg2enc \
+ mplex \
+ neon \
+ ofa \
+ openal \
+ opencv \
+ openjpeg \
+ opengl \
+ opus \
+ resindvd \
+ rtmp \
+ schro \
+ soundtouch \
+ spandsp \
+ webp \
+ zbar \
+
+# plugins not yet ported to the 1.0 API, or not portable
+BAD_GST_ALL_PLUGINS+= \
+ apexsink \
+ chromaprint \
+ decklink \
+ directfb \
+ ladspa \
+ linsys \
+ lv2 \
+ mimic \
+ mpg123 \
+ musepack \
+ mythtv \
+ nas \
+ opensles \
+ pvr \
+ rsvg \
+ sdl \
+ sndfile \
+ sndio \
+ spc \
+ teletextdec \
+ timidity \
+ vdpau \
+ voaacenc \
+ voamrwbenc \
+ wayland \
+ xvid
+
+# --with-egl-window-system=none --disable-opengl --disable-gles2 --disable-egl --disable-glx \
+
+BAD_GST_NON_PLUGINS= \
+ --disable-gles2 \
+ --disable-egl \
+ --disable-glx \
+ --disable-wayland \
+ --enable-bz2 \
+ --enable-dvb \
+ --enable-shm \
+ --enable-quicktime \
+ --disable-wgl \
+ --disable-gsettings \
+ --disable-acm \
+ --disable-android_media \
+ --disable-apple_media \
+ --disable-avc \
+ --disable-dc1394 \
+ --disable-dccp \
+ --disable-direct3d \
+ --disable-directdraw \
+ --disable-directsound \
+ --disable-fbdev \
+ --disable-osx_video \
+ --disable-uvch264 \
+ --disable-vcd \
+ --disable-wildmidi \
+ --disable-wininet
+
+GOOD_GST_ALL_PLUGINS+= \
+ aalib \
+ cairo \
+ flac \
+ gdk_pixbuf \
+ jack \
+ jpeg \
+ libcaca \
+ libdv \
+ libpng \
+ gst_v4l2 \
+ shout2 \
+ soup \
+ speex \
+ taglib \
+ vpx \
+ wavpack \
+ x
+# xxx pulse \
+
+GOOD_GST_NON_PLUGINS= \
+ --disable-dv1394 \
+ --disable-directsound \
+ --disable-osx_audio \
+ --disable-osx_video \
+ --disable-sunaudio \
+ --disable-waveform \
+ --enable-bz2 \
+ --enable-oss \
+ --enable-oss4 \
+ --enable-zlib
+
+UGLY_GST_ALL_PLUGINS+= \
+ a52dec \
+ amrnb \
+ amrwb \
+ cdio \
+ dvdread \
+ lame \
+ mad \
+ mpeg2dec \
+ sidplay \
+ twolame \
+ x264
+
+UGLY_GST_NON_PLUGINS=
+
+# Disable all plugins by default
+.if ${DIST}=="base"
+.for d in ${BASE_GST_ALL_PLUGINS}
+CONFIGURE_ARGS+= --disable-${d}
+.endfor
+.endif
+
+.if ${DIST}=="bad"
+.for d in ${BAD_GST_ALL_PLUGINS}
+CONFIGURE_ARGS+= --disable-${d}
+.endfor
+CONFIGURE_ARGS+= ${BAD_GST_NON_PLUGINS}
+.endif
+
+.if ${DIST}=="good"
+.for d in ${GOOD_GST_ALL_PLUGINS}
+CONFIGURE_ARGS+= --disable-${d}
+.endfor
+CONFIGURE_ARGS+= ${GOOD_GST_NON_PLUGINS}
+.endif
+
+.if ${DIST}=="ugly"
+.for d in ${UGLY_GST_ALL_PLUGINS}
+CONFIGURE_ARGS+= --disable-${d}
+.endfor
+CONFIGURE_ARGS+= ${UGLY_GST_NON_PLUGINS}
+.endif
+
+.if ${GST_PLUGIN}!="base" && ${GST_PLUGIN}!="bad" && \
+ ${GST_PLUGIN}!="good" && ${GST_PLUGIN}!="ugly"
+CONFIGURE_ARGS+= --enable-${GST_PLUGIN}
+.endif
+
+.if !defined(NO_GSTREAMER_COMMON)
+GST_PLUGIN_SUFFIX?= -${GST_PLUGIN}
+
+# Enable the right plugin
+CONFIGURE_ARGS:=${CONFIGURE_ARGS:S|--disable-${GST_PLUGIN}|--enable-${GST_PLUGIN}|}
+
+GST_INC_DIR= include/gstreamer-${VERSION}
+GST_LIB_DIR= lib/gstreamer-${VERSION}
+
+# Auto create PLIST
+PLIST?= ${NONEXISTENT}
+
+# ------- plugins ---------
+
+# a52dec
+gst_a52dec_LIB_DEPENDS= liba52.so:${PORTSDIR}/audio/liba52
+
+# aalib
+gst_aalib_LIB_DEPENDS= libaa.so:${PORTSDIR}/graphics/aalib
+gst_aalib_PLIST_FILES= ${GST_LIB_DIR}/libgstaasink.so
+
+# amrnb
+gst_amrnb_LIB_DEPENDS= libopencore-amrnb.so:${PORTSDIR}/audio/opencore-amr
+gst_amrnb_PLIST_FILES= ${GST_LIB_DIR}/libgstamrnb.so \
+ share/gstreamer-${VERSION}/presets/GstAmrnbEnc.prs
+
+# amrwb
+gst_amrwb_LIB_DEPENDS= libopencore-amrwb.so:${PORTSDIR}/audio/opencore-amr
+gst_amrwb_GST_PLUGIN_DIR= ext/amrwbdec
+gst_amrwb_PLIST_FILES= ${GST_LIB_DIR}/libgstamrwbdec.so
+
+# assrender
+gst_assrender_LIB_DEPENDS= libass.so:${PORTSDIR}/multimedia/libass
+
+# cairo
+gst_cairo_USE_GNOME= cairo
+
+# cdparanoia
+gst_cdparanoia_LIB_DEPENDS= libcdda_interface.so:${PORTSDIR}/audio/cdparanoia
+
+# cdio
+gst_cdio_LIB_DEPENDS= libcdio.so:${PORTSDIR}/sysutils/libcdio
+
+# curl
+gst_curl_LIB_DEPENDS= libcurl.so:${PORTSDIR}/ftp/curl
+
+# dts
+gst_dts_LIB_DEPENDS= libdca.so:${PORTSDIR}/multimedia/libdca
+gst_dts_PLIST_FILES= ${GST_LIB_DIR}/libgstdtsdec.so
+
+# libdv
+gst_libdv_LIB_DEPENDS= libdv.so:${PORTSDIR}/multimedia/libdv
+gst_libdv_GST_PLUGIN_DIR= ext/dv
+gst_libdv_PLIST_FILES= ${GST_LIB_DIR}/libgstdv.so
+
+# dvdread
+gst_dvdread_LIB_DEPENDS=libdvdread.so:${PORTSDIR}/multimedia/libdvdread
+
+# faac
+gst_faac_LIB_DEPENDS= libfaac.so:${PORTSDIR}/audio/faac
+
+# faad
+gst_faad_LIB_DEPENDS= libfaad.so:${PORTSDIR}/audio/faad
+
+# flac
+gst_flac_LIB_DEPENDS= libFLAC.so:${PORTSDIR}/audio/flac
+
+# flite
+gst_flite_LIB_DEPENDS= libflite.so:${PORTSDIR}/audio/flite
+
+# gdk_pixbuf
+gst_gdk_pixbuf_USE_GNOME= gdkpixbuf2
+gst_gdk_pixbuf_PLIST_FILES= ${GST_LIB_DIR}/libgstgdkpixbuf.so
+
+# gl
+gst_gl_USE_GL= gl glu glesv2 egl
+gst_gl_CONFIGURE_ARGS= --enable-gl --enable-glx \
+ --enable-egl --enable-gles2
+gst_gl_PLIST_FILES= #
+
+# gme
+gst_gme_LIB_DEPENDS= libgme.so:${PORTSDIR}/audio/libgme
+
+# gsm
+gst_gsm_LIB_DEPENDS= libgsm.so:${PORTSDIR}/audio/gsm
+
+# hls
+gst_hls_LIB_DEPENDS= libnettle.so:${PORTSDIR}/security/nettle
+gst_hls_PLIST_FILES= ${GST_LIB_DIR}/libgstfragmented.so
+
+# jack
+gst_jack_LIB_DEPENDS= libjack.so:${PORTSDIR}/audio/jack
+
+# jpeg
+gst_jpeg_USES= jpeg
+
+# kate
+gst_kate_LIB_DEPENDS= libkate.so:${PORTSDIR}/multimedia/libkate
+
+# lame
+gst_lame_LIB_DEPENDS= libmp3lame.so:${PORTSDIR}/audio/lame
+
+# libcaca
+gst_libcaca_LIB_DEPENDS= libcaca.so:${PORTSDIR}/graphics/libcaca
+gst_libcaca_PLIST_FILES= ${GST_LIB_DIR}/libgstcacasink.so
+
+# libmms
+gst_libmms_LIB_DEPENDS= libmms.so:${PORTSDIR}/net/libmms
+gst_libmms_PLIST_FILES= ${GST_LIB_DIR}/libgstmms.so
+
+# png
+gst_libpng_LIB_DEPENDS= libpng.so:${PORTSDIR}/graphics/png
+gst_libpng_PLIST_FILES= ${GST_LIB_DIR}/libgstpng.so
+
+# libvisual
+gst_libvisual_LIB_DEPENDS= libvisual-0.4.so:${PORTSDIR}/graphics/libvisual04
+
+# mad
+gst_mad_LIB_DEPENDS= libmad.so:${PORTSDIR}/audio/libmad
+
+# modplug
+gst_modplug_LIB_DEPENDS= libmodplug.so:${PORTSDIR}/audio/libmodplug
+
+# mpeg2enc
+gst_mpeg2enc_LIB_DEPENDS= libmjpegutils.so:${PORTSDIR}/multimedia/mjpegtools
+
+# mpeg2dec
+gst_mpeg2dec_LIB_DEPENDS= libmpeg2.so:${PORTSDIR}/multimedia/libmpeg2
+
+# neon
+gst_neon_LIB_DEPENDS+= libneon.so:${PORTSDIR}/www/neon
+gst_neon_PLIST_FILES= ${GST_LIB_DIR}/libgstneonhttpsrc.so
+
+# ogg
+gst_ogg_LIB_DEPENDS= libogg.so:${PORTSDIR}/audio/libogg
+
+# opencv
+gst_opencv_LIB_DEPENDS= libopencv_highgui.so:${PORTSDIR}/graphics/opencv
+gst_opencv_PLIST_FILES= ${GST_LIB_DIR}/libgstopencv.so \
+ share/gst-plugins-bad/${VERSION}/opencv_haarcascades/fist.xml \
+ share/gst-plugins-bad/${VERSION}/opencv_haarcascades/palm.xml
+
+# openjpeg
+gst_openjpeg_LIB_DEPENDS= libopenjpeg.so:${PORTSDIR}/graphics/openjpeg15
+
+# opus
+gst_opus_LIB_DEPENDS= libopus.so:${PORTSDIR}/audio/opus
+
+# pango
+gst_pango_USE_GNOME= pango
+
+# pulse
+gst_pulse_LIB_DEPENDS= libpulse.so:${PORTSDIR}/audio/pulseaudio
+
+# resindvd
+gst_resindvd_BUILD_DEPENDS= libdvdnav>=4.1.2:${PORTSDIR}/multimedia/libdvdnav
+gst_resindvd_RUN_DEPENDS= libdvdnav>=4.1.2:${PORTSDIR}/multimedia/libdvdnav
+
+# rtmp xxx
+gst_rtmp_LIB_DEPENDS= librtmp.so.0:${PORTSDIR}/multimedia/librtmp
+
+# shout2
+gst_shout2_LIB_DEPENDS= libshout.so:${PORTSDIR}/audio/libshout
+
+# sidplay
+gst_sidplay_LIB_DEPENDS= libsidplay.so:${PORTSDIR}/audio/libsidplay
+gst_sidplay_PLIST_FILES= ${GST_LIB_DIR}/libgstsid.so
+
+# soundtouch
+gst_soundtouch_LIB_DEPENDS= libSoundTouch.so:${PORTSDIR}/audio/soundtouch
+
+# souphttpsrc
+gst_soup_LIB_DEPENDS= libsoup-2.4.so:${PORTSDIR}/devel/libsoup
+gst_soup_GST_PLUGIN_DIR=ext/soup
+gst_soup_PLIST_FILES= ${GST_LIB_DIR}/libgstsouphttpsrc.so
+
+# spandsp
+gst_spandsp_LIB_DEPENDS= libspandsp.so:${PORTSDIR}/comms/spandsp
+
+# speex
+gst_speex_LIB_DEPENDS= libspeex.so:${PORTSDIR}/audio/speex
+
+# schroedinger or schro for short
+gst_schro_LIB_DEPENDS= libschroedinger-1.0.so:${PORTSDIR}/multimedia/schroedinger
+gst_schro_GST_PLUGIN_DIR= ext/schroedinger
+
+# taglib
+gst_taglib_LIB_DEPENDS= libtag.so:${PORTSDIR}/audio/taglib
+
+# theora
+gst_theora_LIB_DEPENDS= libtheora.so:${PORTSDIR}/multimedia/libtheora
+
+# twolame
+gst_twolame_LIB_DEPENDS= libtwolame.so:${PORTSDIR}/audio/twolame
+
+# gst_v4l2
+gst_gst_v4l2_BUILD_DEPENDS= v4l_compat>0:${PORTSDIR}/multimedia/v4l_compat
+gst_gst_v4l2_LIB_DEPENDS= libv4l2.so:${PORTSDIR}/multimedia/libv4l
+gst_gst_v4l2_RUN_DEPENDS= webcamd:${PORTSDIR}/multimedia/webcamd
+gst_gst_v4l2_PLIST_FILES= ${GST_LIB_DIR}/libgstvideo4linux2.so
+gst_gst_v4l2_GST_PLUGIN_DIR= sys/v4l2
+
+# vorbis
+gst_vorbis_USE_GSTREAMER1= ogg
+gst_vorbis_LIB_DEPENDS= libvorbis.so:${PORTSDIR}/audio/libvorbis
+
+# vpx
+gst_vpx_LIB_DEPENDS= libvpx.so:${PORTSDIR}/multimedia/libvpx
+gst_vpx_PLIST_FILES= ${GST_LIB_DIR}/libgstvpx.so \
+ share/gstreamer-${VERSION}/presets/GstVP8Enc.prs
+
+# webp
+gst_webp_LIB_DEPENDS= libwebp.so:${PORTSDIR}/graphics/webp
+
+# X ximage and xvimage sinks aka output
+.if ${DIST} == base
+gst_x_USE_XORG= x11 xv xext
+gst_x_CONFIGURE_ARGS= --enable-xvideo --enable-xshm
+gst_x_GST_PLUGIN_DIR= sys/ximage sys/xvimage
+gst_x_PLIST_FILES= ${GST_LIB_DIR}/libgstximagesink.so \
+ ${GST_LIB_DIR}/libgstxvimagesink.so
+.endif
+
+.if ${DIST} == good
+# Ximagesrc
+gst_x_USE_XORG= x11 xfixes xdamage xext
+gst_x_CONFIGURE_ARGS= --enable-x
+gst_x_GST_PLUGIN_DIR= sys/ximage
+gst_x_PLIST_FILES= ${GST_LIB_DIR}/libgstximagesrc.so
+.endif
+
+# x264
+gst_x264_LIB_DEPENDS= libx264.so:${PORTSDIR}/multimedia/libx264
+gst_x264_PLIST_FILES= ${GST_LIB_DIR}/libgstx264.so \
+ share/gstreamer-${VERSION}/presets/GstX264Enc.prs
+
+# xvid
+gst_xvid_LIB_DEPENDS= libxvidcore.so:${PORTSDIR}/multimedia/xvid
+
+# wavpack
+gst_wavpack_LIB_DEPENDS= libwavpack.so:${PORTSDIR}/audio/wavpack
+
+# zbar
+gst_zbar_LIB_DEPENDS= libzbar.so:${PORTSDIR}/graphics/zbar
+
+.endif # NO_GSTREAMER_COMMON
+
+.if !defined(NO_GSTREAMER_COMMON)
+gst_${GST_PLUGIN}_BUILD_DEPENDS?=
+gst_${GST_PLUGIN}_LIB_DEPENDS?=
+gst_${GST_PLUGIN}_RUN_DEPENDS?=
+gst_${GST_PLUGIN}_USES?=
+gst_${GST_PLUGIN}_USE_XORG?=
+gst_${GST_PLUGIN}_PLIST_FILES?= \
+ ${GST_LIB_DIR}/libgst${GST_PLUGIN}${GST_PLIST_SUFFIX}.so
+gst_${GST_PLUGIN}_EXTRA_LIBS?=
+gst_${GST_PLUGIN}_PREBUILD_DIR?=
+gst_${GST_PLUGIN}_GST_PLUGIN_DIR?= ext/${GST_PLUGIN}
+gst_${GST_PLUGIN}_POSTBUILD_DIR?=
+gst_${GST_PLUGIN}_USE_GNOME?=
+gst_${GST_PLUGIN}_CONFIGURE_ENV?=
+gst_${GST_PLUGIN}_GLIB_SCHEMAS?=
+gst_${GST_PLUGIN}_CONFIGURE_ARGS?=
+gst_${GST_PLUGIN}_USE_SDL?=
+gst_${GST_PLUGIN}_USE_GSTREAMER1?=
+
+BUILD_DEPENDS+= ${gst_${GST_PLUGIN}_BUILD_DEPENDS}
+LIB_DEPENDS+= ${gst_${GST_PLUGIN}_LIB_DEPENDS}
+RUN_DEPENDS+= ${gst_${GST_PLUGIN}_RUN_DEPENDS}
+USES+= ${gst_${GST_PLUGIN}_USES}
+PLIST_FILES= ${gst_${GST_PLUGIN}_PLIST_FILES}
+EXTRA_LIBS+= ${gst_${GST_PLUGIN}_EXTRA_LIBS}
+USE_XORG+= ${gst_${GST_PLUGIN}_USE_XORG}
+USE_GNOME+= ${gst_${GST_PLUGIN}_USE_GNOME}
+CONFIGURE_ENV+= ${gst_${GST_PLUGIN}_CONFIGURE_ENV}
+USE_GL+= ${gst_${GST_PLUGIN}_USE_GL}
+
+.if ${gst_${GST_PLUGIN}_GLIB_SCHEMAS}!=""
+GLIB_SCHEMAS= ${gst_${GST_PLUGIN}_GLIB_SCHEMAS}
+.endif
+
+CONFIGURE_ARGS+= ${gst_${GST_PLUGIN}_CONFIGURE_ARGS}
+
+.if ${gst_${GST_PLUGIN}_USE_SDL}!=""
+USE_SDL= ${gst_${GST_PLUGIN}_USE_SDL}
+.endif
+
+USE_GSTREAMER1+= ${gst_${GST_PLUGIN}_USE_GSTREAMER1} ${DIST:base=yes}
+GST_PREBUILD_DIR= ${gst_${GST_PLUGIN}_GST_PREBUILD_DIR}
+GST_PLUGIN_DIR= ${gst_${GST_PLUGIN}_GST_PLUGIN_DIR}
+GST_POSTBUILD_DIR= ${gst_${GST_PLUGIN}_GST_POSTBUILD_DIR}
+
+.if !target(do-build)
+do-build:
+.for dir in ${GST_PREBUILD_DIR} ${GST_PLUGIN_DIR} ${GST_POSTBUILD_DIR}
+ @cd ${WRKSRC}/${dir}; ${SETENV} ${MAKE_ENV} ${MAKE_CMD} ${MAKE_FLAGS} \
+ ${MAKEFILE} ${MAKE_ARGS} ${ALL_TARGET}
+.endfor
+.endif
+
+.if !target(do-install)
+do-install:
+.for dir in ${GST_PLUGIN_DIR}
+ @cd ${WRKSRC}/${dir}; ${SETENV} ${MAKE_ENV} ${MAKE_CMD} ${MAKE_FLAGS} \
+ ${MAKEFILE} ${MAKE_ARGS} ${INSTALL_TARGET}
+.endfor
+.endif
+.endif
Property changes on: trunk/multimedia/gstreamer1-plugins/Makefile.common
___________________________________________________________________
Added: svn:eol-style
## -0,0 +1 ##
+native
\ No newline at end of property
Added: svn:keywords
## -0,0 +1 ##
+MidnightBSD=%H
\ No newline at end of property
Added: svn:mime-type
## -0,0 +1 ##
+text/plain
\ No newline at end of property
Added: trunk/multimedia/gstreamer1-plugins/distinfo
===================================================================
--- trunk/multimedia/gstreamer1-plugins/distinfo (rev 0)
+++ trunk/multimedia/gstreamer1-plugins/distinfo 2015-08-29 13:58:36 UTC (rev 20105)
@@ -0,0 +1,8 @@
+SHA256 (gst-plugins-base-1.4.5.tar.xz) = 77bd8199e7a312d3d71de9b7ddf761a3b78560a2c2a80829d0815ca39cbd551d
+SIZE (gst-plugins-base-1.4.5.tar.xz) = 2637680
+SHA256 (gst-plugins-bad-1.4.5.tar.xz) = 152fad7250683d72f9deb36c5685428338365fe4a4c87ffe15e38783b14f983c
+SIZE (gst-plugins-bad-1.4.5.tar.xz) = 3824936
+SHA256 (gst-plugins-ugly-1.4.5.tar.xz) = 5cd5e81cf618944f4dc935f1669b2125e8bb2fe9cc7dc8dc15b72237aca49067
+SIZE (gst-plugins-ugly-1.4.5.tar.xz) = 846828
+SHA256 (gst-plugins-good-1.4.5.tar.xz) = 79b1b5f3f7bcaa8a615202eb5e176121eeb8336960f70687e536ad78dbc7e641
+SIZE (gst-plugins-good-1.4.5.tar.xz) = 3031588
Property changes on: trunk/multimedia/gstreamer1-plugins/distinfo
___________________________________________________________________
Added: svn:eol-style
## -0,0 +1 ##
+native
\ No newline at end of property
Added: svn:mime-type
## -0,0 +1 ##
+text/plain
\ No newline at end of property
Added: trunk/multimedia/gstreamer1-plugins/files/patch-Makefile.in
===================================================================
--- trunk/multimedia/gstreamer1-plugins/files/patch-Makefile.in (rev 0)
+++ trunk/multimedia/gstreamer1-plugins/files/patch-Makefile.in 2015-08-29 13:58:36 UTC (rev 20105)
@@ -0,0 +1,11 @@
+--- Makefile.in.orig 2013-03-10 14:54:07.000000000 +0000
++++ Makefile.in 2013-03-10 14:55:01.000000000 +0000
+@@ -483,8 +483,6 @@
+ gst-libs \
+ gst sys $(SUBDIRS_EXT) \
+ tools \
+- tests \
+- docs \
+ po \
+ common \
+ m4
Property changes on: trunk/multimedia/gstreamer1-plugins/files/patch-Makefile.in
___________________________________________________________________
Added: svn:eol-style
## -0,0 +1 ##
+native
\ No newline at end of property
Added: svn:mime-type
## -0,0 +1 ##
+text/plain
\ No newline at end of property
Added: trunk/multimedia/gstreamer1-plugins/files/patch-ext_cdparanoia_gstcdparanoiasrc.c
===================================================================
--- trunk/multimedia/gstreamer1-plugins/files/patch-ext_cdparanoia_gstcdparanoiasrc.c (rev 0)
+++ trunk/multimedia/gstreamer1-plugins/files/patch-ext_cdparanoia_gstcdparanoiasrc.c 2015-08-29 13:58:36 UTC (rev 20105)
@@ -0,0 +1,18 @@
+--- ext/cdparanoia/gstcdparanoiasrc.c.orig 2009-08-09 17:16:48.000000000 -0400
++++ ext/cdparanoia/gstcdparanoiasrc.c 2009-08-09 17:17:38.000000000 -0400
+@@ -264,6 +264,7 @@ gst_cd_paranoia_src_open (GstCddaBaseSrc
+ GST_INFO_OBJECT (src, "search overlap set to %u", src->search_overlap);
+ }
+
++#ifdef PARANOIA_CB_CACHEERR
+ cache_size = src->cache_size;
+ if (cache_size == -1) {
+ /* if paranoia mode is low (the default), assume we're doing playback */
+@@ -274,6 +275,7 @@ gst_cd_paranoia_src_open (GstCddaBaseSrc
+ }
+ paranoia_cachemodel_size (src->p, cache_size);
+ GST_INFO_OBJECT (src, "set cachemodel size to %u", cache_size);
++#endif
+
+ src->next_sector = -1;
+
Property changes on: trunk/multimedia/gstreamer1-plugins/files/patch-ext_cdparanoia_gstcdparanoiasrc.c
___________________________________________________________________
Added: svn:eol-style
## -0,0 +1 ##
+native
\ No newline at end of property
Added: svn:mime-type
## -0,0 +1 ##
+text/plain
\ No newline at end of property
Added: trunk/multimedia/gstreamer1-plugins/files/patch-gst_audioresample_float.c
===================================================================
--- trunk/multimedia/gstreamer1-plugins/files/patch-gst_audioresample_float.c (rev 0)
+++ trunk/multimedia/gstreamer1-plugins/files/patch-gst_audioresample_float.c 2015-08-29 13:58:36 UTC (rev 20105)
@@ -0,0 +1,23 @@
+--- gst/audioresample/speex_resampler_float.c.orig 2013-04-26 08:20:28.000000000 +0200
++++ gst/audioresample/speex_resampler_float.c 2013-10-20 17:32:45.000000000 +0200
+@@ -17,8 +17,20 @@
+ * Boston, MA 02110-1301, USA.
+ */
+
++#ifdef HAVE_CONFIG_H
++#include "config.h"
++#endif
++
++#ifdef _USE_SSE
++#ifndef HAVE_XMMINTRIN_H
++#undef _USE_SSE
++#undef _USE_SSE2
++#else
+ #define _USE_SSE
+ #define _USE_SSE2
++#endif
++#endif
++
+ #define _USE_NEON
+ #define FLOATING_POINT
+ #define OUTSIDE_SPEEX
Property changes on: trunk/multimedia/gstreamer1-plugins/files/patch-gst_audioresample_float.c
___________________________________________________________________
Added: svn:eol-style
## -0,0 +1 ##
+native
\ No newline at end of property
Added: svn:mime-type
## -0,0 +1 ##
+text/plain
\ No newline at end of property
Added: trunk/multimedia/gstreamer1-plugins/files/patch-gst_audioresample_resample.c
===================================================================
--- trunk/multimedia/gstreamer1-plugins/files/patch-gst_audioresample_resample.c (rev 0)
+++ trunk/multimedia/gstreamer1-plugins/files/patch-gst_audioresample_resample.c 2015-08-29 13:58:36 UTC (rev 20105)
@@ -0,0 +1,12 @@
+--- gst/audioresample/resample.c.orig 2012-06-28 10:15:58.000000000 +0200
++++ gst/audioresample/resample.c 2012-06-28 10:22:41.000000000 +0200
+@@ -79,6 +79,9 @@
+ #ifdef _USE_SSE
+ #ifndef HAVE_XMMINTRIN_H
+ #undef _USE_SSE
++/* this is a hack to build on i386, there the configure check for emmintrin.h
++ doesn't fail but the xmmintrin.h does. */
++#undef _USE_SSE2
+ #endif
+ #endif
+
Property changes on: trunk/multimedia/gstreamer1-plugins/files/patch-gst_audioresample_resample.c
___________________________________________________________________
Added: svn:eol-style
## -0,0 +1 ##
+native
\ No newline at end of property
Added: svn:mime-type
## -0,0 +1 ##
+text/plain
\ No newline at end of property
Added: trunk/multimedia/gstreamer1-plugins/files/patch-gst_audioresample_speex-resampler-double.c
===================================================================
--- trunk/multimedia/gstreamer1-plugins/files/patch-gst_audioresample_speex-resampler-double.c (rev 0)
+++ trunk/multimedia/gstreamer1-plugins/files/patch-gst_audioresample_speex-resampler-double.c 2015-08-29 13:58:36 UTC (rev 20105)
@@ -0,0 +1,21 @@
+--- gst/audioresample/speex_resampler_double.c.orig 2012-06-28 10:31:31.000000000 +0200
++++ gst/audioresample/speex_resampler_double.c 2012-06-28 10:33:01.000000000 +0200
+@@ -17,7 +17,18 @@
+ * Boston, MA 02111-1307, USA.
+ */
+
++#ifdef HAVE_CONFIG_H
++#include "config.h"
++#endif
++
++#ifdef _USE_SSE
++#ifndef HAVE_XMMINTRIN_H
++#undef _USE_SSE
++#undef _USE_SSE2
++#else
+ #define _USE_SSE2
++#endif
++#endif
+ #define FLOATING_POINT
+ #define DOUBLE_PRECISION
+ #define OUTSIDE_SPEEX
Property changes on: trunk/multimedia/gstreamer1-plugins/files/patch-gst_audioresample_speex-resampler-double.c
___________________________________________________________________
Added: svn:eol-style
## -0,0 +1 ##
+native
\ No newline at end of property
Added: svn:mime-type
## -0,0 +1 ##
+text/plain
\ No newline at end of property
Added: trunk/multimedia/gstreamer1-plugins/pkg-descr
===================================================================
--- trunk/multimedia/gstreamer1-plugins/pkg-descr (rev 0)
+++ trunk/multimedia/gstreamer1-plugins/pkg-descr 2015-08-29 13:58:36 UTC (rev 20105)
@@ -0,0 +1,17 @@
+[ excerpt from developer's site ]
+
+This is a collection of plugins written with the GStreamer framework.
+Some features of these plugins are:
+
+- Dynamically loaded plugins provide elements and media types,
+ demand-loaded via an XML registry, similar to ld.so.cache
+- Element interface handles all known types of sources, filters,
+ sinks
+- Capabilities system allows verification of element compatibility
+ using MIME types and media-specific properties
+- Autoplugging uses capabilities system to complete complex paths
+ automatically
+- Pipelines can be saved to XML and loaded back to working state
+- Resource friendly plugins don't waste RAM
+
+WWW: http://gstreamer.freedesktop.org/
Property changes on: trunk/multimedia/gstreamer1-plugins/pkg-descr
___________________________________________________________________
Added: svn:eol-style
## -0,0 +1 ##
+native
\ No newline at end of property
Added: svn:mime-type
## -0,0 +1 ##
+text/plain
\ No newline at end of property
Added: trunk/multimedia/gstreamer1-plugins/pkg-plist
===================================================================
--- trunk/multimedia/gstreamer1-plugins/pkg-plist (rev 0)
+++ trunk/multimedia/gstreamer1-plugins/pkg-plist 2015-08-29 13:58:36 UTC (rev 20105)
@@ -0,0 +1,221 @@
+bin/gst-device-monitor-%%VERSION%%
+bin/gst-discoverer-%%VERSION%%
+bin/gst-play-%%VERSION%%
+include/gstreamer-%%VERSION%%/gst/allocators/allocators.h
+include/gstreamer-%%VERSION%%/gst/allocators/gstdmabuf.h
+include/gstreamer-%%VERSION%%/gst/app/app.h
+include/gstreamer-%%VERSION%%/gst/app/gstappsink.h
+include/gstreamer-%%VERSION%%/gst/app/gstappsrc.h
+include/gstreamer-%%VERSION%%/gst/audio/audio-channels.h
+include/gstreamer-%%VERSION%%/gst/audio/audio-enumtypes.h
+include/gstreamer-%%VERSION%%/gst/audio/audio-format.h
+include/gstreamer-%%VERSION%%/gst/audio/audio-info.h
+include/gstreamer-%%VERSION%%/gst/audio/audio.h
+include/gstreamer-%%VERSION%%/gst/audio/gstaudiobasesink.h
+include/gstreamer-%%VERSION%%/gst/audio/gstaudiobasesrc.h
+include/gstreamer-%%VERSION%%/gst/audio/gstaudiocdsrc.h
+include/gstreamer-%%VERSION%%/gst/audio/gstaudioclock.h
+include/gstreamer-%%VERSION%%/gst/audio/gstaudiodecoder.h
+include/gstreamer-%%VERSION%%/gst/audio/gstaudioencoder.h
+include/gstreamer-%%VERSION%%/gst/audio/gstaudiofilter.h
+include/gstreamer-%%VERSION%%/gst/audio/gstaudioiec61937.h
+include/gstreamer-%%VERSION%%/gst/audio/gstaudiometa.h
+include/gstreamer-%%VERSION%%/gst/audio/gstaudioringbuffer.h
+include/gstreamer-%%VERSION%%/gst/audio/gstaudiosink.h
+include/gstreamer-%%VERSION%%/gst/audio/gstaudiosrc.h
+include/gstreamer-%%VERSION%%/gst/audio/streamvolume.h
+include/gstreamer-%%VERSION%%/gst/fft/fft.h
+include/gstreamer-%%VERSION%%/gst/fft/gstfft.h
+include/gstreamer-%%VERSION%%/gst/fft/gstfftf32.h
+include/gstreamer-%%VERSION%%/gst/fft/gstfftf64.h
+include/gstreamer-%%VERSION%%/gst/fft/gstffts16.h
+include/gstreamer-%%VERSION%%/gst/fft/gstffts32.h
+include/gstreamer-%%VERSION%%/gst/pbutils/codec-utils.h
+include/gstreamer-%%VERSION%%/gst/pbutils/descriptions.h
+include/gstreamer-%%VERSION%%/gst/pbutils/encoding-profile.h
+include/gstreamer-%%VERSION%%/gst/pbutils/encoding-target.h
+include/gstreamer-%%VERSION%%/gst/pbutils/gstdiscoverer.h
+include/gstreamer-%%VERSION%%/gst/pbutils/gstpluginsbaseversion.h
+include/gstreamer-%%VERSION%%/gst/pbutils/install-plugins.h
+include/gstreamer-%%VERSION%%/gst/pbutils/missing-plugins.h
+include/gstreamer-%%VERSION%%/gst/pbutils/pbutils-enumtypes.h
+include/gstreamer-%%VERSION%%/gst/pbutils/pbutils.h
+include/gstreamer-%%VERSION%%/gst/riff/riff-ids.h
+include/gstreamer-%%VERSION%%/gst/riff/riff-media.h
+include/gstreamer-%%VERSION%%/gst/riff/riff-read.h
+include/gstreamer-%%VERSION%%/gst/riff/riff.h
+include/gstreamer-%%VERSION%%/gst/rtp/gstrtcpbuffer.h
+include/gstreamer-%%VERSION%%/gst/rtp/gstrtpbaseaudiopayload.h
+include/gstreamer-%%VERSION%%/gst/rtp/gstrtpbasedepayload.h
+include/gstreamer-%%VERSION%%/gst/rtp/gstrtpbasepayload.h
+include/gstreamer-%%VERSION%%/gst/rtp/gstrtpbuffer.h
+include/gstreamer-%%VERSION%%/gst/rtp/gstrtphdrext.h
+include/gstreamer-%%VERSION%%/gst/rtp/gstrtppayloads.h
+include/gstreamer-%%VERSION%%/gst/rtp/rtp.h
+include/gstreamer-%%VERSION%%/gst/rtsp/gstrtsp-enumtypes.h
+include/gstreamer-%%VERSION%%/gst/rtsp/gstrtsp.h
+include/gstreamer-%%VERSION%%/gst/rtsp/gstrtspconnection.h
+include/gstreamer-%%VERSION%%/gst/rtsp/gstrtspdefs.h
+include/gstreamer-%%VERSION%%/gst/rtsp/gstrtspextension.h
+include/gstreamer-%%VERSION%%/gst/rtsp/gstrtspmessage.h
+include/gstreamer-%%VERSION%%/gst/rtsp/gstrtsprange.h
+include/gstreamer-%%VERSION%%/gst/rtsp/gstrtsptransport.h
+include/gstreamer-%%VERSION%%/gst/rtsp/gstrtspurl.h
+include/gstreamer-%%VERSION%%/gst/rtsp/rtsp.h
+include/gstreamer-%%VERSION%%/gst/sdp/gstmikey.h
+include/gstreamer-%%VERSION%%/gst/sdp/gstsdp.h
+include/gstreamer-%%VERSION%%/gst/sdp/gstsdpmessage.h
+include/gstreamer-%%VERSION%%/gst/sdp/sdp.h
+include/gstreamer-%%VERSION%%/gst/tag/gsttagdemux.h
+include/gstreamer-%%VERSION%%/gst/tag/gsttagmux.h
+include/gstreamer-%%VERSION%%/gst/tag/tag.h
+include/gstreamer-%%VERSION%%/gst/tag/xmpwriter.h
+include/gstreamer-%%VERSION%%/gst/video/colorbalance.h
+include/gstreamer-%%VERSION%%/gst/video/colorbalancechannel.h
+include/gstreamer-%%VERSION%%/gst/video/gstvideodecoder.h
+include/gstreamer-%%VERSION%%/gst/video/gstvideoencoder.h
+include/gstreamer-%%VERSION%%/gst/video/gstvideofilter.h
+include/gstreamer-%%VERSION%%/gst/video/gstvideometa.h
+include/gstreamer-%%VERSION%%/gst/video/gstvideopool.h
+include/gstreamer-%%VERSION%%/gst/video/gstvideosink.h
+include/gstreamer-%%VERSION%%/gst/video/gstvideoutils.h
+include/gstreamer-%%VERSION%%/gst/video/navigation.h
+include/gstreamer-%%VERSION%%/gst/video/video-blend.h
+include/gstreamer-%%VERSION%%/gst/video/video-chroma.h
+include/gstreamer-%%VERSION%%/gst/video/video-color.h
+include/gstreamer-%%VERSION%%/gst/video/video-enumtypes.h
+include/gstreamer-%%VERSION%%/gst/video/video-event.h
+include/gstreamer-%%VERSION%%/gst/video/video-format.h
+include/gstreamer-%%VERSION%%/gst/video/video-frame.h
+include/gstreamer-%%VERSION%%/gst/video/video-info.h
+include/gstreamer-%%VERSION%%/gst/video/video-overlay-composition.h
+include/gstreamer-%%VERSION%%/gst/video/video-tile.h
+include/gstreamer-%%VERSION%%/gst/video/video.h
+include/gstreamer-%%VERSION%%/gst/video/videoorientation.h
+include/gstreamer-%%VERSION%%/gst/video/videooverlay.h
+lib/girepository-1.0/GstAllocators-%%VERSION%%.typelib
+lib/girepository-1.0/GstApp-%%VERSION%%.typelib
+lib/girepository-1.0/GstAudio-%%VERSION%%.typelib
+lib/girepository-1.0/GstFft-%%VERSION%%.typelib
+lib/girepository-1.0/GstPbutils-%%VERSION%%.typelib
+lib/girepository-1.0/GstRiff-%%VERSION%%.typelib
+lib/girepository-1.0/GstRtp-%%VERSION%%.typelib
+lib/girepository-1.0/GstRtsp-%%VERSION%%.typelib
+lib/girepository-1.0/GstSdp-%%VERSION%%.typelib
+lib/girepository-1.0/GstTag-%%VERSION%%.typelib
+lib/girepository-1.0/GstVideo-%%VERSION%%.typelib
+lib/gstreamer-%%VERSION%%/libgstadder.so
+lib/gstreamer-%%VERSION%%/libgstapp.so
+lib/gstreamer-%%VERSION%%/libgstaudioconvert.so
+lib/gstreamer-%%VERSION%%/libgstaudiorate.so
+lib/gstreamer-%%VERSION%%/libgstaudioresample.so
+lib/gstreamer-%%VERSION%%/libgstaudiotestsrc.so
+lib/gstreamer-%%VERSION%%/libgstencodebin.so
+lib/gstreamer-%%VERSION%%/libgstgio.so
+lib/gstreamer-%%VERSION%%/libgstplayback.so
+lib/gstreamer-%%VERSION%%/libgstsubparse.so
+lib/gstreamer-%%VERSION%%/libgsttcp.so
+lib/gstreamer-%%VERSION%%/libgsttypefindfunctions.so
+lib/gstreamer-%%VERSION%%/libgstvideoconvert.so
+lib/gstreamer-%%VERSION%%/libgstvideorate.so
+lib/gstreamer-%%VERSION%%/libgstvideoscale.so
+lib/gstreamer-%%VERSION%%/libgstvideotestsrc.so
+lib/gstreamer-%%VERSION%%/libgstvolume.so
+lib/libgstallocators-%%VERSION%%.so
+lib/libgstallocators-%%VERSION%%.so.0
+lib/libgstallocators-%%VERSION%%.so.%%SOVERSION%%
+lib/libgstapp-%%VERSION%%.so
+lib/libgstapp-%%VERSION%%.so.0
+lib/libgstapp-%%VERSION%%.so.%%SOVERSION%%
+lib/libgstaudio-%%VERSION%%.so
+lib/libgstaudio-%%VERSION%%.so.0
+lib/libgstaudio-%%VERSION%%.so.%%SOVERSION%%
+lib/libgstfft-%%VERSION%%.so
+lib/libgstfft-%%VERSION%%.so.0
+lib/libgstfft-%%VERSION%%.so.%%SOVERSION%%
+lib/libgstpbutils-%%VERSION%%.so
+lib/libgstpbutils-%%VERSION%%.so.0
+lib/libgstpbutils-%%VERSION%%.so.%%SOVERSION%%
+lib/libgstriff-%%VERSION%%.so
+lib/libgstriff-%%VERSION%%.so.0
+lib/libgstriff-%%VERSION%%.so.%%SOVERSION%%
+lib/libgstrtp-%%VERSION%%.so
+lib/libgstrtp-%%VERSION%%.so.0
+lib/libgstrtp-%%VERSION%%.so.%%SOVERSION%%
+lib/libgstrtsp-%%VERSION%%.so
+lib/libgstrtsp-%%VERSION%%.so.0
+lib/libgstrtsp-%%VERSION%%.so.%%SOVERSION%%
+lib/libgstsdp-%%VERSION%%.so
+lib/libgstsdp-%%VERSION%%.so.0
+lib/libgstsdp-%%VERSION%%.so.%%SOVERSION%%
+lib/libgsttag-%%VERSION%%.so
+lib/libgsttag-%%VERSION%%.so.0
+lib/libgsttag-%%VERSION%%.so.%%SOVERSION%%
+lib/libgstvideo-%%VERSION%%.so
+lib/libgstvideo-%%VERSION%%.so.0
+lib/libgstvideo-%%VERSION%%.so.%%SOVERSION%%
+libdata/pkgconfig/gstreamer-allocators-%%VERSION%%.pc
+libdata/pkgconfig/gstreamer-app-%%VERSION%%.pc
+libdata/pkgconfig/gstreamer-audio-%%VERSION%%.pc
+libdata/pkgconfig/gstreamer-fft-%%VERSION%%.pc
+libdata/pkgconfig/gstreamer-pbutils-%%VERSION%%.pc
+libdata/pkgconfig/gstreamer-plugins-base-%%VERSION%%.pc
+libdata/pkgconfig/gstreamer-riff-%%VERSION%%.pc
+libdata/pkgconfig/gstreamer-rtp-%%VERSION%%.pc
+libdata/pkgconfig/gstreamer-rtsp-%%VERSION%%.pc
+libdata/pkgconfig/gstreamer-sdp-%%VERSION%%.pc
+libdata/pkgconfig/gstreamer-tag-%%VERSION%%.pc
+libdata/pkgconfig/gstreamer-video-%%VERSION%%.pc
+man/man1/gst-device-monitor-%%VERSION%%.1.gz
+man/man1/gst-discoverer-%%VERSION%%.1.gz
+man/man1/gst-play-%%VERSION%%.1.gz
+share/gir-1.0/GstAllocators-%%VERSION%%.gir
+share/gir-1.0/GstApp-%%VERSION%%.gir
+share/gir-1.0/GstAudio-%%VERSION%%.gir
+share/gir-1.0/GstFft-%%VERSION%%.gir
+share/gir-1.0/GstPbutils-%%VERSION%%.gir
+share/gir-1.0/GstRiff-%%VERSION%%.gir
+share/gir-1.0/GstRtp-%%VERSION%%.gir
+share/gir-1.0/GstRtsp-%%VERSION%%.gir
+share/gir-1.0/GstSdp-%%VERSION%%.gir
+share/gir-1.0/GstTag-%%VERSION%%.gir
+share/gir-1.0/GstVideo-%%VERSION%%.gir
+share/gst-plugins-base/1.0/license-translations.dict
+share/locale/af/LC_MESSAGES/gst-plugins-base-%%VERSION%%.mo
+share/locale/az/LC_MESSAGES/gst-plugins-base-%%VERSION%%.mo
+share/locale/bg/LC_MESSAGES/gst-plugins-base-%%VERSION%%.mo
+share/locale/ca/LC_MESSAGES/gst-plugins-base-%%VERSION%%.mo
+share/locale/cs/LC_MESSAGES/gst-plugins-base-%%VERSION%%.mo
+share/locale/da/LC_MESSAGES/gst-plugins-base-%%VERSION%%.mo
+share/locale/de/LC_MESSAGES/gst-plugins-base-%%VERSION%%.mo
+share/locale/el/LC_MESSAGES/gst-plugins-base-%%VERSION%%.mo
+share/locale/en_GB/LC_MESSAGES/gst-plugins-base-%%VERSION%%.mo
+share/locale/eo/LC_MESSAGES/gst-plugins-base-%%VERSION%%.mo
+share/locale/es/LC_MESSAGES/gst-plugins-base-%%VERSION%%.mo
+share/locale/eu/LC_MESSAGES/gst-plugins-base-%%VERSION%%.mo
+share/locale/fi/LC_MESSAGES/gst-plugins-base-%%VERSION%%.mo
+share/locale/fr/LC_MESSAGES/gst-plugins-base-%%VERSION%%.mo
+share/locale/gl/LC_MESSAGES/gst-plugins-base-%%VERSION%%.mo
+share/locale/hu/LC_MESSAGES/gst-plugins-base-%%VERSION%%.mo
+share/locale/hr/LC_MESSAGES/gst-plugins-base-%%VERSION%%.mo
+share/locale/id/LC_MESSAGES/gst-plugins-base-%%VERSION%%.mo
+share/locale/it/LC_MESSAGES/gst-plugins-base-%%VERSION%%.mo
+share/locale/ja/LC_MESSAGES/gst-plugins-base-%%VERSION%%.mo
+share/locale/lt/LC_MESSAGES/gst-plugins-base-%%VERSION%%.mo
+share/locale/lv/LC_MESSAGES/gst-plugins-base-%%VERSION%%.mo
+share/locale/nb/LC_MESSAGES/gst-plugins-base-%%VERSION%%.mo
+share/locale/nl/LC_MESSAGES/gst-plugins-base-%%VERSION%%.mo
+share/locale/or/LC_MESSAGES/gst-plugins-base-%%VERSION%%.mo
+share/locale/pl/LC_MESSAGES/gst-plugins-base-%%VERSION%%.mo
+share/locale/pt_BR/LC_MESSAGES/gst-plugins-base-%%VERSION%%.mo
+share/locale/ro/LC_MESSAGES/gst-plugins-base-%%VERSION%%.mo
+share/locale/ru/LC_MESSAGES/gst-plugins-base-%%VERSION%%.mo
+share/locale/sk/LC_MESSAGES/gst-plugins-base-%%VERSION%%.mo
+share/locale/sl/LC_MESSAGES/gst-plugins-base-%%VERSION%%.mo
+share/locale/sq/LC_MESSAGES/gst-plugins-base-%%VERSION%%.mo
+share/locale/sr/LC_MESSAGES/gst-plugins-base-%%VERSION%%.mo
+share/locale/sv/LC_MESSAGES/gst-plugins-base-%%VERSION%%.mo
+share/locale/tr/LC_MESSAGES/gst-plugins-base-%%VERSION%%.mo
+share/locale/uk/LC_MESSAGES/gst-plugins-base-%%VERSION%%.mo
+share/locale/vi/LC_MESSAGES/gst-plugins-base-%%VERSION%%.mo
+share/locale/zh_CN/LC_MESSAGES/gst-plugins-base-%%VERSION%%.mo
Property changes on: trunk/multimedia/gstreamer1-plugins/pkg-plist
___________________________________________________________________
Added: svn:eol-style
## -0,0 +1 ##
+native
\ No newline at end of property
Added: svn:mime-type
## -0,0 +1 ##
+text/plain
\ No newline at end of property
More information about the Midnightbsd-cvs
mailing list