Control: tags -1 +patch Hi!
the attached patch (based on my own fiddling and some suggestions from #debian- qt-kde) fixes this bug. It looks like upstream is using an interface from /usr/share/kde4/apps/cmake/modules/FindFreetype.cmake that is marked as "internal" and has since gone away in sid. cheers Stuart -- Stuart Prescott http://www.nanonanonano.net/ stu...@nanonanonano.net Debian Developer http://www.debian.org/ stu...@debian.org GPG fingerprint BE65 FD1E F4EA 08F3 23D4 3C6D 9FE8 B8CD 71C5 D1A8 GPG fingerprint 90E2 D2C1 AD14 6A1B 7EBB 891D BBC1 7EBB 1396 F2F7
diff -Nru krename-4.0.9/debian/changelog krename-4.0.9/debian/changelog --- krename-4.0.9/debian/changelog 2012-01-02 20:41:43.000000000 +1100 +++ krename-4.0.9/debian/changelog 2013-10-01 16:46:14.000000000 +1000 @@ -1,3 +1,10 @@ +krename (4.0.9-1.1) unstable; urgency=low + + * Non-maintainer upload. + * Explicitly add freetype include patch (Closes: #719395). + + -- Stuart Prescott <stu...@debian.org> Tue, 01 Oct 2013 16:45:33 +1000 + krename (4.0.9-1) unstable; urgency=low * New upstream release: diff -Nru krename-4.0.9/debian/patches/add-freetype-include.patch krename-4.0.9/debian/patches/add-freetype-include.patch --- krename-4.0.9/debian/patches/add-freetype-include.patch 1970-01-01 10:00:00.000000000 +1000 +++ krename-4.0.9/debian/patches/add-freetype-include.patch 2013-10-02 00:00:41.000000000 +1000 @@ -0,0 +1,17 @@ +Description: explicitly add freetype include directories + freetype/config/ftheader.h is not being found. Fixing the include path + ensures that it is found. (Closes: #719395) +Bug-Debian: http://bugs.debian.org/719395 +Origin: Stuart Prescott <stu...@debian.org> and http://pkgs.fedoraproject.org/cgit/krename.git/tree/krename-4.0.9-fix-freetype-includes.patch + +--- a/src/CMakeLists.txt ++++ b/src/CMakeLists.txt +@@ -18,7 +18,7 @@ + ENDIF(LIBPODOFO_FOUND) + + IF(FREETYPE_FOUND) +- INCLUDE_DIRECTORIES( ${FREETYPE_INCLUDE_DIR} ) ++ INCLUDE_DIRECTORIES( ${FREETYPE_INCLUDE_DIRS} ) + ENDIF(FREETYPE_FOUND) + + ADD_DEFINITIONS(${TAGLIB_CFLAGS} ${EXIV2_CFLAGS} ${LIBPODOFO_CFLAGS} ${KDE4_DEFINITIONS} ) diff -Nru krename-4.0.9/debian/patches/find_libpodofo.patch krename-4.0.9/debian/patches/find_libpodofo.patch --- krename-4.0.9/debian/patches/find_libpodofo.patch 2012-01-02 20:29:06.000000000 +1100 +++ krename-4.0.9/debian/patches/find_libpodofo.patch 2013-10-01 23:46:23.000000000 +1000 @@ -7,7 +7,7 @@ --- a/cmake/modules/FindLIBPODOFO.cmake +++ b/cmake/modules/FindLIBPODOFO.cmake -@@ -23,7 +23,7 @@ ELSE(LIBPODOFO_H) +@@ -23,7 +23,7 @@ ENDIF(LIBPODOFO_H) FIND_LIBRARY(LIBPODOFO_LIB diff -Nru krename-4.0.9/debian/patches/series krename-4.0.9/debian/patches/series --- krename-4.0.9/debian/patches/series 2012-01-02 20:29:06.000000000 +1100 +++ krename-4.0.9/debian/patches/series 2013-10-01 16:45:23.000000000 +1000 @@ -1,2 +1,3 @@ 02_remove_desktop_deprecated_key.diff find_libpodofo.patch +add-freetype-include.patch