diff options
author | Thomas Kunze <thommycheck@gmx.de> | 2008-02-28 12:58:30 +0000 |
---|---|---|
committer | Thomas Kunze <thommycheck@gmx.de> | 2008-02-28 12:58:30 +0000 |
commit | 451d60a2572fceff010ec887951c05548c7dcc1c (patch) | |
tree | d5276568e132df52d4d96e61868717ac51f44841 /packages/freesmartphone/pyneod_svn.bb | |
parent | 18a21d79505d162c24a404b865d03072430ec717 (diff) | |
parent | f66378d955987691415e8f4786f87f92f5303241 (diff) |
merge of '452ba8f483cc1f311d5139e2d406dd21e8edcce5'
and '524fc96258564567524a1295bfdf65c2a25da5d7'
Diffstat (limited to 'packages/freesmartphone/pyneod_svn.bb')
-rw-r--r-- | packages/freesmartphone/pyneod_svn.bb | 66 |
1 files changed, 66 insertions, 0 deletions
diff --git a/packages/freesmartphone/pyneod_svn.bb b/packages/freesmartphone/pyneod_svn.bb new file mode 100644 index 0000000000..68938ed424 --- /dev/null +++ b/packages/freesmartphone/pyneod_svn.bb @@ -0,0 +1,66 @@ +DESCRIPTION = "FIC Neo Smartphone daemons implementing the freesmartphone.org dbus APIs" +AUTHOR = "M. Dietrich" +SECTION = "console/network" +DEPENDS = "python" +LICENSE = "GPL" +PV = "0.0+svnr${SRCREV}" +PR = "r2" + +inherit update-rc.d + +INITSCRIPT_NAME = "init.d.pyneod" +INITSCRIPT_PARAMS = "defaults 40" + +SRC_URI = "svn://projects.linuxtogo.org/svn/smartphones/trunk/software;module=pyneod" +S = "${WORKDIR}/pyneod" + +export D := "${D}" +export PREFIX = "${prefix}" + +do_compile() { + : +} + +do_install() { + python setup.py +} + +RCONFLICTS = "gsmd" +RREPLACES = "gsmd" +RDEPENDS = "\ + python-codecs \ + python-compression \ + python-crypt \ + python-curses \ + python-datetime \ + python-dbus \ + python-fcntl \ + python-gdbm \ + python-gst \ + python-html \ + python-io \ + python-lang \ + python-logging \ + python-math \ + python-mime \ + python-netclient \ + python-netserver \ + python-pickle \ + python-pprint \ + python-pycrypto \ + python-pygobject \ + python-pyserial \ + python-re \ + python-readline \ + python-shell \ + python-simplejson \ + python-sqlite3 \ + python-stringold \ + python-syslog \ + python-threading \ + python-xml \ + python-zlib \ +" + +FILES_${PN} = "${datadir} ${sysconfdir} ${bindir}" +PACKAGE_ARCH = "${MACHINE_ARCH}" |