Description: freetype-config was removed in Debian, switch to pkg-config
Author: Adrian Bunk <bunk@debian.org>

--- vdr-plugin-skinenigmang-0.1.2+git20180128.orig/Makefile
+++ vdr-plugin-skinenigmang-0.1.2+git20180128/Makefile
@@ -138,9 +138,9 @@ INCLUDES += $(shell pkg-config --cflags
 endif
 endif
 
-ifneq ($(shell which freetype-config),)
-	INCLUDES += $(shell freetype-config --cflags)
-	LIBS += $(shell freetype-config --libs)
+ifneq ($(shell which pkg-config),)
+	INCLUDES += $(shell pkg-config --cflags freetype2)
+	LIBS += $(shell pkg-config --libs freetype2)
 else
 	INCLUDES += -I/usr/include/freetype -I/usr/local/include/freetype
 	LIBS += -lfreetype
