diff -Nru vdr-plugin-skinenigmang-0.1.2+git20180128/debian/changelog vdr-plugin-skinenigmang-0.1.2+git20180128/debian/changelog --- vdr-plugin-skinenigmang-0.1.2+git20180128/debian/changelog 2018-08-10 23:20:13.000000000 +0000 +++ vdr-plugin-skinenigmang-0.1.2+git20180128/debian/changelog 2018-12-31 16:17:16.000000000 +0000 @@ -1,8 +1,9 @@ -vdr-plugin-skinenigmang (0.1.2+git20180128-2build1) cosmic; urgency=medium +vdr-plugin-skinenigmang (0.1.2+git20180128-2.1) unstable; urgency=low - * No-change rebuild against imagemagick. + * Non-maintainer upload. + * Fix FTBFS without freetype-config. (Closes: #915353) - -- Simon Quigley Fri, 10 Aug 2018 18:20:13 -0500 + -- Adrian Bunk Mon, 31 Dec 2018 18:17:16 +0200 vdr-plugin-skinenigmang (0.1.2+git20180128-2) unstable; urgency=medium diff -Nru vdr-plugin-skinenigmang-0.1.2+git20180128/debian/patches/no-freetype-config vdr-plugin-skinenigmang-0.1.2+git20180128/debian/patches/no-freetype-config --- vdr-plugin-skinenigmang-0.1.2+git20180128/debian/patches/no-freetype-config 1970-01-01 00:00:00.000000000 +0000 +++ vdr-plugin-skinenigmang-0.1.2+git20180128/debian/patches/no-freetype-config 2018-12-31 16:17:16.000000000 +0000 @@ -0,0 +1,18 @@ +Description: freetype-config was removed in Debian, switch to pkg-config +Author: Adrian Bunk + +--- 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 diff -Nru vdr-plugin-skinenigmang-0.1.2+git20180128/debian/patches/series vdr-plugin-skinenigmang-0.1.2+git20180128/debian/patches/series --- vdr-plugin-skinenigmang-0.1.2+git20180128/debian/patches/series 2018-04-15 17:43:46.000000000 +0000 +++ vdr-plugin-skinenigmang-0.1.2+git20180128/debian/patches/series 2018-12-31 16:17:16.000000000 +0000 @@ -1,2 +1,3 @@ fix-imagemagick-path.patch vdr-plugin-skinenigma_min_max_from_stl.patch +no-freetype-config