commit libmlt for openSUSE:Factory

Hello community, here is the log from the commit of package libmlt for openSUSE:Factory checked in at 2017-03-02 19:30:06 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/libmlt (Old) and /work/SRC/openSUSE:Factory/.libmlt.new (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Package is "libmlt" Thu Mar 2 19:30:06 2017 rev:32 rq:460301 version:6.4.1 Changes: -------- --- /work/SRC/openSUSE:Factory/libmlt/libmlt.changes 2016-11-23 13:37:16.000000000 +0100 +++ /work/SRC/openSUSE:Factory/.libmlt.new/libmlt.changes 2017-03-02 19:30:07.340883792 +0100 @@ -1,0 +2,17 @@ +Tue Feb 21 21:30:37 UTC 2017 - mrueckert@suse.de + +- replace mlt-6.4.1_fix_opengl_install.patch with + 6c658e5d8cd11933bf799a2a985aa4b24cfbcb60.patch: + upstream solution to the problem + +------------------------------------------------------------------- +Tue Feb 21 14:20:35 UTC 2017 - mrueckert@suse.de + +- enable OpenGL and OpenVC modules + new BR: + - OpenGL: movit-devel + - OpenVC: pkgconfig(openvc) +- added mlt-6.4.1_fix_opengl_install.patch: fix install of OpenGL + filter files. + +------------------------------------------------------------------- New: ---- 6c658e5d8cd11933bf799a2a985aa4b24cfbcb60.patch ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ libmlt.spec ++++++ --- /var/tmp/diff_new_pack.IOMCqv/_old 2017-03-02 19:30:08.864668137 +0100 +++ /var/tmp/diff_new_pack.IOMCqv/_new 2017-03-02 19:30:08.864668137 +0100 @@ -1,7 +1,7 @@ # # spec file for package libmlt # -# Copyright (c) 2016 SUSE LINUX GmbH, Nuernberg, Germany. +# Copyright (c) 2017 SUSE LINUX GmbH, Nuernberg, Germany. # # All modifications and additions to the file contributed by third parties # remain the property of their copyright owners, unless otherwise agreed @@ -44,6 +44,7 @@ # PATCH-FIX-UPSTREAM use-recommended-freetype-include.patch -- Freetype upstream recommends using their macros together with # ft2build include. Positive sideeffect is that this patch makes it build with both freetype2 2.5.1, and older versions Patch2: use-recommended-freetype-include.patch +Patch3: 6c658e5d8cd11933bf799a2a985aa4b24cfbcb60.patch BuildRequires: fdupes BuildRequires: gcc-c++ BuildRequires: ladspa-devel @@ -60,6 +61,7 @@ BuildRequires: pkgconfig(QtSvg) BuildRequires: pkgconfig(QtXml) %endif +BuildRequires: movit-devel BuildRequires: pkgconfig(alsa) BuildRequires: pkgconfig(fftw3) BuildRequires: pkgconfig(frei0r) @@ -73,6 +75,7 @@ BuildRequires: pkgconfig(libpulse) BuildRequires: pkgconfig(libquicktime) BuildRequires: pkgconfig(libxml-2.0) +BuildRequires: pkgconfig(opencv) >= 3.1.0 BuildRequires: pkgconfig(pango) BuildRequires: pkgconfig(pangoft2) BuildRequires: pkgconfig(samplerate) @@ -229,6 +232,7 @@ %setup -q -n %{_name}-%{version} %patch1 %patch2 -p1 +%patch3 -p1 # To complement libmlt-0.8.0-vdpau.patch. # When vdpau support is not compiled it will break the code. Doesn't matter because the code will not be used anyway. ++++++ 6c658e5d8cd11933bf799a2a985aa4b24cfbcb60.patch ++++++
From 6c658e5d8cd11933bf799a2a985aa4b24cfbcb60 Mon Sep 17 00:00:00 2001 From: Dan Dennedy <dan@dennedy.org> Date: Tue, 21 Feb 2017 08:48:14 -0800 Subject: [PATCH] Fix #203 opengl install not using --datadir.
--- src/modules/opengl/Makefile | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/modules/opengl/Makefile b/src/modules/opengl/Makefile index ffe542b..65a7b34 100644 --- a/src/modules/opengl/Makefile +++ b/src/modules/opengl/Makefile @@ -69,9 +69,9 @@ clean: rm -f $(OBJS) $(TARGET) $(CPPOBJS) install: all - install -m 755 $(TARGET) "$(DESTDIR)$(libdir)/mlt" - install -d "$(DESTDIR)$(datadir)/mlt/opengl" - install -m 644 *.yml "$(DESTDIR)$(datadir)/mlt/opengl" + install -m 755 $(TARGET) "$(DESTDIR)$(moduledir)" + install -d "$(DESTDIR)$(mltdatadir)/opengl" + install -m 644 *.yml "$(DESTDIR)$(mltdatadir)/opengl" ifneq ($(wildcard .depend),) include .depend
participants (1)
-
root@hilbertn.suse.de