diff options
author | Michael Lauer <mickey@vanille-media.de> | 2008-04-12 22:19:08 +0000 |
---|---|---|
committer | Michael Lauer <mickey@vanille-media.de> | 2008-04-12 22:19:08 +0000 |
commit | b09e800e8119987a8504a23d808d313a405a9c11 (patch) | |
tree | 49c3b67580851a0932ec1ed416f0398b55461bdd /packages/freesmartphone | |
parent | 7ca48a4e9ef4a50e831ddd695de76c5351cc872a (diff) |
py-odeviced: add start script, configuration, update
Diffstat (limited to 'packages/freesmartphone')
6 files changed, 60 insertions, 7 deletions
diff --git a/packages/freesmartphone/py-odeviced/.mtn2git_empty b/packages/freesmartphone/py-odeviced/.mtn2git_empty new file mode 100644 index 0000000000..e69de29bb2 --- /dev/null +++ b/packages/freesmartphone/py-odeviced/.mtn2git_empty diff --git a/packages/freesmartphone/py-odeviced/odeviced b/packages/freesmartphone/py-odeviced/odeviced new file mode 100644 index 0000000000..52d3a1d196 --- /dev/null +++ b/packages/freesmartphone/py-odeviced/odeviced @@ -0,0 +1,40 @@ +#! /bin/sh +# +# odeviced This shell script starts and stops the open device daemon. +# +# chkconfig: 345 90 20 +# description: py-odeviced is the open device daemon +# processname: python + +PATH=/bin:/usr/bin:/sbin:/usr/sbin +NAME=odeviced + +[ -f /etc/default/rcS ] && . /etc/default/rcS + +case "$1" in + start) + echo -n "Starting open device daemon: " + start-stop-daemon --start --pidfile /var/run/${NAME}.pid --make-pidfile --background -x /usr/bin/odeviced + if [ $? = 0 ]; then + echo "(ok)" + else + echo "(failed)" + fi + ;; + stop) + echo -n "Stopping open device daemon: " + start-stop-daemon --stop --pidfile /var/run/${NAME}.pid --oknodo + rm -f /var/run/${NAME}.pid + echo "(done)" + ;; + restart|force-reload) + $0 stop + $0 start + ;; + *) + echo "Usage: /etc/init.d/odeviced {start|stop|restart|force-reload}" + exit 1 + ;; +esac + +exit 0 diff --git a/packages/freesmartphone/py-odeviced/odeviced.conf b/packages/freesmartphone/py-odeviced/odeviced.conf new file mode 100644 index 0000000000..e69de29bb2 --- /dev/null +++ b/packages/freesmartphone/py-odeviced/odeviced.conf diff --git a/packages/freesmartphone/py-odeviced/om-gta02/.mtn2git_empty b/packages/freesmartphone/py-odeviced/om-gta02/.mtn2git_empty new file mode 100644 index 0000000000..e69de29bb2 --- /dev/null +++ b/packages/freesmartphone/py-odeviced/om-gta02/.mtn2git_empty diff --git a/packages/freesmartphone/py-odeviced/om-gta02/odeviced.conf b/packages/freesmartphone/py-odeviced/om-gta02/odeviced.conf new file mode 100644 index 0000000000..b2f979a784 --- /dev/null +++ b/packages/freesmartphone/py-odeviced/om-gta02/odeviced.conf @@ -0,0 +1,4 @@ +[idlenotifier] +# don't read from accellerometers for now +ignoreinput=2,3 + diff --git a/packages/freesmartphone/py-odeviced_svn.bb b/packages/freesmartphone/py-odeviced_svn.bb index cc4f18cdf6..0819499ed6 100644 --- a/packages/freesmartphone/py-odeviced_svn.bb +++ b/packages/freesmartphone/py-odeviced_svn.bb @@ -2,21 +2,30 @@ DESCRIPTION = "The Open Device Daemon Prototype in Python" HOMEPAGE = "http://www.freesmartphone.org" AUTHOR = "Michael 'Mickey' Lauer <mlauer@vanille-media.de>" SECTION = "console/network" -DEPENDS = "python" +DEPENDS = "python-cython-native python-pyrex-native" LICENSE = "GPLv2" -PV = "0.0+svnr${SRCREV}" +PV = "0.7.9+svnr${SRCREV}" PR = "r0" -inherit distutils +inherit distutils update-rc.d -#inherit update-rc.d -#INITSCRIPT_NAME = "py-odeviced" -#INITSCRIPT_PARAMS = "defaults 20" +INITSCRIPT_NAME = "odeviced" +INITSCRIPT_PARAMS = "defaults 20" -SRC_URI = "svn://projects.linuxtogo.org/svn/smartphones/trunk/software;module=py-odeviced" +SRC_URI = "svn://projects.linuxtogo.org/svn/smartphones/trunk/software;module=py-odeviced \ + file://odeviced \ + file://odeviced.conf" S = "${WORKDIR}/py-odeviced" +do_install_append() { + install -d ${D}${sysconfdir}/init.d/ + install -m 0755 ${WORKDIR}/odeviced ${D}${sysconfdir}/init.d/ + install -m 0644 ${WORKDIR}/odeviced.conf ${D}${sysconfdir} +} + RDEPENDS_${PN} += "\ python-dbus \ python-pygobject \ " + +FILES_${PN} += "${sysconfdir}" |