Adding MAS, not sure if it will be needed later
authorKirtika Ruchandani <kirtibr@gmail.com>
Wed, 15 Jul 2009 21:45:12 +0000 (03:15 +0530)
committerKirtika Ruchandani <kirtibr@gmail.com>
Wed, 15 Jul 2009 21:45:12 +0000 (03:15 +0530)
mas/dont-forget-string-header.patch [new file with mode: 0644]
mobile-application-service_0.9.bb [new file with mode: 0644]

diff --git a/mas/dont-forget-string-header.patch b/mas/dont-forget-string-header.patch
new file mode 100644 (file)
index 0000000..c99dd8e
--- /dev/null
@@ -0,0 +1,38 @@
+Index: sources/mobile-application-service-0.9/src/main.cpp
+===================================================================
+--- mobile-application-service-0.9/src/main.cpp        2009-07-16 02:14:18.000000000 +0530
++++ mobile-application-service-0.9/src/main.cpp        2009-07-16 02:14:40.000000000 +0530
+@@ -28,7 +28,7 @@
+ #include <netdb.h> //for all socket structures
+ #include <pthread.h>
+ #include <sys/stat.h> //for umask (making daemon in init)
+-
++#include <string.h>
+ #include "main.h"
+ #include "errno.h"
+ #include "ConnectionMgr.h"
+Index: sources/mobile-application-service-0.9/src/ConnectionMgr.cpp
+===================================================================
+--- mobile-application-service-0.9/src/ConnectionMgr.cpp       2009-07-16 02:16:35.000000000 +0530
++++ mobile-application-service-0.9/src/ConnectionMgr.cpp       2009-07-16 02:16:59.000000000 +0530
+@@ -24,6 +24,7 @@
+ #include "Exception.h"
+ #include <iostream>
+ #include <sstream>
++#include <string.h>
+ #include <sys/poll.h> //polling during read
+ #include <netdb.h>
+ #include <errno.h>
+Index: sources/mobile-application-service-0.9/src/ProcessMgr.cpp
+===================================================================
+--- mobile-application-service-0.9/src/ProcessMgr.cpp  2009-07-16 02:17:14.000000000 +0530
++++ mobile-application-service-0.9/src/ProcessMgr.cpp  2009-07-16 02:17:37.000000000 +0530
+@@ -21,7 +21,7 @@
+ #include "ProcessMgr.h"
+ #include "main.h"
+-
++#include <string.h>
+ #include <iostream>
+ #include <string>
+ #include <vector>
diff --git a/mobile-application-service_0.9.bb b/mobile-application-service_0.9.bb
new file mode 100644 (file)
index 0000000..1da4edb
--- /dev/null
@@ -0,0 +1,27 @@
+# Copyright (C) 2009 Kirtika Ruchandani <kirtibr@gmail.com>
+# Released under the MIT license (see COPYING.MIT for the terms)
+
+DESCRIPTION = "Backend to flash based hildon home applet"
+HOMEPAGE = "unknown"
+LICENSE = "GPLv2"
+SECTION = "misc"
+DEPENDS = "libxml2"
+PR = "r6"
+
+
+#FIXME: Get a proper SRC_URI for this
+SRC_URI = " http://ftp.grokthis.net/mirrors/ubuntu/pool/universe/m/mobile-application-service/mobile-application-service_0.9-6.tar.gz \
+            file://mas/dont-forget-string-header.patch;patch=1"
+
+inherit autotools pkgconfig 
+
+do_stage(){
+    autotools_stage_all
+}
+
+PACKAGES= "${PN} ${PN}-doc"
+
+FILES_${PN} = "${sbindir} \
+               ${libdir}/"
+
+