[SCM] ktp-common-internals packaging branch, master, updated. debian/15.12.1-2-1839-gf0635e9

Maximiliano Curia maxy at moszumanska.debian.org
Mon May 9 09:04:21 UTC 2016


Gitweb-URL: http://git.debian.org/?p=pkg-kde/applications/ktp-common-internals.git;a=commitdiff;h=c9e72a1

The following commit has been merged in the master branch:
commit c9e72a1d64aceffc4a422e8b150173ea39e2371a
Author: George Goldberg <grundleborg at googlemail.com>
Date:   Sat Jun 20 15:56:17 2009 +0000

    Add a bare main.cpp and make it compile.
    
    svn path=/trunk/playground/network/telepathy-integration-daemon/; revision=984352
---
 kpeople/nepomuk-feeder/CMakeLists.txt |  2 +-
 kpeople/nepomuk-feeder/main.cpp       | 30 ++++++++++++++++++++++++++++++
 2 files changed, 31 insertions(+), 1 deletion(-)

diff --git a/kpeople/nepomuk-feeder/CMakeLists.txt b/kpeople/nepomuk-feeder/CMakeLists.txt
index e853bf2..4955da7 100644
--- a/kpeople/nepomuk-feeder/CMakeLists.txt
+++ b/kpeople/nepomuk-feeder/CMakeLists.txt
@@ -36,7 +36,7 @@ set(telepathy_integration_daemon_SRCS
     main.cpp
 )
 
-kde4_add_executable(telepathy-integration-daemon)
+kde4_add_executable(telepathy-integration-daemon ${telepathy_integration_daemon_SRCS})
 
 target_link_libraries(telepathy-integration-daemon ${KDE4_AKONADI_LIBS}
                                                    ${QT_QTCORE_LIBRARY}
diff --git a/kpeople/nepomuk-feeder/main.cpp b/kpeople/nepomuk-feeder/main.cpp
new file mode 100644
index 0000000..92c9cc9
--- /dev/null
+++ b/kpeople/nepomuk-feeder/main.cpp
@@ -0,0 +1,30 @@
+/*
+ * This file is part of telepathy-integration-daemon
+ *
+ * Copyright (C) 2009 Collabora Ltd. <http://www.collabora.co.uk/>
+ *
+ * This library is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU Lesser General Public
+ * License as published by the Free Software Foundation; either
+ * version 2.1 of the License, or (at your option) any later version.
+ *
+ * This library 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
+ * Lesser General Public License for more details.
+ *
+ * You should have received a copy of the GNU Lesser General Public
+ * License along with this library; if not, write to the Free Software
+ * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
+ */
+
+#include <QtCore/QCoreApplication>
+
+int main(int argc, char *argv[])
+{
+    QCoreApplication app(argc, argv);
+
+    // Start event loop.
+    app.exec();
+}
+

-- 
ktp-common-internals packaging



More information about the pkg-kde-commits mailing list