diff options
author | M. Dietrich <mdt@emdete.de> | 2008-12-12 13:22:21 +0100 |
---|---|---|
committer | Michael 'Mickey' Lauer <mickey@vanille-media.de> | 2008-12-14 15:01:13 +0100 |
commit | d978b9c3653f8c9391a00416b9f044324a64e54f (patch) | |
tree | bc47c06eba70d772f8af32987ce0381fba70a506 /packages/pyneo | |
parent | c825f1e82e8af34f46a1de34a3acf49c85927e13 (diff) |
pyneod: move from fso to pyneo directory
Diffstat (limited to 'packages/pyneo')
-rw-r--r-- | packages/pyneo/pyneod_git.bb | 67 |
1 files changed, 67 insertions, 0 deletions
diff --git a/packages/pyneo/pyneod_git.bb b/packages/pyneo/pyneod_git.bb new file mode 100644 index 0000000000..7cdfaace22 --- /dev/null +++ b/packages/pyneo/pyneod_git.bb @@ -0,0 +1,67 @@ +DESCRIPTION = "Zad - daemons" +HOMEPAGE = "http://neo1973-germany.de/wiki/Zad" +AUTHOR = "M. Dietrich" +SECTION = "console/network" +DEPENDS = "python" +LICENSE = "GPL" +PV = "0.0.0+gitr${SRCREV}" +PR = "r0" + +inherit update-rc.d + +INITSCRIPT_NAME = "pyneod" +INITSCRIPT_PARAMS = "defaults 40" + +SRC_URI = "${FREESMARTPHONE_GIT}/pyneo.git;protocol=git;branch=master" +S = "${WORKDIR}/git/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}" |