File FDesktopRecorder.patch of Package FDesktopRecorder
diff -Pdpru FDesktopRecorder-20130517.orig/CMakeLists.txt FDesktopRecorder-20130517/CMakeLists.txt
--- FDesktopRecorder-20130517.orig/CMakeLists.txt 2013-05-17 10:44:23.000000000 +0200
+++ FDesktopRecorder-20130517/CMakeLists.txt 2013-06-06 18:54:54.712478279 +0200
@@ -1,4 +1,4 @@
-project( fdesktoprecorder )
+project( FDesktopRecorder )
cmake_minimum_required( VERSION 2.6 )
set ( CMAKE_BUILD_TYPE Release )
add_definitions ( -Wall )
diff -Pdpru FDesktopRecorder-20130517.orig/desktop/CMakeLists.txt FDesktopRecorder-20130517/desktop/CMakeLists.txt
--- FDesktopRecorder-20130517.orig/desktop/CMakeLists.txt 2013-05-17 10:44:23.000000000 +0200
+++ FDesktopRecorder-20130517/desktop/CMakeLists.txt 2013-06-06 18:56:01.321006285 +0200
@@ -3,5 +3,5 @@ include_directories (
)
#Installs the desktopfile
-install( FILES fdesktoprecorder.desktop DESTINATION share/applications/)
+install( FILES FDesktopRecorder.desktop DESTINATION share/applications/)
install( FILES fdesktoprecorder.png DESTINATION share/pixmaps/)
Nur in FDesktopRecorder-20130517.orig/desktop: fdesktoprecorder.desktop.
diff -Pdpru FDesktopRecorder-20130517.orig/desktop/FDesktopRecorder.desktop FDesktopRecorder-20130517/desktop/FDesktopRecorder.desktop
--- FDesktopRecorder-20130517.orig/desktop/FDesktopRecorder.desktop 1970-01-01 01:00:00.000000000 +0100
+++ FDesktopRecorder-20130517/desktop/FDesktopRecorder.desktop 2013-06-06 18:56:39.565465492 +0200
@@ -0,0 +1,15 @@
+#!/usr/bin/env xdg-open
+[Desktop Entry]
+Exec=FDesktopRecorder
+Icon=fdesktoprecorder
+Terminal=false
+Type=Application
+
+GenericName[da]=Optag dit skrivebord
+GenericName=Record your desktop
+
+Name[da]=FDesktopRecorder
+Name=FDesktopRecorder
+Categories=Qt;KDE;Utility;X-KDE-Utilities-Desktop;
+
+X-Desktop-File-Install-Version=0.18
Nur in FDesktopRecorder-20130517.orig/: .gitignore~.
diff -Pdpru FDesktopRecorder-20130517.orig/knotification/CMakeLists.txt FDesktopRecorder-20130517/knotification/CMakeLists.txt
--- FDesktopRecorder-20130517.orig/knotification/CMakeLists.txt 2013-05-17 10:44:23.000000000 +0200
+++ FDesktopRecorder-20130517/knotification/CMakeLists.txt 2013-06-06 18:57:56.038398281 +0200
@@ -3,4 +3,4 @@ include_directories (
)
#Installs the desktopfile
-install( FILES fdesktoprecorder.notifyrc DESTINATION share/kde4/apps/fdesktoprecorder)
+install( FILES FDesktopRecorder.notifyrc DESTINATION share/kde4/apps/FDesktopRecorder)
Nur in FDesktopRecorder-20130517.orig/knotification: fdesktoprecorder.notifyrc.
diff -Pdpru FDesktopRecorder-20130517.orig/knotification/FDesktopRecorder.notifyrc FDesktopRecorder-20130517/knotification/FDesktopRecorder.notifyrc
--- FDesktopRecorder-20130517.orig/knotification/FDesktopRecorder.notifyrc 1970-01-01 01:00:00.000000000 +0100
+++ FDesktopRecorder-20130517/knotification/FDesktopRecorder.notifyrc 2013-05-17 10:44:23.000000000 +0200
@@ -0,0 +1,51 @@
+[Global]
+Comment=FDesktopRecorder
+Name=FDesktopRecorder
+IconName=FDesktopRecorder
+
+[Event/newRecording]
+Name=New Recording
+Comment=When a new recording is started.
+Sound=/usr/share/sounds/KDE-Sys-Warning.ogg
+Action=Popup
+
+[Event/doneRecording]
+Name=done Recording
+Comment=When a recording is done.
+Sound=/usr/share/sounds/KDE-Sys-Warning.ogg
+Action=Popup
+
+[Event/noRecording]
+Name=No recording
+Comment=When NO is selected in the dialog
+Sound=/usr/share/sounds/KDE-Sys-Warning.ogg
+Action=Popup
+
+[Event/consoleCopyClipboard]
+Name=Console CopyClipboard
+Comment=Happens when the user presses to copytoclipboard button.
+Action=Popup
+
+[Event/runBackground]
+Name=Run in Background
+Comment=When minimized to run in background
+Sound=/usr/share/sounds/KDE-Sys-Warning.ogg
+Action=Popup
+
+[Event/lateStart]
+Name=Delayed start
+Comment=When start is delayed
+Sound=/usr/share/sounds/KDE-Sys-Warning.ogg
+Action=Popup
+
+[Event/lateStartstopped]
+Name=Delayed start is stopped
+Comment=When start is delayed is stopped
+Sound=/usr/share/sounds/KDE-Sys-Warning.ogg
+Action=Popup
+
+[Event/errorRecording]
+Name=Delayed start
+Comment=When start is delayed
+Sound=/usr/share/sounds/KDE-Sys-Warning.ogg
+Action=Popup|Sound
diff -Pdpru FDesktopRecorder-20130517.orig/src/CMakeLists.txt FDesktopRecorder-20130517/src/CMakeLists.txt
--- FDesktopRecorder-20130517.orig/src/CMakeLists.txt 2013-05-17 10:44:23.000000000 +0200
+++ FDesktopRecorder-20130517/src/CMakeLists.txt 2013-06-06 18:59:49.082765218 +0200
@@ -69,7 +69,7 @@ set ( FDesktopRecorder_MOCS
)
QT4_WRAP_CPP(MOCS ${FDesktopRecorder_MOCS})
-add_executable ( ../fdesktoprecorder ${FDesktopRecorder_SRCS} ${UIS} ${RSCS} ${TRS} ${MOCS} )
-target_link_libraries ( ../fdesktoprecorder ${QT_QTCORE_LIBRARY} ${QT_QTGUI_LIBRARY} ${QT_QTCORE_LIBRARY} ${QT_QTGUI_LIBRARY} ${KDE4_KDEUI_LIBS} ${KDE4_KPARTS_LIBS})
+add_executable ( ../FDesktopRecorder ${FDesktopRecorder_SRCS} ${UIS} ${RSCS} ${TRS} ${MOCS} )
+target_link_libraries ( ../FDesktopRecorder ${QT_QTCORE_LIBRARY} ${QT_QTGUI_LIBRARY} ${QT_QTCORE_LIBRARY} ${QT_QTGUI_LIBRARY} ${KDE4_KDEUI_LIBS} ${KDE4_KPARTS_LIBS})
-install (TARGETS ../fdesktoprecorder DESTINATION bin)
+install (TARGETS ../FDesktopRecorder DESTINATION bin)
Nur in FDesktopRecorder-20130517.orig/src/.tx: config~.