summaryrefslogtreecommitdiff
path: root/media-plugins/vdr-imonlcd/files
diff options
context:
space:
mode:
authorV3n3RiX <venerix@redcorelinux.org>2018-08-04 08:53:53 +0100
committerV3n3RiX <venerix@redcorelinux.org>2018-08-04 08:53:53 +0100
commite3872864be25f7421015bef2732fa57c0c9fb726 (patch)
tree9cb29a544215119b5c5538e37211b994ce1c87ae /media-plugins/vdr-imonlcd/files
parent480486b52ea64765faf696c88b2c6a26a5a454d4 (diff)
gentoo resync : 04.08.2018
Diffstat (limited to 'media-plugins/vdr-imonlcd/files')
-rw-r--r--media-plugins/vdr-imonlcd/files/vdr-imonlcd-1.0.2-freetype_pkgconfig.patch29
1 files changed, 29 insertions, 0 deletions
diff --git a/media-plugins/vdr-imonlcd/files/vdr-imonlcd-1.0.2-freetype_pkgconfig.patch b/media-plugins/vdr-imonlcd/files/vdr-imonlcd-1.0.2-freetype_pkgconfig.patch
new file mode 100644
index 000000000000..3c35846608f7
--- /dev/null
+++ b/media-plugins/vdr-imonlcd/files/vdr-imonlcd-1.0.2-freetype_pkgconfig.patch
@@ -0,0 +1,29 @@
+From 2168f20fb6b00f7ae2104c6f4eafae2402cb1d92 Mon Sep 17 00:00:00 2001
+From: Lars Wendler <polynomial-c@gentoo.org>
+Date: Tue, 24 Jul 2018 13:00:40 +0200
+Subject: [PATCH] Makefile: Use pkg-config to query freetype
+
+As of freetype-2.9.1 the freetype-config file no longer gets installed
+by default.
+---
+ Makefile | 4 ++--
+ 1 file changed, 2 insertions(+), 2 deletions(-)
+
+diff --git a/Makefile b/Makefile
+index fc165e9..36fc681 100644
+--- a/Makefile
++++ b/Makefile
+@@ -55,8 +55,8 @@ SOFILE = libvdr-$(PLUGIN).so
+
+ ### Includes and Defines (add further entries here):
+
+-INCLUDES += $(shell freetype-config --cflags)
+-LIBS += $(shell freetype-config --libs)
++INCLUDES += $(shell pkg-config --cflags freetype2)
++LIBS += $(shell pkg-config --libs freetype2)
+
+ DEFINES += -DPLUGIN_NAME_I18N='"$(PLUGIN)"'
+
+--
+2.18.0
+