DR17.
* updated sane-srcrevs as well.
SRCREV_pn-eglibc ?= "5963"
SRCREV_pn-eglibc-initial ?= "5963"
SRCREV_pn-eglibc-intermediate ?= "5963"
+SRCREV_pn-exalt ?= "79"
+SRCREV_pn-exalt-daemon ?= "78"
+SRCREV_pn-exalt-module ?= "78"
SRCREV_pn-ezxd ?= "2074"
SRCREV_pn-elf2flt ?= "1786"
SRCREV_pn-epiphany ?= "7837"
SRCREV_pn-kismet ?= "2285"
SRCREV_pn-kismet-newcore ?= "2285"
SRCREV_pn-libcalenabler2 ?= "1410"
+SRCREV_pn-libexalt ?= "78"
+SRCREV_pn-libexalt-dbus ?= "76"
SRCREV_pn-libfakekey ?= "1455"
SRCREV_pn-libgsmd ?= "4335"
SRCREV_pn-libjana ?= "704"
--- /dev/null
+#!/bin/sh
+set -e
+
+#need dbus and hald
+
+start() {
+ echo -n "Starting Exalt daemon..."
+ start-stop-daemon --start --exec /usr/sbin/exalt-daemon \
+ --pidfile /var/run/exaltd.pid
+ echo "done."
+}
+
+stop() {
+ echo -n "Stopping Exalt daemon..."
+ start-stop-daemon --stop --exec /usr/sbin/exalt-daemon \
+ --pidfile /var/run/exaltd.pid
+ echo "done."
+}
+
+case "$1" in
+ start)
+ start
+ ;;
+ stop)
+ stop
+ ;;
+ restart)
+ stop
+ sleep 2
+ start
+ ;;
+ *)
+ echo "Usage: $(basename $0) {start|stop|restart}"
+ exit 1
+esac
+
+exit 0
--- /dev/null
+require exalt.inc
+
+DEPENDS = "evas edbus libexalt"
+
+SRC_URI += "file://init"
+
+do_install_append() {
+ install -D -m 0755 "${WORKDIR}/init" "${D}${sysconfdir}/dbus-1/event.d/40exaltd"
+}
+
+FILES_${PN} += "${sysconfdir}/dbus-1/event.d/"
+
+EXALT_MODULE = "daemon"
--- /dev/null
+Index: module/Makefile.am
+===================================================================
+--- module.orig/Makefile.am 2008-04-16 17:39:03.000000000 +0800
++++ module/Makefile.am 2008-04-16 17:39:05.000000000 +0800
+@@ -26,7 +26,6 @@
+ # the module .so file
+ INCLUDES = -I. \
+ -I$(top_srcdir) \
+- -I$(includedir) \
+ @EXALT_CFLAGS@ \
+ @e_cflags@
+
--- /dev/null
+require exalt.inc
+
+DEPENDS = "edbus libexalt-dbus"
+RDEPENDS_${PN} = "exalt"
+
+SRC_URI += "file://autotools-fix.patch;patch=1;minrev=78"
+
+EXTRA_OECONF = "--with-edje-cc=${STAGING_BINDIR_NATIVE}/edje_cc"
+
+FILES_${PN} += "${libdir}/enlightenment/modules/module_exalt/*.edj \
+ ${libdir}/enlightenment/modules/module_exalt/*/*.so \
+ ${libdir}/enlightenment/modules/module_exalt/*.desktop \
+ ${libdir}/enlightenment/modules/module_exalt/module_exalt"
+FILES_${PN}-dev += "${libdir}/enlightenment/modules/module_exalt/*/*.a \
+ ${libdir}/enlightenment/modules/module_exalt/*/*.la"
+FILES_${PN}-dbg += "${libdir}/enlightenment/modules/module_exalt/*/.debug"
+FILES_${PN}-locale += "${libdir}/enlightenment/modules/module_exalt/locale"
+
+EXALT_MODULE = "module"
--- /dev/null
+DESCRIPTION = "Exalt is a network manager for the windows manager Enlightenment DR17."
+AUTHOR = "John Lee <john_lee@openmoko.com>"
+HOMEPAGE = "http://watchwolf.fr/wiki/doku.php?id=exalt"
+PV = "0.0.0+svnr${SRCREV}"
+
+SRC_URI = "svn://svn.berlios.de/exalt/trunk;module=${EXALT_MODULE};proto=svn"
+
+S = "${WORKDIR}/${EXALT_MODULE}"
+
+inherit autotools pkgconfig
+
+EXALT_MODULE ?= "${PN}"
--- /dev/null
+require exalt.inc
+
+DEPENDS = "ecore etk edbus libexalt libexalt-dbus"
+RDEPENDS_${PN} = "exalt-daemon"
--- /dev/null
+require exalt.inc
+
+DEPENDS = "ecore edbus libexalt"
+
+do_stage() {
+ autotools_stage_all
+}
+
+EXALT_MODULE = "libexalt_dbus"
--- /dev/null
+require exalt.inc
+
+DEPENDS = "ecore eet ecore edbus evas wpa-supplicant dhcp"
+RDEPENDS_${PN} = "wpa-supplicant dhclient"
+
+do_stage() {
+ autotools_stage_all
+}