[prev in list] [next in list] [prev in thread] [next in thread] 

List:       kde-commits
Subject:    playground/utils
From:       Thomas J. Gillespie <tomjamesgillespie () googlemail ! com>
Date:       2008-05-01 22:00:56
Message-ID: 1209679256.912161.3302.nullmailer () svn ! kde ! org
[Download RAW message or body]

SVN commit 803083 by gillespie:

Various tidying up's of kde4powersave.



 M  +1 -1      CMakeLists.txt  
 M  +3 -0      INDEX  
 M  +3 -1      kde4powersave/CMakeLists.txt  
 A             kde4powersave/README  
 M  +16 -0     kde4powersave/configDialog.cpp  
 M  +16 -0     kde4powersave/configDialog.h  
 M  +16 -2     kde4powersave/kde4powersave.cpp  
 M  +16 -1     kde4powersave/kde4powersave.h  
 M  +16 -0     kde4powersave/settingsExecutor.cpp  
 M  +16 -1     kde4powersave/settingsExecutor.h  


--- trunk/playground/utils/CMakeLists.txt #803082:803083
@@ -19,5 +19,5 @@
 macro_optional_add_subdirectory( charm )
 macro_optional_add_subdirectory( kregexpeditor )
 #macro_optional_add_subdirectory( knetworkmanager4 )
+#macro_optional_add_subdirectory( kde4powersave )
 
-
--- trunk/playground/utils/INDEX #803082:803083
@@ -45,5 +45,8 @@
 See also: playground/utils/kfile-chemical; kdesupport/strigi
 URL: http://strigi.sourceforge.net/
 
+Name: kde4powersave
+Synopsis: A kde4/solid port of kpowersave
+
 Name: waterflow
 Synopsis: a library + program to create computational flow chart diagrams
--- trunk/playground/utils/kde4powersave/CMakeLists.txt #803082:803083
@@ -18,4 +18,6 @@
 kde4_add_ui_files (kde4powersave_SRCS ${kde4powersave_UIS})
 kde4_add_executable (kde4powersave ${kde4powersave_SRCS})
 
-target_link_libraries( kde4powersave ${KDE4_KDECORE_LIBS} ${KDE4_KDEUI_LIBS} \
/usr/kde4/lib/libsolidcontrol.so ) +target_link_libraries( kde4powersave \
${KDE4_KDECORE_LIBS} ${KDE4_KDEUI_LIBS} solidcontrol ) +
+install(TARGETS kde4powersave  DESTINATION ${BIN_INSTALL_DIR} )
--- trunk/playground/utils/kde4powersave/configDialog.cpp #803082:803083
@@ -1,3 +1,19 @@
+/*
+* Copyright 2008  Thomas Gillespie <tomjamesgillespie@googlemail.com>   *
+*                                                                       *
+* This program is free software; you can redistribute it and/or         *
+* modify it under the terms of the GNU General Public License as        *
+* published by the Free Software Foundation; either version 2 of        *
+* the License, or (at your option) any later version.                   *
+*                                                                       *
+* This program is distributed in the hope that it will be useful,       *
+* but WITHOUT ANY WARRANTY; without even the implied warranty of        *
+* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the         *
+* GNU General Public License for more details.                          *
+*                                                                       *
+* You should have received a copy of the GNU General Public License     *
+* along with this program.  If not, see <http://www.gnu.org/licenses/>. *
+*/
 
 //KDE
 #include <KDebug>
--- trunk/playground/utils/kde4powersave/configDialog.h #803082:803083
@@ -1,3 +1,19 @@
+/*
+* Copyright 2008  Thomas Gillespie <tomjamesgillespie@googlemail.com>   *
+*                                                                       *
+* This program is free software; you can redistribute it and/or         *
+* modify it under the terms of the GNU General Public License as        *
+* published by the Free Software Foundation; either version 2 of        *
+* the License, or (at your option) any later version.                   *
+*                                                                       *
+* This program is distributed in the hope that it will be useful,       *
+* but WITHOUT ANY WARRANTY; without even the implied warranty of        *
+* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the         *
+* GNU General Public License for more details.                          *
+*                                                                       *
+* You should have received a copy of the GNU General Public License     *
+* along with this program.  If not, see <http://www.gnu.org/licenses/>. *
+*/
 
 #ifndef CONFIGDIALOG_H
 #define CONFIGDIALOG_H
