Control: tags 915353 + pending
Dear maintainer,
I've prepared an NMU for vdr-plugin-skinenigmang (versioned as
0.1.2+git20180128-2.1)
and uploaded it to DELAYED/14. Please feel free to tell me if I should
cancel it.
cu
Adrian
--
"Is there not promise of rain?" Ling Tan asked suddenly out
of the darkness. There had been need of rain for many days.
"Only a promise," Lao Er said.
Pearl S. Buck - Dragon Seed
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-04-15 20:43:46.000000000 +0300
+++ vdr-plugin-skinenigmang-0.1.2+git20180128/debian/changelog 2018-12-31 18:17:16.000000000 +0200
@@ -1,3 +1,10 @@
+vdr-plugin-skinenigmang (0.1.2+git20180128-2.1) unstable; urgency=low
+
+ * Non-maintainer upload.
+ * Fix FTBFS without freetype-config. (Closes: #915353)
+
+ -- Adrian Bunk <[email protected]> Mon, 31 Dec 2018 18:17:16 +0200
+
vdr-plugin-skinenigmang (0.1.2+git20180128-2) unstable; urgency=medium
* VCS moved to salsa.debian.org
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 02:00:00.000000000 +0200
+++ vdr-plugin-skinenigmang-0.1.2+git20180128/debian/patches/no-freetype-config 2018-12-31 18:17:16.000000000 +0200
@@ -0,0 +1,18 @@
+Description: freetype-config was removed in Debian, switch to pkg-config
+Author: Adrian Bunk <[email protected]>
+
+--- 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 20:43:46.000000000 +0300
+++ vdr-plugin-skinenigmang-0.1.2+git20180128/debian/patches/series 2018-12-31 18:17:16.000000000 +0200
@@ -1,2 +1,3 @@
fix-imagemagick-path.patch
vdr-plugin-skinenigma_min_max_from_stl.patch
+no-freetype-config