diff options
author | Tobias C. Berner <tcberner@FreeBSD.org> | 2019-03-16 21:55:51 +0000 |
---|---|---|
committer | Tobias C. Berner <tcberner@FreeBSD.org> | 2019-03-16 21:55:51 +0000 |
commit | 369eb054b0edf196641e8706f3f6fcd77788f690 (patch) | |
tree | d44bab2e528ec5663705a59ae511ea0a4e027206 /multimedia/gstreamer-qt4 | |
parent | 0905a6eadceddc6507f0dffa4fbb18f40feda17c (diff) |
Notes
Diffstat (limited to 'multimedia/gstreamer-qt4')
7 files changed, 0 insertions, 231 deletions
diff --git a/multimedia/gstreamer-qt4/Makefile b/multimedia/gstreamer-qt4/Makefile deleted file mode 100644 index e529b5e08603..000000000000 --- a/multimedia/gstreamer-qt4/Makefile +++ /dev/null @@ -1,37 +0,0 @@ -# Created by: Dima Panov <fluffy@FreeBSD.org> -# $FreeBSD$ - -PORTNAME= gstreamer -PORTVERSION= 0.10.3 -PORTREVISION= 14 -CATEGORIES= multimedia -MASTER_SITES= http://gstreamer.freedesktop.org/src/qt-${PORTNAME}/ -PKGNAMESUFFIX= -qt4 -DISTNAME= qt-${PORTNAME}-${PORTVERSION} - -MAINTAINER= kde@FreeBSD.org -COMMENT= Qt4 bindings for GStreamer multimedia library - -LICENSE= LGPL21+ -LICENSE_FILE= ${WRKSRC}/COPYING - -DEPRECATED= Qt4 has been EOL since december 2015 -EXPIRATION_DATE= 2019-03-15 - -LIB_DEPENDS= libboost_thread.so:devel/boost-libs - -USES= bison cmake:noninja gmake pathfix pkgconfig qt:4 tar:bzip2 -USE_LDCONFIG= yes -USE_GSTREAMER= yes -USE_GNOME= glib20 -USE_QT= corelib gui opengl declarative \ - qmake_build moc_build rcc_build uic_build qtestlib_build - -PLIST_SUB= VERSION="${PORTVERSION}" GST_VERSION="${GST_VERSION}" - -GST_VERSION= ${PORTVERSION:C/..$//} - -CMAKE_ARGS+= -DCMAKE_INCLUDE_PATH:STRING="${LOCALBASE}/include" -LDFLAGS+= -L${LOCALBASE}/lib - -.include <bsd.port.mk> diff --git a/multimedia/gstreamer-qt4/distinfo b/multimedia/gstreamer-qt4/distinfo deleted file mode 100644 index 72c53f179446..000000000000 --- a/multimedia/gstreamer-qt4/distinfo +++ /dev/null @@ -1,2 +0,0 @@ -SHA256 (qt-gstreamer-0.10.3.tar.bz2) = 542f1f28153c898fdb7a03084a628a0a6b0583d8657d758fcb4da3f9bb4e0fdf -SIZE (qt-gstreamer-0.10.3.tar.bz2) = 317895 diff --git a/multimedia/gstreamer-qt4/files/patch-elements_gstqtvideosink_gstqtvideosinkbase.cpp b/multimedia/gstreamer-qt4/files/patch-elements_gstqtvideosink_gstqtvideosinkbase.cpp deleted file mode 100644 index 28481b6a8a4f..000000000000 --- a/multimedia/gstreamer-qt4/files/patch-elements_gstqtvideosink_gstqtvideosinkbase.cpp +++ /dev/null @@ -1,15 +0,0 @@ -invalid suffix on literal; C++11 requires a space between literal and identifier -[-Wreserved-user-defined-literal] - GST_TRACE_OBJECT(sink, "Posting new buffer (%"GST_PTR_FORMAT") for rendering. " - ---- elements/gstqtvideosink/gstqtvideosinkbase.cpp.orig 2018-01-07 08:43:35 UTC -+++ elements/gstqtvideosink/gstqtvideosinkbase.cpp -@@ -217,7 +217,7 @@ GstFlowReturn GstQtVideoSinkBase::show_frame(GstVideoS - { - GstQtVideoSinkBase *sink = GST_QT_VIDEO_SINK_BASE(video_sink); - -- GST_TRACE_OBJECT(sink, "Posting new buffer (%"GST_PTR_FORMAT") for rendering. " -+ GST_TRACE_OBJECT(sink, "Posting new buffer (%" GST_PTR_FORMAT ") for rendering. " - "Format dirty: %d", buffer, (int)sink->formatDirty); - - QCoreApplication::postEvent(sink->delegate, diff --git a/multimedia/gstreamer-qt4/files/patch-elements_gstqtvideosink_qtvideosinkdelegate.cpp b/multimedia/gstreamer-qt4/files/patch-elements_gstqtvideosink_qtvideosinkdelegate.cpp deleted file mode 100644 index 0df7a97d74ca..000000000000 --- a/multimedia/gstreamer-qt4/files/patch-elements_gstqtvideosink_qtvideosinkdelegate.cpp +++ /dev/null @@ -1,15 +0,0 @@ -invalid suffix on literal; C++11 requires a space between literal and identifier -[-Wreserved-user-defined-literal] - GST_TRACE_OBJECT(m_sink, "Received buffer %"GST_PTR_FORMAT, bufEvent->buffer); - ---- elements/gstqtvideosink/qtvideosinkdelegate.cpp.orig 2018-01-07 08:41:02 UTC -+++ elements/gstqtvideosink/qtvideosinkdelegate.cpp -@@ -376,7 +376,7 @@ bool QtVideoSinkDelegate::event(QEvent *event) - BufferEvent *bufEvent = dynamic_cast<BufferEvent*>(event); - Q_ASSERT(bufEvent); - -- GST_TRACE_OBJECT(m_sink, "Received buffer %"GST_PTR_FORMAT, bufEvent->buffer); -+ GST_TRACE_OBJECT(m_sink, "Received buffer %" GST_PTR_FORMAT, bufEvent->buffer); - - if (m_buffer) { - //free the previous buffer diff --git a/multimedia/gstreamer-qt4/files/patch-elements_gstqtvideosink_qwidgetvideosinkdelegate.cpp b/multimedia/gstreamer-qt4/files/patch-elements_gstqtvideosink_qwidgetvideosinkdelegate.cpp deleted file mode 100644 index fd3371d9fb42..000000000000 --- a/multimedia/gstreamer-qt4/files/patch-elements_gstqtvideosink_qwidgetvideosinkdelegate.cpp +++ /dev/null @@ -1,15 +0,0 @@ -error: invalid suffix on literal; C++11 requires a space between literal and identifier -[-Wreserved-user-defined-literal] - GST_LOG_OBJECT(m_sink, "Setting \"widget\" property to %"GST_PTR_FORMAT, widget); - ---- elements/gstqtvideosink/qwidgetvideosinkdelegate.cpp.orig 2018-01-07 08:41:23 UTC -+++ elements/gstqtvideosink/qwidgetvideosinkdelegate.cpp -@@ -36,7 +36,7 @@ QWidget *QWidgetVideoSinkDelegate::widget() const - - void QWidgetVideoSinkDelegate::setWidget(QWidget *widget) - { -- GST_LOG_OBJECT(m_sink, "Setting \"widget\" property to %"GST_PTR_FORMAT, widget); -+ GST_LOG_OBJECT(m_sink, "Setting \"widget\" property to %" GST_PTR_FORMAT, widget); - - if (m_widget) { - m_widget.data()->removeEventFilter(this); diff --git a/multimedia/gstreamer-qt4/pkg-descr b/multimedia/gstreamer-qt4/pkg-descr deleted file mode 100644 index d0f345020e54..000000000000 --- a/multimedia/gstreamer-qt4/pkg-descr +++ /dev/null @@ -1,16 +0,0 @@ -QtGStreamer is a set of libraries and plugins providing C++ bindings for -GStreamer with a Qt4-style API plus some helper classes for integrating -GStreamer better in Qt4 applications. - -Currently, it consists of the following parts: - * QtGLib - Library providing C++/Qt bindings for parts of the GLib - and GObject APIs, a base on which QtGStreamer is built. - * QtGStreamer - Library providing C++/Qt bindings for GStreamer - * QtGStreamerUi - Library providing integration with QtGui. Currently, - it only provides a video widget that embeds GStreamer's - video sinks. - -In addition, it provides a "qwidgetvideosink" GStreamer element, an video -sink element that can draw directly on QWidgets using QPainter. - -WWW: http://gstreamer.freedesktop.org/ diff --git a/multimedia/gstreamer-qt4/pkg-plist b/multimedia/gstreamer-qt4/pkg-plist deleted file mode 100644 index d46d2e36df86..000000000000 --- a/multimedia/gstreamer-qt4/pkg-plist +++ /dev/null @@ -1,131 +0,0 @@ -include/QtGStreamer/QGlib/Connect -include/QtGStreamer/QGlib/Error -include/QtGStreamer/QGlib/Global -include/QtGStreamer/QGlib/Init -include/QtGStreamer/QGlib/Object -include/QtGStreamer/QGlib/ParamSpec -include/QtGStreamer/QGlib/Quark -include/QtGStreamer/QGlib/RefPointer -include/QtGStreamer/QGlib/Signal -include/QtGStreamer/QGlib/Type -include/QtGStreamer/QGlib/Value -include/QtGStreamer/QGlib/connect.h -include/QtGStreamer/QGlib/connectimpl.h -include/QtGStreamer/QGlib/emitimpl.h -include/QtGStreamer/QGlib/error.h -include/QtGStreamer/QGlib/global.h -include/QtGStreamer/QGlib/init.h -include/QtGStreamer/QGlib/object.h -include/QtGStreamer/QGlib/paramspec.h -include/QtGStreamer/QGlib/qglib_signal.h -include/QtGStreamer/QGlib/quark.h -include/QtGStreamer/QGlib/refpointer.h -include/QtGStreamer/QGlib/type.h -include/QtGStreamer/QGlib/value.h -include/QtGStreamer/QGlib/wrap.h -include/QtGStreamer/QGst/Bin -include/QtGStreamer/QGst/Buffer -include/QtGStreamer/QGst/BufferList -include/QtGStreamer/QGst/Bus -include/QtGStreamer/QGst/Caps -include/QtGStreamer/QGst/ChildProxy -include/QtGStreamer/QGst/Clock -include/QtGStreamer/QGst/ClockTime -include/QtGStreamer/QGst/ColorBalance -include/QtGStreamer/QGst/Discoverer -include/QtGStreamer/QGst/DoubleRange -include/QtGStreamer/QGst/Element -include/QtGStreamer/QGst/ElementFactory -include/QtGStreamer/QGst/Event -include/QtGStreamer/QGst/Fourcc -include/QtGStreamer/QGst/Fraction -include/QtGStreamer/QGst/FractionRange -include/QtGStreamer/QGst/GhostPad -include/QtGStreamer/QGst/Global -include/QtGStreamer/QGst/Init -include/QtGStreamer/QGst/Int64Range -include/QtGStreamer/QGst/IntRange -include/QtGStreamer/QGst/Message -include/QtGStreamer/QGst/MiniObject -include/QtGStreamer/QGst/Object -include/QtGStreamer/QGst/Pad -include/QtGStreamer/QGst/Parse -include/QtGStreamer/QGst/Pipeline -include/QtGStreamer/QGst/PluginFeature -include/QtGStreamer/QGst/PropertyProbe -include/QtGStreamer/QGst/Query -include/QtGStreamer/QGst/StreamVolume -include/QtGStreamer/QGst/Structure -include/QtGStreamer/QGst/TagList -include/QtGStreamer/QGst/Ui/GraphicsVideoSurface -include/QtGStreamer/QGst/Ui/GraphicsVideoWidget -include/QtGStreamer/QGst/Ui/VideoWidget -include/QtGStreamer/QGst/Ui/global.h -include/QtGStreamer/QGst/Ui/graphicsvideosurface.h -include/QtGStreamer/QGst/Ui/graphicsvideowidget.h -include/QtGStreamer/QGst/Ui/videowidget.h -include/QtGStreamer/QGst/UriHandler -include/QtGStreamer/QGst/Utils/ApplicationSink -include/QtGStreamer/QGst/Utils/ApplicationSource -include/QtGStreamer/QGst/Utils/applicationsink.h -include/QtGStreamer/QGst/Utils/applicationsource.h -include/QtGStreamer/QGst/Utils/global.h -include/QtGStreamer/QGst/VideoOrientation -include/QtGStreamer/QGst/XOverlay -include/QtGStreamer/QGst/bin.h -include/QtGStreamer/QGst/buffer.h -include/QtGStreamer/QGst/bufferlist.h -include/QtGStreamer/QGst/bus.h -include/QtGStreamer/QGst/caps.h -include/QtGStreamer/QGst/childproxy.h -include/QtGStreamer/QGst/clock.h -include/QtGStreamer/QGst/clocktime.h -include/QtGStreamer/QGst/colorbalance.h -include/QtGStreamer/QGst/discoverer.h -include/QtGStreamer/QGst/element.h -include/QtGStreamer/QGst/elementfactory.h -include/QtGStreamer/QGst/enums.h -include/QtGStreamer/QGst/event.h -include/QtGStreamer/QGst/ghostpad.h -include/QtGStreamer/QGst/global.h -include/QtGStreamer/QGst/init.h -include/QtGStreamer/QGst/message.h -include/QtGStreamer/QGst/miniobject.h -include/QtGStreamer/QGst/object.h -include/QtGStreamer/QGst/pad.h -include/QtGStreamer/QGst/parse.h -include/QtGStreamer/QGst/pipeline.h -include/QtGStreamer/QGst/pluginfeature.h -include/QtGStreamer/QGst/propertyprobe.h -include/QtGStreamer/QGst/query.h -include/QtGStreamer/QGst/streamvolume.h -include/QtGStreamer/QGst/structs.h -include/QtGStreamer/QGst/structure.h -include/QtGStreamer/QGst/taglist.h -include/QtGStreamer/QGst/urihandler.h -include/QtGStreamer/QGst/videoorientation.h -include/QtGStreamer/QGst/xoverlay.h -lib/cmake/QtGStreamer/QtGStreamerConfig.cmake -lib/cmake/QtGStreamer/QtGStreamerConfigCommon.cmake -lib/cmake/QtGStreamer/QtGStreamerConfigVersion.cmake -lib/cmake/QtGStreamer/QtGStreamerTargets-%%CMAKE_BUILD_TYPE%%.cmake -lib/cmake/QtGStreamer/QtGStreamerTargets.cmake -lib/gstreamer-%%GST_VERSION%%/libgstqtvideosink.so -lib/libQtGLib-2.0.so -lib/libQtGLib-2.0.so.0 -lib/libQtGLib-2.0.so.%%VERSION%% -lib/libQtGStreamer-%%GST_VERSION%%.so -lib/libQtGStreamer-%%GST_VERSION%%.so.0 -lib/libQtGStreamer-%%GST_VERSION%%.so.%%VERSION%% -lib/libQtGStreamerUi-%%GST_VERSION%%.so -lib/libQtGStreamerUi-%%GST_VERSION%%.so.0 -lib/libQtGStreamerUi-%%GST_VERSION%%.so.%%VERSION%% -lib/libQtGStreamerUtils-%%GST_VERSION%%.so -lib/libQtGStreamerUtils-%%GST_VERSION%%.so.0 -lib/libQtGStreamerUtils-%%GST_VERSION%%.so.%%VERSION%% -lib/qt4/imports/QtGStreamer/libQtGStreamerQuick1.so -lib/qt4/imports/QtGStreamer/qmldir -libdata/pkgconfig/QtGLib-2.0.pc -libdata/pkgconfig/QtGStreamer-%%GST_VERSION%%.pc -libdata/pkgconfig/QtGStreamerUi-%%GST_VERSION%%.pc -libdata/pkgconfig/QtGStreamerUtils-%%GST_VERSION%%.pc |