--- trunk/playground/utils/kde4powersave/kde4powersave.cpp #803082:803083
@@ -1,6 +1,20 @@
+/*
+* Copyright 2008  Thomas Gillespie <tomjamesgillespie@googlemail.com>   *
+*                                                                       *
+* This program is free software; you can redistribute it and/or         *
+* modify it under the terms of the GNU General Public License as        *
+* published by the Free Software Foundation; either version 2 of        *
+* the License, or (at your option) any later version.                   *
+*                                                                       *
+* This program is distributed in the hope that it will be useful,       *
+* but WITHOUT ANY WARRANTY; without even the implied warranty of        *
+* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the         *
+* GNU General Public License for more details.                          *
+*                                                                       *
+* You should have received a copy of the GNU General Public License     *
+* along with this program.  If not, see <http://www.gnu.org/licenses/>. *
+*/
 
-
-
 //kde4powersave
 #include "kde4powersave.h" 
 
--- trunk/playground/utils/kde4powersave/kde4powersave.h #803082:803083
@@ -1,5 +1,20 @@
+/*
+* Copyright 2008  Thomas Gillespie <tomjamesgillespie@googlemail.com>   *
+*                                                                       *
+* This program is free software; you can redistribute it and/or         *
+* modify it under the terms of the GNU General Public License as        *
+* published by the Free Software Foundation; either version 2 of        *
+* the License, or (at your option) any later version.                   *
+*                                                                       *
+* This program is distributed in the hope that it will be useful,       *
+* but WITHOUT ANY WARRANTY; without even the implied warranty of        *
+* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the         *
+* GNU General Public License for more details.                          *
+*                                                                       *
+* You should have received a copy of the GNU General Public License     *
+* along with this program.  If not, see <http://www.gnu.org/licenses/>. *
+*/
 
-
 #ifndef KDE4POWERSAVE_H
 #define KDE4POWERSAVE_H
 
--- trunk/playground/utils/kde4powersave/settingsExecutor.cpp #803082:803083
@@ -1,3 +1,19 @@
+/*
+* Copyright 2008  Thomas Gillespie <tomjamesgillespie@googlemail.com>   *
+*                                                                       *
+* This program is free software; you can redistribute it and/or         *
+* modify it under the terms of the GNU General Public License as        *
+* published by the Free Software Foundation; either version 2 of        *
+* the License, or (at your option) any later version.                   *
+*                                                                       *
+* This program is distributed in the hope that it will be useful,       *
+* but WITHOUT ANY WARRANTY; without even the implied warranty of        *
+* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the         *
+* GNU General Public License for more details.                          *
+*                                                                       *
+* You should have received a copy of the GNU General Public License     *
+* along with this program.  If not, see <http://www.gnu.org/licenses/>. *
+*/
  
 #include "settingsExecutor.h"
 
--- trunk/playground/utils/kde4powersave/settingsExecutor.h #803082:803083
@@ -1,4 +1,19 @@
- 
+/*
+* Copyright 2008  Thomas Gillespie <tomjamesgillespie@googlemail.com>   *
+*                                                                       *
+* This program is free software; you can redistribute it and/or         *
+* modify it under the terms of the GNU General Public License as        *
+* published by the Free Software Foundation; either version 2 of        *
+* the License, or (at your option) any later version.                   *
+*                                                                       *
+* This program is distributed in the hope that it will be useful,       *
+* but WITHOUT ANY WARRANTY; without even the implied warranty of        *
+* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the         *
+* GNU General Public License for more details.                          *
+*                                                                       *
+* You should have received a copy of the GNU General Public License     *
+* along with this program.  If not, see <http://www.gnu.org/licenses/>. *
+*/ 
 
 #ifndef SETTINGSEXECUTOR_H
 #define SETTINGSEXECUTOR_H


[prev in list] [next in list] [prev in thread] [next in thread] 

Configure | About | News | Add a list | Sponsored by KoreLogic