Same problem here piklab-0.16.1, today I tried to update .spec file to make a fedora package, but no luck. Asked on
piklab-users mailing list, we will see ;-)
(I'm n00b in fedora, and especially building rpm packages.)
---------- Post added at 11:35 PM ---------- Previous post was at 11:12 PM ----------
People from #fedora-kde helped me a lot with building rpm packages, and <Kevin_Kofler> looked at sources for build system, and found the problem.
Here is the simple patch which fixes this build
--- cmake/Piklab.cmake_orig 2012-08-15 23:21:25.515511895 +0200
+++ cmake/Piklab.cmake 2012-08-15 23:21:52.746171465 +0200
@@ -27,7 +27,7 @@
else(QT_ONLY)
find_package(KDE4 REQUIRED)
add_definitions(${QT_DEFINITIONS} ${KDE4_DEFINITIONS})
- include_directories( ${KDE4_INCLUDE_DIRS})
+ include_directories( ${KDE4_INCLUDES})
set(EXE_LIBS ${QT_LIBRARIES} ${KDE4_KDECORE_LIBS} ${KDE4_KIO_LIBS} kde)
set(GUI_LIBS ${KDE4_KDEUI_LIBS} ${KDE4_KDE3SUPPORT_LIBS} ${EXE_LIBS} kde_gui ${KDE4_KTEXTEDITOR_LIBS} ${KDE4_KFILE_LIBS})
endif(QT_ONLY)