diff options
Diffstat (limited to 'packages/freesmartphone')
17 files changed, 213 insertions, 9 deletions
diff --git a/packages/freesmartphone/frameworkd/.mtn2git_empty b/packages/freesmartphone/frameworkd/.mtn2git_empty new file mode 100644 index 0000000000..e69de29bb2 --- /dev/null +++ b/packages/freesmartphone/frameworkd/.mtn2git_empty diff --git a/packages/freesmartphone/frameworkd/frameworkd b/packages/freesmartphone/frameworkd/frameworkd new file mode 100644 index 0000000000..08b782e402 --- /dev/null +++ b/packages/freesmartphone/frameworkd/frameworkd @@ -0,0 +1,40 @@ +#! /bin/sh +# +# frameworkd -- This shell script starts and stops the freemsmartphone.org framework daemon. +# +# chkconfig: 345 90 20 +# description: frameworkd is the freesmartphone.org framework daemon +# processname: python + +PATH=/bin:/usr/bin:/sbin:/usr/sbin +NAME=frameworkd + +[ -f /etc/default/rcS ] && . /etc/default/rcS + +case "$1" in + start) + echo -n "Starting freesmartphone.org framework daemon: " + start-stop-daemon --start --pidfile /var/run/${NAME}.pid --make-pidfile --background -x /usr/bin/frameworkd + if [ $? = 0 ]; then + echo "(ok)" + else + echo "(failed)" + fi + ;; + stop) + echo -n "Stopping freesmartphone.org framework 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/frameworkd/frameworkd.conf b/packages/freesmartphone/frameworkd/frameworkd.conf new file mode 100644 index 0000000000..8b13789179 --- /dev/null +++ b/packages/freesmartphone/frameworkd/frameworkd.conf @@ -0,0 +1 @@ + diff --git a/packages/freesmartphone/frameworkd/om-gta02/.mtn2git_empty b/packages/freesmartphone/frameworkd/om-gta02/.mtn2git_empty new file mode 100644 index 0000000000..e69de29bb2 --- /dev/null +++ b/packages/freesmartphone/frameworkd/om-gta02/.mtn2git_empty diff --git a/packages/freesmartphone/frameworkd/om-gta02/frameworkd.conf b/packages/freesmartphone/frameworkd/om-gta02/frameworkd.conf new file mode 100644 index 0000000000..b38425129f --- /dev/null +++ b/packages/freesmartphone/frameworkd/om-gta02/frameworkd.conf @@ -0,0 +1,15 @@ +[idlenotifier] +# don't read from accellerometers for GTA02 +ignoreinput=2,3 + +[input] +# don't read from accellerometers for GTA02 +ignoreinput=2,3 + +[ophoned] +# GTA02 has TI Calypso +modemtype = ti_calypso + +[opreferencesd] +rootdir = +../etc/freesmartphone/opreferences:/etc/freesmartphone/opreferences:/usr/etc/freesmartphone/opreferences diff --git a/packages/freesmartphone/frameworkd_git.bb b/packages/freesmartphone/frameworkd_git.bb new file mode 100644 index 0000000000..ea3a4cb652 --- /dev/null +++ b/packages/freesmartphone/frameworkd_git.bb @@ -0,0 +1,38 @@ +DESCRIPTION = "The freesmartphon.org Framework Daemon" +HOMEPAGE = "http://www.freesmartphone.org" +AUTHOR = "Michael 'Mickey' Lauer <mlauer@vanille-media.de>" +SECTION = "console/network" +DEPENDS = "python-cython-native python-pyrex-native" +LICENSE = "GPL" +PV = "0.8.0+gitr${SRCREV}" +PR = "r2" + +inherit distutils update-rc.d + +INITSCRIPT_NAME = "frameworkd" +INITSCRIPT_PARAMS = "defaults 29" + +SRC_URI = "${FREESMARTPHONE_GIT}/framework.git;protocol=git;branch=master \ + file://frameworkd \ + file://frameworkd.conf" +S = "${WORKDIR}/git" + +do_install_append() { + install -d ${D}${sysconfdir}/init.d/ + install -m 0755 ${WORKDIR}/frameworkd ${D}${sysconfdir}/init.d/ + install -m 0644 ${WORKDIR}/frameworkd.conf ${D}${sysconfdir} + install -d ${D}${sysconfdir}/dbus-1/system.d/ + mv -f ${D}${datadir}/etc/dbus-1/system.d/frameworkd.conf ${D}${sysconfdir}/dbus-1/system.d/ +} + +RDEPENDS_${PN} += "\ + python-dbus \ + python-pygobject \ + python-pyrtc \ + python-pyserial \ + python-shell \ + python-syslog \ +" + +FILES_${PN} += "${sysconfdir}" +FILES_${PN}-dbg += "${libdir}/${PYTHON_DIR}/site-packages/framework/subsystems/*/.debug" diff --git a/packages/freesmartphone/fso-sounds.bb b/packages/freesmartphone/fso-sounds.bb new file mode 100644 index 0000000000..9c42ada539 --- /dev/null +++ b/packages/freesmartphone/fso-sounds.bb @@ -0,0 +1,15 @@ +DESCRIPTION = "A set of notification sounds" +LICENSE = "PD" +SECTION = "multimedia" +PV = "0.0.0" +PR = "r0" + +SRC_URI = "http://gallium.prg.dtu.dk/HVSC/C64Music/MUSICIANS/G/Galway_Martin/Arkanoid_PSID.sid" + +do_install() { + install -d ${D}${datadir}/sounds/ + install ${WORKDIR}/*.sid ${D}${datadir}/sounds/ +} + +FILES_${PN} = "${datadir}" +PACKAGE_ARCH = "all" diff --git a/packages/freesmartphone/gsmd2_git.bb b/packages/freesmartphone/gsmd2_git.bb new file mode 100644 index 0000000000..6c327ede30 --- /dev/null +++ b/packages/freesmartphone/gsmd2_git.bb @@ -0,0 +1,17 @@ +DESCRIPTION = "GSM 07.07 phone server" +HOMEPAGE = "http://www.freesmartphone.org/mediawiki/index.php/Implementations/gsm0710muxd" +AUTHOR = "Ixonos Team" +SECTION = "console/network" +DEPENDS = "dbus dbus-glib" +RDEPENDS = "gsm0710muxd" +LICENSE = "GPL" +PV = "0.1.0+gitr${SRCREV}" +PR = "r0" + +SRC_URI = "${FREESMARTPHONE_GIT}/gsmd2.git;protocol=git;branch=master" +S = "${WORKDIR}/git" + +inherit autotools + +EXTRA_OECONF = "--disable-tests" + diff --git a/packages/freesmartphone/python-odeviced/om-gta02/odeviced.conf b/packages/freesmartphone/python-odeviced/om-gta02/odeviced.conf index b2f979a784..0076639f98 100644 --- a/packages/freesmartphone/python-odeviced/om-gta02/odeviced.conf +++ b/packages/freesmartphone/python-odeviced/om-gta02/odeviced.conf @@ -2,3 +2,7 @@ # don't read from accellerometers for now ignoreinput=2,3 +[input] +# don't read from accellerometers for now +ignoreinput=2,3 + diff --git a/packages/freesmartphone/python-odeviced_git.bb b/packages/freesmartphone/python-odeviced_git.bb index d380473878..121a434585 100644 --- a/packages/freesmartphone/python-odeviced_git.bb +++ b/packages/freesmartphone/python-odeviced_git.bb @@ -5,12 +5,12 @@ SECTION = "console/network" DEPENDS = "python-cython-native python-pyrex-native" LICENSE = "GPLv2" PV = "0.7.9+gitr${SRCREV}" -PR = "r0" +PR = "r2" inherit distutils update-rc.d INITSCRIPT_NAME = "odeviced" -INITSCRIPT_PARAMS = "defaults 20" +INITSCRIPT_PARAMS = "defaults 21" SRC_URI = "${FREESMARTPHONE_GIT}/python-odeviced.git;protocol=git;branch=master \ file://odeviced \ diff --git a/packages/freesmartphone/python-oeventd/.mtn2git_empty b/packages/freesmartphone/python-oeventd/.mtn2git_empty new file mode 100644 index 0000000000..e69de29bb2 --- /dev/null +++ b/packages/freesmartphone/python-oeventd/.mtn2git_empty diff --git a/packages/freesmartphone/python-oeventd/oeventd b/packages/freesmartphone/python-oeventd/oeventd new file mode 100644 index 0000000000..8ed467b079 --- /dev/null +++ b/packages/freesmartphone/python-oeventd/oeventd @@ -0,0 +1,40 @@ +#! /bin/sh +# +# odeviced This shell script starts and stops the open event daemon. +# +# chkconfig: 345 90 20 +# description: py-oeventd is the open evend daemon +# processname: python + +PATH=/bin:/usr/bin:/sbin:/usr/sbin +NAME=oeventd + +[ -f /etc/default/rcS ] && . /etc/default/rcS + +case "$1" in + start) + echo -n "Starting open event daemon: " + start-stop-daemon --start --pidfile /var/run/${NAME}.pid --make-pidfile --background -x /usr/bin/oeventd + if [ $? = 0 ]; then + echo "(ok)" + else + echo "(failed)" + fi + ;; + stop) + echo -n "Stopping open event 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/oeventd {start|stop|restart|force-reload}" + exit 1 + ;; +esac + +exit 0 diff --git a/packages/freesmartphone/python-oeventd_git.bb b/packages/freesmartphone/python-oeventd_git.bb new file mode 100644 index 0000000000..c08e1af3b7 --- /dev/null +++ b/packages/freesmartphone/python-oeventd_git.bb @@ -0,0 +1,34 @@ +DESCRIPTION = "The Open Event Daemon Prototype in Python" +HOMEPAGE = "http://www.freesmartphone.org/mediawiki/index.php/Implementations/OpenEventDaemon" +AUTHOR = "Michael 'Mickey' Lauer <mlauer@vanille-media.de>" +SECTION = "console/network" +DEPENDS = "python-cython-native python-pyrex-native" +LICENSE = "GPLv2" +PV = "0.0.0+gitr${SRCREV}" +PR = "r1" + +inherit distutils update-rc.d + +INITSCRIPT_NAME = "oeventd" +INITSCRIPT_PARAMS = "defaults 21" + +SRC_URI = "\ + ${FREESMARTPHONE_GIT}/eventd.git;protocol=git;branch=master \ + file://oeventd \ +" +S = "${WORKDIR}/git" + +do_install_append() { + install -d ${D}${sysconfdir}/init.d/ + install -m 0755 ${WORKDIR}/oeventd ${D}${sysconfdir}/init.d/ + install -d ${D}${sysconfdir}/dbus-1/system.d/ + mv -f ${D}${datadir}/etc/dbus-1/system.d/oeventd.conf ${D}${sysconfdir}/dbus-1/system.d/ +} + +RDEPENDS_${PN} += "\ + python-dbus \ + python-pygobject \ + python-syslog \ +" + +FILES_${PN} += "${sysconfdir}" diff --git a/packages/freesmartphone/python-ophoned_git.bb b/packages/freesmartphone/python-ophoned_git.bb index 0a1c802041..7f30f4c24a 100644 --- a/packages/freesmartphone/python-ophoned_git.bb +++ b/packages/freesmartphone/python-ophoned_git.bb @@ -5,12 +5,12 @@ SECTION = "console/network" DEPENDS = "python-cython-native python-pyrex-native" LICENSE = "GPLv2" PV = "0.0.0+gitr${SRCREV}" -PR = "r0" +PR = "r1" inherit distutils update-rc.d INITSCRIPT_NAME = "ophoned" -INITSCRIPT_PARAMS = "defaults 20" +INITSCRIPT_PARAMS = "defaults 21" SRC_URI = "${FREESMARTPHONE_GIT}/python-ophoned.git;protocol=git;branch=master \ file://ophoned" diff --git a/packages/freesmartphone/python-ousaged_git.bb b/packages/freesmartphone/python-ousaged_git.bb index f9ba2856eb..1188da34a3 100644 --- a/packages/freesmartphone/python-ousaged_git.bb +++ b/packages/freesmartphone/python-ousaged_git.bb @@ -5,12 +5,12 @@ SECTION = "console/network" DEPENDS = "python-cython-native python-pyrex-native" LICENSE = "GPLv2" PV = "0.7.9+gitr${SRCREV}" -PR = "r0" +PR = "r1" inherit distutils update-rc.d INITSCRIPT_NAME = "ousaged" -INITSCRIPT_PARAMS = "defaults 20" +INITSCRIPT_PARAMS = "defaults 21" SRC_URI = "\ ${FREESMARTPHONE_GIT}/usaged.git;protocol=git;branch=master \ diff --git a/packages/freesmartphone/zhone/80zhone b/packages/freesmartphone/zhone/80zhone index 4a698007b8..90a1e95b39 100644 --- a/packages/freesmartphone/zhone/80zhone +++ b/packages/freesmartphone/zhone/80zhone @@ -1,4 +1,4 @@ #!/bin/sh -e -zhone --fullscreen > /dev/null 2>&1 & +zhone --fullscreen > /tmp/zhone.log 2>&1 & renice -3 $! exit 0 diff --git a/packages/freesmartphone/zhone_git.bb b/packages/freesmartphone/zhone_git.bb index 513b06f35a..c9411a58c3 100644 --- a/packages/freesmartphone/zhone_git.bb +++ b/packages/freesmartphone/zhone_git.bb @@ -4,7 +4,7 @@ SECTION = "x11" DEPENDS = "edje-native" RDEPENDS = "task-python-efl python-textutils python-dbus" PV = "0.0.0+gitr${SRCREV}" -PR = "r4" +PR = "r5" SRC_URI = "${FREESMARTPHONE_GIT}/zhone.git;protocol=git;branch=master \ file://80zhone" @@ -19,5 +19,5 @@ do_install_append() { FILES_${PN} += "${datadir} ${sysconfdir}" -PACKAGE_ARCH = "${MACHINE_ARCH}" +PACKAGE_ARCH = "all" |