libmlt/6c658e5d8cd11933bf799a2a985aa4b24cfbcb60.patch
Takashi Iwai 1fb17ac2b2 Accepting request 459723 from home:darix:playground
- replace mlt-6.4.1_fix_opengl_install.patch with
  6c658e5d8cd11933bf799a2a985aa4b24cfbcb60.patch:
  upstream solution to the problem

- 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.

OBS-URL: https://build.opensuse.org/request/show/459723
OBS-URL: https://build.opensuse.org/package/show/multimedia:libs/libmlt?expand=0&rev=66
2017-02-24 20:30:06 +00:00

27 lines
910 B
Diff

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